/* =========================
   RESTAURANT LUXE - STYLE.CSS
   ========================= */

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --gold: #b8965a;
  --gold-light: #d4af7a;
  --black: #0a0a0a;
  --dark: #111;
  --dark2: #1a1a1a;
  --text: #ccc;
  --white: #fafafa;

  --serif: "Cormorant Garamond", serif;
  --sans: "Montserrat", sans-serif;

  --transition: all 0.4s ease;
}

/* BASE */
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --gold: #b8965a;
    --gold-light: #d4af7a;
    --gold-dark: #8a6e3e;
    --cream: #f5f0e8;
    --cream-dark: #ede5d5;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #242424;
    --text-muted: #888;
    --text-light: #ccc;
    --white: #fafafa;
    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-sans: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--ff-sans);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
  }

  /* CURSOR PERSONALIZADO */
  .cursor {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, opacity 0.3s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(184,150,90,0.5);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
  }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring {
    width: 54px; height: 54px;
    border-color: var(--gold);
  }

  /* NAVEGACIÓN */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 2rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    transition: var(--transition);
  }
  nav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 5%;
    border-bottom: 1px solid rgba(184,150,90,0.15);
  }
  .nav-logo {
    font-family: var(--ff-serif);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-decoration: none;
  }
  .nav-logo span { font-style: italic; }
  .nav-links {
    display: flex; gap: 3rem; list-style: none;
  }
  .nav-links a {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-reserve {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.8rem;
    background: transparent;
    cursor: none;
    transition: var(--transition);
    text-decoration: none;
  }
  .nav-reserve:hover { background: var(--gold); color: var(--black); }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; padding: 5px; }
  .nav-hamburger span { width: 28px; height: 1px; background: var(--gold); display: block; transition: var(--transition); }

  /* HERO */
  #hero {
    height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,1) 100%),
      url('data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1800' height='1000'%3E%3Cdefs%3E%3CradialGradient id='rh' cx='55%25' cy='42%25' r='65%25'%3E%3Cstop offset='0' stop-color='%23271a0a'/%3E%3Cstop offset='50%25' stop-color='%23140d05'/%3E%3Cstop offset='100%25' stop-color='%23040302'/%3E%3C/radialGradient%3E%3CradialGradient id='candleGlow' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0' stop-color='%23f5c842' stop-opacity='0.5'/%3E%3Cstop offset='60%25' stop-color='%23d4802a' stop-opacity='0.15'/%3E%3Cstop offset='100%25' stop-color='%23b85a10' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='1800' height='1000' fill='url(%23rh)'/%3E%3Cellipse cx='900' cy='500' rx='650' ry='380' fill='url(%23candleGlow)'/%3E%3Cellipse cx='900' cy='520' rx='220' ry='130' fill='%23b8965a' fill-opacity='0.08'/%3E%3Ccircle cx='900' cy='490' r='3' fill='%23f5d060' fill-opacity='0.9'/%3E%3Cellipse cx='900' cy='495' rx='18' ry='8' fill='%23e8a030' fill-opacity='0.3'/%3E%3Crect x='895' y='498' width='10' height='55' rx='5' fill='%23c8b898' fill-opacity='0.6'/%3E%3Ccircle cx='680' cy='560' r='80' fill='none' stroke='%23b8965a' stroke-width='1' stroke-opacity='0.25'/%3E%3Crect x='665' y='608' width='30' height='70' rx='4' fill='%23c8b090' fill-opacity='0.35'/%3E%3Ccircle cx='1140' cy='540' r='80' fill='none' stroke='%23b8965a' stroke-width='1' stroke-opacity='0.25'/%3E%3Crect x='1125' y='588' width='30' height='70' rx='4' fill='%23c8b090' fill-opacity='0.35'/%3E%3Crect x='300' y='490' width='1200' height='1' fill='%23b8965a' fill-opacity='0.12'/%3E%3C/svg%3E')) center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
  }
  #hero:hover .hero-bg { transform: scale(1.1); }
  .hero-content {
    text-align: center; position: relative; z-index: 2;
    animation: fadeUp 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .hero-pre {
    font-size: 0.6rem; letter-spacing: 0.5em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 2rem; display: block;
  }
  .hero-title {
    font-family: var(--ff-serif);
    font-size: clamp(5rem, 14vw, 13rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 2.5rem;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    font-size: 0.65rem; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--text-light);
    margin-bottom: 4rem;
  }
  .hero-cta-group { display: flex; gap: 1.5rem; justify-content: center; align-items: center; }
  .btn-primary {
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    background: var(--gold); color: var(--black);
    padding: 1.1rem 3rem; border: none; cursor: none;
    text-decoration: none; transition: var(--transition);
    font-family: var(--ff-sans); font-weight: 500;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 1.1rem 3rem; text-decoration: none; transition: var(--transition);
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .scroll-indicator {
    position: absolute; bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 0.75rem; animation: pulse 2s infinite;
  }
  .scroll-indicator span { font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }
  .scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); }

  /* DIVIDER DORADO */
  .gold-divider {
    display: flex; align-items: center; gap: 1.5rem; margin: 1.5rem auto;
    max-width: 200px;
  }
  .gold-divider::before, .gold-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--gold);
  }
  .gold-divider-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

  /* SECCIÓN BASE */
  section { padding: 8rem 5%; }
  .section-label {
    font-size: 0.55rem; letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; display: block;
  }
  .section-title {
    font-family: var(--ff-serif); font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300; line-height: 1.1; color: var(--white);
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .section-body {
    font-size: 0.8rem; font-weight: 300; color: var(--text-muted);
    line-height: 2; max-width: 480px;
    letter-spacing: 0.03em;
  }

  /* SOBRE NOSOTROS */
  #about { background: var(--black); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8rem; align-items: center; max-width: 1400px; margin: 0 auto;
  }
  .about-images {
    position: relative; height: 600px;
  }
  .about-img-main {
    width: 75%; height: 100%;
    object-fit: cover; filter: brightness(0.9);
    position: absolute; right: 0;
  }
  .about-img-accent {
    width: 50%; height: 45%;
    object-fit: cover;
    position: absolute; left: 0; bottom: 5%;
    border: 6px solid var(--black);
    filter: brightness(0.9);
  }
  .about-years {
    position: absolute; top: 2rem; left: 2rem;
    font-family: var(--ff-serif); font-size: 6rem;
    font-weight: 300; color: var(--gold); line-height: 1;
    opacity: 0.15;
  }
  .about-text { padding-right: 2rem; }
  .about-text .section-body { margin: 2rem 0 3rem; }
  .stats-row { display: flex; gap: 3rem; margin-top: 3rem; }
  .stat h3 { font-family: var(--ff-serif); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; }
  .stat p { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.4rem; }

  /* FILOSOFÍA */
  #philosophy {
    background: var(--dark2);
    text-align: center;
    position: relative; overflow: hidden;
  }
  #philosophy::before {
    content: 'ŌKTO';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-serif); font-size: 25vw;
    font-weight: 300; color: rgba(184,150,90,0.03);
    pointer-events: none; white-space: nowrap;
  }
  .philosophy-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
  .philosophy-quote {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300; font-style: italic;
    line-height: 1.5; color: var(--white);
    margin: 2rem 0;
  }
  .philosophy-author { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
  .pillars {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 4rem; margin-top: 7rem;
  }
  .pillar { text-align: center; }
  .pillar-icon {
    width: 60px; height: 60px; margin: 0 auto 1.5rem;
    border: 1px solid rgba(184,150,90,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-serif); font-size: 1.5rem;
    color: var(--gold); font-style: italic;
  }
  .pillar h4 {
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .pillar p { font-size: 0.75rem; color: var(--text-muted); line-height: 2; font-weight: 300; }

  /* MENÚ */
  #menu { background: var(--black); }
  .menu-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 5rem; max-width: 1400px; margin-inline: auto; margin-bottom: 4rem;
  }
  .menu-tabs {
    display: flex; gap: 0;
    border: 1px solid rgba(184,150,90,0.2);
  }
  .menu-tab {
    font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase;
    padding: 0.8rem 1.8rem; cursor: none;
    border: none; background: transparent;
    color: var(--text-muted);
    font-family: var(--ff-sans);
    transition: var(--transition);
    border-right: 1px solid rgba(184,150,90,0.2);
  }
  .menu-tab:last-child { border-right: none; }
  .menu-tab.active { background: var(--gold); color: var(--black); }
  .menu-tab:hover:not(.active) { color: var(--gold); }
  .menu-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; max-width: 1400px; margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.05);
  }
  .menu-item {
    padding: 2.5rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative; overflow: hidden;
  }
  .menu-item:nth-child(even) { border-right: none; }
  .menu-item::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(184,150,90,0.03);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .menu-item:hover::before { transform: scaleX(1); }
  .menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; }
  .menu-item-name {
    font-family: var(--ff-serif); font-size: 1.3rem;
    font-weight: 300; color: var(--white);
  }
  .menu-item-price {
    font-family: var(--ff-serif); font-size: 1.2rem;
    color: var(--gold); font-weight: 300;
  }
  .menu-item-desc {
    font-size: 0.7rem; color: var(--text-muted);
    font-weight: 300; line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .menu-item-tags { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
  .tag {
    font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase;
    border: 1px solid rgba(184,150,90,0.3); color: var(--gold);
    padding: 0.3rem 0.8rem;
  }
  .menu-panel { display: none; }
  .menu-panel.active { display: contents; }
  .menu-note {
    text-align: center; padding: 3rem;
    font-size: 0.65rem; color: var(--text-muted);
    letter-spacing: 0.1em; border-top: 1px solid rgba(255,255,255,0.05);
    max-width: 1400px; margin: 0 auto;
  }

  /* GALERÍA */
  #gallery { background: var(--dark2); padding: 8rem 5%; }
  .gallery-header { text-align: center; margin-bottom: 5rem; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 240px);
    gap: 8px; max-width: 1400px; margin: 0 auto;
  }
  .gallery-item { overflow: hidden; position: relative; }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.8) saturate(0.9);
    transition: transform 0.7s ease, filter 0.5s ease;
  }
  .gallery-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.1); }
  .gallery-item:nth-child(1) { grid-column: 1/6; grid-row: 1/3; }
  .gallery-item:nth-child(2) { grid-column: 6/9; grid-row: 1/2; }
  .gallery-item:nth-child(3) { grid-column: 9/13; grid-row: 1/3; }
  .gallery-item:nth-child(4) { grid-column: 6/9; grid-row: 2/3; }
  .gallery-item:nth-child(5) { grid-column: 1/5; grid-row: 3/4; }
  .gallery-item:nth-child(6) { grid-column: 5/9; grid-row: 3/4; }
  .gallery-item:nth-child(7) { grid-column: 9/13; grid-row: 3/4; }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(10,10,10,0);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.4s;
  }
  .gallery-item:hover .gallery-overlay { background: rgba(10,10,10,0.4); }
  .gallery-overlay span {
    font-size: 0.55rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: white; opacity: 0; transition: opacity 0.4s;
  }
  .gallery-item:hover .gallery-overlay span { opacity: 1; }

  /* EXPERIENCIAS */
  #experiences { background: var(--black); }
  .exp-header { text-align: center; margin-bottom: 6rem; }
  .exp-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; max-width: 1400px; margin: 0 auto;
  }
  .exp-card {
    position: relative; overflow: hidden;
    height: 520px; cursor: none;
  }
  .exp-card img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.5);
    transition: transform 0.8s ease, filter 0.5s ease;
  }
  .exp-card:hover img { transform: scale(1.06); filter: brightness(0.35); }
  .exp-card-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 3rem;
  }
  .exp-num {
    font-family: var(--ff-serif); font-size: 5rem;
    font-weight: 300; color: rgba(184,150,90,0.2);
    line-height: 1; margin-bottom: auto;
    transition: color 0.4s;
  }
  .exp-card:hover .exp-num { color: rgba(184,150,90,0.4); }
  .exp-tag { font-size: 0.5rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
  .exp-title { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 300; color: white; margin-bottom: 1rem; }
  .exp-desc {
    font-size: 0.7rem; color: rgba(255,255,255,0.6);
    line-height: 1.8; font-weight: 300;
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
  }
  .exp-card:hover .exp-desc { max-height: 100px; opacity: 1; }
  .exp-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-top: 1.5rem;
    text-decoration: none;
    transform: translateX(-10px); opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .exp-cta::after { content: '→'; }
  .exp-card:hover .exp-cta { transform: translateX(0); opacity: 1; }

  /* CHEF */
  #chef { background: var(--dark2); }
  .chef-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8rem; align-items: center; max-width: 1400px; margin: 0 auto;
  }
  .chef-image-wrap {
    position: relative;
  }
  .chef-image-wrap img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    filter: brightness(0.9) saturate(0.9);
  }
  .chef-award {
    position: absolute; bottom: -2rem; right: -2rem;
    width: 120px; height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--black); text-align: center;
  }
  .chef-award strong { font-family: var(--ff-serif); font-size: 2rem; font-weight: 300; line-height: 1; }
  .chef-award span { font-size: 0.45rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.25rem; }
  .chef-text .section-body { margin: 2rem 0 3rem; }
  .chef-signature {
    font-family: var(--ff-serif); font-size: 2.5rem;
    font-style: italic; color: var(--gold-light);
    margin-top: 2rem; font-weight: 300;
  }

  /* VINOS */
  #wine { background: var(--black); text-align: center; }
  .wine-inner { max-width: 800px; margin: 0 auto; }
  .wine-inner .section-body { margin: 2rem auto 4rem; }
  .wine-regions {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; margin: 4rem 0;
    border: 1px solid rgba(255,255,255,0.05);
  }
  .wine-region {
    padding: 2.5rem 1rem; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
  }
  .wine-region:last-child { border-right: none; }
  .wine-region:hover { background: rgba(184,150,90,0.05); }
  .wine-region h4 {
    font-family: var(--ff-serif); font-size: 1.2rem;
    font-weight: 300; color: var(--white); margin-bottom: 0.5rem;
  }
  .wine-region p { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.1em; }

  /* RESERVAS */
  #reservations { background: var(--dark2); }
  .reservations-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; max-width: 1200px; margin: 0 auto; align-items: start;
  }
  .res-info .section-body { margin: 2rem 0 3rem; }
  .res-details { display: flex; flex-direction: column; gap: 2rem; }
  .res-detail-item { display: flex; gap: 1.5rem; align-items: flex-start; }
  .res-detail-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    border: 1px solid rgba(184,150,90,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: var(--ff-serif); font-size: 1rem;
  }
  .res-detail-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .res-detail-item h4 { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
  .res-detail-item p { font-size: 0.75rem; color: var(--text-muted); font-weight: 300; }

  /* FORMULARIO */
  .res-form { display: flex; flex-direction: column; gap: 1.5rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-group label {
    font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-muted);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(184,150,90,0.3);
    color: var(--white);
    padding: 1rem 0;
    font-family: var(--ff-sans);
    font-size: 0.8rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-bottom-color: var(--gold);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--text-muted); font-weight: 300; }
  .form-group select option { background: var(--dark2); }
  .form-group textarea { height: 100px; resize: none; line-height: 1.7; }
  .form-submit {
    width: 100%; background: var(--gold); color: var(--black);
    border: none; padding: 1.2rem;
    font-family: var(--ff-sans);
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    font-weight: 500; cursor: none;
    transition: var(--transition);
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
  .form-note { font-size: 0.6rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; }

  /* NEWSLETTER */
  #newsletter {
    background: var(--gold);
    padding: 6rem 5%;
    text-align: center;
  }
  #newsletter .section-label { color: var(--black); opacity: 0.5; }
  #newsletter .section-title { color: var(--black); }
  #newsletter .section-title em { color: rgba(10,10,10,0.7); }
  .newsletter-sub { font-size: 0.75rem; color: rgba(10,10,10,0.7); margin: 1.5rem auto 3rem; max-width: 500px; }
  .newsletter-form { display: flex; gap: 0; max-width: 500px; margin: 0 auto; }
  .newsletter-input {
    flex: 1; background: rgba(10,10,10,0.1);
    border: 1px solid rgba(10,10,10,0.2);
    border-right: none; padding: 1rem 1.5rem;
    font-family: var(--ff-sans); font-size: 0.8rem;
    color: var(--black); outline: none;
    border-radius: 0;
  }
  .newsletter-input::placeholder { color: rgba(10,10,10,0.5); }
  .newsletter-btn {
    background: var(--black); color: var(--gold);
    border: 1px solid var(--black); padding: 1rem 2rem;
    font-family: var(--ff-sans); font-size: 0.55rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    cursor: none; transition: var(--transition);
    border-radius: 0;
  }
  .newsletter-btn:hover { background: var(--dark3); }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(184,150,90,0.1);
    padding: 6rem 5% 3rem;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem; margin-bottom: 5rem;
  }
  .footer-brand .nav-logo { display: block; font-size: 2.5rem; margin-bottom: 1.5rem; }
  .footer-brand p { font-size: 0.72rem; color: var(--text-muted); line-height: 2; max-width: 280px; font-weight: 300; }
  .footer-socials { display: flex; gap: 1rem; margin-top: 2rem; }
  .social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    text-decoration: none; transition: var(--transition);
    font-size: 0.7rem;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col h5 {
    font-size: 0.55rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .footer-links a {
    font-size: 0.75rem; color: var(--text-muted);
    text-decoration: none; transition: color 0.3s; font-weight: 300;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.6rem; color: var(--text-muted);
    letter-spacing: 0.05em;
  }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* TOAST NOTIFICACIÓN */
  .toast {
    position: fixed; bottom: 3rem; right: 5%;
    background: var(--gold); color: var(--black);
    padding: 1rem 2rem; z-index: 9000;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    transform: translateY(200%); transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
  }
  .toast.show { transform: translateY(0); }

  /* ANIMACIONES */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* MOBILE MENU */
  .mobile-nav {
    position: fixed; inset: 0; z-index: 998;
    background: rgba(10,10,10,0.97);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2.5rem;
    transform: translateX(-100%); transition: transform 0.5s ease;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    font-family: var(--ff-serif); font-size: 2.5rem;
    font-weight: 300; color: var(--white);
    text-decoration: none; transition: color 0.3s;
  }
  .mobile-nav a:hover { color: var(--gold); }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .about-grid, .chef-grid, .reservations-grid { grid-template-columns: 1fr; gap: 4rem; }
    .exp-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .pillars { grid-template-columns: 1fr; gap: 3rem; }
    .wine-regions { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
    }
    .gallery-item { grid-column: auto !important; grid-row: auto !important; height: 250px; }
  }
  @media (max-width: 768px) {
    .nav-links, .nav-reserve { display: none; }
    .nav-hamburger { display: flex; }
    .hero-title { font-size: clamp(4rem, 18vw, 8rem); }
    .hero-cta-group { flex-direction: column; }
    .menu-header { flex-direction: column; gap: 2rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-item { border-right: none !important; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    section { padding: 5rem 5%; }
    .stats-row { gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { border-right: 1px solid rgba(10,10,10,0.2); }
    .exp-card { height: 400px; }
  }

/* LINKS */
a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   NAVBAR
   ========================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

/* =========================
   HERO
   ========================= */

#hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(50px, 8vw, 120px);
  font-weight: 300;
}

.hero-content p {
  margin-top: 20px;
  color: var(--text);
  letter-spacing: 3px;
  font-size: 12px;
}

/* =========================
   SECTIONS
   ========================= */

section {
  padding: 100px 5%;
}

/* TITLES */
.section-title {
  font-family: var(--serif);
  font-size: 48px;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text);
  max-width: 600px;
  line-height: 1.8;
}

/* =========================
   GALLERY
   ========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* =========================
   FOOTER
   ========================= */

footer {
  text-align: center;
  padding: 60px 5%;
  color: var(--text);
  font-size: 12px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 50px;
  }
}