    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream: #f5f0e8;
      --gold: #b8965a;
      --gold-light: #d4b07a;
      --charcoal: #1e1e1a;
      --charcoal2: #191916;
      --muted: #8a8778;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'DM Sans', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--sans); background: var(--charcoal); color: var(--cream); overflow-x: hidden; cursor: none; }

    /* CURSOR */
    .cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
    .cursor-dot { width: 8px; height: 8px; background: var(--cream); border-radius: 50%; transform: translate(-50%,-50%); }
    .cursor-ring { width: 36px; height: 36px; border: 1px solid var(--cream); border-radius: 50%; transform: translate(-50%,-50%); position: absolute; top: 0; left: 0; transition: width .3s, height .3s; }
    body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 56px; height: 56px; }
    @media (hover: none) { body { cursor: auto; } .cursor { display: none; } }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 0 4rem; height: 72px;
      display: flex; justify-content: space-between; align-items: center;
      transition: background .4s, backdrop-filter .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled { background: rgba(20,20,16,.93); backdrop-filter: blur(24px); border-color: rgba(184,150,90,.18); }
    .nav-logo { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--gold); letter-spacing: .04em; text-decoration: none; flex-shrink: 0; }
    .nav-logo em { font-style: italic; font-weight: 300; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
    .nav-links a { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); text-decoration: none; opacity: .7; transition: opacity .2s, color .2s; position: relative; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
    .nav-links a:hover { opacity: 1; color: var(--gold-light); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-reserve { padding: .55rem 1.5rem; border: 1px solid var(--gold); color: var(--gold) !important; font-size: .72rem !important; letter-spacing: .15em !important; background: none; text-decoration: none; transition: background .25s, color .25s !important; opacity: 1 !important; }
    .nav-reserve:hover { background: var(--gold); color: var(--charcoal) !important; }
    .nav-reserve::after { display: none !important; }

    /* Hamburger */
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: .4rem; cursor: none; }
    .nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: transform .3s, opacity .3s; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile drawer */
    .nav-drawer { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(14,14,10,.97); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; z-index: 199; opacity: 0; pointer-events: none; transition: opacity .3s; }
    .nav-drawer.open { opacity: 1; pointer-events: all; }
    .nav-drawer a { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--cream); text-decoration: none; transition: color .2s; }
    .nav-drawer a:hover { color: var(--gold-light); }
    .nav-drawer .nav-reserve { font-family: var(--sans); font-size: .8rem !important; padding: .8rem 2.5rem; }

    @media (max-width: 860px) { nav { padding: 0 1.5rem; } .nav-links { display: none; } .nav-hamburger { display: flex; } .nav-drawer { display: flex; } }

    /* HERO */
    #home { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1800&auto=format&fit=crop&q=80'); background-size: cover; background-position: center; filter: brightness(.28) saturate(.75); animation: heroZoom 22s ease-in-out infinite alternate; }
    @keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(155deg, rgba(25,25,18,.7) 0%, rgba(50,53,38,.35) 60%, rgba(184,150,90,.07) 100%); }
    .hero-content { position: relative; text-align: center; max-width: 820px; padding: 2rem; }
    .hero-eyebrow { font-size: .7rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .8s .3s forwards; display: flex; align-items: center; justify-content: center; gap: .8rem; }
    .eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
    .hero-title { font-family: var(--serif); font-size: clamp(3.2rem,9vw,7rem); font-weight: 300; line-height: 1.05; color: var(--cream); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .9s .5s forwards; }
    .hero-title em { font-style: italic; color: var(--gold-light); }
    .hero-sub { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; font-style: italic; color: rgba(245,240,232,.72); margin-bottom: 3rem; opacity: 0; animation: fadeUp .9s .7s forwards; }
    .hero-features { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; opacity: 0; animation: fadeUp .9s .9s forwards; }
    .hero-feature { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); display: flex; align-items: center; gap: .45rem; }
    .hero-feature i { width: 14px; height: 14px; }
    .hero-cta { display: inline-flex; align-items: center; gap: .6rem; padding: 1rem 3rem; border: 1px solid var(--gold); color: var(--gold); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; transition: background .3s, color .3s; opacity: 0; animation: fadeUp .9s 1.1s forwards; }
    .hero-cta:hover { background: var(--gold); color: var(--charcoal); }
    .hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); animation: scrollBounce 2s 2.5s infinite; }
    .hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); }
    @keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }

    /* SECTIONS */
    section { padding: 8rem 4rem; }
    @media (max-width: 700px) { section { padding: 5rem 1.5rem; } }
    .section-label { font-size: .67rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: .55rem; }
    .section-label i { width: 13px; height: 13px; }
    .section-title { font-family: var(--serif); font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 300; line-height: 1.1; color: var(--cream); }
    .section-title em { font-style: italic; color: var(--gold-light); }
    .divider { width: 56px; height: 1px; background: var(--gold); margin: 1.8rem 0; }

    /* ABOUT */
    #about { background: var(--charcoal); }
    .about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    @media (max-width: 860px) { .about-inner { grid-template-columns: 1fr; gap: 3rem; } }
    .about-image-wrap { position: relative; }
    .about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: saturate(.85); display: block; }
    .about-img-accent { position: absolute; bottom: -2rem; right: -2rem; width: 52%; aspect-ratio: 1; object-fit: cover; border: 6px solid var(--charcoal); filter: saturate(.85); }
    @media (max-width: 600px) { .about-img-accent { display: none; } }
    .about-text p { font-size: .95rem; line-height: 1.9; color: rgba(245,240,232,.68); margin-bottom: 1.4rem; }
    .about-values { list-style: none; margin-top: 2rem; }
    .about-values li { padding: .8rem 0; border-bottom: 1px solid rgba(184,150,90,.18); font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--cream); display: flex; align-items: center; gap: .8rem; }
    .about-values li i { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); }

    /* MENU */
    #menu { background: var(--charcoal2); }
    .menu-inner { max-width: 1300px; margin: 0 auto; }
    .menu-header { text-align: center; margin-bottom: 4rem; }
    .menu-header .section-label { justify-content: center; }
    .menu-header .divider { margin: 1.8rem auto; }
    .menu-header p { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1.05rem; }

    .menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 4rem; border-bottom: 1px solid rgba(184,150,90,.18); overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .tab-btn { padding: .9rem 1.6rem; background: none; border: none; font-family: var(--sans); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); cursor: none; transition: color .25s; position: relative; display: flex; align-items: center; gap: .45rem; white-space: nowrap; }
    .tab-btn i { width: 14px; height: 14px; }
    .tab-btn::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .3s; }
    .tab-btn.active { color: var(--gold-light); }
    .tab-btn.active::after { transform: scaleX(1); }
    .tab-btn:hover { color: var(--cream); }

    .menu-panel { display: none; }
    .menu-panel.active { display: block; animation: fadeIn .4s ease; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
    .menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.8rem; }

    .menu-card { background: rgba(245,240,232,.04); border: 1px solid rgba(184,150,90,.1); overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; cursor: none; }
    .menu-card:hover { border-color: rgba(184,150,90,.45); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.35); }
    .menu-card-img-wrap { overflow: hidden; position: relative; aspect-ratio: 4/3; background: #2a2a24; }
    .menu-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; filter: saturate(.88); }
    .menu-card:hover .menu-card-img { transform: scale(1.06); }
    .menu-card-tag { position: absolute; top: .9rem; left: .9rem; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); padding: .25rem .7rem; font-weight: 500; }
    .menu-card-body { padding: 1.4rem 1.5rem 1.5rem; }
    .menu-card-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--cream); margin-bottom: .4rem; }
    .menu-card-desc { font-size: .8rem; line-height: 1.65; color: var(--muted); margin-bottom: 1rem; }
    .menu-card-footer { display: flex; justify-content: space-between; align-items: center; }
    .menu-card-price { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--gold-light); display: flex; align-items: baseline; gap: .2rem; }
    .menu-card-price span { font-size: .68rem; font-weight: 300; color: var(--muted); font-family: var(--sans); }
    .menu-card-icon { width: 32px; height: 32px; border: 1px solid rgba(184,150,90,.25); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
    .menu-card-icon i { width: 14px; height: 14px; }

    .specials-banner { margin-top: 5rem; padding: 3rem 3.5rem; background: linear-gradient(135deg, rgba(184,150,90,.1), rgba(196,112,74,.06)); border: 1px solid rgba(184,150,90,.28); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; }
    @media (max-width: 700px) { .specials-banner { grid-template-columns: 1fr; text-align: center; } .specials-icon-wrap { display: none; } }
    .specials-icon-wrap { width: 56px; height: 56px; border: 1px solid rgba(184,150,90,.3); display: flex; align-items: center; justify-content: center; color: var(--gold); }
    .specials-icon-wrap i { width: 22px; height: 22px; }
    .specials-banner h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--cream); margin-bottom: .4rem; }
    .specials-banner p { color: var(--muted); font-size: .88rem; line-height: 1.6; }
    .specials-badge { background: var(--gold); color: var(--charcoal); padding: 1rem 1.8rem; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; white-space: nowrap; text-align: center; }
    .whatsapp-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 99;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.5);
      text-decoration: none; transition: .25s;
    }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); }
    .whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }
    .wa-pulse {
      position: absolute; inset: -4px; border-radius: 50%;
      background: rgba(37,211,102,.35);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: .7; }
      50%       { transform: scale(1.25); opacity: 0; }
    }
    /* CONTACT */
    #contact { background: var(--charcoal); }
    .contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
    @media (max-width: 860px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }
    .contact-detail { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
    .contact-icon { width: 38px; height: 38px; border: 1px solid rgba(184,150,90,.25); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
    .contact-icon i { width: 15px; height: 15px; }
    .contact-detail-text strong { display: block; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
    .contact-detail-text span { font-size: .88rem; color: rgba(245,240,232,.68); line-height: 1.6; }
    .hours-subtitle { font-family: var(--serif); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 300; color: var(--cream); }
    .hours-subtitle em { font-style: italic; color: var(--gold-light); }
    .hours-row { display: flex; justify-content: space-between; padding: .9rem 0; border-bottom: 1px solid rgba(184,150,90,.12); font-size: .85rem; color: rgba(245,240,232,.6); }
    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { color: var(--cream); font-weight: 500; }
    .social-links { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
    .social-link { padding: .55rem 1.1rem; border: 1px solid rgba(184,150,90,.28); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: background .25s, color .25s; display: flex; align-items: center; gap: .45rem; }
    .social-link i { width: 13px; height: 13px; }
    .social-link:hover { background: var(--gold); color: var(--charcoal); }
    .map-placeholder { grid-column: 1 / -1; height: 280px; position: relative; overflow: hidden; border: 1px solid rgba(184,150,90,.15); }
    .map-placeholder img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.38) saturate(.4); }
    .map-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .8rem; }
    .map-label i { width: 32px; height: 32px; color: var(--gold); }
    .map-label p { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--cream); }

    /* FOOTER */
    footer { background: #111110; padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-top: 1px solid rgba(184,150,90,.12); }
    .footer-logo { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
    .footer-tagline { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--muted); }
    .footer-copy { font-size: .72rem; color: var(--muted); }
    @media (max-width: 600px) { footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; } }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity .75s ease, transform .75s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .rd1 { transition-delay: .07s; } .rd2 { transition-delay: .15s; } .rd3 { transition-delay: .23s; } .rd4 { transition-delay: .31s; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
  