/* ============================================================
   THAI SIAM — "The Hardest Table"
   Northern Thai kitchen inside a craft distillery, Calgary NE
   Moody · teak/lacquer · distillery amber · gold · chili · banana-leaf
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Warm-tinted darks (teak / lacquer) — never pure black */
  --void:      #0c0906;
  --teak-950:  #120d09;
  --teak-900:  #1a130d;
  --teak-850:  #211812;
  --teak-800:  #2a1f16;
  --teak-750:  #33261a;
  --line:      rgba(226, 190, 120, 0.14);   /* warm gold hairline */
  --line-soft: rgba(226, 190, 120, 0.08);

  /* Distillery light — amber / copper / gold */
  --gold:      #d7a94e;
  --gold-hi:   #f0cd7a;
  --gold-deep: #b07f34;
  --amber:     #e0902f;
  --copper:    #b06a37;

  /* Spice — chili / tamarind / banana-leaf */
  --chili:     #cf4326;
  --chili-hi:  #e6572f;
  --tamarind:  #7a3f24;
  --leaf:      #7a944a;

  /* Ink & paper (warm off-whites, never #fff) */
  --ink:       #efe6d3;
  --ink-soft:  #d8caae;
  --muted:     #ab9c81;
  --faint:     #7c6f5b;
  --cream:     #f4e7cb;

  /* Fonts */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shadows — warm-tinted, one light source (top), tiered */
  --sh-rgb: 8 5 2;
  --sh-1: 0 1px 2px rgb(var(--sh-rgb) / .30), 0 1px 1px rgb(var(--sh-rgb) / .22);
  --sh-2: 0 4px 10px rgb(var(--sh-rgb) / .34), 0 12px 26px rgb(var(--sh-rgb) / .40);
  --sh-3: 0 8px 20px rgb(var(--sh-rgb) / .40), 0 28px 60px rgb(var(--sh-rgb) / .52);
  --glow-gold: 0 0 60px rgba(224, 144, 47, .18);

  --navh: 78px;
  --edge: clamp(1.15rem, 4.5vw, 4.5rem);      /* wide page gutter */
  --maxw: 1200px;                             /* body content column */
  --maxw-wide: 1680px;                        /* nav / footer column  */
  --sec-y: clamp(4.5rem, 9vw, 9rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--teak-950);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--chili); color: #fff; }

/* ---------- Type primitives ---------- */
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.02;
  color: var(--ink); text-wrap: balance; letter-spacing: -0.01em; }
p { text-wrap: pretty; }

.gold-text {
  background: linear-gradient(174deg, var(--gold-hi) 4%, var(--gold) 46%, var(--gold-deep) 96%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons (craft floor: editorial radius, real states) ---------- */
.btn {
  --r: 6px;
  --pad-y: 15px; --pad-x: 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r);
  font-family: var(--sans);
  font-weight: 600; font-size: .86rem; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border: 0; white-space: nowrap;
  transition: transform .13s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:focus-visible { outline: 2px solid var(--gold-hi); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold) 58%, var(--gold-deep));
  color: #241503;
  border-top: 1px solid rgba(255,244,214,.65);
  box-shadow: var(--sh-1), 0 6px 22px rgba(214,150,50,.24);
}
.btn--gold:hover { box-shadow: var(--sh-2), 0 10px 30px rgba(224,144,47,.40); filter: brightness(1.05); transform: translateY(-1px); }
.btn--gold:active { filter: brightness(.98); box-shadow: var(--sh-1); transform: translateY(1px); }

.btn--outline {
  background: rgba(240, 205, 122, .04);
  color: var(--gold-hi);
  border: 1px solid rgba(226,190,120,.34);
  box-shadow: inset 0 1px 0 rgba(240,205,122,.08);
}
.btn--outline:hover { border-color: var(--gold); background: rgba(240,205,122,.09); transform: translateY(-1px); }

.btn--chili {
  background: linear-gradient(180deg, var(--chili-hi), var(--chili) 62%, #a5321c);
  color: #fff2ea;
  border-top: 1px solid rgba(255,214,196,.5);
  box-shadow: var(--sh-1), 0 6px 22px rgba(207,67,38,.30);
}
.btn--chili:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: var(--sh-2), 0 10px 30px rgba(207,67,38,.42); }
.btn--sm { --pad-y: 11px; --pad-x: 20px; font-size: .76rem; }

/* text link with animated underline */
.tlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  color: var(--ink); position: relative; padding: 4px 2px;
  transition: color .2s ease, gap .2s ease;
}
.tlink::after { content: ""; position: absolute; left: 2px; right: 2px; bottom: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep)); transform: scaleX(.28); transform-origin: left; transition: transform .28s ease; }
.tlink:hover { color: var(--gold-hi); gap: .8em; }
.tlink:hover::after { transform: scaleX(1); }
.tlink .arw { transition: transform .25s ease; }
.tlink:hover .arw { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: var(--navh);
  padding: 0 var(--edge);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 10, 6, .82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .72rem; }
.brand__seal { width: 46px; height: 46px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); flex: none; }
.brand__wm { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; letter-spacing: .16em;
  color: var(--ink); text-transform: uppercase; }
.brand__sub { font-family: var(--sans); font-size: .58rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 2.4rem; }
.nav__links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .2s ease;
}
.nav__links a::after { content:""; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background: var(--gold); transition: right .25s ease; }
.nav__links a:hover { color: var(--gold-hi); }
.nav__links a:hover::after { right: 0; }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: center;
  padding: calc(var(--navh) + 2rem) var(--edge) 3rem;
  overflow: hidden;
  background:
    radial-gradient(90% 80% at 10% 12%, rgba(224,144,47,.07), transparent 60%),
    var(--teak-950);
}
/* Hero media — the glowing bowl bleeding off the right, emerging from the dark */
.hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 52vw; z-index: 1; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 46% 62%;
  filter: saturate(1.05) contrast(1.02);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
}
.hero__scrim { position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(120% 100% at 78% 46%, rgba(176,106,55,.16), transparent 52%),
    linear-gradient(90deg, var(--teak-950) 24%, rgba(18,13,9,.35) 46%, transparent 64%);
}

.hero__grid {
  position: relative; z-index: 3; width: 100%;
  max-width: var(--maxw-wide); margin: 0 auto;
}
.hero__content { max-width: 47rem; }
.hero__seal { width: 60px; height: 60px; margin-bottom: 1.7rem;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.55)); }
.hero .eyebrow { display: block; margin-bottom: 1.5rem; }
.hero h1 {
  font-size: clamp(3rem, 6.4vw, 5.7rem); line-height: .98; letter-spacing: -0.015em;
  margin-bottom: 1.7rem;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 em { font-style: normal; }
.hero__sub {
  font-size: clamp(1.08rem, 1.5vw, 1.34rem); color: var(--ink-soft);
  max-width: 33ch; line-height: 1.5; margin-bottom: 2.3rem;
}
.hero__sub b { color: var(--cream); font-weight: 600; }
.hero__actions { display: flex; align-items: center; gap: 1.7rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__laurel {
  display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
  font-size: .8rem; letter-spacing: .05em; color: var(--muted);
  padding-top: 1.6rem; border-top: 1px solid var(--line-soft); max-width: 37rem;
}
.hero__laurel .st { color: var(--gold-hi); font-weight: 600; letter-spacing: .02em; }
.hero__laurel .dot { color: var(--faint); }
.hero__laurel b { color: var(--ink-soft); font-weight: 600; }
.scrollcue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--faint);
}
.scrollcue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100%{opacity:.3; transform:scaleY(.6);} 50%{opacity:1; transform:scaleY(1);} }

/* ---------- Layout helpers ---------- */
.section { padding: var(--sec-y) var(--edge); position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; }
.sec-head { max-width: 44rem; }
.sec-head .eyebrow { display: block; margin-bottom: 1rem; }
.sec-head h2 { font-size: clamp(2.3rem, 4.4vw, 3.9rem); line-height: 1.02; }
.sec-head p.lede { margin-top: 1.3rem; font-size: 1.16rem; color: var(--muted); max-width: 40rem; }

/* generic reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — hero
   ============================================================ */
@media (max-width: 940px) {
  :root { --navh: 66px; }
  .nav__links { display: none; }
  .nav__cta .btn:not(.nav__burger) { display: none; }
  .nav__burger { display: inline-flex; }

  /* Stacked hero: text on solid dark up top, the bowl glowing in its own
     reserved band at the bottom — no text ever sits over the bright food. */
  .hero { padding: calc(var(--navh) + 1.5rem) var(--edge) 25svh; align-items: start; }
  .hero__media { top: auto; bottom: 0; height: 33svh; width: 100%; }
  .hero__media img {
    object-position: 50% 46%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
  }
  .hero__scrim {
    background:
      radial-gradient(120% 44% at 50% 100%, rgba(214,138,58,.26), transparent 60%),
      linear-gradient(180deg, rgba(12,9,6,.93) 0%, rgba(12,9,6,.9) 56%, rgba(12,9,6,.72) 72%, rgba(12,9,6,.30) 85%, rgba(12,9,6,.08) 100%);
  }
  .hero__content { max-width: 100%; }
  .hero__seal { display: none; }
  .hero .eyebrow { margin-bottom: 1rem; }
  .hero h1 { font-size: clamp(2.9rem, 12vw, 4rem); margin-bottom: 1.1rem; margin-top: 0; }
  .hero__sub { max-width: 26ch; margin-bottom: 1.6rem; }
  .hero__actions { margin-bottom: 1.7rem; }
  .hero__laurel { font-size: .74rem; gap: .6rem .8rem; }
  .scrollcue { display: none; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; gap: 1rem; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .tlink { justify-content: center; }
}

/* ============================================================
   SECTION SURFACES & SHARED
   ============================================================ */
.s-900 { background: var(--teak-900); }
.s-950 { background: var(--teak-950); }
.s-850 { background: var(--teak-850); }
.section { border-top: 1px solid var(--line-soft); }
.section.no-line { border-top: 0; }
.ei { /* small inline icon-ish gold marker */ color: var(--gold); }

/* spice dots */
.spice { display: inline-flex; gap: 3px; vertical-align: middle; }
.spice i { width: 7px; height: 7px; border-radius: 50%; background: rgba(207,67,38,.22);
  box-shadow: inset 0 0 0 1px rgba(207,67,38,.4); }
.spice i.on { background: var(--chili); box-shadow: 0 0 6px rgba(207,67,38,.55); }
.spice--label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-left: .5rem; }

/* ============================================================
   CHEF — editorial feature
   ============================================================ */
.chef__grid {
  display: grid; grid-template-columns: 1.02fr 1.1fr; gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}
.chef__media { position: relative; }
.chef__media .main {
  border-radius: 14px; box-shadow: var(--sh-3); width: 100%;
  aspect-ratio: 4/5; object-fit: cover;
}
.chef__media .inset {
  position: absolute; right: -6%; bottom: -8%; width: 46%;
  border-radius: 10px; border: 5px solid var(--teak-900); box-shadow: var(--sh-3);
  aspect-ratio: 1/1; object-fit: cover;
}
.chef__media .badge {
  position: absolute; left: -1.4rem; top: 1.8rem; z-index: 3;
  background: var(--teak-850); border: 1px solid var(--line);
  border-radius: 10px; padding: .85rem 1.15rem; box-shadow: var(--sh-2);
  display: flex; flex-direction: column; line-height: 1.15;
}
.chef__media .badge b { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-hi); font-weight: 600; }
.chef__media .badge span { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.chef__body h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); margin-bottom: 1.6rem; }
.chef__body .eyebrow { display: block; margin-bottom: 1rem; }
.chef__body p { color: var(--ink-soft); margin-bottom: 1.15rem; max-width: 40ch; }
.chef__body p.dc::first-letter {
  font-family: var(--serif); font-size: 3.6em; line-height: .74; float: left;
  padding: .06em .12em 0 0; color: var(--gold); font-weight: 600;
}
.chef__sign { margin-top: 1.8rem; display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line-soft); }
.chef__sign .nm { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--cream); }
.chef__sign .rl { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.chef__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 1.9rem;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: rgba(240,205,122,.03); }
.chef__facts span { font-size: .72rem; letter-spacing: .03em; color: var(--ink-soft); text-align: center;
  padding: .95rem .8rem; border-right: 1px solid var(--line-soft); line-height: 1.35; align-self: stretch; display: flex; align-items: center; justify-content: center; }
.chef__facts span:last-child { border-right: 0; }

/* ============================================================
   MENU
   ============================================================ */
.menu__head { display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.menu__legend { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .82rem;
  border: 1px solid var(--line); border-radius: 10px; padding: .7rem 1.1rem; background: rgba(0,0,0,.15); }

.sigs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); margin-bottom: 3.5rem; }
.sig { --r: 14px; position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-2); background: var(--teak-850);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.sig:hover { transform: translateY(-5px); box-shadow: var(--sh-3); border-color: rgba(226,190,120,.3); }
.sig img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.sig figcaption { padding: 1.25rem 1.4rem 1.5rem; }
.sig h3 { font-size: 1.7rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.sig p { font-size: .93rem; color: var(--muted); margin-top: .5rem; }
.sig .incl { margin-top: .9rem; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: .4rem; }

.menu__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2.5rem, 6vw, 6rem); }
.menu__list h4 { grid-column: 1 / -1; font-family: var(--sans); font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 .4rem; padding-bottom: .8rem; }
.mrow { display: grid; grid-template-columns: 1fr auto; gap: .3rem 1rem; align-items: baseline;
  padding: 1.15rem 0; border-top: 1px solid var(--line-soft); }
.mrow .nm { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.mrow .ds { grid-column: 1 / -1; font-size: .88rem; color: var(--muted); max-width: 44ch; }
.mrow .spice { align-self: center; }
.menu__note { margin-top: 2.6rem; display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
  justify-content: space-between; padding: 1.5rem 1.8rem; border-radius: 12px;
  background: linear-gradient(100deg, rgba(122,148,74,.12), rgba(240,205,122,.06));
  border: 1px solid var(--line); }
.menu__note p { color: var(--ink-soft); font-size: .96rem; }
.menu__note b { color: var(--cream); }
.menu__note .actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* ============================================================
   DISTILLERY — immersive band
   ============================================================ */
.distill { position: relative; padding: 0; border-top: 0; min-height: 82vh; display: grid; align-items: center; overflow: hidden; }
.distill__bg { position: absolute; inset: 0; z-index: 1; }
.distill__bg img { width: 100%; height: 100%; object-fit: cover; }
.distill__bg::after { content:""; position:absolute; inset:0;
  background: linear-gradient(92deg, rgba(12,9,6,.94) 26%, rgba(12,9,6,.6) 50%, rgba(12,9,6,.28) 78%); }
.distill__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw-wide); margin: 0 auto;
  padding: clamp(4rem,8vw,7rem) var(--edge); display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.distill__copy { max-width: 33rem; }
.distill__copy h2 { font-size: clamp(2.3rem, 4.4vw, 3.8rem); margin: 1rem 0 1.4rem; }
.distill__copy p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 1.2rem; max-width: 40ch; }
.distill__copy .spirits { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.6rem 0 2rem; }
.distill__copy .spirits span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-hi);
  border: 1px solid var(--line); border-radius: 999px; padding: .45rem .95rem; }
.distill__cocktail { justify-self: end; position: relative; }
.distill__cocktail img { width: min(30vw, 380px); border-radius: 14px; box-shadow: var(--sh-3);
  border: 1px solid var(--line); }
.distill__cocktail figcaption { text-align: center; margin-top: 1rem; font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--cream); }

/* ============================================================
   PRESS / REVIEWS
   ============================================================ */
.press__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem,3vw,2.4rem); align-items: stretch; }
.quote-big { background: var(--teak-850); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(2.2rem, 4vw, 3.4rem); box-shadow: var(--sh-2); display: flex; flex-direction: column; justify-content: center; }
.quote-big .mark { font-family: var(--serif); font-size: 4.5rem; line-height: .5; color: var(--gold-deep); height: 2rem; }
.quote-big blockquote { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.16;
  color: var(--ink); margin: 1.3rem 0 1.6rem; text-wrap: balance; }
.quote-big cite { font-style: normal; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.rating { background: linear-gradient(160deg, var(--teak-850), var(--teak-900)); border: 1px solid var(--line);
  border-radius: 16px; padding: clamp(1.8rem,3vw,2.4rem); box-shadow: var(--sh-2); }
.rating .big { display: flex; align-items: baseline; gap: .7rem; }
.rating .big b { font-family: var(--serif); font-size: 4rem; color: var(--gold-hi); font-weight: 600; line-height: 1; }
.rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }
.rating .sub { font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.rating .bars { margin-top: 1.6rem; display: grid; gap: .9rem; }
.rbar { display: grid; grid-template-columns: 5.5rem 1fr 2rem; gap: .8rem; align-items: center; font-size: .78rem; color: var(--ink-soft); }
.rbar .track { height: 6px; border-radius: 3px; background: rgba(255,255,255,.06); overflow: hidden; }
.rbar .fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-hi)); }
.rbar .v { color: var(--gold-hi); text-align: right; font-variant-numeric: tabular-nums; }

.press__quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: 1.4rem; }
.qcard { background: var(--teak-900); border: 1px solid var(--line-soft); border-radius: 12px; padding: 1.5rem 1.7rem; }
.qcard p { font-family: var(--serif); font-size: 1.2rem; color: var(--ink-soft); line-height: 1.35; }
.qcard cite { display: block; margin-top: .9rem; font-style: normal; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }

.press__wall { margin-top: clamp(2.4rem,4vw,3.4rem); padding-top: 2.2rem; border-top: 1px solid var(--line-soft); }
.press__wall .lbl { text-align: center; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.6rem; }
.press__wall ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, auto); justify-content: center; align-items: center; gap: 1.7rem clamp(1.6rem,3.4vw,3.2rem); }
.press__wall li { font-family: var(--serif); font-size: clamp(1.1rem,1.8vw,1.6rem); color: var(--ink-soft); opacity: .78;
  letter-spacing: .02em; transition: opacity .2s, color .2s; }
.press__wall li:hover { opacity: 1; color: var(--gold-hi); }

/* ============================================================
   VISIT
   ============================================================ */
.visit__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem,4vw,4rem); align-items: stretch; }
.visit__info h2 { font-size: clamp(2.2rem,4vw,3.5rem); margin: 1rem 0 1.2rem; }
.visit__info .lede { color: var(--muted); font-size: 1.08rem; margin-bottom: 2.2rem; max-width: 36ch; }
.vblock { display: grid; grid-template-columns: 2.2rem 1fr; gap: 1rem; padding: 1.4rem 0; border-top: 1px solid var(--line-soft); }
.vblock:first-of-type { border-top: 0; }
.vblock .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(240,205,122,.06);
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); }
.vblock .ic svg { width: 20px; height: 20px; }
.vblock h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.vblock p, .vblock a { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.5; }
.vblock a.tel { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); }
.vblock a.tel:hover { color: var(--gold-hi); }
.hours { display: grid; gap: .35rem; }
.hours .hr { display: flex; justify-content: space-between; max-width: 20rem; font-size: .96rem; }
.hours .hr.closed { color: var(--chili-hi); }
.hours .hr span:first-child { color: var(--muted); }
.visit__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.visit__map { position: relative; display: block; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-3); min-height: 100%; }
.visit__map img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; object-position: 50% 42%;
  display: block; transition: transform .5s ease; }
.visit__map::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,9,6,.28) 0%, transparent 22%, transparent 62%, rgba(12,9,6,.72) 100%);
  box-shadow: inset 0 0 0 1px rgba(226,190,120,.10); }
.visit__map:hover img { transform: scale(1.03); }
.map__pin { position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem; font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  color: var(--cream); background: rgba(14,10,6,.78); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 8px; padding: .5rem .8rem; }
.map__pin svg { width: 15px; height: 15px; color: var(--gold-hi); }
.map__go { position: absolute; right: 1.1rem; bottom: 1.1rem; z-index: 2; pointer-events: none; }
.second-loc { margin-top: 1.6rem; display: flex; align-items: center; gap: .9rem; font-size: .9rem; color: var(--muted);
  background: rgba(0,0,0,.2); border: 1px dashed var(--line); border-radius: 10px; padding: .9rem 1.2rem; }
.second-loc b { color: var(--ink-soft); font-weight: 600; }

/* ============================================================
   FOOTER — the finale
   ============================================================ */
.foot { position: relative; background: var(--void); border-top: 1px solid var(--line); overflow: hidden; }
.foot__glow { position: absolute; inset: auto 0 -40% 0; height: 70%; z-index: 0;
  background: radial-gradient(60% 100% at 50% 100%, rgba(224,144,47,.14), transparent 70%); }
.foot__top { position: relative; z-index: 2; max-width: var(--maxw-wide); margin: 0 auto;
  padding: clamp(4rem,7vw,6rem) var(--edge) clamp(2.5rem,4vw,3.5rem);
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: clamp(1.6rem,3vw,3rem); }
.foot__brand .seal { width: 66px; height: 66px; margin-bottom: 1.3rem; }
.foot__brand .wm { font-family: var(--serif); font-size: 2rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.foot__brand .reframe { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold-hi); margin-top: 1rem; max-width: 20ch; line-height: 1.25; }
.foot__col h5 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.foot__col ul { list-style: none; padding: 0; display: grid; gap: .75rem; }
.foot__col a, .foot__col p { color: var(--ink-soft); font-size: .95rem; transition: color .2s; }
.foot__col a:hover { color: var(--gold-hi); }
.foot__col .muted { color: var(--muted); font-size: .88rem; }
.foot__bottom { position: relative; z-index: 2; max-width: var(--maxw-wide); margin: 0 auto;
  padding: 1.8rem var(--edge) 2.4rem; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: .78rem; color: var(--faint); letter-spacing: .04em; }
.foot__bottom a { color: var(--muted); }
.foot__bottom a:hover { color: var(--gold-hi); }
.foot__social { display: flex; gap: .7rem; }
.foot__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gold); transition: background .2s, transform .2s; }
.foot__social a:hover { background: rgba(240,205,122,.08); transform: translateY(-2px); }
.foot__social svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE — sections
   ============================================================ */
@media (max-width: 1080px) {
  .chef__grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .chef__media { max-width: 30rem; }
  .distill__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .distill__cocktail { justify-self: start; }
  .distill__cocktail img { width: min(60vw, 320px); }
  .press__grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 360px; }
  .foot__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .sigs { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .menu__list { grid-template-columns: 1fr; }
  .press__quotes { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .menu__head { flex-direction: column; align-items: flex-start; }
  .menu__note { flex-direction: column; align-items: flex-start; gap: 1.3rem; }
}
@media (max-width: 940px) {
  .brand__sub { display: none; }
  .hero__actions .tlink::after { display: none; }
}
@media (max-width: 560px) {
  .brand__name { font-size: 1.28rem; letter-spacing: .12em; }
  .brand__seal { width: 40px; height: 40px; }
  .chef__media .inset { width: 42%; right: 0; bottom: -6%; }
  .chef__media .badge { left: 0; top: 1rem; }
  .foot__top { grid-template-columns: 1fr; gap: 2rem; }
  .foot__bottom { flex-direction: column-reverse; align-items: flex-start; gap: 1.2rem; }
  .visit__actions { flex-direction: column; align-items: stretch; }
  .visit__actions .btn { width: 100%; }
}

/* dangler-safe grids on small screens */
@media (max-width: 780px) {
  .press__wall ul { grid-template-columns: repeat(2, auto); gap: 1.3rem 2.2rem; }
}
@media (max-width: 560px) {
  .chef__facts { grid-template-columns: 1fr; }
  .chef__facts span { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .chef__facts span:last-child { border-bottom: 0; }
}

/* ---------- Mobile nav panel ---------- */
.mnav {
  position: fixed; top: var(--navh); left: 0; right: 0; z-index: 45;
  background: rgba(14, 10, 6, .96); backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  display: none; flex-direction: column; gap: .2rem;
  padding: 1rem var(--edge) 1.5rem;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
}
.mnav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mnav a { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); padding: .7rem 0;
  border-bottom: 1px solid var(--line-soft); transition: color .2s; }
.mnav a:last-of-type { border-bottom: 0; }
.mnav a:hover, .mnav a:active { color: var(--gold-hi); }
.mnav__cta { display: flex; gap: .8rem; margin-top: 1rem; }
.mnav__cta .btn { flex: 1; font-family: var(--sans); font-size: .78rem; }
@media (max-width: 940px) { .mnav { display: flex; } }
