/* =============================================================
   IL GRANO — Restaurant & Lounge · Дархан
   Өнгө, фонт, хэмжээсүүд :root дотор. Хар-алтан өнгийг
   цэнхэр болгох бол --bg* болон --ink-rgb-ийг солиход хангалттай.
   ============================================================= */

:root {
  --ink: #070605;
  --ink-rgb: 7, 6, 5;
  --bg: #0D0B09;
  --bg-2: #15120E;
  --bg-3: #1E1A14;
  --gold: #C9A24B;
  --gold-hi: #EFD79A;
  --gold-deep: #9A7A34;
  --amber: #E9A85C;
  --wine: #7A2230;
  --cream: #F6F1E7;
  --cream-dim: rgba(246, 241, 231, .70);
  --cream-faint: rgba(246, 241, 231, .42);
  --line: rgba(201, 162, 75, .22);
  --line-soft: rgba(246, 241, 231, .10);
  --gold-grad: linear-gradient(135deg, #9A7A34 0%, #EFD79A 38%, #C9A24B 62%, #F4E6BC 100%);

  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: clamp(20px, 5vw, 90px);
  --sec-y: clamp(48px, 7vw, 104px);
  --maxw: 1600px;
  --radius: 14px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-weight: 350;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(201, 162, 75, .32); color: #fff; }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

/* Warm ambient glow behind everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(233, 168, 92, .10), transparent 60%),
    radial-gradient(900px 700px at 8% 14%, rgba(122, 34, 48, .10), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, rgba(201, 162, 75, .06), transparent 60%);
}
.stars-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.page-wrap { position: relative; z-index: 1; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 340; line-height: 1.04; letter-spacing: -.01em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .75em;
  font-size: .72rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before, .eyebrow.center::after { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .7; }
.h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 340; letter-spacing: -.015em; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--cream-dim); max-width: 52ch; }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.chapter-tag { display: block; margin-bottom: 1rem; font-family: var(--f-display); font-style: italic; font-size: 1.05rem; color: var(--gold); opacity: .9; }
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--sec-y); }
.sec-head { max-width: 680px; margin-bottom: clamp(30px, 4vw, 52px); }
.sec-head .h2 { margin: .6rem 0 1rem; }
.center-head { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 1.05em 1.9em;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .6em;
  padding: var(--pad); border-radius: 100px;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s, color .4s;
}
.btn svg { width: 14px; height: 14px; flex: none; transition: transform .5s var(--ease); }
.btn-gold { background: var(--gold-grad); color: #241a06; box-shadow: 0 10px 40px -12px rgba(201, 162, 75, .6); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 50px -12px rgba(201, 162, 75, .75); }
.btn-gold:hover svg { transform: translateX(3px); }
.btn-ghost { border: 1px solid var(--line); background: rgba(246, 241, 231, .02); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); transform: translateY(-3px); }
.btn-lg { --pad: 1.2em 2.4em; font-size: .86rem; }
.icon-ext { width: 12px !important; height: 12px !important; opacity: .75; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 60;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 18px var(--gutter);
  transition: padding .5s var(--ease), background .5s var(--ease), backdrop-filter .5s;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(var(--ink-rgb), .6), rgba(var(--ink-rgb), 0));
  transition: opacity .5s;
}
.site-header.scrolled {
  padding-block: 10px;
  background: rgba(var(--ink-rgb), .76);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.scrolled::before { opacity: 0; }
.header-left { display: flex; align-items: center; }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.header-cta { font-size: .8rem; letter-spacing: .16em; }

.brand { justify-self: center; display: block; transition: opacity .5s var(--ease); }
.brand__logo {
  height: 92px; width: auto;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .6));
  transition: height .5s var(--ease), transform .6s var(--ease);
}
.brand:hover .brand__logo { transform: scale(1.04); }
.site-header.scrolled .brand__logo { height: 62px; }
/* Home: the hero carries the big logo, so the header one waits until scroll */
.is-home .site-header:not(.scrolled) .brand { opacity: 0; pointer-events: none; }

.menu-trigger {
  display: flex; align-items: center; gap: 13px;
  min-height: 44px;
  font-size: .86rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(var(--ink-rgb), .6);
}
.menu-trigger .bars { position: relative; width: 32px; height: 17px; }
.menu-trigger .bars span {
  position: absolute; left: 0; height: 2px; background: var(--gold);
  transition: width .5s var(--ease);
}
.menu-trigger .bars span:nth-child(1) { top: 2px; width: 100%; }
.menu-trigger .bars span:nth-child(2) { top: 7.5px; width: 70%; }
.menu-trigger .bars span:nth-child(3) { top: 13px; width: 40%; }
.menu-trigger:hover .bars span { width: 100%; }

/* ---------- Fullscreen nav ---------- */
.nav-overlay {
  --ox: 60px; --oy: 44px;
  position: fixed; inset: 0; z-index: 80;
  display: grid; grid-template-columns: 1.2fr .8fr;
  background: radial-gradient(1000px 800px at 70% 20%, #2a2014, var(--ink) 70%);
  clip-path: circle(0% at var(--ox) var(--oy));
  visibility: hidden;
  overflow-y: auto;
  transition: clip-path .8s var(--ease-io), visibility 0s .8s;
}
.nav-overlay.open {
  clip-path: circle(150% at var(--ox) var(--oy));
  visibility: visible;
  transition: clip-path .8s var(--ease-io);
}
.nav-overlay__close {
  position: absolute; top: 28px; right: var(--gutter); z-index: 2;
  display: flex; align-items: center; gap: 10px; min-height: 44px;
  font-size: .74rem; letter-spacing: .24em; text-transform: uppercase;
}
.nav-overlay__close .x { position: relative; width: 16px; height: 16px; }
.nav-overlay__close .x::before, .nav-overlay__close .x::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1.5px; background: var(--gold);
}
.nav-overlay__close .x::before { transform: rotate(45deg); }
.nav-overlay__close .x::after { transform: rotate(-45deg); }
.nav-overlay__main { align-self: center; display: flex; flex-direction: column; gap: 2.2rem; padding-block: 110px 60px; }
.nav-overlay__logo { display: none; }
.nav-list { display: flex; flex-direction: column; gap: .15rem; padding-left: clamp(30px, 8vw, 140px); }
.nav-list > a {
  position: relative; width: max-content;
  font-family: var(--f-display); font-weight: 330;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.1; letter-spacing: -.02em;
  opacity: 0; transform: translateY(24px);
  transition: color .4s, transform .5s var(--ease);
}
.nav-overlay.open .nav-list a {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease) calc(.15s + var(--i, 0) * .06s),
              transform .6s var(--ease) calc(.15s + var(--i, 0) * .06s),
              color .4s;
}
.nav-list .num {
  margin-right: .6em; vertical-align: super;
  font-family: var(--f-body); font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  color: var(--gold); opacity: .7;
}
.nav-overlay.open .nav-list > a:hover { color: var(--gold-hi); transform: translateX(14px); }
.nav-list a[aria-current="page"] { color: var(--gold-hi); }
.nav-sub {
  display: flex; flex-wrap: wrap; gap: .1rem clamp(20px, 2.6vw, 40px);
  padding: .1rem 0 .45rem clamp(26px, 4vw, 64px);
}
.nav-sub a {
  display: inline-flex; align-items: center; gap: .5em; padding-block: 6px;
  font-family: var(--f-display); font-weight: 330;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem); line-height: 1.15;
  color: var(--cream-dim);
  opacity: 0; transform: translateY(24px);
  transition: color .4s, transform .5s var(--ease);
}
.nav-sub a::before { content: ""; flex: none; width: clamp(14px, 1.4vw, 22px); height: 1px; background: var(--gold); opacity: .6; }
.nav-overlay.open .nav-sub a:hover { color: var(--gold-hi); transform: translateX(8px); }
@media (hover: hover) {
  .nav-sub { max-height: 0; overflow: hidden; opacity: 0; padding-block: 0; transition: max-height .45s var(--ease), opacity .3s var(--ease), padding .45s var(--ease); }
  .nav-list > a:hover + .nav-sub, .nav-list > a:focus-visible + .nav-sub, .nav-sub:hover, .nav-sub:focus-within {
    max-height: 6rem; opacity: 1; padding-block: .1rem .45rem;
  }
}
.nav-overlay__cta { display: flex; flex-wrap: wrap; gap: 10px; padding-left: clamp(30px, 8vw, 140px); }

.nav-aside {
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  border-left: 1px solid var(--line-soft);
}
.nav-aside__logo { align-self: flex-start; width: 230px; height: auto; margin-bottom: .6rem; filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .4)); }
.nav-aside__label { margin-bottom: .7rem; font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.nav-aside p:not(.nav-aside__label) { color: var(--cream-dim); font-size: 1.05rem; }
.nav-aside a:hover { color: var(--gold-hi); }

.social { display: flex; gap: 12px; align-items: center; }
.social a {
  display: grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(246, 241, 231, .5); color: #fff;
  transition: transform .4s var(--ease), border-color .3s, color .3s;
}
.social a svg { width: 20px; height: 20px; }
.social a:hover { border-color: var(--gold); color: var(--gold-hi); transform: translateY(-3px); }

/* ---------- Home hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.hero__media { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: slowZoom 26s ease-in-out infinite alternate; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--ink-rgb), .6) 0%, rgba(var(--ink-rgb), .35) 32%, rgba(var(--ink-rgb), .72) 78%, var(--bg) 100%),
    radial-gradient(70% 60% at 50% 50%, rgba(var(--ink-rgb), .35), transparent 70%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto;
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(100px, 14vh, 140px) var(--gutter) clamp(90px, 12vh, 130px);
}
.hero__eyebrow { margin-bottom: 1.4rem; opacity: 0; animation: fadeUp 1s var(--ease) .2s forwards; }
.hero__title { width: min(760px, 88vw); overflow: hidden; }
.hero__title img { width: 100%; height: auto; filter: drop-shadow(0 6px 30px rgba(0, 0, 0, .55)); opacity: 0; transform: translateY(40px) scale(.98); animation: riseIn 1.3s var(--ease) .35s forwards; }
.hero__sub { margin-top: 1.8rem; max-width: 48ch; opacity: 0; animation: fadeUp 1s var(--ease) .7s forwards; }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; opacity: 0; animation: fadeUp 1s var(--ease) .85s forwards; }
.hero__meta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; opacity: 0; animation: fadeUp 1s var(--ease) 1s forwards; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(var(--ink-rgb), .45); backdrop-filter: blur(6px);
  font-size: .8rem; color: var(--cream-dim);
}
.chip b { font-weight: 600; color: var(--gold-hi); }
.chip svg { width: 15px; height: 15px; flex: none; margin-right: -2px; color: var(--gold); }
.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; z-index: 2; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--cream-faint);
}
.scroll-cue .rail { position: relative; width: 1px; height: 46px; overflow: hidden; background: linear-gradient(var(--gold), transparent); }
.scroll-cue .rail::after { content: ""; position: absolute; top: -40%; left: 0; width: 100%; height: 40%; background: var(--gold); animation: railRun 2.2s var(--ease) infinite; }

/* ---------- Story (home) ---------- */
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.story__visual { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.story__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--ink-rgb), .25), transparent 40%, rgba(var(--ink-rgb), .55)); }
.story__visual .stamp {
  position: absolute; left: 50%; bottom: 8%; z-index: 2; transform: translateX(-50%);
  width: 58%; opacity: .92; filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .7));
}
.story__body .h2 { margin: .4rem 0 1.6rem; }
.story__body p { max-width: 54ch; margin-bottom: 1.2rem; font-size: clamp(1.02rem, 1.3vw, 1.2rem); color: var(--cream-dim); }
.pullquote {
  margin-top: 2rem; padding-left: 1.4rem; border-left: 2px solid var(--gold);
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem); line-height: 1.4;
}
.pullquote cite { display: block; margin-top: 1rem; font-family: var(--f-body); font-style: normal; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* ---------- Gold marquee band ---------- */
.band {
  overflow: hidden; padding-block: clamp(13px, 1.8vw, 24px);
  background: linear-gradient(90deg, #B8892E 0%, #E7C877 28%, #F4E6BC 50%, #E7C877 72%, #B8892E 100%);
  border-block: 1px solid rgba(120, 88, 30, .5);
}
.marquee { display: flex; align-items: center; width: max-content; white-space: nowrap; animation: marquee 70s linear infinite; }
.marquee span { margin-right: 2.1rem; font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--ink); }
.marquee .dot { font-style: normal; opacity: .45; }
.band:hover .marquee { animation-play-state: paused; }

/* ---------- Signature plates slider ---------- */
.masterpieces { overflow: hidden; text-align: center; }
.mp-slider { position: relative; overflow: hidden; margin-top: clamp(30px, 4vw, 60px); cursor: grab; touch-action: pan-y; user-select: none; }
.mp-slider.is-dragging { cursor: grabbing; }
.mp-row { display: flex; align-items: center; gap: clamp(26px, 6vw, 90px); width: max-content; padding-block: clamp(24px, 3vw, 44px); will-change: transform; }
.mp-item { position: relative; flex: none; width: clamp(230px, 36vw, 520px); aspect-ratio: 1; }
.mp-item::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: -2%; height: 16%; z-index: -1;
  background: radial-gradient(50% 100% at 50% 30%, rgba(201, 162, 75, .18), transparent 72%); filter: blur(10px);
  transition: background .7s var(--ease);
}
.mp-item.is-center::after { background: radial-gradient(50% 100% at 50% 30%, rgba(201, 162, 75, .45), transparent 72%); }
.mp-item img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .8), 0 0 0 1px rgba(201, 162, 75, .12);
  pointer-events: none;
  transition: filter .7s var(--ease);
  filter: brightness(.72) saturate(.9);
}
.mp-item.is-center img { filter: none; }
.mp-caption { min-height: 2.2em; margin-top: .4rem; font-family: var(--f-display); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--gold-hi); transition: opacity .35s; }
.dishes-foot { margin-top: 2.2rem; display: flex; justify-content: center; }

/* ---------- Cuisine row (expanding cards) ---------- */
.cuisine__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(36px, 5vw, 64px); }
.cuisine__head .h2 { margin-top: .6rem; }
.region-row { display: flex; align-items: flex-start; gap: clamp(14px, 1.6vw, 24px); }
.region {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: .3rem; text-align: center;
  transition: flex-grow .55s var(--ease), opacity .4s var(--ease), filter .4s var(--ease);
}
.region__img { position: relative; width: 100%; aspect-ratio: 4 / 3; margin-bottom: .8rem; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--bg-2); }
.region__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.region h3 { font-size: 1.5rem; font-weight: 360; }
.region p { font-size: .85rem; color: var(--cream-dim); }
.region-row:hover .region { flex-grow: .95; opacity: .45; filter: grayscale(.9) brightness(.85); }
.region-row:hover .region:hover { flex-grow: 1.6; opacity: 1; filter: none; }
.region:hover .region__img img { transform: scale(1.04); }
@media (hover: none) { .region-row .region { flex-grow: 1 !important; opacity: 1 !important; filter: none !important; } }

/* ---------- Full-bleed band ---------- */
.fullbleed { position: relative; height: clamp(460px, 58vw, 800px); display: grid; place-items: center; overflow: hidden; text-align: center; }
.fullbleed__img { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.fullbleed::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(var(--ink-rgb), .74), rgba(var(--ink-rgb), .42) 45%, rgba(var(--ink-rgb), .84)), radial-gradient(80% 100% at 50% 50%, transparent, rgba(var(--ink-rgb), .4)); }
.fullbleed__inner { position: relative; z-index: 2; padding-inline: var(--gutter); }
.fullbleed h2 { margin-top: 1rem; font-size: clamp(2rem, 5vw, 4rem); font-weight: 330; }
.fullbleed p { max-width: 56ch; margin: 1.2rem auto 0; font-size: clamp(1.02rem, 1.4vw, 1.25rem); color: var(--cream-dim); }

/* ---------- Signature dish cards ---------- */
.dishes { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 26px); }
.dish-card {
  position: relative; overflow: hidden; min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--bg-2);
  transition: transform .4s var(--ease), border-color .5s, box-shadow .6s;
}
.dish-card:hover { border-color: var(--line); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .8); }
.dish-card__img { position: absolute; inset: 0; }
.dish-card__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease); }
.dish-card:hover .dish-card__img img { transform: scale(1.08); }
.dish-card__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--ink-rgb), .05) 0%, rgba(var(--ink-rgb), .35) 45%, rgba(var(--ink-rgb), .92) 100%); }
.dish-card__body { position: relative; z-index: 2; padding: 1.6rem 1.6rem 1.7rem; }
.dish-card h3 { margin-bottom: .5rem; font-size: 1.6rem; font-weight: 360; line-height: 1.1; }
.dish-card p { max-width: 46ch; font-size: .88rem; color: var(--cream-dim); }
.dish-card .price { display: block; margin-top: .8rem; font-family: var(--f-display); font-size: 1.25rem; color: var(--gold-hi); }
.dish-card .badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  padding: 6px 12px; border-radius: 100px; border: 1px solid var(--line);
  background: rgba(var(--ink-rgb), .6); backdrop-filter: blur(6px);
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi);
}
.c-7 { grid-column: span 7; } .c-6 { grid-column: span 6; } .c-5 { grid-column: span 5; } .c-4 { grid-column: span 4; }

/* ---------- Stats ---------- */
.stats { text-align: center; }
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
  margin-top: clamp(34px, 4.5vw, 64px);
  border: 1px solid var(--line-soft); border-radius: calc(var(--radius) + 6px);
  background: radial-gradient(120% 150% at 50% 0%, rgba(201, 162, 75, .08), transparent 68%);
}
.stat { position: relative; padding: clamp(34px, 4.5vw, 66px) 1.4rem; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 24%; bottom: 24%; width: 1px; background: linear-gradient(rgba(201, 162, 75, 0), rgba(201, 162, 75, .35), rgba(201, 162, 75, 0)); }
.stat__num {
  display: inline-block; line-height: 1;
  font-family: var(--f-display); font-weight: 340; font-size: clamp(3rem, 6.5vw, 5.8rem); letter-spacing: -.01em;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.stat__label { display: block; margin-top: 1rem; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim); }

/* ---------- The room ---------- */
.room__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.room__copy { grid-column: span 5; align-self: center; padding-right: 2vw; }
.room__copy .h2 { margin: .5rem 0 1.4rem; }
.room__copy p { max-width: 46ch; margin-bottom: 1.2rem; font-size: clamp(1.02rem, 1.3vw, 1.2rem); color: var(--cream-dim); }
.room__copy .btn { margin-top: .6rem; }
.room__gallery { grid-column: span 7; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, minmax(200px, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.gtile { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.gtile:hover img { transform: scale(1.08); }
.gtile.tall { grid-row: span 2; }
.gtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(var(--ink-rgb), .6)); }
.gtile__cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-size: .74rem; letter-spacing: .12em; text-shadow: 0 2px 12px rgba(0, 0, 0, .7); }

/* ---------- Lounge promo (photo band, centred) ---------- */
.promo { position: relative; overflow: hidden; text-align: center; }
.promo__bg { position: absolute; inset: 0; z-index: 0; }
.promo__bg img { width: 100%; height: 100%; object-fit: cover; }
.promo__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--ink-rgb), .92), rgba(var(--ink-rgb), .7) 50%, rgba(var(--ink-rgb), .92)); }
.promo > .container { position: relative; z-index: 1; }
.promo__day { display: block; margin-top: 1rem; font-family: var(--f-display); font-weight: 330; font-size: clamp(3.4rem, 10vw, 8rem); line-height: .95; }
.promo p { max-width: 50ch; margin: 1.4rem auto 2rem; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--cream-dim); }

/* ---------- Celebrate + two-way cards ---------- */
.celebrate {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(48px, 8vw, 110px) clamp(24px, 6vw, 90px);
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(120deg, #120f0b, #221c14);
}
.celebrate__img { position: absolute; inset: 0; z-index: 0; }
.celebrate__img img { width: 100%; height: 100%; object-fit: cover; }
.celebrate__img::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 50% 50%, rgba(var(--ink-rgb), .55), transparent 80%), linear-gradient(180deg, rgba(var(--ink-rgb), .72), rgba(var(--ink-rgb), .6) 45%, rgba(var(--ink-rgb), .88)); }
.celebrate::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(70% 120% at 50% 0%, rgba(233, 168, 92, .2), transparent 60%); }
.celebrate > *:not(.celebrate__img) { position: relative; z-index: 2; }
.celebrate h2 { max-width: 18ch; margin: 1rem auto 1.2rem; }
.celebrate p { max-width: 52ch; margin: 0 auto 2rem; font-size: clamp(1.02rem, 1.4vw, 1.25rem); color: var(--cream-dim); text-shadow: 0 2px 16px rgba(var(--ink-rgb), .85); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 30px); }
.split__card {
  position: relative; overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 2rem;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-2);
  transition: border-color .5s, transform .5s var(--ease);
}
.split__card:hover { border-color: var(--line); transform: translateY(-4px); }
.split__card::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(233, 168, 92, .14), transparent 65%); opacity: 0; transition: opacity .5s; }
.split__card:hover::after { opacity: 1; }
.split__card .k { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.split__card h3 { margin: .6rem 0 .4rem; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 340; }
.split__card p { font-size: .95rem; color: var(--cream-dim); }
.split__card .big { display: block; margin-top: .8rem; font-family: var(--f-display); font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--gold-hi); }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; min-height: clamp(52vh, 62vh, 640px); display: flex; align-items: flex-end; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); will-change: transform; }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--ink-rgb), .66) 0%, rgba(var(--ink-rgb), .34) 40%, rgba(var(--ink-rgb), .86) 85%, var(--bg) 100%),
    linear-gradient(90deg, rgba(var(--ink-rgb), .55) 0%, transparent 60%);
}
.page-hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: 150px var(--gutter) clamp(40px, 7vh, 90px);
}
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 1.4rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim);
}
.crumb a { color: var(--gold); }
.crumb a:hover { color: var(--gold-hi); }
.crumb span { opacity: .5; }
.page-hero h1 { margin-top: .7rem; font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 330; letter-spacing: -.02em; line-height: 1; }
.page-hero .lede { margin-top: 1.4rem; }
.page-hero .eyebrow, .page-hero h1, .page-hero .lede, .crumb { opacity: 0; animation: fadeUp 1s var(--ease) forwards; }
.crumb { animation-delay: .1s; }
.page-hero .eyebrow { animation-delay: .2s; }
.page-hero h1 { animation-delay: .3s; }
.page-hero .lede { animation-delay: .45s; }

/* ---------- Menu pages ---------- */
.menu-nav-wrap { position: sticky; top: 90px; z-index: 40; margin-bottom: clamp(30px, 4vw, 54px); }
.menu-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  padding: 14px;
  background: rgba(var(--ink-rgb), .72); backdrop-filter: blur(14px);
  border: 1px solid var(--line-soft); border-radius: 100px;
}
.menu-nav a {
  padding: 8px 14px; border-radius: 100px;
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-dim);
  transition: color .3s, background .3s;
}
.menu-nav a:hover, .menu-nav a.is-active { color: var(--gold-hi); background: rgba(201, 162, 75, .1); }
.menu-nav .menu-nav__alt { color: var(--gold-hi); border: 1px solid var(--line); background: rgba(201, 162, 75, .07); }
.menu-nav .menu-nav__alt:hover { background: rgba(201, 162, 75, .16); }
.menu-nav__arrow { display: none; }

.menu-cat { margin-bottom: clamp(44px, 6vw, 80px); scroll-margin-top: 150px; }
.menu-figure {
  position: relative; overflow: hidden;
  min-height: 230px; margin: 0 0 clamp(18px, 2.4vw, 30px);
  border-radius: var(--radius); border: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.menu-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.menu-figure:hover img { transform: scale(1.04); }
.menu-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(var(--ink-rgb), .75)); }
.menu-figure figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--f-display); font-style: italic; font-size: 1.05rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
}
.menu-cat__head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 1.8rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.menu-cat__head h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 340; white-space: nowrap; }
.menu-cat__head .rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.menu-cat__head .note { font-family: var(--f-display); font-style: italic; font-size: .95rem; color: var(--gold); opacity: .85; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 52px) clamp(30px, 5vw, 80px); }
.menu-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 2px 10px; padding: .5rem 0; }
.menu-item__name {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .2rem .5rem;
  font-family: var(--f-display); font-size: 1.14rem; font-weight: 400; line-height: 1.25; letter-spacing: normal;
}
.tag {
  font-family: var(--f-body); font-size: .6rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); border-radius: 4px; padding: 1px 5px;
  transform: translateY(-2px);
}
.tag--sig { color: #241a06; background: var(--gold-grad); border-color: transparent; }
.menu-item__price { font-family: var(--f-display); font-size: 1.06rem; color: var(--gold-hi); white-space: nowrap; }
.menu-item__desc { grid-column: 1 / -1; max-width: 46ch; margin-top: 2px; font-size: .85rem; color: var(--cream-dim); }

/* Price table (wine, spirits): name + N price columns */
.wine { --cols: 2; --col-w: 96px; }
.wine-head, .wine-item { display: grid; grid-template-columns: 1fr repeat(var(--cols), var(--col-w)); gap: 2px 12px; align-items: baseline; }
.wine-head { margin-bottom: .2rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line-soft); }
.wine-head span { text-align: right; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-faint); }
.wine-head span:first-child { text-align: left; }
.wine-item { padding: .62rem 0; }
.wine-item__name { font-family: var(--f-display); font-size: 1.14rem; font-weight: 400; line-height: 1.25; }
.wine-item__p { text-align: right; white-space: nowrap; font-family: var(--f-display); font-size: 1.02rem; color: var(--gold-hi); }
.wine-item__p.is-empty { color: var(--cream-faint); opacity: .35; }
.wine-item__desc { grid-column: 1 / -1; max-width: 72ch; margin-top: 2px; font-size: .85rem; color: var(--cream-dim); }

.drinks-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(10px, 1.4vw, 20px); margin-top: clamp(28px, 4vw, 50px); }
.drink-card { position: relative; overflow: hidden; margin: 0; aspect-ratio: 2 / 3; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--bg-2); }
.drink-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.drink-card:hover img { transform: scale(1.06); }
.drink-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 42%, rgba(var(--ink-rgb), .88)); }
.drink-card figcaption { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; }
.drink-card__name { display: block; font-family: var(--f-display); font-size: 1.1rem; line-height: 1.2; }
.drink-card__price { font-size: .78rem; letter-spacing: .08em; color: var(--gold-hi); }

.menu-legend {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px;
  padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
  font-size: .8rem; color: var(--cream-faint); text-align: center;
}
.menu-legend span { display: inline-flex; align-items: center; gap: 8px; }
.menu-legend .tag { transform: none; }

/* ---------- Feature rows (story / lounge / events) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; margin-bottom: clamp(44px, 7vw, 110px); }
.feature:last-child { margin-bottom: 0; }
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.feature__media:hover img { transform: scale(1.05); }
.feature__body .h2 { margin: .3rem 0 1.2rem; }
.feature__body p { max-width: 50ch; margin-bottom: 1rem; font-size: clamp(1rem, 1.2vw, 1.12rem); color: var(--cream-dim); }
.feature__body .btn { margin-top: .8rem; }

/* ---------- Occasion cards ---------- */
.occasions { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.occasion { position: relative; overflow: hidden; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.occasion__img { position: absolute; inset: 0; z-index: 0; }
.occasion__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.occasion__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--ink-rgb), .1), rgba(var(--ink-rgb), .45) 45%, rgba(var(--ink-rgb), .92)); }
.occasion:hover .occasion__img img { transform: scale(1.08); }
.occasion > *:not(.occasion__img) { position: relative; z-index: 1; }
.occasion h3 { margin-bottom: .4rem; font-size: 1.55rem; font-weight: 360; }
.occasion p { font-size: .9rem; color: var(--cream-dim); }

/* ---------- Gallery ---------- */
.masonry { columns: 3; column-gap: clamp(12px, 1.6vw, 20px); }
.masonry__item { position: relative; overflow: hidden; break-inside: avoid; margin: 0 0 clamp(12px, 1.6vw, 20px); border-radius: var(--radius); border: 1px solid var(--line-soft); }
.masonry__item img { width: 100%; transition: transform 1.2s var(--ease); }
.masonry__item:hover img { transform: scale(1.06); }
.masonry__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(var(--ink-rgb), .6)); opacity: 0; transition: opacity .4s; }
.masonry__item:hover::after { opacity: 1; }
.masonry__item figcaption { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-size: .8rem; letter-spacing: .06em; opacity: 0; transform: translateY(6px); transition: .4s var(--ease); text-shadow: 0 2px 10px rgba(0, 0, 0, .8); }
.masonry__item:hover figcaption { opacity: 1; transform: none; }
@media (hover: none) { .masonry__item figcaption { opacity: 1; transform: none; } .masonry__item::after { opacity: 1; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: stretch; }
.info-card { padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-2); }
.info-row { display: flex; gap: 16px; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.info-row:last-of-type { border-bottom: 0; }
.info-row .ic { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); color: var(--gold); }
.info-row .ic svg { width: 18px; height: 18px; }
.info-row > div { flex: 1; }
.info-row__label { margin-bottom: .35rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.info-row p:not(.info-row__label), .info-row a { display: block; font-size: 1rem; color: var(--cream-dim); }
.info-row a:hover { color: var(--gold-hi); }
.info-card .cta-actions { justify-content: flex-start; margin-top: 1.4rem; }
.map-embed { min-height: 380px; overflow: hidden; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-2); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.4) invert(.9) hue-rotate(180deg) contrast(.9); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(36px, 6vw, 80px);
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(120deg, #120f0b, #221c14);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 0%, rgba(233, 168, 92, .16), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 18ch; margin: .6rem auto 1rem; }
.cta-band p { max-width: 48ch; margin: 0 auto 1.8rem; color: var(--cream-dim); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; padding-top: clamp(70px, 10vw, 140px); border-top: 1px solid var(--line-soft); }
.footer-word { margin-bottom: clamp(-30px, -2vw, -10px); overflow: hidden; pointer-events: none; user-select: none; }
.footer-word img {
  width: min(1240px, 94%); height: auto; margin-inline: auto;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 30%, rgba(0, 0, 0, .06) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 30%, rgba(0, 0, 0, .06) 100%);
}
.footer-word img.reveal.in { opacity: .5; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr; gap: clamp(24px, 4vw, 60px); padding-block: clamp(40px, 6vw, 80px); }
.footer-col h3 { margin-bottom: 1.2rem; font-family: var(--f-body); font-size: .7rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.footer-col p, .footer-col > a { display: block; margin-bottom: .55rem; font-size: .92rem; color: var(--cream-dim); transition: color .3s; }
.footer-col > a:hover { color: var(--gold-hi); }
.footer-logo img { width: 210px; height: auto; }
.footer-brand p { max-width: 34ch; margin-top: 1.2rem; }
.follow-pill {
  display: inline-flex !important; align-items: center; justify-content: space-between; gap: 14px;
  max-width: 320px; margin-top: 1rem; padding: 5px 5px 5px 18px;
  border: 1px solid var(--line); border-radius: 100px;
  font-size: .85rem; color: var(--cream-dim);
}
.follow-pill b { display: grid; place-items: center; flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad); color: #241a06; transition: transform .4s var(--ease); }
.follow-pill b svg { width: 16px; height: 16px; }
.follow-pill:hover { color: var(--gold-hi); border-color: var(--gold); }
.follow-pill:hover b { transform: scale(1.06); }
.hours-line { display: flex; justify-content: space-between; gap: 14px; padding: .35rem 0; border-bottom: 1px dashed var(--line-soft); font-size: .88rem; color: var(--cream-dim); }
.hours-line b { font-weight: 500; color: var(--cream); text-align: right; }
.hours-line.is-event b { color: var(--gold-hi); }
.footer-col .social { margin-top: 1.4rem; }
.footer-bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px;
  padding-block: 26px; border-top: 1px solid var(--line-soft);
  font-size: .78rem; color: var(--cream-faint);
}

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes riseIn { to { opacity: 1; transform: none; } }
@keyframes slowZoom { from { transform: scale(1.08); } to { transform: scale(1.18); } }
@keyframes marquee { to { transform: translateX(-33.3334%); } }
@keyframes railRun { to { top: 100%; } }

/* ---------- Large screens: bigger menu type ---------- */
@media (min-width: 1024px) {
  .menu-cat__head h2 { font-size: clamp(1.7rem, 3.2vw, 3rem); }
  .menu-cat__head .note { font-size: 1.3rem; }
  .menu-item__name, .menu-item__price { font-size: 1.85rem; }
  .menu-item__desc { font-size: 1rem; }
  .tag { font-size: .72rem; }
  .menu-figure { min-height: 280px; }
  .wine { --col-w: 130px; }
  .wine-item__name, .wine-item__p { font-size: 1.85rem; }
  .wine-item__desc { font-size: 1rem; }
  .drink-card__name { font-size: 1.35rem; }
}

/* ---------- Tablet ---------- */
@media (max-width: 1000px) {
  .nav-overlay { grid-template-columns: 1fr; }
  .nav-aside { display: none; }
  .nav-overlay__logo { display: block; position: absolute; top: 18px; left: var(--gutter); z-index: 2; }
  .nav-overlay__logo img { height: 70px; width: auto; }
  .nav-overlay__close { top: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; gap: 48px; }
  .story__visual { order: -1; max-width: 380px; width: 100%; margin-inline: auto; }
  .region-row { display: grid; grid-template-columns: repeat(3, 1fr); }
  .room__copy, .room__gallery { grid-column: 1 / -1; padding-right: 0; }
  .drinks-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .header-right .btn-ghost { display: none; }
  .header-cta { --pad: .9em 1.4em; font-size: .74rem; }
}
@media (max-width: 820px) {
  .menu-grid { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .occasions, .split, .contact-grid { grid-template-columns: 1fr; }
  .dishes { grid-template-columns: repeat(6, 1fr); }
  .c-7, .c-6, .c-5, .c-4 { grid-column: span 6; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .masonry { columns: 2; }
  .fullbleed__img { background-attachment: scroll; }
}
@media (min-width: 561px) and (max-width: 820px) {
  .c-7, .c-6, .c-5, .c-4 { grid-column: span 3; }
}

/* ---------- Phone ---------- */
@media (max-width: 560px) {
  .site-header { display: flex; justify-content: space-between; padding-inline: 14px; }
  .header-left { order: 2; }
  .header-right { display: none; }
  .menu-trigger { font-size: 0; gap: 0; }
  .brand__logo { height: 58px; }
  .site-header.scrolled .brand__logo { height: 48px; }

  .page-hero__inner { padding-top: 120px; }
  .hero__title { width: 92vw; }
  .scroll-cue { display: none; }

  .menu-nav-wrap { top: 74px; }
  .menu-nav { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .menu-nav::-webkit-scrollbar { display: none; }
  .menu-nav a { flex: none; }
  .menu-nav__arrow {
    position: absolute; top: 0; bottom: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    width: 38px; color: var(--gold-hi); transition: opacity .25s;
  }
  .menu-nav__arrow svg { width: 15px; height: 15px; }
  .menu-nav__arrow--left { left: 0; border-radius: 100px 0 0 100px; background: linear-gradient(to right, rgba(var(--ink-rgb), .95) 55%, rgba(var(--ink-rgb), 0)); }
  .menu-nav__arrow--right { right: 0; border-radius: 0 100px 100px 0; background: linear-gradient(to left, rgba(var(--ink-rgb), .95) 55%, rgba(var(--ink-rgb), 0)); }
  .menu-nav__arrow.is-hidden { opacity: 0; pointer-events: none; }

  .menu-cat { scroll-margin-top: 140px; }
  .menu-cat__head { flex-wrap: wrap; gap: 6px 12px; }
  .menu-cat__head h2 { white-space: normal; }
  .menu-cat__head .rule { min-width: 16px; }
  .menu-figure { min-height: 190px; }
  .wine { --col-w: 70px; }
  .wine-head, .wine-item { gap: 2px 8px; }
  .wine-item__p { font-size: .9rem; }
  .drinks-gallery { grid-template-columns: repeat(2, 1fr); }

  .region-row { grid-template-columns: 1fr 1fr; }
  .region h3 { font-size: 1.25rem; }
  .room__gallery { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .gtile.tall { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 10; }
  .gtile:not(.tall) { aspect-ratio: 1; }
  .masonry { columns: 1; }
  .dish-card { min-height: 300px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-word img { width: 86%; }
  .cta-actions .btn, .celebrate .btn { white-space: normal; text-align: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .hero__title img, .hero__eyebrow, .hero__sub, .hero__actions, .hero__meta,
  .page-hero .eyebrow, .page-hero h1, .page-hero .lede, .crumb { opacity: 1; transform: none; }
}
