/* ============================================================
   Osteria Salina — Cucina del Sud
   Design system + components (framework-free)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Palette — warm lin / espresso / terracotta */
  --bone: #f4ecdd;
  --bone-2: #ece0cb;
  --paper: #faf4e8;
  --ink: #20180f;
  --ink-soft: #4c4036;
  --ink-mute: #6b5a48; /* darkened so 0.78rem muted text (.help, .note) clears AA (≥4.5:1) on both bone surfaces */
  --terracotta: #bc5b36;
  --terracotta-deep: #9a4527;
  --olive: #6a6a3f;
  --gold: #c29a4d;
  --gold-light: #f4d6a8; /* candle-gold for small text/labels on dark surfaces (≈7:1 on espresso) */
  --line: rgba(32, 24, 15, 0.14);
  --line-soft: rgba(32, 24, 15, 0.08);
  --card: #fbf6ec;

  /* Typography */
  --font-display: "Cormorant", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.36rem + 0.7vw, 2rem);
  --step-3: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --step-4: clamp(2.7rem, 2.1rem + 3vw, 4.6rem);
  --step-5: clamp(3.4rem, 2.6rem + 4.2vw, 6rem);

  /* Space */
  --gutter: clamp(1.2rem, 5vw, 4rem);
  --section: clamp(4.5rem, 9vw, 9rem);
  --maxw: 1280px;
  --header-height: 4.4rem;

  --radius: 4px;
  --radius-lg: 14px;
  --shadow: 0 22px 50px -28px rgba(32, 24, 15, 0.45);
  --shadow-soft: 0 14px 36px -22px rgba(32, 24, 15, 0.4);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* visually hidden but available to assistive tech (heading-structure anchors) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout primitives ---------- */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section); }
.stack > * + * { margin-top: 1.1rem; }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--step--1);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-deep);
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h-xl { font-size: var(--step-5); }
.h-lg { font-size: var(--step-4); }
.h-md { font-size: var(--step-3); }
.h-sm { font-size: var(--step-2); }
.lede {
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 46ch;
}
.muted { color: var(--ink-mute); }
/* muted text on dark (espresso) surfaces — governed once instead of inline rgba per page (≈11:1) */
.band .muted { color: rgba(250, 244, 232, 0.82); }
.italic-note {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta-deep);
}
/* on dark bands, terracotta-deep is dark-on-dark — use candle gold (gold-on-dark rule) */
.band .italic-note { color: var(--gold); }
.measure { max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.45s var(--ease), background-color 0.45s var(--ease),
    color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.btn:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn .arr { transition: transform 0.45s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
/* deeper terracotta so white label clears AA (≥4.5:1); base #bc5b36 sits right on the threshold */
.btn--accent { --bg: #a84d29; --fg: #fff; }
/* hover deepens to the brand deep-terracotta (white label ~6.4:1) — #88391c read as a muddy brown */
.btn--accent:hover { --bg: var(--terracotta-deep); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); border-color: var(--ink); }
.btn--light { --bg: var(--paper); --fg: var(--ink); border-color: var(--paper); }

.link-underline {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease);
}
.link-underline:hover { background-size: 100% 1px; }
/* links embedded in running prose: persistent underline (not distinguished by weight alone — WCAG 1.4.1) */
/* standalone CTA links (e.g. .story-hero__link, not inside a <p>) keep the hover-draw animation */
.note .link-underline,
.meta-row dd .link-underline,
p .link-underline { background-size: 100% 1px; }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.15rem;
}
/* solid state (scrolled or inner page) */
.site-header.is-solid {
  background: color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line-soft);
}
.site-header.is-hidden { transform: translateY(-100%); }

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.22rem + 0.4vw, 1.55rem);
  font-weight: 600;
  color: var(--nav-fg, var(--ink));
}
.brand__tag {
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--nav-fg, var(--terracotta-deep));
  opacity: 0.85;
  margin-top: 4px;
  padding-left: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.4rem);
}
.nav__list {
  display: flex;
  gap: clamp(1.1rem, 2.2vw, 2.1rem);
  align-items: center;
}
.nav__link {
  position: relative;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--nav-fg, var(--ink-soft));
  padding-block: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--nav-accent, var(--terracotta-deep)); }

/* header over hero — light text */
.site-header.on-hero:not(.is-solid) {
  --nav-fg: rgba(250, 244, 232, 0.92);
  --nav-accent: #fff;
}
.site-header.on-hero:not(.is-solid) .brand__name { color: #fff; }
.site-header.on-hero:not(.is-solid) .brand__tag { color: rgba(250, 244, 232, 0.85); }
.site-header.on-hero:not(.is-solid) .btn--ghost { --fg: #fff; border-color: rgba(255,255,255,0.4); }
.site-header.on-hero:not(.is-solid) .btn--ghost:hover { --bg: #fff; --fg: var(--ink); }

.nav__cta { display: inline-flex; }

/* Burger */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  position: relative;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--nav-fg, var(--ink));
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before { position: absolute; transform: translateY(-6px); }
.nav-toggle span::after { position: absolute; transform: translateY(6px); }

/* ============================================================
   Mobile nav panel
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 14vh, 8rem) var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-nav__list a {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 9vw, 3.2rem);
  font-weight: 500;
  color: var(--paper);
  padding-block: 0.45rem;
  border-bottom: 1px solid rgba(250, 244, 232, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mobile-nav__foot { display: flex; flex-direction: column; gap: 0.4rem; color: rgba(250,244,232,0.7); font-size: var(--step--1); }
.mobile-nav__foot a { color: var(--gold); }

body.nav-open { overflow: hidden; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media .hero-video { opacity: 0; transition: opacity 1.2s ease; }
.hero__media .hero-video.is-ready { opacity: 1; }
/* cinematic grade overlay */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(16, 11, 6, 0.30), rgba(16, 11, 6, 0.30)),
    linear-gradient(180deg, rgba(18,12,7,0.62) 0%, rgba(18,12,7,0.24) 26%, rgba(18,12,7,0.52) 58%, rgba(18,12,7,0.96) 100%),
    linear-gradient(98deg, rgba(16,11,6,0.84) 0%, rgba(16,11,6,0.52) 40%, rgba(16,11,6,0.12) 68%, transparent 84%),
    /* darken the bottom-right where the "Ce soir" aside sits over bright sleeve/plate (wide screens) */
    radial-gradient(72% 62% at 88% 82%, rgba(14,9,5,0.66), transparent 70%),
    radial-gradient(120% 80% at 82% 8%, rgba(188,91,54,0.14), transparent 60%);
}
.hero__inner {
  width: 100%;
  padding-block: clamp(3rem, 8vh, 7rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
}
.hero__title {
  font-size: var(--step-5);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--paper);
  text-shadow: 0 1px 3px rgba(12, 8, 4, 0.6), 0 2px 30px rgba(12, 8, 4, 0.7);
}
.hero__title em { font-style: italic; color: #f6dcb4; }
.hero__kicker { color: #f4d6a8; margin-bottom: 1.6rem; text-shadow: 0 1px 8px rgba(12, 8, 4, 0.8); }
.hero__kicker::before { background: #f4d6a8; }
.hero__sub {
  margin-top: 1.6rem;
  max-width: 38ch;
  font-size: var(--step-1);
  color: rgba(250, 244, 232, 0.96);
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(12, 8, 4, 0.75);
}
.hero__actions { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
/* ghost button over the cinematic hero — light treatment for contrast */
.hero .btn--ghost { --fg: var(--paper); border-color: rgba(250, 244, 232, 0.55); }
.hero .btn--ghost:hover { --bg: var(--paper); --fg: var(--ink); border-color: var(--paper); }
.hero__aside {
  text-align: right;
  font-size: var(--step--1);
  line-height: 1.5;
  color: rgba(250, 244, 232, 0.92);
  max-width: 18ch;
  text-shadow: 0 1px 10px rgba(12, 8, 4, 0.8);
}
.hero__aside strong { display: block; color: var(--paper); font-weight: 600; letter-spacing: 0.04em; }
.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 1.4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 244, 232, 0.7);
}
.hero__scroll .dot {
  width: 22px; height: 34px;
  border: 1px solid rgba(250,244,232,0.5);
  border-radius: 12px;
  position: relative;
}
.hero__scroll .dot::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 70% { opacity: 0; transform: translate(-50%, 10px); } }

/* sound/play hint pill for video */
.hero__videoctrl {
  position: absolute;
  right: var(--gutter);
  bottom: 1.4rem;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(20,14,9,0.4);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: rgba(250,244,232,0.85);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__videoctrl.is-shown { display: inline-flex; }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  padding-top: clamp(8rem, 16vh, 11rem);
  padding-bottom: var(--section);
  position: relative;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
.page-hero__title { font-size: clamp(2.4rem, 1.95rem + 2.5vw, 4rem); margin-top: 1.4rem; text-wrap: balance; }
.page-hero__title em { font-style: italic; color: var(--terracotta-deep); }
.page-hero__intro { margin-top: 1.4rem; }
.page-hero__meta {
  display: grid;
  gap: 1.1rem;
  align-content: end;
}
.meta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding-block: 0.9rem;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.meta-row dt { font-size: var(--step--1); letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta-deep); font-weight: 600; }
.meta-row dd { color: var(--ink-soft); }

/* ============================================================
   Story hero (histoire) — split image + cream panel
   ============================================================ */
.story-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(540px, 82vh, 820px);
  margin-top: var(--header-height);
}
.story-hero__media { position: relative; overflow: hidden; background: var(--bone-2); }
.story-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; }
.story-hero__panel {
  background: var(--bone);
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5.5rem);
}
.story-hero__inner { max-width: 32rem; }
.story-hero__title {
  font-size: clamp(2.1rem, 1.7rem + 2vw, 3.4rem);
  line-height: 1.08;
  text-wrap: balance;
  margin: 1rem 0 1.4rem;
}
.story-hero__title em { font-style: italic; color: var(--terracotta-deep); }
.story-hero__body { color: var(--ink-soft); max-width: 46ch; }
.story-hero__body + .story-hero__body { margin-top: 1rem; }
.story-hero__quote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.35;
  margin-top: 1.8rem;
}
.story-hero__quote em { font-style: italic; }
.story-hero__cite {
  display: block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
.story-hero__link { display: inline-block; margin-top: 1.8rem; color: var(--terracotta-deep); }
@media (max-width: 900px) {
  .story-hero { grid-template-columns: 1fr; min-height: 0; }
  .story-hero__media { height: clamp(280px, 48vh, 440px); }
}

/* ============================================================
   Section header
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.sec-head__title { font-size: var(--step-3); margin-top: 1rem; text-wrap: balance; }
.sec-head__title em { font-style: italic; color: var(--terracotta-deep); }
.sec-head p { max-width: 40ch; color: var(--ink-soft); }
@media (max-width: 720px) {
  .sec-head { grid-template-columns: 1fr; }
}

/* ============================================================
   Signature dishes (zig-zag — not 3 equal cards)
   ============================================================ */
.dishes { display: grid; gap: clamp(3rem, 7vw, 6rem); }
.dish {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.dish:nth-child(even) .dish__media { order: 2; }
.dish__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dish__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.dish:hover .dish__media img { transform: scale(1.05); }
.dish__index {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--paper);
  background: rgba(20,14,9,0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.dish__body { max-width: 46ch; }
.dish__name { font-size: var(--step-2); margin: 0.6rem 0 0.4rem; }
.dish__name em { font-style: italic; }
.dish__price { color: var(--terracotta-deep); font-weight: 600; font-variant-numeric: tabular-nums; }
.dish__desc { color: var(--ink-soft); margin-top: 0.8rem; }
.dish__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* ============================================================
   Feature / split band
   ============================================================ */
.band { background: var(--ink); color: var(--paper); }
.band .kicker { color: var(--gold); }
.band .display { color: var(--paper); }
.band--paper { background: var(--paper); color: var(--ink); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split__body { max-width: 50ch; }
.split__body .h-md { margin: 1rem 0 1.2rem; }

/* pull stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat { border-top: 1px solid rgba(250,244,232,0.2); padding-top: 1rem; }
.band--paper .stat { border-top-color: var(--line); }
.stat__num { font-family: var(--font-display); font-size: var(--step-2); display: block; line-height: 1; }
.stat__num em { font-style: italic; color: var(--gold); }
.band--paper .stat__num em { color: var(--terracotta-deep); }
.stat__label { font-size: var(--step--1); color: rgba(250,244,232,0.82); letter-spacing: 0.01em; margin-top: 0.5rem; display: block; }
.band--paper .stat__label { color: var(--ink-mute); }

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee {
  /* deep accent so white Cormorant text clears AA (~6.4:1); base #bc5b36 fails at this size */
  background: var(--terracotta-deep);
  color: #fff;
  overflow: hidden;
  padding-block: 1.2rem;
  border-block: 1px solid rgba(255,255,255,0.15);
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.92rem + 0.6vw, 1.3rem);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.marquee__track span::after { content: "✦"; font-style: normal; font-size: 0.7rem; opacity: 0.8; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Menu (carte page)
   ============================================================ */
/* "Couvert de carte" — centered typographic cover + appetizing photo band */
.menu-cover {
  padding-top: clamp(7rem, 14vh, 10rem);
  text-align: center;
}
.menu-cover__inner { max-width: 720px; margin-inline: auto; }
.menu-cover__kicker { justify-content: center; }
.menu-cover__script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta-deep);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(2.8rem, 2.1rem + 3vw, 4.2rem);
  margin: 0.6rem 0 0.4rem;
}
.menu-cover__title {
  font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2.1rem);
  font-weight: 600;
  text-wrap: balance;
}
.menu-cover__title em { font-style: italic; color: var(--ink-soft); }
.menu-cover__intro { margin: 1.1rem auto 0; max-width: 56ch; }
.menu-cover__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--line);
  border-block: 1px solid var(--line);
}
.menu-cover__meta .meta-row {
  display: block;
  text-align: center;
  background: var(--bone);
  border: 0;
  padding: 1.1rem 1rem;
}
.menu-cover__meta dt {
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
}
.menu-cover__meta dd { color: var(--ink-soft); font-size: var(--step--1); margin-top: 0.3rem; }
.menu-cover__band {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  height: clamp(150px, 24vw, 300px);
  overflow: hidden;
}
.menu-cover__band img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
/* warm veil seats the band into the page (no hard stock-photo edge) */
.menu-cover__band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, var(--bone) 0%, transparent 16%, transparent 84%, var(--bone) 100%);
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-block: 1rem;
  /* opaque so content scrolling underneath is cleanly hidden, not bleeding through */
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.menu-nav a {
  font-size: var(--step--1);
  letter-spacing: 0.05em;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--ink-soft);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-nav a:hover { border-color: var(--line); }
.menu-nav a.is-active { background: var(--ink); color: var(--paper); }

.menu-section { margin-bottom: clamp(3rem, 7vw, 5rem); scroll-margin-top: calc(var(--header-height) + 1.5rem); }
.menu-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--ink);
}
.menu-section__title { display: flex; align-items: center; gap: 0.85rem; }
.menu-section__icon { flex: 0 0 auto; width: 42px; height: 42px; color: var(--ink-mute); }
.menu-section__icon svg {
  width: 100%; height: 100%; display: block;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
@media (max-width: 560px) { .menu-section__icon { width: 34px; height: 34px; } }
.menu-section__head h2 { font-size: var(--step-3); }
.menu-section__head h2 em { font-style: italic; color: var(--terracotta-deep); }

/* closing botanical sign-off above the legal note */
.menu-outro {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem;
  margin: clamp(1rem, 3vw, 2rem) auto clamp(2.2rem, 5vw, 3.2rem);
  color: var(--terracotta-deep);
}
.menu-outro__rule { height: 1px; width: clamp(40px, 12vw, 72px); background: var(--line); }
.menu-outro__mark {
  width: 56px; height: 24px;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round; opacity: 0.85;
}
.menu-section__note { font-size: var(--step--1); color: var(--ink-mute); font-style: italic; text-align: right; max-width: 24ch; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; }
@media (max-width: 760px) { .menu-list { grid-template-columns: 1fr; } }

.menu-item {
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--line-soft);
}
.menu-item__line {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.menu-item__name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.2;
  flex: 0 1 auto;
}
.menu-item__name .it { font-style: italic; }
/* dotted price leader — decorative, filler element so dots stretch name → price */
.menu-item__lead {
  flex: 1 1 auto;
  align-self: flex-end;
  min-width: 1.2rem;
  margin-bottom: 0.34em;
  border-bottom: 2px dotted color-mix(in srgb, var(--ink) 26%, transparent);
}
.menu-item__price {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--terracotta-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-item__desc {
  color: var(--ink-soft);
  font-size: var(--step--1);
  line-height: 1.55;
  max-width: 54ch;
  margin-top: 0.3rem;
}
.menu-item__badges { display: inline-flex; gap: 0.35rem; margin-left: 0.5rem; vertical-align: middle; }
.badge {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  border: 1px solid color-mix(in srgb, var(--olive) 45%, transparent);
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  font-family: var(--font-body);
}
.badge--v { color: var(--olive); }
.badge--star { color: var(--terracotta-deep); border-color: color-mix(in srgb, var(--terracotta) 45%, transparent); }

.menu-formules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.formule { background: var(--card); padding: clamp(1.5rem, 3vw, 2.2rem); }
.formule h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); }
.formule .price { font-size: var(--step-2); color: var(--terracotta-deep); font-family: var(--font-display); margin: 0.5rem 0 0.8rem; }
.formule p { font-size: var(--step--1); color: var(--ink-soft); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 10.5vw;
  grid-auto-flow: row dense;
  gap: clamp(0.6rem, 1.4vw, 1rem);
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bone-2);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.1rem 0.9rem;
  color: var(--paper);
  font-size: var(--step--1);
  background: linear-gradient(transparent, rgba(20,14,9,0.78));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
/* caption reveals on hover; figures aren't focusable (no interactive child) so :focus-within
   covers any future link inside, and captions are always shown on touch (see @media below) */
.gallery-grid figure:hover figcaption,
.gallery-grid figure:focus-within figcaption { opacity: 1; transform: translateY(0); }
.gallery-grid figcaption em { font-family: var(--font-display); font-style: italic; }
/* touch / no-hover devices (the primary audience): captions are always visible */
@media (hover: none) {
  .gallery-grid figcaption { opacity: 1; transform: none; }
}

/* span helpers */
.g-tall { grid-row: span 3; grid-column: span 4; }
.g-feature { grid-column: span 8; grid-row: span 3; }
.g-wide { grid-column: span 8; grid-row: span 2; }
.g-sq   { grid-column: span 4; grid-row: span 2; }
.g-port { grid-column: span 4; grid-row: span 3; }
.g-land { grid-column: span 6; grid-row: span 2; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 38vw; }
  .g-tall, .g-wide, .g-sq, .g-port, .g-land { grid-column: span 1; grid-row: span 1; }
  .g-wide, .g-feature { grid-column: span 2; }
}

/* ============================================================
   Forms (reservation / contact)
   ============================================================ */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .form-layout { grid-template-columns: 1fr; } }

.form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  /* shadow grounds it — no hairline border (avoid the ghost-card pattern) */
  box-shadow: var(--shadow-soft);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label,
.field .field-label {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.field .req { color: var(--terracotta-deep); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: var(--step-0);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); opacity: 1; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--terracotta) 18%, transparent);
}
/* keyboard focus keeps an unmistakable outline; mouse focus gets only the soft glow */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}
.field .help { font-size: 0.78rem; color: var(--ink-mute); }
.field .error-text {
  font-size: 0.78rem;
  color: var(--terracotta-deep);
  display: none;
  align-items: center;
  gap: 0.35rem;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--terracotta-deep); }
.field.has-error .error-text { display: flex; }

/* party-size segmented control */
.seg { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-weight: 600;
  font-size: var(--step--1);
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.seg label:hover { border-color: var(--ink); }
.seg input:checked + label { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.seg input:focus-visible + label { outline: 2px solid var(--terracotta); outline-offset: 2px; }

.form-actions { margin-top: 1.8rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.form-actions .note { font-size: 0.78rem; color: var(--ink-mute); max-width: 30ch; }
/* once the request is sent, hide the form so the confirmation is the only state */
.form-card.is-sent { display: none; }

/* menu badge legend (carte) */
.menu-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.1rem;
  font-size: var(--step--1);
  color: var(--ink-mute);
  margin-bottom: clamp(1.6rem, 4vw, 2.5rem);
}
.menu-legend span.badge { margin-right: 0.25rem; vertical-align: middle; }

/* success / status */
.form-status {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--olive) 14%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--olive) 40%, transparent);
  margin-bottom: 1.6rem;
}
.form-status.is-shown { display: flex; }
.form-status__icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: grid;
  place-items: center;
}
.form-status h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); }
.form-status p { font-size: var(--step--1); color: var(--ink-soft); margin-top: 0.2rem; }
.form-status__recap { margin-top: 0.6rem; font-weight: 600; color: var(--ink); }

/* aside info panel */
.info-panel { display: grid; gap: 1.4rem; }
.info-block { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.info-block h3 { font-size: var(--step--1); letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta-deep); margin-bottom: 0.5rem; }
.info-block p, .info-block a { color: var(--ink-soft); }
.hours-list { display: grid; gap: 0.4rem; }
.hours-list div { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--step--1); border-bottom: 1px dotted var(--line); padding-bottom: 0.35rem; }
.hours-list .closed { color: var(--ink-mute); }
.hours-list .today { color: var(--terracotta-deep); font-weight: 600; }

/* ============================================================
   Story / timeline
   ============================================================ */
.lead-quote-block { position: relative; }
.lead-quote-mark {
  position: absolute;
  top: -0.46em;
  left: -0.04em;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(7rem, 15vw, 11rem);
  line-height: 1;
  color: color-mix(in srgb, var(--terracotta) 13%, transparent);
  pointer-events: none;
  user-select: none;
}
.lead-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-3);
  line-height: 1.38;
  text-wrap: balance;
  max-width: 22ch;
}
.lead-quote em { font-style: italic; color: var(--terracotta-deep); }
/* shared attribution / citation line (matches the split hero cite) */
.story-cite {
  display: block;
  margin-top: 1.3rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ---------- Story timeline (histoire) — dark espresso band, year slider ---------- */
.story-tl {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--section);
  position: relative;
  overflow: hidden;
}
.story-tl__head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.story-tl__head .sec-head__title { color: var(--paper); }
.story-tl__head .sec-head__title em { color: var(--gold); }

/* year markers (tablist) */
.story-tl__years {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}
.story-tl__years::before {
  content: "";
  position: absolute;
  left: 4%; right: 4%; top: 50%;
  height: 1px;
  background: color-mix(in srgb, var(--terracotta) 55%, transparent);
  z-index: 0;
}
.story-tl__year {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: var(--ink);
  border: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-1);
  line-height: 1;
  color: rgba(250, 244, 232, 0.62);
  padding: 0.3rem clamp(0.7rem, 1.6vw, 1.05rem);
  border-radius: 999px;
  transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.story-tl__year:hover { color: var(--paper); }
.story-tl__year[aria-selected="true"] {
  color: var(--gold);
  background: color-mix(in srgb, var(--gold) 12%, var(--ink));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--gold) 60%, transparent);
}

/* stage: prev | panels | next */
.story-tl__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
}
.story-tl__arrow {
  display: none;
  width: clamp(2.75rem, 5vw, 3.1rem);
  height: clamp(2.75rem, 5vw, 3.1rem);
  align-items: center;
  justify-content: center;
  font-size: var(--step-1);
  color: var(--paper);
  background: rgba(250, 244, 232, 0.05);
  border: 1px solid rgba(250, 244, 232, 0.22);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.story-tl.is-live .story-tl__arrow { display: inline-flex; }
.story-tl__arrow:hover { border-color: var(--gold); color: var(--gold); }
.story-tl__arrow:disabled { opacity: 0.32; cursor: not-allowed; }
.story-tl__arrow--prev { grid-column: 1; }
.story-tl__panels { grid-column: 2; position: relative; }
.story-tl__arrow--next { grid-column: 3; }

/* panels — all visible without JS (stacked); slider once enhanced */
.story-tl__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) 1fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
}
.story-tl__panel + .story-tl__panel { margin-top: clamp(2.5rem, 6vw, 4rem); }
.story-tl.is-live .story-tl__panel { display: none; margin-top: 0; }
.story-tl.is-live .story-tl__panel.is-active { display: grid; animation: tlFade 0.5s var(--ease) both; }
@keyframes tlFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.story-tl__ghost {
  position: absolute;
  right: -0.02em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: color-mix(in srgb, var(--gold) 17%, transparent);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 760px) {
  .story-tl__ghost { top: auto; bottom: -0.1em; transform: none; font-size: clamp(6rem, 30vw, 11rem); }
}
.story-tl__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.story-tl__media img { width: 100%; height: 100%; object-fit: cover; }
.story-tl__text { position: relative; z-index: 1; }
.story-tl__year-big {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 600;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 0.4rem;
}
.story-tl__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-2);
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.story-tl__text p { color: rgba(250, 244, 232, 0.84); max-width: 52ch; }

@media (max-width: 760px) {
  .story-tl__years::before { display: none; }
  .story-tl__stage { grid-template-columns: 1fr 1fr; row-gap: 1.6rem; }
  .story-tl__panels { grid-column: 1 / -1; order: -1; }
  .story-tl__arrow--prev { grid-column: 1; justify-self: start; }
  .story-tl__arrow--next { grid-column: 2; justify-self: end; }
  .story-tl__panel { grid-template-columns: 1fr; }
  .story-tl__media { aspect-ratio: 3 / 2; }
}
@media (prefers-reduced-motion: reduce) {
  .story-tl.is-live .story-tl__panel.is-active { animation: none; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  background: none;
  border: none;
}
.value { padding: clamp(1.2rem, 3vw, 1.7rem) 0 0; border-top: 1px solid var(--ink); }
.value h3 { font-size: var(--step-1); font-family: var(--font-display); font-weight: 600; margin: 0 0 0.5rem; }
.value p { font-size: var(--step--1); color: var(--ink-soft); }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

/* portrait pair */
.portrait-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}
.portrait-pair img { border-radius: var(--radius); width: 100%; object-fit: cover; box-shadow: var(--shadow-soft); }
.portrait-pair img:first-child { aspect-ratio: 3/4; }
.portrait-pair img:last-child { aspect-ratio: 3/4; margin-top: clamp(1.5rem, 5vw, 3.5rem); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  /* strong enough to clear AA over the brightest regions of any underlying photo (white plates) */
  background:
    radial-gradient(95% 80% at 50% 50%, rgba(10, 6, 3, 0.55), transparent 80%),
    linear-gradient(rgba(10, 6, 3, 0.86), rgba(10, 6, 3, 0.93));
}
.cta-band .display { color: var(--paper); text-shadow: 0 1px 14px rgba(10, 6, 3, 0.75); }
.cta-band .kicker { text-shadow: 0 1px 10px rgba(10, 6, 3, 0.85); }
.cta-band__inner { padding-block: clamp(5rem, 11vw, 9rem); }
.cta-band .lede { color: rgba(250, 244, 232, 0.97); margin-inline: auto; text-shadow: 0 1px 10px rgba(10, 6, 3, 0.8); }
.cta-band .hero__actions { justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250, 244, 232, 0.78);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,244,232,0.14);
}
.footer-brand .brand__name { color: var(--paper); font-size: clamp(1.5rem, 1.35rem + 0.7vw, 1.9rem); }
.footer-brand p { margin-top: 1rem; max-width: 32ch; font-size: var(--step--1); }
.footer-col h3 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a:hover { color: var(--paper); }
.footer-col address { font-style: normal; line-height: 1.7; font-size: var(--step--1); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.8rem;
  font-size: 0.78rem;
  color: rgba(250,244,232,0.72);
}
.footer-bottom__links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
/* Progressive enhancement: hidden start state applies only once JS is live
   (root gets .js-reveal right before observing). Without JS the content is
   visible by default — reveals never gate visibility. */
.reveal {
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.js-reveal .reveal { opacity: 0; transform: translateY(26px); }
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================================================
   Responsive collapses
   ============================================================ */
@media (max-width: 900px) {
  .nav__list, .nav__cta.is-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { text-align: left; max-width: none; margin-top: 0.5rem; display: none; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .split, .dish { grid-template-columns: 1fr; }
  .dish:nth-child(even) .dish__media { order: 0; }
  .portrait-pair { grid-template-columns: 1fr; }
  .portrait-pair img:last-child { margin-top: 0; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__scroll { display: none; }
  .field-grid { grid-template-columns: 1fr; }
  /* keep service/dietary notes on mobile: reflow under the title instead of hiding */
  .menu-section__note { text-align: left; max-width: none; }
  .menu-section__head { flex-wrap: wrap; }
  .menu-cover__meta { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero__scroll .dot::after { animation: none; opacity: 1; }
}

/* print */
@media print {
  .site-header, .mobile-nav, .hero__media, .cta-band__bg, .marquee { display: none !important; }
}
