 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght=0,300;0,400;1,300;1,400&family=Lato:wght=300;400&display=swap');
  * { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --dark: #1a1208;
    --brown: #6b3f1f;
    --warm: #c8864a;
    --cream: #faf5ed;
    --light: #f0e8d8;
    --mid: #9a8a78;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--dark); }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 80px;
    background: rgba(26,18,8,0.96); backdrop-filter: blur(12px);
  }
  .logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; letter-spacing: 4px; color: var(--warm); font-style: italic; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { text-decoration: none; color: #c8b898; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; transition: color 0.3s; }
  .nav-links a:hover { color: var(--warm); }
  .btn-warm { background: var(--warm); color: white; border: none; padding: 10px 28px; font-family: 'Lato'; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; border-radius: 2px; }
  .btn-warm:hover { background: var(--brown); }

  /* HERO */
  .hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; background: var(--dark); display: flex; align-items: center; justify-content: center; }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
  .hero-content { position: relative; z-index: 2; padding: 40px; }
  .hero-tag { font-size: 0.65rem; letter-spacing: 6px; text-transform: uppercase; color: var(--warm); margin-bottom: 24px; display: block; }
  .hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 300; color: white; line-height: 1.0; margin-bottom: 24px; }
  .hero-content h1 em { font-style: italic; color: var(--warm); }
  .hero-content p { font-size: 0.92rem; color: #c8b898; line-height: 2; max-width: 520px; margin: 0 auto 48px; }
  .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-light { background: white; color: var(--dark); border: none; padding: 16px 40px; font-family: 'Lato'; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
  .btn-light:hover { background: var(--warm); color: white; }
  .btn-outline-light { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); padding: 16px 40px; font-family: 'Lato'; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
  .btn-outline-light:hover { background: white; color: var(--dark); }
  .hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .hero-scroll span { font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: #8a7a68; }
  .hero-scroll::after { content: ''; width: 1px; height: 40px; background: #8a7a68; }

  /* INFO BAR */
  .info-bar { background: var(--brown); padding: 20px 80px; display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
  .info-item { display: flex; align-items: center; gap: 12px; }
  .info-item svg { width: 20px; height: 20px; stroke: var(--warm); fill: none; stroke-width: 1.8; stroke-linecap: round; flex-shrink: 0; }
  .info-item span { font-size: 0.75rem; color: #e8d8c0; letter-spacing: 1px; }

  /* ABOUT */
  .about { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
  .about-img { background: var(--light); position: relative; overflow: hidden; min-height: 500px; }
  .about-img img { width: 100%; height: 100%; object-fit: cover; }
  .about-text { padding: 80px; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
  .section-label { font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase; color: var(--warm); margin-bottom: 20px; }
  .about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; margin-bottom: 28px; }
  .about-text p { font-size: 0.85rem; color: #5a4a38; line-height: 2; margin-bottom: 16px; }
  .about-details { display: flex; gap: 40px; margin-top: 32px; }
  .about-detail-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 300; color: var(--warm); }
  .about-detail-label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-top: 4px; }

  /* MENU */
  .menu { padding: 120px 80px; background: var(--dark); }
  .menu-header { text-align: center; margin-bottom: 80px; }
  .menu-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4vw, 3.5rem); font-weight: 300; color: white; margin-bottom: 16px; }
  .menu-header p { font-size: 0.82rem; color: #7a6a58; max-width: 480px; margin: 0 auto; line-height: 1.9; }
  .menu-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 60px; flex-wrap: wrap; }
  .menu-tab { background: transparent; color: #7a6a58; border: 1px solid #3a2a18; padding: 12px 32px; font-family: 'Lato'; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
  .menu-tab.active { background: var(--warm); color: white; border-color: var(--warm); }
  .menu-tab:hover:not(.active) { border-color: var(--warm); color: var(--warm); }
  .menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; max-width: 900px; margin: 0 auto; }
  .menu-item { background: #221508; padding: 32px; display: flex; gap: 20px; align-items: flex-start; transition: background 0.3s; }
  .menu-item:hover { background: #2a1c0a; }
  .menu-item-img { width: 80px; height: 80px; border-radius: 4px; background: #3a2010; flex-shrink: 0; overflow: hidden; }
  .menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
  .menu-item-info { flex: 1; }
  .menu-item-info h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: white; margin-bottom: 8px; }
  .menu-item-info p { font-size: 0.78rem; color: #7a6a58; line-height: 1.7; margin-bottom: 12px; }
  .menu-item-footer { display: flex; justify-content: space-between; align-items: center; }
  .menu-price { color: var(--warm); font-size: 1rem; font-family: 'Playfair Display', serif; }
  .menu-tag { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: #5a4a38; border: 1px solid #3a2a18; padding: 3px 8px; }

  /* RESERVAS */
  .reservas { padding: 120px 80px; background: var(--light); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .reservas-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; margin-bottom: 24px; }
  .reservas-text p { font-size: 0.85rem; color: #5a4a38; line-height: 2; margin-bottom: 40px; }
  .reservas-form { background: white; padding: 48px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
  .reservas-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 32px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
  .form-group input, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid #e0d8c8; font-family: 'Lato'; font-size: 0.85rem; outline: none; background: var(--cream); color: var(--dark); transition: border 0.3s; }
  .form-group input:focus, .form-group select:focus { border-color: var(--warm); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* TAKEAWAY */
  .takeaway { padding: 100px 80px; background: var(--cream); text-align: center; }
  .takeaway h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; margin-bottom: 16px; }
  .takeaway p { font-size: 0.85rem; color: var(--mid); max-width: 480px; margin: 0 auto 60px; line-height: 1.9; }
  .takeaway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto 48px; }
  .takeaway-card { background: white; padding: 0 0 32px 0; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; overflow: hidden; }
  .takeaway-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
  .takeaway-img-wrapper { width: 100%; height: 160px; overflow: hidden; margin-bottom: 20px; }
  .takeaway-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
  .takeaway-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; padding: 0 20px; }
  .takeaway-card p { font-size: 0.78rem; color: var(--mid); line-height: 1.7; margin-bottom: 20px; padding: 0 20px; }
  .takeaway-card .price { font-size: 0.9rem; color: var(--warm); font-family: 'Playfair Display', serif; padding: 0 20px; }

  /* GALERIA */
  .galeria { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 280px 280px; gap: 4px; }
  .galeria-item { overflow: hidden; cursor: pointer; background: var(--light); position: relative; }
  .galeria-item:first-child { grid-column: span 2; grid-row: span 2; }
  .galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .galeria-item:hover img { transform: scale(1.05); }

  /* FOOTER */
  footer { background: var(--dark); padding: 80px; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid #2a1a08; }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--warm); font-style: italic; margin-bottom: 20px; }
  .footer-brand p { font-size: 0.78rem; color: #5a4a38; line-height: 1.9; max-width: 280px; margin-bottom: 24px; }
  .footer-col h4 { font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--warm); margin-bottom: 24px; }
  .footer-col a { display: block; color: #5a4a38; text-decoration: none; font-size: 0.78rem; margin-bottom: 12px; transition: color 0.3s; }
  .footer-col a:hover { color: var(--warm); }
  .footer-col p { font-size: 0.78rem; color: #5a4a38; line-height: 1.9; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
  .footer-copy { font-size: 0.68rem; color: #3a2a18; letter-spacing: 1px; }
  .social-row { display: flex; gap: 16px; }
  .social-btn { width: 36px; height: 36px; border: 1px solid #2a1a08; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; color: #5a4a38; }
  .social-btn:hover { border-color: var(--warm); color: var(--warm); }

  @media(max-width:900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .about, .reservas { grid-template-columns: 1fr; }
    .about-text { padding: 48px 24px; }
    .menu, .takeaway, .galeria-section { padding: 60px 24px; }
    .menu-grid { grid-template-columns: 1fr; }
    .takeaway-grid { grid-template-columns: 1fr; }
    .galeria { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .galeria-item:first-child { grid-column: span 2; }
    .info-bar { padding: 20px 24px; gap: 24px; }
    footer { padding: 40px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .reservas { padding: 60px 24px; }
    .reservas-form { padding: 32px 24px; }
  }