/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }


/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --black: #0a0805;
  --charcoal: #1a1612;
  --dark: #2a2118;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5efe6;
  --white: #fdf8f2;
  --text-muted: #9a8d7a;
}


/* ── BASE ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}


/* ── CUSTOM CURSOR (shared across all pages) ────────────────── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.18);
  filter: blur(10px);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.75;
  border-radius: 0;
}


/* ── NAV (shared) ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(10,8,5,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
nav.scrolled {
  background: rgba(10,8,5,0.95);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--gold);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}
.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,
.nav-links a.active { opacity: 1; color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-reserve {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-reserve:hover { background: var(--gold); color: var(--black); }


/* ── FOOTER (shared) ────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--gold);
}
.footer-links { display: flex; gap: 36px; }
.footer-links a {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--text-muted); opacity: 0.5; }


/* ── REVEAL ANIMATION (shared) ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ── SHARED BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }

.btn-gold {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 16px 48px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }


/* ── SHARED ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0;transform:translateY(8px)}  to{opacity:1;transform:translateY(0)} }
@keyframes lineFade { from{opacity:0.3} to{opacity:0.8} }
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }


/* ── SECTION SHARED COMPONENTS ──────────────────────────────── */
.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-header { text-align: center; margin-bottom: 70px; }

.ornament {
  text-align: center;
  margin: 20px 0;
  color: var(--gold);
  font-size: 20px;
  opacity: 0.6;
}



/* ================================================================
   INDEX (HOME PAGE)
================================================================ */


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --black: #0a0805;
      --charcoal: #1a1612;
      --dark: #2a2118;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f5efe6;
      --white: #fdf8f2;
      --text-muted: #9a8d7a;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* Custom Cursor */
    .cursor { position: fixed; width: 12px; height: 12px; background: var(--gold); border-radius: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; }
    .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.18);
    filter: blur(10px);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.75;
    border-radius: 0;
  }


    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 28px 60px;
      background: rgba(10,8,5,0.95);
      backdrop-filter: blur(12px);
      min-height: 80px;
    }
    nav.scrolled {
      background: rgba(10,8,5,0.95);
      backdrop-filter: blur(12px);
      padding: 18px 60px;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .nav-logo {
      font-family: 'Cinzel', serif;
      font-size: 22px;
      letter-spacing: 4px;
      color: var(--gold);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 48px;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      opacity: 0.75;
      transition: opacity 0.3s, color 0.3s;
      position: relative;
    }
    .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 { opacity: 1; color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-reserve {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 10px 24px;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }
    .nav-reserve:hover { background: var(--gold); color: var(--black); }

    /* HERO */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: 90px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.04) 0%, transparent 50%),
        linear-gradient(160deg, #0a0805 0%, #1a1208 40%, #0a0805 100%);
    }
    .hero-grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.4;
    }
    .hero-line-left, .hero-line-right {
      position: absolute;
      top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent);
      animation: lineFade 3s ease-in-out infinite alternate;
    }
    .hero-line-left { left: 80px; }
    .hero-line-right { right: 80px; animation-delay: 1.5s; }
    @keyframes lineFade { from { opacity: 0.3; } to { opacity: 0.8; } }

    .hero-content {
      position: relative;
      text-align: center;
      z-index: 2;
    }
    .hero-eyebrow {
      font-family: 'Lato', sans-serif;
      font-size: 10px;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      animation: fadeUp 1s ease 0.3s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(72px, 10vw, 130px);
      font-weight: 300;
      line-height: 0.9;
      letter-spacing: -2px;
      margin: 8px 0;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
    }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      color: var(--text-muted);
      letter-spacing: 1px;
      margin: 10px 0 25px;
    }
    .hero-cta {
      display: inline-flex;
      gap: 24px;
      opacity: 0;
      animation: fadeUp 1s ease 1.2s forwards;
    }
    .btn-primary {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--black);
      padding: 16px 40px;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-ghost {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--gold);
      padding: 16px 40px;
      text-decoration: none;
      transition: border-color 0.3s, background 0.3s;
    }
    .btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeUp 1s ease 1.8s forwards;
    }
    .hero-scroll span {
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
    @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

    /* DIVIDER */
    .ornament {
      text-align: center;
      margin: 20px 0;
      color: var(--gold);
      font-size: 20px;
      opacity: 0.6;
    }

    /* ABOUT SECTION */
    .section-about {
      padding: 120px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }
    .about-label {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .about-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(38px, 4vw, 58px);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 28px;
    }
    .about-heading em { font-style: italic; color: var(--gold-light); }
    .about-text {
      font-size: 15px;
      line-height: 1.9;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .about-stats {
      display: flex;
      gap: 48px;
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid rgba(201,168,76,0.15);
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
    .about-img-wrap {
      position: relative;
    }
    .about-img-box {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }
    .about-img-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
    }
    .about-img-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      color: rgba(201,168,76,0.08);
    }
    .about-img-accent {
      position: absolute;
      top: -20px; right: -20px;
      width: 60%;
      height: 40%;
      border: 1px solid rgba(201,168,76,0.2);
      pointer-events: none;
    }
    .about-img-accent2 {
      position: absolute;
      bottom: -20px; left: -20px;
      width: 40%;
      height: 30%;
      border: 1px solid rgba(201,168,76,0.15);
    }

    /* FEATURED DISHES */
    .section-dishes {
      padding: 100px 60px;
      background: var(--charcoal);
      position: relative;
    }
    .section-dishes::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .section-header {
      text-align: center;
      margin-bottom: 70px;
    }
    .section-label {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(38px, 4vw, 58px);
      font-weight: 300;
    }
    .section-title em { font-style: italic; color: var(--gold-light); }

    .dishes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .dish-card {
      position: relative;
      aspect-ratio: 3/4;
      background: var(--dark);
      overflow: hidden;
      cursor: pointer;
    }
    .dish-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, var(--dark), #0f0b08);
      transition: transform 0.6s ease;
    }
    .dish-card:hover .dish-bg { transform: scale(1.05); }
    .dish-emoji {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -60%);
      font-size: 80px;
      opacity: 0.15;
      transition: opacity 0.4s, transform 0.4s;
    }
    .dish-card:hover .dish-emoji { opacity: 0.25; transform: translate(-50%, -62%) scale(1.1); }
    .dish-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 36px 28px;
      background: linear-gradient(to top, rgba(10,8,5,0.95) 0%, transparent 100%);
      transform: translateY(40px);
      transition: transform 0.4s ease;
    }
    .dish-card:hover .dish-overlay { transform: translateY(0); }
    .dish-category { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
    .dish-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; margin-bottom: 8px; }
    .dish-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; opacity: 0; transition: opacity 0.3s 0.1s; }
    .dish-card:hover .dish-desc { opacity: 1; }
    .dish-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--gold); margin-top: 12px; }
    .dish-border {
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(201,168,76,0.08);
      pointer-events: none;
      transition: border-color 0.4s;
    }
    .dish-card:hover .dish-border { border-color: rgba(201,168,76,0.25); }

    /* TESTIMONIAL */
    .section-quote {
      padding: 120px 60px;
      text-align: center;
      position: relative;
    }
    .quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 120px;
      color: var(--gold);
      opacity: 0.12;
      line-height: 0;
      display: block;
      margin-bottom: 30px;
    }
    .quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 3vw, 38px);
      font-style: italic;
      font-weight: 300;
      max-width: 800px;
      margin: 0 auto 32px;
      line-height: 1.5;
    }
    .quote-author {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* HOURS BAND */
    .hours-band {
      background: var(--dark);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      padding: 60px;
      display: flex;
      justify-content: center;
      gap: 100px;
    }
    .hours-item { text-align: center; }
    .hours-day { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .hours-time { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; }

    /* FOOTER */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(201,168,76,0.1);
      padding: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-logo {
      font-family: 'Cinzel', serif;
      font-size: 20px;
      letter-spacing: 4px;
      color: var(--gold);
    }
    .footer-links { display: flex; gap: 36px; }
    .footer-links a {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 11px; color: var(--text-muted); opacity: 0.5; }

    /* REVEAL ANIMATIONS */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }


/* ================================================================
   ABOUT PAGE
================================================================ */


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --black: #0a0805;
      --charcoal: #1a1612;
      --dark: #2a2118;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f5efe6;
      --text-muted: #9a8d7a;
    }
    html { scroll-behavior: smooth; }
    body { background: var(--black); color: var(--cream); font-family: 'Lato', sans-serif; font-weight: 300; overflow-x: hidden; }

    .cursor { position: fixed; width: 12px; height: 12px; background: var(--gold); border-radius: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; }
    .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.18);
    filter: blur(10px);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.75;
    border-radius: 0;
  }

    nav { position: fixed; top:0; left:0; right:0; z-index:100; display:flex; justify-content:space-between; align-items:center; padding:18px 60px; background:rgba(10,8,5,0.95); backdrop-filter:blur(12px); border-bottom:1px solid rgba(201,168,76,0.15); }
    .nav-logo { font-family:'Cinzel',serif; font-size:22px; letter-spacing:4px; color:var(--gold); text-decoration:none; }
    .nav-links { display:flex; gap:48px; list-style:none; }
    .nav-links a { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--cream); text-decoration:none; opacity:.75; transition:opacity .3s, color .3s; position:relative; }
    .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .3s; }
    .nav-links a:hover, .nav-links a.active { opacity:1; color:var(--gold); }
    .nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
    .nav-reserve { font-family:'Cinzel',serif; font-size:11px; letter-spacing:2px; color:var(--gold); border:1px solid var(--gold); padding:10px 24px; text-decoration:none; transition:background .3s, color .3s; }
    .nav-reserve:hover { background:var(--gold); color:var(--black); }

    /* HERO */
    .about-hero {
      padding: 160px 60px 100px;
      position: relative;
      overflow: hidden;
    }
    .about-hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
    }
    .hero-line-v {
      position: absolute;
      left: 60px; top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent);
    }
    .about-hero-inner { max-width: 800px; position: relative; }
    .about-hero-label { font-size: 10px; letter-spacing: 6px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
    .about-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 7vw, 90px); font-weight: 300; line-height: 1; margin-bottom: 40px; }
    .about-hero-title em { font-style: italic; color: var(--gold-light); }
    .about-hero-text { font-size: 18px; line-height: 1.9; color: var(--text-muted); max-width: 560px; }

    /* STORY SECTION */
    .section-story {
      padding: 100px 60px;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      max-width: 1300px;
      margin: 0 auto;
      align-items: start;
    }
    .story-sticky { position: sticky; top: 120px; }
    .story-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
    .story-heading { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; line-height: 1.1; }
    .story-heading em { font-style: italic; color: var(--gold-light); }
    .story-divider { width: 60px; height: 1px; background: rgba(201,168,76,0.4); margin: 32px 0; }
    .story-year { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: rgba(201,168,76,0.12); line-height: 1; }

    .story-blocks { display: flex; flex-direction: column; gap: 60px; }
    .story-block { border-left: 1px solid rgba(201,168,76,0.15); padding-left: 40px; position: relative; }
    .story-block::before { content: ''; position: absolute; left: -4px; top: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
    .block-year { font-family: 'Cormorant Garamond', serif; font-size: 14px; letter-spacing: 3px; color: var(--gold); margin-bottom: 12px; }
    .block-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin-bottom: 14px; }
    .block-text { font-size: 15px; color: var(--text-muted); line-height: 1.9; }

    /* TEAM */
    .section-team {
      padding: 100px 60px;
      background: var(--charcoal);
      position: relative;
    }
    .section-team::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(to right, transparent, var(--gold), transparent); }
    .team-header { text-align: center; margin-bottom: 70px; }
    .team-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .team-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 4vw, 58px); font-weight: 300; }
    .team-title em { font-style: italic; color: var(--gold-light); }

    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; }
    .team-card {
      position: relative;
      padding: 48px 36px;
      border: 1px solid rgba(201,168,76,0.1);
      background: var(--dark);
      transition: border-color .4s, transform .4s;
      text-align: center;
    }
    .team-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-6px); }
    .team-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      border: 1px solid rgba(201,168,76,0.2);
      margin: 0 auto 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--charcoal);
      position: relative;

    }
      .team-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

    .team-avatar::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.1);
    }
    .team-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin-bottom: 6px; }
    .team-role { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
    .team-awards { display: flex; justify-content: center; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
    .award-badge { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.15); color: var(--gold); padding: 4px 12px; }

    /* VALUES */
    .section-values {
      padding: 100px 60px;
      max-width: 1300px;
      margin: 0 auto;
    }
    .values-header { text-align: center; margin-bottom: 70px; }
    .values-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .values-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 4vw, 58px); font-weight: 300; }
    .values-title em { font-style: italic; color: var(--gold-light); }

    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
    .value-card {
      padding: 52px 36px;
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }
    .value-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .5s ease; }
    .value-card:hover { background: var(--dark); }
    .value-card:hover::before { transform: scaleX(1); }
    .value-icon { font-size: 32px; margin-bottom: 28px; }
    .value-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 16px; }
    .value-text { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

    /* PRESS */
    .section-press {
      padding: 80px 60px;
      background: var(--dark);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .press-header { text-align: center; margin-bottom: 60px; }
    .press-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); }
    .press-logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; }
    .press-item { text-align: center; opacity: 0.4; transition: opacity .3s; }
    .press-item:hover { opacity: 1; }
    .press-pub { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: var(--cream); }
    .press-stars { color: var(--gold); font-size: 14px; margin-top: 4px; }

    /* CTA BAND */
    .cta-band {
      padding: 100px 60px;
      text-align: center;
      position: relative;
    }
    .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 4vw, 58px); font-weight: 300; margin-bottom: 24px; }
    .cta-title em { font-style: italic; color: var(--gold-light); }
    .cta-text { font-size: 15px; color: var(--text-muted); max-width: 500px; margin: 0 auto 40px; line-height: 1.8; }
    .btn-gold { display: inline-block; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 16px 48px; text-decoration: none; transition: background .3s; }
    .btn-gold:hover { background: var(--gold-light); }

    footer { background: var(--black); border-top: 1px solid rgba(201,168,76,0.1); padding: 60px; display: flex; justify-content: space-between; align-items: center; }
    .footer-logo { font-family: 'Cinzel', serif; font-size: 20px; letter-spacing: 4px; color: var(--gold); }
    .footer-links { display: flex; gap: 36px; }
    .footer-links a { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color .3s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 11px; color: var(--text-muted); opacity: .5; }

    .reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }


/* ================================================================
   MENU PAGE
================================================================ */


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --black: #0a0805;
      --charcoal: #1a1612;
      --dark: #2a2118;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f5efe6;
      --text-muted: #9a8d7a;
    }
    html { scroll-behavior: smooth; }
    body { background: var(--black); color: var(--cream); font-family: 'Lato', sans-serif; font-weight: 300; overflow-x: hidden; cursor: none; }

    .cursor { position: fixed; width: 12px; height: 12px; background: var(--gold); border-radius: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; }
    .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.18);
    filter: blur(10px);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.75;
    border-radius: 0;
  }

    /* NAV */
    nav { position: fixed; top:0; left:0; right:0; z-index:100; display:flex; justify-content:space-between; align-items:center; padding:18px 60px; background:rgba(10,8,5,0.95); backdrop-filter:blur(12px); border-bottom:1px solid rgba(201,168,76,0.15); }
    .nav-logo { font-family:'Cinzel',serif; font-size:22px; letter-spacing:4px; color:var(--gold); text-decoration:none; }
    .nav-links { display:flex; gap:48px; list-style:none; }
    .nav-links a { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--cream); text-decoration:none; opacity:.75; transition:opacity .3s, color .3s; position:relative; }
    .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .3s; }
    .nav-links a:hover, .nav-links a.active { opacity:1; color:var(--gold); }
    .nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
    .nav-reserve { font-family:'Cinzel',serif; font-size:11px; letter-spacing:2px; color:var(--gold); border:1px solid var(--gold); padding:10px 24px; text-decoration:none; transition:background .3s, color .3s; }
    .nav-reserve:hover { background:var(--gold); color:var(--black); }

    /* HERO */
    .order-hero { padding: 140px 60px 60px; text-align: center; position: relative; }
    .order-hero::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:1px; height:100px; background:linear-gradient(to bottom, transparent, rgba(201,168,76,0.4)); }
    .o-label { font-size:10px; letter-spacing:6px; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
    .o-title { font-family:'Cormorant Garamond',serif; font-size:clamp(48px,6vw,80px); font-weight:300; line-height:1; }
    .o-title em { font-style:italic; color:var(--gold-light); }
    .o-sub { font-family:'Cormorant Garamond',serif; font-style:italic; color:var(--text-muted); font-size:17px; margin-top:16px; }

    /* LAYOUT */
    .order-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 2px;
      max-width: 1300px;
      margin: 40px auto 100px;
      padding: 0 60px;
      align-items: start;
    }

    /* MENU PANEL */
    .menu-panel { padding-right: 40px; }

    /* Category tabs */
    .cat-tabs { display:flex; gap:0; border-bottom:1px solid rgba(201,168,76,0.15); margin-bottom:48px; }
    .cat-btn { font-family:'Cinzel',serif; font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--text-muted); background:none; border:none; padding:14px 28px; cursor:pointer; position:relative; transition:color .3s; }
    .cat-btn::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .3s; }
    .cat-btn:hover, .cat-btn.active { color:var(--gold); }
    .cat-btn.active::after { transform:scaleX(1); }

    .cat-section { display:none; }
    .cat-section.active { display:block; animation: fadeIn .4s ease; }
    @keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

    .cat-heading { font-size:9px; letter-spacing:5px; text-transform:uppercase; color:var(--gold); margin-bottom:28px; display:flex; align-items:center; gap:16px; }
    .cat-heading::after { content:''; flex:1; height:1px; background:rgba(201,168,76,0.12); }

    /* Food items */
    .food-grid { display:flex; flex-direction:column; gap:2px; }
    .food-item {
      display: grid;
      grid-template-columns: 80px 1fr auto;
      gap: 20px;
      align-items: center;
      padding: 20px;
      background: var(--charcoal);
      border: 1px solid rgba(201,168,76,0.06);
      transition: border-color .3s, background .3s;
    }
    .food-item:hover { border-color:rgba(201,168,76,0.2); background:var(--dark); }
    .food-thumb {
      width: 80px; height: 80px;
      background: var(--dark);
      display: flex; align-items: center; justify-content: center;
      font-size: 32px;
      flex-shrink: 0;
      overflow: hidden;
    }
    .food-thumb img { width:100%; height:100%; object-fit:cover; }
    .food-info { flex:1; }
    .food-name { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:400; margin-bottom:5px; }
    .food-desc { font-size:12px; color:var(--text-muted); line-height:1.6; margin-bottom:8px; }
    .food-tags { display:flex; gap:6px; }
    .ftag { font-size:9px; letter-spacing:2px; text-transform:uppercase; background:rgba(201,168,76,0.08); color:var(--gold); padding:2px 8px; }
    .food-right { display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
    .food-price { font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--gold); white-space:nowrap; }
    .add-btn {
      font-family:'Cinzel',serif; font-size:10px; letter-spacing:2px; text-transform:uppercase;
      background:none; border:1px solid rgba(201,168,76,0.3); color:var(--gold);
      padding:8px 16px; cursor:pointer; transition:background .3s, border-color .3s;
      white-space: nowrap;
    }
    .add-btn:hover { background:rgba(201,168,76,0.1); border-color:var(--gold); }
    .add-btn.added { background:var(--gold); color:var(--black); border-color:var(--gold); }

    /* CART PANEL */
    .cart-panel {
      background: var(--charcoal);
      border: 1px solid rgba(201,168,76,0.12);
      position: sticky;
      top: 180px;
      align-self: start;
      margin-top: 20px;
    }
    .cart-header {
      padding: 28px 46px;
      border-bottom: 1px solid rgba(201,168,76,0.1);
      display: flex; justify-content: space-between; align-items: center;
    }
    .cart-title { font-family:'Cinzel',serif; font-size:13px; letter-spacing:3px; color:var(--gold); }
    .cart-count {
      width:24px; height:24px; border-radius:50%; background:var(--gold); color:var(--black);
      font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center;
    }

    .cart-empty {
      padding: 60px 32px;
      text-align: center;
    }
    .cart-empty-icon { font-size:36px; margin-bottom:16px; opacity:0.3; }
    .cart-empty-text { font-size:13px; color:var(--text-muted); line-height:1.7; }

    .cart-items { padding: 8px 0; max-height: 320px; overflow-y: auto; }
    .cart-items::-webkit-scrollbar { width:4px; }
    .cart-items::-webkit-scrollbar-track { background:transparent; }
    .cart-items::-webkit-scrollbar-thumb { background:rgba(201,168,76,0.2); }

    .cart-item {
      display: flex; justify-content: space-between; align-items: center;
      padding: 14px 32px;
      border-bottom: 1px solid rgba(201,168,76,0.06);
      gap: 12px;
    }
    .ci-info { flex:1; }
    .ci-name { font-size:14px; margin-bottom:3px; }
    .ci-price { font-family:'Cormorant Garamond',serif; font-size:16px; color:var(--gold); }
    .ci-controls { display:flex; align-items:center; gap:8px; }
    .ci-btn { width:24px; height:24px; background:rgba(201,168,76,0.1); border:1px solid rgba(201,168,76,0.2); color:var(--gold); font-size:14px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; line-height:1; }
    .ci-btn:hover { background:rgba(201,168,76,0.25); }
    .ci-qty { font-size:14px; min-width:20px; text-align:center; }

    .cart-footer { padding: 24px 32px; border-top: 1px solid rgba(201,168,76,0.1); }
    .cart-row { display:flex; justify-content:space-between; font-size:13px; color:var(--text-muted); margin-bottom:10px; }
    .cart-row.total { font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--cream); margin-top:16px; padding-top:16px; border-top:1px solid rgba(201,168,76,0.1); }
    .cart-row.total span:last-child { color:var(--gold); }

    .checkout-btn {
      width:100%; margin-top:20px;
      font-family:'Cinzel',serif; font-size:11px; letter-spacing:3px; text-transform:uppercase;
      background:var(--gold); color:var(--black); border:none; padding:16px;
      cursor:pointer; transition:background .3s; 
    }
    .checkout-btn:hover { background:var(--gold-light); }
    .checkout-btn:disabled { opacity:0.4; cursor:not-allowed; }

    /* CHECKOUT MODAL */
    .modal-overlay {
      position: fixed; inset:0; background:rgba(0,0,0,0.85);
      z-index: 500; display:none; align-items:center; justify-content:center;
      backdrop-filter: blur(4px);
    }
    .modal-overlay.open { display:flex; animation: fadeIn .3s ease; }
    .modal {
      background: var(--charcoal);
      border: 1px solid rgba(201,168,76,0.2);
      width: 100%; max-width: 560px;
      max-height: 90vh; overflow-y: auto;
      position: relative;
    }
    .modal::-webkit-scrollbar { width:4px; }
    .modal::-webkit-scrollbar-thumb { background:rgba(201,168,76,0.2); }
    .modal-header {
      padding: 32px 40px;
      border-bottom: 1px solid rgba(201,168,76,0.1);
      display: flex; justify-content:space-between; align-items:center;
    }
    .modal-title { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:300; }
    .modal-title em { font-style:italic; color:var(--gold-light); }
    .modal-close { background:none; border:none; color:var(--text-muted); font-size:24px; cursor:pointer; transition:color .3s; line-height:1; }
    .modal-close:hover { color:var(--gold); }

    /* Steps */
    .steps { display:flex; padding:24px 40px; border-bottom:1px solid rgba(201,168,76,0.08); gap:0; }
    .step { flex:1; text-align:center; position:relative; }
    .step::after { content:''; position:absolute; top:12px; left:50%; width:100%; height:1px; background:rgba(201,168,76,0.15); }
    .step:last-child::after { display:none; }
    .step-dot { width:24px; height:24px; border-radius:50%; border:1px solid rgba(201,168,76,0.3); margin:0 auto 8px; display:flex; align-items:center; justify-content:center; font-size:11px; color:var(--text-muted); background:var(--charcoal); position:relative; z-index:1; transition:background .3s, border-color .3s; }
    .step.active .step-dot { border-color:var(--gold); color:var(--gold); }
    .step.done .step-dot { background:var(--gold); border-color:var(--gold); color:var(--black); }
    .step-label { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:var(--text-muted); }
    .step.active .step-label { color:var(--gold); }

    .modal-body { padding: 32px 40px; }
    .modal-step { display:none; }
    .modal-step.active { display:block; animation: fadeIn .4s ease; }

    /* Form inside modal */
    .mform-group { margin-bottom:20px; }
    .mform-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
    .mform-group label { display:block; font-size:9px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
    .mform-group input, .mform-group select {
      width:100%; background:rgba(201,168,76,0.04); border:1px solid rgba(201,168,76,0.15);
      color:var(--cream); font-family:'Lato',sans-serif; font-size:14px; font-weight:300;
      padding:12px 16px; outline:none; transition:border-color .3s;
      appearance:none; -webkit-appearance:none;
    }
    .mform-group input:focus, .mform-group select:focus { border-color:var(--gold); }
    .mform-group input::placeholder { color:var(--text-muted); opacity:0.6; }
    .mform-group select option { background:var(--dark); }

    /* Card input */
    .card-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:16px; }
    .card-icons { display:flex; gap:8px; margin-bottom:20px; }
    .card-icon { padding:6px 12px; border:1px solid rgba(201,168,76,0.15); font-size:11px; letter-spacing:1px; color:var(--text-muted); }
    .card-icon { cursor: pointer; transition: border-color .25s, color .25s; }
    .card-icon.selected { border-color: var(--gold); color: var(--gold); }

    /* Order summary in modal */
    .modal-summary { margin-bottom:24px; }
    .ms-item { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(201,168,76,0.06); font-size:14px; }
    .ms-item:last-child { border:none; }
    .ms-item span:last-child { font-family:'Cormorant Garamond',serif; font-size:16px; color:var(--gold); }
    .ms-total { display:flex; justify-content:space-between; padding:16px 0; border-top:1px solid rgba(201,168,76,0.15); margin-top:8px; }
    .ms-total span:first-child { font-family:'Cinzel',serif; font-size:12px; letter-spacing:2px; }
    .ms-total span:last-child { font-family:'Cormorant Garamond',serif; font-size:24px; color:var(--gold); }

    .modal-btn {
      width:100%; font-family:'Cinzel',serif; font-size:11px; letter-spacing:3px; text-transform:uppercase;
      background:var(--gold); color:var(--black); border:none; padding:16px; cursor:pointer; transition:background .3s; margin-top:8px;
    }
    .modal-btn:hover { background:var(--gold-light); }
    .modal-btn-ghost {
      width:100%; font-family:'Cinzel',serif; font-size:11px; letter-spacing:3px; text-transform:uppercase;
      background:none; color:var(--text-muted); border:1px solid rgba(201,168,76,0.15); padding:14px; cursor:pointer; transition:color .3s, border-color .3s; margin-top:8px;
    }
    .modal-btn-ghost:hover { color:var(--gold); border-color:var(--gold); }

    /* Success screen */
    .order-success { text-align:center; padding:20px 0 10px; }
    .success-ring { width:80px; height:80px; border-radius:50%; border:1px solid var(--gold); margin:0 auto 28px; display:flex; align-items:center; justify-content:center; font-size:32px; animation: successPop .5s ease; }
    @keyframes successPop { from{transform:scale(0.5);opacity:0} to{transform:scale(1);opacity:1} }
    .success-h { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:300; margin-bottom:12px; }
    .success-h em { font-style:italic; color:var(--gold-light); }
    .success-p { font-size:14px; color:var(--text-muted); line-height:1.8; max-width:360px; margin:0 auto 24px; }
    .order-ref { font-family:'Cinzel',serif; font-size:11px; letter-spacing:3px; color:var(--gold); padding:12px 24px; border:1px solid rgba(201,168,76,0.2); display:inline-block; margin-bottom:28px; }

    /* Delivery toggle */
    .delivery-toggle { display:flex; gap:2px; margin-bottom:28px; }
    .dtoggle-btn { flex:1; padding:12px; font-family:'Cinzel',serif; font-size:10px; letter-spacing:2px; text-transform:uppercase; background:rgba(201,168,76,0.04); border:1px solid rgba(201,168,76,0.15); color:var(--text-muted); cursor:pointer; transition:all .3s; text-align:center; }
    .dtoggle-btn.active { background:rgba(201,168,76,0.12); border-color:var(--gold); color:var(--gold); }

    footer { background:var(--black); border-top:1px solid rgba(201,168,76,0.1); padding:60px; display:flex; justify-content:space-between; align-items:center; }
    .footer-logo { font-family:'Cinzel',serif; font-size:20px; letter-spacing:4px; color:var(--gold); }
    .footer-links { display:flex; gap:36px; }
    .footer-links a { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--text-muted); text-decoration:none; transition:color .3s; }
    .footer-links a:hover { color:var(--gold); }
    .footer-copy { font-size:11px; color:var(--text-muted); opacity:.5; }


/* ================================================================
   CONTACT PAGE
================================================================ */


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --black: #0a0805;
      --charcoal: #1a1612;
      --dark: #2a2118;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f5efe6;
      --text-muted: #9a8d7a;
    }
    html { scroll-behavior: smooth; }
    body { background: var(--black); color: var(--cream); font-family: 'Lato', sans-serif; font-weight: 300; overflow-x: hidden; }
    
    .cursor { position: fixed; width: 12px; height: 12px; background: var(--gold); border-radius: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; }
    .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.18);
    filter: blur(10px);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.75;
    border-radius: 0;
  }

    nav { position: fixed; top:0; left:0; right:0; z-index:100; display:flex; justify-content:space-between; align-items:center; padding:18px 60px; background:rgba(10,8,5,0.95); backdrop-filter:blur(12px); border-bottom:1px solid rgba(201,168,76,0.15); }
    .nav-logo { font-family:'Cinzel',serif; font-size:22px; letter-spacing:4px; color:var(--gold); text-decoration:none; }
    .nav-links { display:flex; gap:48px; list-style:none; }
    .nav-links a { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--cream); text-decoration:none; opacity:.75; transition:opacity .3s, color .3s; position:relative; }
    .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .3s; }
    .nav-links a:hover, .nav-links a.active { opacity:1; color:var(--gold); }
    .nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
    .nav-reserve { font-family:'Cinzel',serif; font-size:11px; letter-spacing:2px; color:var(--gold); border:1px solid var(--gold); padding:10px 24px; text-decoration:none; }

    /* HERO */
    .contact-hero {
      padding: 160px 60px 80px;
      position: relative;
      text-align: center;
    }
    .contact-hero-bg { position:absolute; inset:0; background:radial-gradient(ellipse at 50% 70%, rgba(201,168,76,0.05) 0%, transparent 60%); }
    .c-label { font-size:10px; letter-spacing:6px; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
    .c-title { font-family:'Cormorant Garamond',serif; font-size:clamp(52px,7vw,90px); font-weight:300; line-height:1; }
    .c-title em { font-style:italic; color:var(--gold-light); }
    .c-sub { font-family:'Cormorant Garamond',serif; font-style:italic; color:var(--text-muted); font-size:18px; margin-top:20px; }

    /* MAIN GRID */
    .contact-main {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 2px;
      max-width: 1200px;
      margin: 60px auto 100px;
      padding: 0 60px;
    }

    /* INFO PANEL */
    .info-panel {
      background: var(--charcoal);
      padding: 60px 50px;
      position: relative;
    }
    .info-panel::before { content:'✦'; position:absolute; top:24px; right:24px; color:var(--gold); opacity:0.3; font-size:14px; }
    .info-section { margin-bottom: 52px; }
    .info-section:last-child { margin-bottom: 0; }
    .info-label { font-size:9px; letter-spacing:5px; text-transform:uppercase; color:var(--gold); margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid rgba(201,168,76,0.15); }
    .info-heading { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:300; margin-bottom:16px; }
    .info-text { font-size:14px; color:var(--text-muted); line-height:1.9; }
    .info-link { color:var(--gold); text-decoration:none; transition:color .3s; }
    .info-link:hover { color:var(--gold-light); }

    .hours-list { list-style:none; margin-top:8px; }
    .hours-list li { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(201,168,76,0.06); font-size:14px; }
    .hours-list .day { color:var(--text-muted); }
    .hours-list .time { color:var(--cream); font-family:'Cormorant Garamond',serif; font-size:16px; }
    .hours-list .closed { color:rgba(154,141,122,0.4); font-style:italic; }

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* icon base (FORCES perfect square) */
.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  aspect-ratio: 1 / 1;
  transition: fill 0.3s ease;
}

/* Instagram */
.social-link.instagram svg {
  fill: #FF0069;
}

/* Facebook */
.social-link.facebook svg {
  fill: #0866FF;
}

/* X (FIXED) */
.social-link.x svg {
  fill: white;
}

.social-link.x svg path {
  transform: scale(0.8);
  transform-origin: center;
}

/* hover animation */
.social-link:hover {
  transform: translateY(-4px) scale(1.05);
}

/* icon turns white on hover */
.social-link:hover svg {
  fill: white;
}

/* Instagram hover */
.social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #F58529,
    #DD2A7B,
    #8134AF,
    #515BD4
  );
}

/* Facebook hover */
.social-link.facebook:hover {
  background: #0866FF;
}

/* X hover */
.social-link.x:hover {
  background: black;
}
    /* FORM PANEL */
    .form-panel {
      background: var(--dark);
      padding: 60px 50px;
    }
    .form-title { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:300; margin-bottom:8px; }
    .form-title em { font-style:italic; color:var(--gold-light); }
    .form-sub { font-size:13px; color:var(--text-muted); margin-bottom:40px; line-height:1.7; }

    .form-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
    .form-group { display:flex; flex-direction:column; gap:8px; }
    .form-group.full { grid-column:1/-1; }
    label { font-size:9px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); }
    input:not([type=checkbox]):focus, select:focus, textarea:focus {
      background: rgba(201,168,76,0.04);
      border: 1px solid rgba(201,168,76,0.15);
      color: var(--cream);
      font-family: 'Lato', sans-serif;
      font-size: 14px;
      font-weight: 300;
      padding: 14px 18px;
      outline: none;
      transition: border-color .3s, background .3s;
      width: 100%;
      appearance: none;
    }
    input:focus, select:focus, textarea:focus { border-color:var(--gold); background:rgba(201,168,76,0.06); }
    input::placeholder, textarea::placeholder { color:var(--text-muted); opacity:0.6; }
    select option { background:var(--dark); color:var(--cream); }
    textarea { resize: vertical; min-height: 120px; }

    .form-divider { grid-column:1/-1; height:1px; background:rgba(201,168,76,0.1); margin:10px 0; }

    .dietary-options { grid-column:1/-1; }
    .checkbox-group { display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
    .checkbox-label { display:flex; align-items:center; gap:8px; font-size:12px; color:var(--text-muted); cursor:pointer; }
    .checkbox-label input[type=checkbox] { width:16px; height:16px; padding:0; accent-color:var(--gold); cursor:pointer; appearance:auto; -webkit-appearance:auto; }    
    .form-note { grid-column:1/-1; font-size:12px; color:var(--text-muted); line-height:1.7; }
    .form-note strong { color:var(--gold); }

    .btn-submit {
      grid-column: 1/-1;
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 18px 48px;
      cursor: pointer;
      transition: background .3s, transform .2s;
      width: 100%;
      margin-top: 10px;
    }
    .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-submit:active { transform: translateY(0); }

    /* SUCCESS STATE */
    .success-msg {
      display: none;
      text-align: center;
      padding: 60px 20px;
      animation: fadeIn .6s ease;
    }
    .success-icon { font-size: 48px; margin-bottom: 24px; }
    .success-title { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:300; margin-bottom:12px; }
    .success-title em { font-style:italic; color:var(--gold-light); }
    .success-text { font-size:15px; color:var(--text-muted); line-height:1.8; max-width:400px; margin:0 auto; }
    @keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* SECTION */
.map-section {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 60px;
}

.map-label {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* MAP BOX */
.map-box {
  position: relative;
  width: 100%;
  height: 300px;
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
}

/* MAP (CLEAN COLORS + SLIGHT ENHANCE) */
.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(1) contrast(1.1) saturate(1.1);
  pointer-events: none;
  transition: transform 0.4s ease;
}

/* SUBTLE HOVER ZOOM */
.map-box:hover iframe {
  transform: scale(1.03);
}

/* CLICK OVERLAY (LIGHT, NOT DARK) */
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.3s ease;
}

/* ACTIVATE MAP */
.map-box.active iframe {
  pointer-events: auto;
}

.map-box.active .map-overlay {
  opacity: 0;
  pointer-events: none;
}

/* REMOVE FAKE PIN COMPLETELY */
.map-pin {
  display: none;
}

/* TEXT */
.map-address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--cream);
}

.map-area {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.map-info {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.8;
}
    /* PRIVATE DINING */
    .private-section {
      background: var(--charcoal);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      padding: 80px 60px;
      text-align: center;
    }
    .private-label { font-size:10px; letter-spacing:5px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
    .private-title { font-family:'Cormorant Garamond',serif; font-size:clamp(32px,4vw,52px); font-weight:300; margin-bottom:20px; }
    .private-title em { font-style:italic; color:var(--gold-light); }
    .private-text { font-size:15px; color:var(--text-muted); max-width:580px; margin:0 auto 40px; line-height:1.9; }
    .private-cards { display:flex; justify-content:center; gap:24px; flex-wrap:wrap; margin-bottom:40px; }
    .private-card { border:1px solid rgba(201,168,76,0.15); padding:28px 36px; min-width:200px; }
    .private-card-icon { font-size:24px; margin-bottom:12px; }
    .private-card-name { font-family:'Cormorant Garamond',serif; font-size:20px; margin-bottom:6px; }
    .private-card-cap { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--gold); }
    .btn-outline { display:inline-block; font-family:'Cinzel',serif; font-size:11px; letter-spacing:3px; text-transform:uppercase; border:1px solid var(--gold); color:var(--gold); padding:16px 40px; text-decoration:none; transition:background .3s, color .3s; }
    .btn-outline:hover { background:var(--gold); color:var(--black); }

    footer { background:var(--black); border-top:1px solid rgba(201,168,76,0.1); padding:60px; display:flex; justify-content:space-between; align-items:center; }
    .footer-logo { font-family:'Cinzel',serif; font-size:20px; letter-spacing:4px; color:var(--gold); }
    .footer-links { display:flex; gap:36px; }
    .footer-links a { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--text-muted); text-decoration:none; transition:color .3s; }
    .footer-links a:hover { color:var(--gold); }
    .footer-copy { font-size:11px; color:var(--text-muted); opacity:.5; }

    .reveal { opacity:0; transform:translateY(40px); transition:opacity .8s ease, transform .8s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }


/* ================================================================
   FAQ PAGE
================================================================ */


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --black: #0a0805;
      --charcoal: #1a1612;
      --dark: #2a2118;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f5efe6;
      --text-muted: #9a8d7a;
    }
    html { scroll-behavior: smooth; }
    body { background: var(--black); color: var(--cream); font-family: 'Lato', sans-serif; font-weight: 300; overflow-x: hidden;  }
        
    .cursor { position: fixed; width: 12px; height: 12px; background: var(--gold); border-radius: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; }
    .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.18);
    filter: blur(10px);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.75;
    border-radius: 0;
  }

    /* NAV */
    nav { position: fixed; top:0; left:0; right:0; z-index:100; display:flex; justify-content:space-between; align-items:center; padding:18px 60px; background:rgba(10,8,5,0.95); backdrop-filter:blur(12px); border-bottom:1px solid rgba(201,168,76,0.15); }
    .nav-logo { font-family:'Cinzel',serif; font-size:22px; letter-spacing:4px; color:var(--gold); text-decoration:none; }
    .nav-links { display:flex; gap:48px; list-style:none; }
    .nav-links a { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--cream); text-decoration:none; opacity:.75; transition:opacity .3s, color .3s; position:relative; }
    .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .3s; }
    .nav-links a:hover, .nav-links a.active { opacity:1; color:var(--gold); }
    .nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
    .nav-reserve { font-family:'Cinzel',serif; font-size:11px; letter-spacing:2px; color:var(--gold); border:1px solid var(--gold); padding:10px 24px; text-decoration:none; transition:background .3s, color .3s; }
    .nav-reserve:hover { background:var(--gold); color:var(--black); }

    /* HERO */
    .faq-hero {
      padding: 160px 60px 80px;
      position: relative;
      text-align: center;
      overflow: hidden;
    }
    .faq-hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.05) 0%, transparent 65%);
    }
    .hero-line-left, .hero-line-right {
      position: absolute;
      top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent);
    }
    .hero-line-left { left: 80px; }
    .hero-line-right { right: 80px; }
    .faq-hero-inner { position: relative; z-index: 1; }
    .faq-label { font-size: 10px; letter-spacing: 6px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; opacity: 0; animation: fadeUp .8s ease .2s forwards; }
    .faq-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 7vw, 90px); font-weight: 300; line-height: 1; opacity: 0; animation: fadeUp .8s ease .4s forwards; }
    .faq-title em { font-style: italic; color: var(--gold-light); }
    .faq-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-muted); font-size: 18px; margin-top: 20px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; opacity: 0; animation: fadeUp .8s ease .6s forwards; }
    @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

    /* CATEGORY FILTER */
    .faq-filter {
      display: flex;
      justify-content: center;
      gap: 0;
      max-width: 800px;
      margin: 0 auto 60px;
      padding: 0 60px;
      border-bottom: 1px solid rgba(201,168,76,0.12);
      opacity: 0;
      animation: fadeUp .8s ease .8s forwards;
    }
    .filter-btn {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-muted);
      background: none;
      border: none;
      padding: 14px 24px;
      cursor: pointer;
      position: relative;
      transition: color .3s;
    }
    .filter-btn::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform .3s;
    }
    .filter-btn:hover, .filter-btn.active { color: var(--gold); }
    .filter-btn.active::after { transform: scaleX(1); }

    /* FAQ MAIN LAYOUT */
    .faq-main {
      max-width: 900px;
      margin: 0 auto 100px;
      padding: 0 60px;
    }

    /* CATEGORY GROUP */
    .faq-group { margin-bottom: 64px; }
    .faq-group-label {
      font-size: 9px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .faq-group-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(201,168,76,0.12);
    }

    /* FAQ ITEM */
    .faq-item {
      border-bottom: 1px solid rgba(201,168,76,0.08);
      overflow: hidden;
    }
    .faq-item:first-of-type { border-top: 1px solid rgba(201,168,76,0.08); }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--cream);
      text-align: left;
      padding: 26px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      cursor: pointer;
      transition: color .3s;
    }
    .faq-question:hover { color: var(--gold-light); }
    .faq-question.open { color: var(--gold-light); }

    .faq-q-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.3;
    }

    .faq-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      border: 1px solid rgba(201,168,76,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 18px;
      font-weight: 300;
      transition: background .3s, border-color .3s, transform .4s;
      line-height: 1;
    }
    .faq-question.open .faq-icon {
      background: rgba(201,168,76,0.1);
      border-color: var(--gold);
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .5s cubic-bezier(0.4,0,0.2,1), padding .4s ease;
    }
    .faq-answer.open {
      max-height: 400px;
    }
    .faq-answer-inner {
      padding: 0 0 28px 0;
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.9;
      max-width: 720px;
    }
    .faq-answer-inner a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(201,168,76,0.3);
      transition: color .3s, border-color .3s;
    }
    .faq-answer-inner a:hover { color: var(--gold-light); border-color: var(--gold-light); }
    .faq-answer-inner strong { color: var(--cream); font-weight: 400; }

    /* HIDDEN STATE */
    .faq-item.hidden { display: none; }

    /* CTA BAND */
    .faq-cta {
      background: var(--charcoal);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      padding: 80px 60px;
      text-align: center;
    }
    .faq-cta-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .faq-cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 300; margin-bottom: 20px; }
    .faq-cta-title em { font-style: italic; color: var(--gold-light); }
    .faq-cta-text { font-size: 15px; color: var(--text-muted); max-width: 480px; margin: 0 auto 40px; line-height: 1.9; }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-gold { display: inline-block; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 16px 40px; text-decoration: none; transition: background .3s; }
    .btn-gold:hover { background: var(--gold-light); }
    .btn-outline { display: inline-block; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); padding: 16px 40px; text-decoration: none; transition: background .3s, border-color .3s; }
    .btn-outline:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

    /* FOOTER */
    footer { background: var(--black); border-top: 1px solid rgba(201,168,76,0.1); padding: 60px; display: flex; justify-content: space-between; align-items: center; }
    .footer-logo { font-family: 'Cinzel', serif; font-size: 20px; letter-spacing: 4px; color: var(--gold); }
    .footer-links { display: flex; gap: 36px; }
    .footer-links a { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color .3s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 11px; color: var(--text-muted); opacity: .5; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* SEARCH BAR */
    .faq-search-wrap {
      max-width: 560px;
      margin: 0 auto 48px;
      padding: 0 60px;
      position: relative;
      opacity: 0;
      animation: fadeUp .8s ease 1s forwards;
    }
    .faq-search {
      width: 100%;
      background: rgba(201,168,76,0.04);
      border: 1px solid rgba(201,168,76,0.2);
      color: var(--cream);
      font-family: 'Lato', sans-serif;
      font-size: 14px;
      font-weight: 300;
      padding: 14px 48px 14px 20px;
      outline: none;
      transition: border-color .3s;
    }
    .faq-search:focus { border-color: var(--gold); }
    .faq-search::placeholder { color: var(--text-muted); opacity: 0.6; }
    .search-icon {
      position: absolute;
      right: 76px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      opacity: 0.5;
      font-size: 16px;
      pointer-events: none;
    }

    /* NO RESULTS */
    .no-results {
      display: none;
      text-align: center;
      padding: 60px 0;
    }
    .no-results-icon { font-size: 36px; opacity: 0.3; margin-bottom: 16px; }
    .no-results-text { font-size: 15px; color: var(--text-muted); }


/* ================================================================
   REVIEWS PAGE
================================================================ */


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --black: #0a0805;
      --charcoal: #1a1612;
      --dark: #2a2118;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f5efe6;
      --white: #fdf8f2;
      --text-muted: #9a8d7a;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    .cursor { position: fixed; width: 12px; height: 12px; background: var(--gold); border-radius: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; }
    .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.18);
    filter: blur(10px);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.75;
    border-radius: 0;
  }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 28px 60px;
      transition: background 0.4s, padding 0.4s;
    }
    nav.scrolled {
      background: rgba(10,8,5,0.95);
      backdrop-filter: blur(12px);
      padding: 18px 60px;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .nav-logo {
      font-family: 'Cinzel', serif;
      font-size: 22px;
      letter-spacing: 4px;
      color: var(--gold);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 48px;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      opacity: 0.75;
      transition: opacity 0.3s, color 0.3s;
      position: relative;
    }
    .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 { opacity: 1; color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-reserve {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 10px 24px;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }
    .nav-reserve:hover { background: var(--gold); color: var(--black); }

    /* PAGE HEADER */
    .page-header {
      padding: 160px 60px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.07) 0%, transparent 60%),
        linear-gradient(160deg, #0a0805 0%, #1a1208 50%, #0a0805 100%);
    }
    .header-line-left, .header-line-right {
      position: absolute;
      top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent);
    }
    .header-line-left { left: 80px; }
    .header-line-right { right: 80px; }
    .page-header-inner { position: relative; z-index: 2; }
    .page-eyebrow {
      font-size: 10px;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.9s ease 0.3s forwards;
    }
    .page-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 8vw, 100px);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -1px;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.9s ease 0.5s forwards;
    }
    .page-title em { font-style: italic; color: var(--gold-light); }
    .page-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      color: var(--text-muted);
      opacity: 0;
      animation: fadeUp 0.9s ease 0.7s forwards;
    }

    @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

    /* DIVIDER */
    .gold-divider {
      width: 80px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 0 auto 0;
      opacity: 0;
      animation: fadeUp 0.9s ease 0.9s forwards;
    }

    /* MAIN LAYOUT */
    .main-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 60px 120px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    /* FORM PANEL */
    .form-panel {
      position: sticky;
      top: 120px;
      opacity: 0;
      animation: fadeUp 0.9s ease 1.1s forwards;
    }
    .panel-label {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .panel-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .panel-heading em { font-style: italic; color: var(--gold-light); }
    .panel-sub {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .form-group { margin-bottom: 28px; }
    .form-label {
      display: block;
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .form-input, .form-textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(201,168,76,0.25);
      padding: 10px 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: var(--cream);
      outline: none;
      transition: border-color 0.3s;
    }
    .form-input::placeholder, .form-textarea::placeholder {
      color: rgba(154,141,122,0.4);
      font-style: italic;
    }
    .form-input:focus, .form-textarea:focus {
      border-bottom-color: var(--gold);
    }
    .form-textarea {
      resize: none;
      height: 100px;
      line-height: 1.6;
    }

    /* STAR RATING */
    .star-group { margin-bottom: 28px; }
    .star-label {
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }
    .stars {
      display: flex;
      gap: 8px;
    }
    .star {
      font-size: 28px;
      cursor: pointer;
      color: rgba(201,168,76,0.2);
      transition: color 0.2s, transform 0.2s;
      user-select: none;
    }
    .star:hover, .star.active { color: var(--gold); }
    .star:hover { transform: scale(1.15); }

    /* VISIT TYPE */
    .visit-group { margin-bottom: 36px; }
    .visit-options {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .visit-option {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: 1px solid rgba(201,168,76,0.2);
      color: var(--text-muted);
      padding: 8px 18px;
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s, background 0.3s;
    }
    .visit-option:hover { border-color: rgba(201,168,76,0.5); color: var(--cream); }
    .visit-option.selected { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

    .btn-submit {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 18px 48px;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      width: 100%;
      margin-top: 8px;
    }
    .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-submit:active { transform: translateY(0); }

    /* SUCCESS MESSAGE */
    .success-msg {
      display: none;
      background: rgba(201,168,76,0.07);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 28px;
      text-align: center;
      margin-top: 24px;
    }
    .success-msg.show { display: block; animation: fadeUp 0.5s ease forwards; }
    .success-msg p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-style: italic;
      color: var(--gold-light);
      margin-bottom: 6px;
    }
    .success-msg span { font-size: 12px; color: var(--text-muted); letter-spacing: 2px; }

    /* REVIEWS PANEL */
    .reviews-panel {
      opacity: 0;
      animation: fadeUp 0.9s ease 1.3s forwards;
    }
    .reviews-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(201,168,76,0.12);
    }
    .reviews-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      font-weight: 300;
    }
    .reviews-heading em { font-style: italic; color: var(--gold-light); }
    .reviews-count {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* OVERALL RATING */
    .overall-rating {
      background: var(--charcoal);
      border: 1px solid rgba(201,168,76,0.12);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 28px;
      margin-bottom: 36px;
    }
    .overall-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }
    .overall-stars { font-size: 18px; color: var(--gold); letter-spacing: 2px; margin-bottom: 4px; }
    .overall-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }

    /* REVIEW CARDS */
    .reviews-list { display: flex; flex-direction: column; gap: 2px; }

    .review-card {
      background: var(--charcoal);
      border-left: 2px solid transparent;
      padding: 28px 32px;
      transition: border-color 0.3s, background 0.3s;
      animation: slideIn 0.5s ease forwards;
    }
    .review-card:hover {
      border-left-color: var(--gold);
      background: #1e1a14;
    }
    @keyframes slideIn { from{opacity:0;transform:translateX(-10px)} to{opacity:1;transform:translateX(0)} }

    .review-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 14px;
    }
    .review-author-block {}
    .review-name {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      letter-spacing: 2px;
      color: var(--cream);
      margin-bottom: 4px;
    }
    .review-meta {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      display: flex;
      gap: 12px;
    }
    .review-meta span { color: rgba(201,168,76,0.5); }
    .review-stars { font-size: 14px; color: var(--gold); letter-spacing: 2px; }
    .review-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-style: italic;
      color: rgba(245,239,230,0.75);
      line-height: 1.7;
    }
    .review-tag {
      display: inline-block;
      margin-top: 14px;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(201,168,76,0.5);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 4px 10px;
    }

    /* EMPTY STATE */
    .empty-state {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
    }
    .empty-state .ornament { font-size: 40px; color: rgba(201,168,76,0.15); margin-bottom: 16px; }
    .empty-state p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; }

    /* FOOTER */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(201,168,76,0.1);
      padding: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-logo { font-family: 'Cinzel', serif; font-size: 20px; letter-spacing: 4px; color: var(--gold); }
    .footer-links { display: flex; gap: 36px; }
    .footer-links a {
      font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--text-muted); text-decoration: none; transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 11px; color: var(--text-muted); opacity: 0.5; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .main-wrap { grid-template-columns: 1fr; gap: 60px; padding: 60px 30px; }
      .form-panel { position: static; }
      nav { padding: 20px 24px; }
      nav.scrolled { padding: 14px 24px; }
      .nav-links { display: none; }
      .page-header { padding: 130px 30px 60px; }
    }