/* ───────────────────────────────────────────────────────────────
   MAISON LUMIÈRE · Core stylesheet
   ─────────────────────────────────────────────────────────────── */

:root {
  --bg: #0b0a08;
  --bg-2: #14110d;
  --surface: #1b1713;
  --ink: #efe8da;
  --ink-soft: #cdc4b3;
  --ink-mute: #8a8276;
  --line: #2a241d;
  --gold: #c9a96e;
  --gold-2: #e7cf9b;
  --wine: #6b1f2e;
  --paper: #f5efe6;

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --italic: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.7, 0, .84, 0);

  --pad: clamp(20px, 4vw, 64px);
  --maxw: 1480px;
}

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

html {
  scroll-behavior: auto;
  background: var(--bg);
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* `overflow-x:hidden` on html/body breaks descendant position:sticky
     (the dishes "Seven movements" pin would silently fail).
     `overflow-x:clip` contains overflow without creating a scroll container. */
  overflow-x: clip;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: #000;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #3a3128;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ─── Typography ───────────────────────────────────────────── */
.serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.01em;
}

.italic {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-2px);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.015em;
}

.h-display {
  font-size: clamp(40px, 8.5vw, 140px);
  line-height: .9;
}

.h-1 {
  font-size: clamp(34px, 5.6vw, 88px);
  line-height: .92;
}

.h-2 {
  font-size: clamp(28px, 4.2vw, 62px);
  line-height: .94;
}

.h-3 {
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1;
}

p.lead {
  font-size: clamp(17px, 1.2vw, 20px);
  color: var(--ink-soft);
  max-width: 54ch;
}

/* ─── Layout primitives ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section {
  position: relative;
  padding: clamp(80px, 12vw, 180px) 0;
}

.grid {
  display: grid;
  gap: clamp(24px, 3vw, 56px);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-12 {
  grid-template-columns: repeat(12, 1fr);
}

@media (max-width:900px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ─── Buttons / links ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease);
  border-radius: 999px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .55s var(--ease-out);
  z-index: 0;
}

.btn>* {
  position: relative;
  z-index: 1;
}

.btn:hover {
  color: #000;
}

.btn:hover::before {
  transform: translateY(0);
}

.btn--solid {
  background: var(--gold);
  color: #000;
}

.btn--solid::before {
  background: var(--ink);
  transform: translateY(101%);
}

.btn--solid:hover {
  color: var(--gold);
}

/* Arrow glyph slides out and fades on hover so the label sits flush
   with the filled background. */
.btn__arrow {
  display: inline-block;
  transition: transform .4s var(--ease), opacity .3s ease;
  will-change: transform, opacity;
}

.btn:hover .btn__arrow {
  opacity: 0;
  transform: translateX(14px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-bottom: 6px;
}

.link-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform .5s var(--ease-out);
}

.link-arrow:hover::after {
  transform-origin: left;
  transform: scaleX(0);
  animation: arrow-line 1s .5s var(--ease-out) forwards;
}

@keyframes arrow-line {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 24px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .5s var(--ease), backdrop-filter .5s, padding .4s var(--ease);
  mix-blend-mode: normal;
}

.nav.is-scrolled {
  background: rgba(11, 10, 8, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 110, .12);
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav__brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__brand small {
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: var(--sans);
}

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav__links a {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-out);
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__time {
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.nav__burger {
  display: none;
  width: 30px;
  height: 18px;
  position: relative;
}

.nav__burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .4s var(--ease);
}

.nav__burger span:nth-child(1) {
  top: 0;
}

.nav__burger span:nth-child(2) {
  bottom: 0;
}

.nav__burger.is-open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  bottom: 8px;
  transform: rotate(-45deg);
}

@media (max-width:1000px) {
  .nav {
    padding: 16px 20px;
  }

  .nav__brand {
    font-size: 18px;
    gap: 8px;
  }

  .nav__brand small {
    display: none;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 96px 24px 48px;
    transform: translateY(-100%);
    transition: transform .6s var(--ease-out), visibility 0s linear .6s;
    z-index: 65;
    visibility: hidden;
  }

  .nav__links.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform .6s var(--ease-out), visibility 0s linear 0s;
  }

  .nav__links a {
    font-size: 22px;
    font-family: var(--serif);
    letter-spacing: .04em;
    text-transform: none;
    padding: 4px 0;
  }

  .nav__burger {
    display: block;
    z-index: 80;
  }

  .nav__time {
    display: none;
  }

  .nav__cta {
    gap: 12px;
  }

  .nav__cta .btn {
    display: none;
  }
}

/* ─── Image placeholder system ─────────────────────────────── */
.img {
  position: relative;
  background: linear-gradient(135deg, #1a1612 0%, #0d0b09 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 110, .04), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .012) 0 2px, transparent 2px 6px);
  pointer-events: none;
}

.img .img__prompt {
  position: relative;
  z-index: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .05em;
  color: rgba(239, 232, 218, .42);
  padding: 10px 14px;
  background: rgba(0, 0, 0, .45);
  border-top: 1px solid rgba(201, 169, 110, .2);
  width: 100%;
  max-width: 100%;
}

.img .img__prompt b {
  color: var(--gold);
  font-weight: 400;
}

/* Prompts are dev-only artifacts. Images are wired up — hide them by default. */
.img .img__prompt {
  display: none;
}

/* ─── Reveal / scroll primitives ───────────────────────────── */
/* `overflow:hidden` clips descenders (g, y, p, j) on tight-line-height
   serif headings. Pad the mask invisibly so the cropped region sits
   below the descender, not through it. */
.reveal-mask {
  /* overflow: hidden; */
  display: inline-block;
  vertical-align: bottom;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
  line-height: inherit;
}

.reveal-mask>span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
  will-change: transform;
}

.is-in .reveal-mask>span {
  transform: translateY(0);
  line-height: 1;
}

.reveal-line {
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}

.reveal-line>* {
  transform: translateY(60px);
  opacity: 0;
  transition: transform 1.1s var(--ease-out), opacity .8s ease;
}

.is-in .reveal-line>* {
  transform: translateY(0);
  opacity: 1;
}

.reveal-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 1.1s var(--ease-out), opacity 1s;
}

.is-in .reveal-fade {
  opacity: 1;
  transform: translateY(0);
}

.reveal-clip {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.4s var(--ease-out);
}

.is-in .reveal-clip {
  clip-path: inset(0 0 0 0);
}

.reveal-zoom .img {
  transform: scale(1.18);
  transition: transform 1.6s var(--ease-out);
}

/* `data-reveal` sits on the parent of `.reveal-zoom`, so the `is-in`
   class lands on the ancestor — match both shapes. */
.is-in.reveal-zoom .img,
.is-in .reveal-zoom .img {
  transform: scale(1);
}

/* Staggers */
[data-stagger]>* {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* ─── Hero (home) ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-origin: center;
}

.hero__bg .img {
  width: 100%;
  height: 100%;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Same dark base as `.img` so a slow video network still feels intentional. */
  background: #0b0a08;
  transform: scale(1.5);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 8, .5) 0%, rgba(11, 10, 8, .2) 30%, rgba(11, 10, 8, .6) 70%, rgba(11, 10, 8, .95) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad) clamp(60px, 8vw, 120px);
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 8.5vw, 140px);
  line-height: .9;
  letter-spacing: -.025em;
  font-weight: 400;
}

.hero__title .italic {
  font-family: var(--italic);
  font-weight: 300;
  letter-spacing: -.01em;
}

.hero__sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  margin-top: 60px;
}

.hero__sub p {
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 32px;
}

.hero__ctas .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: none;
  color: var(--ink-soft);
}

.hero__ctas .link-arrow:hover {
  color: var(--gold);
}

.hero__ctas .link-arrow .btn__arrow {
  transition: transform .4s var(--ease);
}

.hero__ctas .link-arrow:hover .btn__arrow {
  transform: translateX(6px);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 3;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2.4s var(--ease) infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    transform: scaleY(.3);
    transform-origin: top;
    opacity: .4;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Floating awards row */
.hero__awards {
  position: absolute;
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3;
  writing-mode: vertical-rl;
  transform-origin: left;
  rotate: 180deg;
  transform: translateY(50%);
}

.hero__awards span {
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width:1100px) {
  .hero__awards {
    display: none;
  }
}

/* ─── Marquee ──────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.marquee__track {
  display: flex;
  gap: 32px;
  animation: marquee 45s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--italic);
  font-size: clamp(13px, 1.2vw, 17px);
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}

.marquee__track span::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

/* ─── Philosophy split ─────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: 1fr 1fr;
}

.split--reverse>*:first-child {
  order: 2;
}

@media (max-width:900px) {

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .split--reverse>*:first-child {
    order: 0;
  }
}

/* ─── Signature dishes (horizontal pinned scroll) ──────────── */
.dishes {
  background: var(--bg);
  position: relative;
}

.dishes__pin {
  height: 380vh;
  position: relative;
}

.dishes__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Promote to its own layer so horizontal transform doesn't repaint the page. */
  contain: layout paint;
}

.dishes__track {
  display: flex;
  gap: clamp(40px, 5vw, 80px);
  padding: 0 var(--pad);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.dishes__intro {
  flex: 0 0 70vw;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.dish-card {
  flex: 0 0 clamp(360px, 38vw, 540px);
  position: relative;
}

.dish-card .img {
  aspect-ratio: 3/4;
}

.dish-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 24px;
}

.dish-card__name {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
}

.dish-card__index {
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
}

.dish-card__desc {
  color: var(--ink-mute);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.7;
  max-width: 34ch;
}

.dish-card__price {
  font-family: var(--italic);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-2);
}

@media (max-width:900px) {
  .dishes__pin {
    height: auto;
  }

  .dishes__sticky {
    position: static;
    height: auto;
    padding: 60px 0;
  }

  .dishes__track {
    flex-direction: column;
    padding: 0 var(--pad);
  }

  .dishes__intro {
    flex: 1;
    max-width: none;
    margin-bottom: 40px;
  }

  .dish-card {
    flex: 1;
  }
}

/* ─── Menu glimpse (homepage) ──────────────────────────────── */
.menu-glimpse {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-glimpse__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.menu-glimpse__meta {
  color: var(--ink-mute);
  font-size: 13px;
  max-width: 32ch;
  text-align: right;
  font-family: var(--italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
}

.menu-list--glimpse .menu-item {
  padding: 28px 0;
}

.menu-list--glimpse .menu-item__paired {
  margin-top: 6px;
}

.menu-glimpse__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.menu-glimpse__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width:700px) {

  .menu-glimpse__head,
  .menu-glimpse__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-glimpse__meta {
    text-align: left;
  }
}

/* ─── Chef (sticky reveal) ─────────────────────────────────── */
.chef {
  position: relative;
}

.chef__inner {
  position: relative;
}

.chef__media {
  position: sticky;
  top: 10vh;
  height: 80vh;
  contain: layout paint;
}

.chef__media .img {
  height: 100%;
}

.chef__text {
  padding: clamp(40px, 8vw, 120px) 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.chef__verse {
  max-width: 42ch;
}

.chef__verse h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 16px;
}

.chef__verse p {
  color: var(--ink-soft);
}

@media (max-width:900px) {
  .chef__media {
    position: relative;
    top: 0;
    height: 60vh;
    margin-bottom: 40px;
  }
}

/* ─── Awards ───────────────────────────────────────────────── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.award-cell {
  background: var(--bg);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .6s var(--ease);
}

.award-cell:hover {
  background: var(--bg-2);
}

.award-cell__year {
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
}

.award-cell__title {
  font-family: var(--serif);
  font-size: 24px;
}

.award-cell__org {
  color: var(--ink-mute);
  font-size: 13px;
}

@media (max-width:900px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:500px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Gallery (asymmetric) ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 24px;
}

/* Grid cells stretch to their row span. Each cell wraps the image in a
   `.reveal-zoom` div for the entrance animation. Without an explicit
   height on the wrapper, the inner `.img { height:100% }` collapses
   to 0 and the gallery renders as solid black. */
.gallery-grid>* {
  position: relative;
}

.gallery-grid .reveal-zoom {
  width: 100%;
  height: 100%;
}

.gallery-grid .img {
  width: 100%;
  height: 100%;
}

.g-1 {
  grid-column: span 5;
  grid-row: span 7;
}

.g-2 {
  grid-column: span 4;
  grid-row: span 5;
}

.g-3 {
  grid-column: span 3;
  grid-row: span 6;
}

.g-4 {
  grid-column: span 4;
  grid-row: span 6;
}

.g-5 {
  grid-column: span 5;
  grid-row: span 5;
}

.g-6 {
  grid-column: span 3;
  grid-row: span 5;
}

.g-7 {
  grid-column: span 6;
  grid-row: span 5;
}

.g-8 {
  grid-column: span 6;
  grid-row: span 5;
}

@media (max-width:900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 12px;
  }

  .g-1,
  .g-2,
  .g-3,
  .g-4,
  .g-5,
  .g-6,
  .g-7,
  .g-8 {
    grid-column: span 1;
    grid-row: span 2;
  }
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 120px var(--pad) 60px;
  position: relative;
  overflow: hidden;
}

.footer__display {
  font-family: var(--serif);
  font-size: clamp(56px, 13.5vw, 200px);
  line-height: .9;
  letter-spacing: -.04em;
  white-space: nowrap;
  color: var(--ink);
  /* `background-clip:text` does not propagate to child spans created by
     `data-split`, so the words rendered invisible. `mask-image` clips
     against the alpha channel and DOES apply to descendants — same
     fade-into-bg look, every word visible. */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  margin-bottom: 72px;
  overflow: hidden;
}

.footer__display .italic {
  font-family: var(--italic);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.footer h5 {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer ul a {
  color: var(--ink-soft);
  font-size: 14px;
  transition: color .3s;
}

.footer ul a:hover {
  color: var(--gold);
}

.footer__bottom {
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
}

@media (max-width:800px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Page headers (sub-pages) ─────────────────────────────── */
.page-header {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: -5% 0 0 0;
  z-index: 0;
}

.page-header__bg .img {
  width: 100%;
  height: 110%;
}

.page-header__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 8, .4), rgba(11, 10, 8, .95));
  z-index: 1;
}

.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) 80px;
}

.page-header__title {
  font-size: clamp(40px, 8vw, 130px);
  line-height: .92;
  letter-spacing: -.02em;
}

.page-header__crumb {
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

/* ─── Menu ─────────────────────────────────────────────────── */
.menu-nav {
  position: sticky;
  top: 84px;
  z-index: 30;
  background: rgba(11, 10, 8, .85);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--pad);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.menu-nav__inner a {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 8px 0;
  position: relative;
}

.menu-nav__inner a.is-active,
.menu-nav__inner a:hover {
  color: var(--gold);
}

.menu-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.menu-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.menu-section__title {
  font-size: clamp(40px, 6vw, 84px);
}

.menu-section__meta {
  color: var(--ink-mute);
  font-size: 13px;
  max-width: 32ch;
  text-align: right;
}

.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
  cursor: pointer;
  transition: background .5s var(--ease);
}

.menu-item:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, .04), transparent);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}

.menu-item:hover::before {
  opacity: 1;
}

.menu-item__num {
  font-family: var(--italic);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
}

.menu-item__name {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 10px;
}

.menu-item__desc {
  color: var(--ink-mute);
  font-size: 14px;
  max-width: 60ch;
  line-height: 1.7;
}

.menu-item__tags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.menu-item__tag {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
}

.menu-item__price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-2);
  white-space: nowrap;
  padding-top: 6px;
}

.menu-item__paired {
  color: var(--ink-mute);
  font-size: 12px;
  font-family: var(--italic);
  font-style: italic;
  margin-top: 8px;
}

/* Tasting-menu items can carry an optional thumbnail — square photo
   slotted between the course number and the description. The grid layout
   adapts automatically when `.menu-item--with-thumb` is present. */
.menu-item--with-thumb {
  grid-template-columns: 60px 200px 1fr auto;
}

.menu-item__thumb {
  width: 200px;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1612 0%, #0d0b09 100%);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  transition: transform .8s var(--ease-out);
}

.menu-item--with-thumb:hover .menu-item__thumb {
  transform: scale(1.04);
}

@media (max-width:700px) {
  .menu-item {
    grid-template-columns: 40px 1fr;
  }

  .menu-item__price {
    grid-column: 2;
    padding-top: 0;
  }

  .menu-item--with-thumb {
    grid-template-columns: 40px 84px 1fr;
  }

  .menu-item--with-thumb .menu-item__thumb {
    width: 84px;
  }

  .menu-item--with-thumb .menu-item__price {
    grid-column: 3;
  }
}

/* ─── Reservations form ────────────────────────────────────── */
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width:700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-row input,
.form-row select,
.form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  transition: border-color .3s;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--sans);
  font-size: 14px;
}

.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 18px;
  padding-right: 32px;
}

/* ─── Press / quotes ───────────────────────────────────────── */
.quote-block {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.quote-block blockquote {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.3;
  color: var(--ink);
}

.quote-block cite {
  display: block;
  margin-top: 40px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Journal cards ────────────────────────────────────────── */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media (max-width:900px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}

.journal-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}

.journal-card .img {
  aspect-ratio: 4/5;
  transition: transform 1s var(--ease-out);
}

.journal-card:hover .img {
  transform: scale(1.03);
}

.journal-card__meta {
  display: flex;
  gap: 20px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.journal-card__title {
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.2;
}

.journal-card__excerpt {
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── Custom cursor (desktop) ──────────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  /* mix-blend-mode:difference forces full-viewport repaint every frame — dropped. */
  transform: translate3d(-50%, -50%, 0);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, border .3s;
  will-change: transform;
}

.cursor.is-hover {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--gold);
}

@media (max-width:1100px) {
  .cursor {
    display: none;
  }
}

@media (hover:none) {
  .cursor {
    display: none;
  }
}

/* ─── Loader ───────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s, visibility .8s;
}

.loader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.loader__brand {
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: .02em;
  opacity: 0;
  animation: fade-up 1s .2s var(--ease-out) forwards;
}

.loader__line {
  width: 200px;
  height: 1px;
  background: rgba(201, 169, 110, .2);
  position: relative;
  overflow: hidden;
}

.loader__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: left;
  animation: load-line 2s .6s var(--ease) forwards;
}

.loader__sub {
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: fade-up 1s .4s var(--ease-out) forwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes load-line {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* ─── Scroll progress ──────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 80;
  transition: width .15s linear;
}

/* ─── Contact map ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-row h5 {
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-row p,
.contact-row a {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
}

/* ─── Misc utils ───────────────────────────────────────────── */
.center {
  text-align: center;
}

.gold {
  color: var(--gold);
}

.divider {
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 0 auto;
  opacity: .4;
}

.small {
  font-size: 13px;
  color: var(--ink-mute);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.section-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* ─── Gallery filter bar (gallery.html) ────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.filter-bar button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.filter-bar button:hover {
  color: var(--ink);
  border-color: var(--ink-mute);
}

.filter-bar button.is-active {
  color: #0b0a08;
  background: var(--gold);
  border-color: var(--gold);
}

/* ─── Team / Brigade (experience.html) ─────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.team-card .reveal-zoom {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card .img {
  width: 100%;
  height: 100%;
}

.team-card h4 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
}

.team-card p {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width:900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:520px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Timeline (experience.html) ───────────────────────────── */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--line) 100%);
}

.timeline__item {
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 14px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
}

.timeline__year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  margin-bottom: 8px;
}

.timeline__text {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}

/* ─── Journal: featured + article meta ─────────────────────── */
.featured-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.featured-article .reveal-zoom {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.featured-article .img {
  width: 100%;
  height: 100%;
}

.featured-article h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (max-width:900px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.article-meta span:not(:first-child)::before {
  content: '·';
  margin-right: 18px;
  color: var(--ink-mute);
}

/* ─── Contact: map card, social grid (contact.html) ────────── */
.map-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.map-card .img {
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 169, 110, .18), 0 0 0 14px rgba(201, 169, 110, .08);
  transform: translate(-50%, -50%);
  animation: pin-pulse 2.4s var(--ease) infinite;
}

@keyframes pin-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(201, 169, 110, .18), 0 0 0 14px rgba(201, 169, 110, .08);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(201, 169, 110, .26), 0 0 0 24px rgba(201, 169, 110, .0);
  }
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width:900px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

.social-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}

.social-card:hover {
  border-color: var(--gold);
  background: var(--surface);
}

.social-card h5 {
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
}

.social-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.social-card a {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  transition: color .3s;
}

.social-card a:hover {
  color: var(--gold);
}

/* ─── Reservations layout (reservations.html) ──────────────── */
.res-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

@media (max-width:900px) {
  .res-grid {
    grid-template-columns: 1fr;
  }
}

.res-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.res-info>div {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.res-info h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.res-info p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
}

.res-info p a {
  border-bottom: 1px solid var(--line);
  transition: border-color .3s;
}

.res-info p a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.res-info .small {
  margin-top: 8px;
}

.step-dots {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.step-dots>div {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  transition: background .4s var(--ease);
}

.step-dots>div.is-active {
  background: var(--gold);
}

/* ─── Mobile pass ──────────────────────────────────────────────
   Layouts above already collapse to one column at 900/700px breakpoints;
   this pass tightens the *desktop-tuned* spacing, typography clamps and
   density that those grid switches don't address — so phones stop
   inheriting big-screen rhythm. Desktop is untouched. */
@media (max-width:760px) {
  :root {
    --pad: 20px;
  }

  section {
    padding: 60px 0;
  }

  /* Nav: tighter at phone widths. Brand size + small-tag hide handled at 1000px. */
  .nav {
    padding: 14px 20px;
  }

  .nav.is-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav__brand {
    font-size: 17px;
  }

  /* Loader */
  .loader__brand {
    font-size: 28px;
  }

  .loader__line {
    width: 140px;
  }

  .loader__sub {
    font-size: 9px;
    letter-spacing: .4em;
  }

  /* Hero — use small/dynamic viewport units so the mobile URL bar
     doesn't push the layout offscreen, and shorten the vertical hold
     so the title isn't marooned at the very bottom on tall phones. */
  .hero {
    min-height: 0;
    height: auto;
    min-height: 600px;
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero__video {
    transform: translateY(32px) scale(1.25);
  }

  .hero__inner {
    padding-bottom: 80px;
  }

  /* Stack eyebrow + coordinates vertically so the longitude doesn't
     overflow the gutter at narrow widths. */
  .hero__meta {
    margin-bottom: 20px;
    gap: 6px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__meta .mono {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .hero__sub {
    margin-top: 24px;
    gap: 24px;
  }

  .hero__sub p {
    font-size: 14px;
    line-height: 1.55;
    max-width: none;
  }

  .hero__ctas {
    gap: 20px 24px;
  }

  /* Scroll indicator collides with the Reserve button on a phone-tall
     hero — hide it, the marquee strip below already invites scrolling. */
  .hero__scroll {
    display: none;
  }

  /* Marquee */
  .marquee {
    padding: 14px 0 !important;
  }

  .marquee__track {
    gap: 24px;
  }

  .marquee__track span {
    font-size: 13px;
    gap: 24px;
  }

  /* Generic split layouts: stack with proper gap */
  .split {
    gap: 32px;
  }

  /* Philosophy / Chef / Menu glimpse rhythm */
  .menu-glimpse__head {
    margin-bottom: 40px;
    gap: 24px;
  }

  .menu-glimpse__meta {
    font-size: 14px;
    line-height: 1.6;
  }

  .menu-glimpse__foot {
    margin-top: 32px;
  }

  /* Menu items */
  .menu-item {
    padding: 22px 0;
    gap: 18px;
  }

  .menu-item__num {
    font-size: 22px;
  }

  .menu-item__name {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .menu-item__desc {
    font-size: 13px;
  }

  .menu-item__paired {
    font-size: 11px;
  }

  .menu-item__price {
    font-size: 18px;
  }

  .menu-section {
    padding: 60px 0;
  }

  .menu-section__head {
    margin-bottom: 40px;
    gap: 20px;
  }

  .menu-section__meta {
    text-align: left;
    max-width: none;
  }

  .menu-nav {
    top: 64px;
  }

  .menu-nav__inner {
    gap: 24px;
    padding: 14px 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .menu-nav__inner a {
    font-size: 10px;
    white-space: nowrap;
  }

  /* Awards */
  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .award-cell {
    padding: 28px 18px;
  }

  .award-cell__title {
    font-size: 18px;
  }

  .award-cell__org {
    font-size: 12px;
  }

  /* Gallery */
  .gallery-grid {
    grid-auto-rows: 120px;
    gap: 10px;
  }

  /* Quote */
  .quote-block blockquote {
    font-size: 22px;
    line-height: 1.4;
  }

  .quote-block cite {
    margin-top: 24px;
    font-size: 9px;
    letter-spacing: .3em;
  }

  /* Buttons */
  .btn {
    padding: 14px 22px;
    font-size: 11px;
    letter-spacing: .24em;
  }

  .link-arrow {
    font-size: 10px;
    letter-spacing: .28em;
  }

  /* Section labels */
  .section-label {
    font-size: 10px;
    letter-spacing: .32em;
    margin-bottom: 20px;
  }

  .section-label::before {
    width: 24px;
  }

  .eyebrow::before {
    width: 20px;
    margin-right: 10px;
  }

  /* Featured journal */
  .featured-article {
    padding-bottom: 48px;
    gap: 24px;
  }

  .article-meta {
    gap: 12px;
    font-size: 9px;
    letter-spacing: .24em;
  }

  .article-meta span:not(:first-child)::before {
    margin-right: 12px;
  }

  /* Journal cards */
  .journal-grid {
    gap: 32px;
  }

  .journal-card__title {
    font-size: 20px;
  }

  .journal-card__excerpt {
    font-size: 13px;
  }

  /* Team */
  .team-card h4 {
    font-size: 18px;
  }

  .team-card p {
    font-size: 10px;
    letter-spacing: .24em;
  }

  /* Timeline */
  .timeline {
    gap: 32px;
    padding-left: 24px;
  }

  .timeline__item::before {
    left: -29px;
    top: 11px;
    width: 9px;
    height: 9px;
  }

  .timeline__title {
    font-size: 18px;
  }

  .timeline__text {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Contact / map */
  .contact-row p,
  .contact-row a {
    font-size: 17px;
  }

  .social-card {
    padding: 24px 20px;
  }

  .social-card a {
    font-size: 15px;
  }

  /* Reservations */
  .res-info p {
    font-size: 17px;
  }

  /* Forms */
  .form-card {
    padding: 24px 20px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px;
  }

  /* Page header (sub-pages) */
  .page-header {
    min-height: 440px;
    height: 62vh;
  }

  .page-header__inner {
    padding-bottom: 48px;
  }

  /* Footer */
  .footer {
    padding: 64px 20px 32px;
  }

  .footer__display {
    /* Allow the brand to wrap on narrow screens instead of being clipped
       by `overflow:hidden` from the desktop `white-space:nowrap` rule. */
    white-space: normal;
    line-height: .92;
    margin-bottom: 48px;
  }

  .footer__grid {
    gap: 36px;
    padding-bottom: 32px;
  }

  .footer__grid>div h5 {
    margin-bottom: 14px;
  }

  .footer__bottom {
    margin-top: 24px;
    padding-top: 24px;
    font-size: 10px;
    letter-spacing: .16em;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Very small phones (≤420px) — final density tweaks. */
@media (max-width:420px) {
  .hero__inner {
    padding-bottom: 36px;
  }

  .hero__meta {
    margin-bottom: 16px;
  }

  .hero__meta .eyebrow::before {
    display: none;
  }

  .marquee__track span {
    font-size: 12px;
  }

  .award-cell {
    padding: 24px 14px;
  }

  .footer__display {
    font-size: 50px;
  }
}

/* 
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
} */