/* ============================================================
   Mu Thai · Leuven — Thai × Japanese fusion
   Design tokens + layout + components + motion
   ============================================================ */

:root {
  /* palette */
  --ink:      #171210;   /* near-black warm */
  --ink-2:    #241c18;
  --ivory:    #faf6ef;   /* warm paper */
  --ivory-2:  #f1e9dd;
  --chili:    #d7372e;   /* Thai chili red */
  --chili-d:  #b62a23;
  --gold:     #c8902f;   /* turmeric */
  --jade:     #2f5d52;   /* fusion jade */
  --muted:    #6b5f57;
  --line:     rgba(23,18,16,.12);

  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.6rem);
  --radius: 18px;
  --shadow: 0 18px 50px -22px rgba(23,18,16,.45);
  --shadow-sm: 0 8px 24px -14px rgba(23,18,16,.45);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.08rem);
  overflow-x: hidden;
}
img, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.8rem, 8vw, 7rem); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .92rem 1.7rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--chili); color: #fff; box-shadow: 0 12px 30px -12px rgba(215,55,46,.7); }
.btn-accent:hover { background: var(--chili-d); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--ink); }

/* ---------- shared section heads ---------- */
.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--chili); margin-bottom: .9rem;
}
.eyebrow.light { color: var(--gold); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); }
.section-sub { color: var(--muted); margin-top: .9rem; }
.link-underline { color: var(--chili); font-weight: 600; border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: .55rem;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250,246,239,.86);
  backdrop-filter: saturate(150%) blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -24px rgba(0,0,0,.6);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .65rem; color: #fff; transition: color .3s var(--ease); }
.scrolled .brand { color: var(--ink); }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: var(--chili); color: #fff; font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.brand-text { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1; display: flex; flex-direction: column; }
.brand-text small { font-family: var(--sans); font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; opacity: .7; margin-top: 3px; }

.main-nav { display: flex; gap: 1.7rem; }
.main-nav a {
  color: rgba(255,255,255,.92); font-weight: 600; font-size: .96rem; position: relative; padding: .3rem 0;
  transition: color .25s var(--ease);
}
.scrolled .main-nav a { color: var(--ink); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--chili);
  transition: width .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .9rem; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: .35rem .7rem;
  color: #fff; font-family: var(--sans); font-weight: 700; font-size: .78rem; cursor: pointer; letter-spacing: .04em;
  transition: background .25s var(--ease), color .25s, border-color .25s;
}
.scrolled .lang-toggle { color: var(--ink); border-color: var(--line); background: rgba(23,18,16,.05); }
.lang-opt { opacity: .55; transition: opacity .2s; }
.lang-opt.is-active { opacity: 1; color: var(--chili); }
.lang-sep { opacity: .4; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-burger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.scrolled .nav-burger span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(15,11,9,.92) 0%, rgba(15,11,9,.35) 45%, rgba(15,11,9,.55) 100%);
}
.hero-content { padding-bottom: clamp(4rem, 10vh, 8rem); padding-top: 8rem; max-width: 880px; }
.hero-kicker { font-weight: 700; letter-spacing: .2em; text-transform: uppercase; font-size: .82rem; color: var(--gold); margin-bottom: 1.1rem; }
.hero-title { font-size: clamp(3.4rem, 8vw, 7rem); font-weight: 600; line-height: .95; }
.hero-tagline { font-size: clamp(1.05rem, .95rem + .8vw, 1.5rem); max-width: 38ch; margin-top: 1.3rem; color: rgba(255,255,255,.9); font-weight: 400; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.scroll-cue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: cue 1.6s var(--ease) infinite; }
@keyframes cue { 0%{opacity:0; transform: translate(-50%,0);} 30%{opacity:1;} 100%{opacity:0; transform: translate(-50%,14px);} }

/* ============================================================
   INTRO
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.intro-copy h2 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); margin-bottom: 1.3rem; }
.intro-copy p { color: #463c35; margin-bottom: 1.1rem; }
.intro-stats { display: flex; gap: clamp(1.2rem, 3vw, 2.6rem); margin-top: 1.8rem; flex-wrap: wrap; }
.intro-stats div { display: flex; flex-direction: column; }
.intro-stats strong { font-family: var(--serif); font-size: 2.1rem; color: var(--chili); line-height: 1; }
.intro-stats span { font-size: .82rem; color: var(--muted); margin-top: .35rem; max-width: 12ch; }

.intro-figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.intro-figure img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; transition: transform .9s var(--ease); }
.intro-figure:hover img { transform: scale(1.05); }
.intro-figure figcaption {
  position: absolute; left: 1rem; bottom: 1rem; background: rgba(23,18,16,.72); color: #fff;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .5rem .9rem; border-radius: 999px; backdrop-filter: blur(4px);
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights { background: var(--ink); color: var(--ivory); }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); }
.highlight-card { padding: 2rem 1.6rem; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)); transition: transform .4s var(--ease), border-color .4s; }
.highlight-card:hover { transform: translateY(-6px); border-color: rgba(215,55,46,.55); }
.hl-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: rgba(215,55,46,.15); color: var(--gold); font-size: 1.5rem; margin-bottom: 1.1rem; }
.highlight-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.highlight-card p { color: rgba(250,246,239,.72); font-size: .95rem; }

/* ============================================================
   MENU
   ============================================================ */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 4vw, 3.2rem); }
.menu-col h3 { font-size: 1.4rem; padding-bottom: .8rem; margin-bottom: 1rem; border-bottom: 2px solid var(--line); color: var(--ink); }
.menu-list li { display: flex; align-items: baseline; gap: .6rem; padding: .55rem 0; }
.mi-name { font-weight: 500; }
.mi-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); }
.mi-price { font-family: var(--serif); font-weight: 600; color: var(--chili); white-space: nowrap; }

.menu-feature {
  margin-top: clamp(2.2rem, 5vw, 3.4rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: linear-gradient(120deg, var(--jade), #224239); color: var(--ivory); padding: clamp(1.8rem, 4vw, 2.8rem); border-radius: var(--radius); box-shadow: var(--shadow);
}
.menu-feature h3 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); margin: .3rem 0 .6rem; }
.menu-feature p { color: rgba(250,246,239,.82); max-width: 46ch; }
.menu-feature .eyebrow { color: var(--gold); }
.menu-feature-price { text-align: center; line-height: 1; }
.menu-feature-price strong { font-family: var(--serif); font-size: clamp(2.6rem, 2rem + 2vw, 3.8rem); display: block; }
.menu-feature-price span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }

.menu-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; justify-content: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery .container { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 10px; padding-inline: 10px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; aspect-ratio: 1; background: var(--ivory-2); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item::after { content: "⤢"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.6rem; background: rgba(23,18,16,.35); opacity: 0; transition: opacity .35s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   COCKTAILS / BAR
   ============================================================ */
.bar { background: var(--ink); color: var(--ivory); }
.bar-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.bar-copy h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); margin-bottom: 1.2rem; }
.bar-copy p { color: rgba(250,246,239,.78); }
.bar-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.bar-tags li { font-size: .85rem; font-weight: 600; letter-spacing: .03em; padding: .5rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); color: var(--gold); }
.bar-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bar-media figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.bar-media figure:first-child { grid-row: span 2; }
.bar-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.bar-media figure:hover img { transform: scale(1.06); }

.cocktail-head { margin-top: clamp(2.6rem, 6vw, 4rem); margin-bottom: clamp(1.4rem, 3vw, 2.2rem); text-align: center; }
.cocktail-head h3 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); }
.cocktail-head p { color: rgba(250,246,239,.7); margin-top: .5rem; }
.cocktail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 2vw, 1.4rem); }
.cocktail { padding: 1.3rem 1.5rem; border-radius: 14px; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); transition: transform .35s var(--ease), border-color .35s var(--ease); }
.cocktail:hover { transform: translateY(-4px); border-color: rgba(200,144,47,.55); }
.cocktail h4 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--gold); margin-bottom: .3rem; }
.cocktail p { color: rgba(250,246,239,.72); font-size: .92rem; }

/* ============================================================
   PROMO
   ============================================================ */
.promo { background: var(--ink); color: var(--ivory); }
.promo .section-head { color: var(--ivory); }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.promo-card { padding: 2rem 1.8rem; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); border: 1px solid rgba(255,255,255,.1); position: relative; overflow: hidden; transition: transform .4s var(--ease); }
.promo-card::before { content: ""; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(215,55,46,.4), transparent 70%); }
.promo-card:hover { transform: translateY(-6px); }
.promo-day { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.promo-card h3 { font-size: 1.7rem; margin: .5rem 0 .2rem; }
.promo-time { font-weight: 600; color: var(--chili); margin-bottom: .6rem; }
.promo-card p:last-child { color: rgba(250,246,239,.74); font-size: .95rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-figure img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .9s var(--ease); }
.about-figure:hover img { transform: scale(1.05); }
.about-copy h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); margin-bottom: 1.5rem; }
.chef { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.chef:first-of-type { border-top: 0; }
.chef h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.chef h3 span { color: var(--muted); font-family: var(--sans); font-size: .9rem; font-weight: 600; }
.chef p { color: #463c35; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit { background: var(--ivory-2); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: stretch; }
.visit-info h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); margin-bottom: 1.8rem; }
.visit-block { padding: 1.3rem 0; border-top: 1px solid var(--line); }
.visit-block h3 { font-family: var(--sans); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; font-size: .8rem; }
.visit-block p { color: var(--ink); }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .35rem 0; vertical-align: top; }
.hours td:first-child { font-weight: 600; padding-right: 1.2rem; }
.hours td:last-child { color: #463c35; text-align: right; }
.hours-note { margin-top: .6rem; font-size: .9rem; color: var(--muted); }
.contact-line { font-size: 1.1rem; font-weight: 600; }
.contact-line a:hover { color: var(--chili); }
.visit-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }
.visit-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.2) contrast(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--ivory); padding-top: clamp(2.6rem, 5vw, 4rem); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-brand strong { font-family: var(--serif); font-size: 1.4rem; }
.footer-brand p { font-size: .82rem; color: rgba(250,246,239,.6); }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(250,246,239,.8); font-weight: 600; font-size: .95rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-social a { color: rgba(250,246,239,.8); font-size: .9rem; font-weight: 600; transition: color .25s; }
.footer-social a:hover { color: var(--chili); }
.footer-bottom { padding-block: 1.4rem; }
.footer-bottom p { font-size: .82rem; color: rgba(250,246,239,.5); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; background: rgba(12,9,8,.94); padding: 4vw; }
.lightbox.open { display: grid; animation: fade .25s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lb-img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background .25s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 4vw; right: 4vw; width: 48px; height: 48px; font-size: 1.8rem; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; line-height: 1; }
.lb-prev { left: 3vw; } .lb-next { right: 3vw; }

/* ============================================================
   MOTION — reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .intro-grid, .about-grid, .visit-grid, .bar-grid { grid-template-columns: 1fr; }
  .about-figure { order: 2; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .cocktail-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
}

@media (max-width: 760px) {
  /* compact floating dropdown anchored under the header, content-width */
  .main-nav {
    position: fixed; top: 4.1rem; right: var(--gutter); left: auto; bottom: auto;
    width: max-content; min-width: 188px; max-width: 68vw;
    flex-direction: column; gap: 0;
    background: #171210; border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: .45rem; z-index: 1000;
    transform-origin: top right; transform: translateY(-12px) scale(.95);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s var(--ease);
    box-shadow: 0 26px 60px -22px rgba(0,0,0,.85);
  }
  .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
  .main-nav a,
  .scrolled .main-nav a {
    color: var(--ivory); width: 100%; font-size: 1rem; font-weight: 600;
    padding: .72rem 1.05rem; border-radius: 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .2s var(--ease), color .2s var(--ease);
  }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a:hover, .main-nav a:active, .main-nav a.active { background: rgba(215,55,46,.16); color: #fff; }
  .main-nav a::after { display: none; }
  .nav-burger { display: flex; z-index: 1001; }
  .header-cta { display: none; }

  /* light scrim (tap to close) + scroll lock while the menu is open */
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: ""; position: fixed; inset: 0; z-index: 900;
    background: rgba(12, 9, 8, .28);
  }
  /* lift the header (and its dropdown child) above the scrim so links are tappable */
  body.nav-open .site-header { z-index: 1001; }
  .nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-feature { flex-direction: column; text-align: center; }
  .menu-feature p { margin-inline: auto; }
}

@media (max-width: 520px) {
  .highlight-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cocktail-grid { grid-template-columns: 1fr; }
  .intro-stats { gap: 1.4rem; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
