/* ============================================================
   MAISON LÉONCE — V2 « CHAPITRES CINÉMATOGRAPHIQUES »
   Palette : noir abyssal / crème ivoire / or champagne
   ============================================================ */

:root {
  --c-black:   #0A0908;
  --c-ink:     #1C1815;   /* ardoise profonde */
  --c-leather: #3A2E25;   /* brun cuir */
  --c-cream:   #F4EFE6;   /* crème ivoire */
  --c-cream-dim: rgba(244, 239, 230, 0.72);
  --c-cream-low: rgba(244, 239, 230, 0.48);
  --c-gold:    #C9A45C;   /* or champagne */
  --c-gold-soft: rgba(201, 164, 92, 0.55);

  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --f-sans:    'Inter', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --t-fast:   180ms cubic-bezier(.4, 0, .2, 1);
  --t-base:   420ms cubic-bezier(.22, .61, .36, 1);
  --t-slow:   860ms cubic-bezier(.22, .61, .36, 1);
  --t-cinema: 1400ms cubic-bezier(.16, .68, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-black);
  scroll-snap-type: y mandatory;
}

body {
  font-family: var(--f-sans);
  color: var(--c-cream);
  background: var(--c-black);
  line-height: 1.55;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Cursor or — desktop seulement */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    background: var(--c-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 200ms ease, height 200ms ease, opacity 300ms ease;
    mix-blend-mode: difference;
    opacity: 0;
  }
  body.cursor-active::before { opacity: 1; }
  body.cursor-active::before { left: var(--cx, 0); top: var(--cy, 0); }
  a:hover ~ * { /* placeholder */ }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-base);
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection { background: var(--c-gold); color: var(--c-black); }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 10000;
  background: var(--c-gold);
  color: var(--c-black);
  padding: 12px 20px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: top 200ms ease;
}
.skip-link:focus { top: 12px; }

/* Focus visible global */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(10, 9, 8, 0.65), transparent);
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--c-gold-soft);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--c-gold);
  letter-spacing: 0.05em;
}
.brand-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--c-cream);
  letter-spacing: 0.01em;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.michelin-pill {
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  border: 1px solid var(--c-gold-soft);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.michelin-pill .star { color: var(--c-gold); font-size: 11px; }
.phone-link {
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-cream);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--t-base), color var(--t-base);
}
.phone-link:hover { border-bottom-color: var(--c-gold); color: var(--c-gold); }

@media (max-width: 720px) {
  .michelin-pill { display: none; }
  .phone-link { font-size: 12px; }
  .brand-name { display: none; }
}

/* ============================================================
   SIDE NAV (puces or)
   ============================================================ */
.side-nav {
  position: fixed;
  top: 50%;
  right: clamp(16px, 2.5vw, 36px);
  transform: translateY(-50%);
  z-index: 90;
}
.side-nav ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-direction: row-reverse;
  color: var(--c-cream-low);
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--t-base);
}
.side-nav .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-cream-low);
  transition: all var(--t-base);
  flex-shrink: 0;
  position: relative;
}
.side-nav .dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color var(--t-base);
}
.side-nav .roman {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--c-cream-low);
  transition: color var(--t-base);
  width: 18px;
  text-align: right;
}
.side-nav .label {
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--t-base), transform var(--t-base), color var(--t-base);
  white-space: nowrap;
}

.side-nav a:hover .label,
.side-nav a:focus-visible .label {
  opacity: 1;
  transform: translateX(0);
  color: var(--c-cream);
}
.side-nav a:hover .dot,
.side-nav a:focus-visible .dot {
  background: var(--c-gold);
}
.side-nav a:hover .roman { color: var(--c-cream); }

.side-nav a.is-active .dot {
  background: var(--c-gold);
  box-shadow: 0 0 0 1px var(--c-gold);
}
.side-nav a.is-active .dot::before { border-color: var(--c-gold-soft); }
.side-nav a.is-active .roman { color: var(--c-gold); }
.side-nav a.is-active .label { opacity: 1; transform: translateX(0); color: var(--c-cream); }

@media (max-width: 720px) {
  .side-nav { right: 10px; }
  .side-nav .label { display: none; }
  .side-nav .roman { display: none; }
  .side-nav ol { gap: 14px; }
  .side-nav .dot { width: 6px; height: 6px; }
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(244, 239, 230, 0.06);
  z-index: 101;
}
.progress-bar__fill {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(to right, var(--c-gold-soft), var(--c-gold));
  transition: width 100ms linear;
}

/* ============================================================
   SCROLLER + CHAPTERS
   ============================================================ */
.scroller {
  display: block;
}

.chapter {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.chapter-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform var(--t-cinema);
}
.chapter.is-active .bg-video { transform: scale(1); }

/* Poster fallback already on video element. */

.media-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(10, 9, 8, 0.42) 0%, rgba(10, 9, 8, 0.78) 100%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.55) 0%, rgba(10, 9, 8, 0.55) 60%, rgba(10, 9, 8, 0.85) 100%);
}
.media-overlay--menu {
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.70) 0%, rgba(10, 9, 8, 0.86) 100%);
}
.media-overlay--final {
  background:
    radial-gradient(ellipse at center, rgba(10, 9, 8, 0.55) 0%, rgba(10, 9, 8, 0.88) 100%);
}

.chapter-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  padding: 0 clamp(28px, 6vw, 88px);
  padding-right: clamp(56px, 8vw, 140px); /* room for side-nav */
}
.chapter-content--center { text-align: center; }
.chapter-content--center .chapter-content-inner { margin: 0 auto; }

.chapter-mark {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: clamp(22px, 3vw, 36px);
  position: relative;
  padding-left: 38px;
}
.chapter-mark::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}
.chapter-content--center .chapter-mark { padding-left: 0; }
.chapter-content--center .chapter-mark::before {
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  width: 1px;
  height: 26px;
}

/* ============================================================
   CHAPITRE I — Hero
   ============================================================ */
.hero-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--c-cream);
  margin: 0;
}
.hero-title em {
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream) 60%, rgba(244, 239, 230, 0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-line {
  width: 0;
  height: 1px;
  background: var(--c-gold);
  margin: clamp(26px, 4vw, 44px) auto;
  transition: width var(--t-cinema);
  max-width: 280px;
}
.chapter.is-active .gold-line.reveal.is-visible { width: 240px; }
.gold-line--short { max-width: 80px; }
.chapter.is-active .gold-line--short.reveal.is-visible { width: 60px; }

.hero-tagline {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: var(--c-cream);
  line-height: 1.35;
  max-width: 720px;
  margin: 0 auto 18px;
}
.hero-baseline {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  margin-bottom: clamp(36px, 5vw, 52px);
}

.cta-row {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  flex-wrap: wrap;
  justify-content: center;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 18px 36px;
  transition: all var(--t-base);
  position: relative;
  white-space: nowrap;
}
.cta--primary {
  color: var(--c-black);
  background: var(--c-gold);
  border: 1px solid var(--c-gold);
}
.cta--primary:hover {
  background: transparent;
  color: var(--c-gold);
  letter-spacing: 0.32em;
}
.cta--ghost {
  color: var(--c-cream);
  border: 1px solid rgba(244, 239, 230, 0.22);
}
.cta--ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--c-cream-dim);
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  position: relative;
  animation: scrollDrop 2.4s infinite ease-in-out;
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

/* ============================================================
   CHAPITRE TITLES (autres chapitres)
   ============================================================ */
.chapter-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--c-cream);
}

.chapter-content--split {
  max-width: 760px;
  margin-right: auto;
  margin-left: clamp(28px, 8vw, 180px);
  text-align: left;
}
.chapter-content--split .chapter-mark { padding-left: 38px; }
.chapter-content--split .gold-line { margin: 28px 0; }

.chapter-lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--c-cream-dim);
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 640px;
}
.chapter-content--center .chapter-lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   CHAPITRE II — CHEF
   ============================================================ */
.chef-name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
  margin-bottom: 18px;
}
.chef-bio {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--c-cream);
  max-width: 620px;
  margin-bottom: 32px;
}
.chef-bio em {
  font-style: italic;
  color: var(--c-gold);
}
.chef-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  color: var(--c-cream);
  padding: 20px 0;
  border-top: 1px solid var(--c-gold-soft);
  border-bottom: 1px solid var(--c-gold-soft);
  max-width: 580px;
  position: relative;
}
.chef-quote .quote-mark {
  color: var(--c-gold);
  font-size: 1.2em;
  font-style: normal;
  margin: 0 4px;
  vertical-align: -2px;
}
.chef-signature {
  margin-top: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--c-gold);
  transform: rotate(-3deg);
  transform-origin: left center;
  display: inline-block;
  border-bottom: 1px solid var(--c-gold-soft);
  padding-bottom: 6px;
}

/* ============================================================
   CHAPITRE III — MENUS
   ============================================================ */
.chapter-content--menu { max-width: 1120px; }

.menus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
  margin: clamp(28px, 4vw, 44px) 0 28px;
}
.menu-card {
  background: rgba(28, 24, 21, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 164, 92, 0.22);
  padding: clamp(28px, 3.4vw, 44px) clamp(20px, 2.6vw, 32px);
  text-align: center;
  position: relative;
  transition: all var(--t-base);
}
.menu-card:hover {
  border-color: var(--c-gold);
  background: rgba(28, 24, 21, 0.78);
  transform: translateY(-4px);
}
.menu-card--featured {
  background: rgba(58, 46, 37, 0.5);
  border-color: var(--c-gold-soft);
}
.menu-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-gold);
  color: var(--c-black);
  font-family: var(--f-sans);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 5px 14px;
  font-weight: 500;
}
.menu-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  color: var(--c-cream);
  margin-bottom: 10px;
}
.menu-meta {
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 18px;
}
.menu-desc {
  font-family: var(--f-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--c-cream-dim);
  line-height: 1.4;
  min-height: 44px;
  margin-bottom: 22px;
}
.menu-price {
  font-family: var(--f-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--c-cream);
  line-height: 1;
}
.menu-price .euro { font-size: 0.55em; color: var(--c-gold); margin-left: 2px; }

.menu-pairing {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--c-cream-dim);
  margin-top: 12px;
}
.menu-pairing .gold { color: var(--c-gold); font-style: normal; font-family: var(--f-sans); font-size: 0.9em; letter-spacing: 0.05em; }

@media (max-width: 900px) {
  .menus-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   CHAPITRE IV — CUISINE
   ============================================================ */
.chapter-content--gallery {
  max-width: 100%;
  padding-right: clamp(56px, 8vw, 140px);
}
.chapter-content--gallery .chapter-mark,
.chapter-content--gallery .chapter-title,
.chapter-content--gallery .gold-line,
.chapter-content--gallery .chapter-lede {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.chapter-content--gallery .chapter-mark { padding-left: 0; }
.chapter-content--gallery .chapter-mark::before {
  left: 50%; top: -14px; transform: translateX(-50%);
  width: 1px; height: 26px;
}

.plates-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 28px clamp(28px, 6vw, 88px);
  margin: 0 calc(-1 * clamp(28px, 6vw, 88px));
  scrollbar-width: thin;
  scrollbar-color: var(--c-gold-soft) transparent;
}
.plates-track::-webkit-scrollbar { height: 6px; }
.plates-track::-webkit-scrollbar-track { background: transparent; }
.plates-track::-webkit-scrollbar-thumb { background: var(--c-gold-soft); border-radius: 3px; }

.plate-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  position: relative;
  border: 1px solid rgba(244, 239, 230, 0.08);
  overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base);
}
.plate-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-gold-soft);
}
.plate-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.plate-card:hover img { transform: scale(1.05); }
.plate-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 56px 22px 22px;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.7) 50%, transparent 100%);
}
.plate-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--c-gold);
  letter-spacing: 0.08em;
}
.plate-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--c-cream);
  margin: 6px 0 4px;
  line-height: 1.15;
}
.plate-sub {
  font-family: var(--f-serif);
  font-size: 14px;
  color: var(--c-cream-dim);
  font-style: italic;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .plate-card { flex: 0 0 240px; }
  .plate-card img { height: 320px; }
}

/* ============================================================
   CHAPITRE V — CAVE
   ============================================================ */
.stats-row {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--c-gold);
}
.stat-label {
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
}
.stat-sep {
  color: var(--c-gold-soft);
  font-size: 24px;
  font-family: var(--f-display);
}

.cave-body {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--c-cream);
  max-width: 720px;
  margin: 0 auto 28px;
}
.cave-body em { font-style: italic; color: var(--c-gold); }

.cave-footer {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-cream-dim);
  line-height: 2;
}
.cave-footer .gold { color: var(--c-gold); }

@media (max-width: 720px) {
  .stat-sep { display: none; }
  .stats-row { gap: 26px; }
}

/* ============================================================
   CHAPITRE VI — MAISON
   ============================================================ */
.house-lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--c-cream);
  margin-bottom: 20px;
  line-height: 1.3;
}
.house-lede em { color: var(--c-gold); }
.house-body {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--c-cream);
  max-width: 580px;
  margin-bottom: 32px;
}
.house-body em { color: var(--c-gold); font-style: italic; }

.house-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--c-gold-soft);
}
.house-facts li {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.fact-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  color: var(--c-gold);
  font-weight: 300;
  line-height: 1;
}

/* ============================================================
   CHAPITRE VII — RÉSERVATION
   ============================================================ */
.chapter-content--final { max-width: 980px; }

.reservation-intro {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--c-cream-dim);
  margin-bottom: 18px;
}
.phone-xl {
  display: inline-block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 96px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--c-gold);
  margin: 12px 0 28px;
  border-bottom: 1px solid transparent;
  padding-bottom: 8px;
  transition: border-color var(--t-base), color var(--t-base);
}
.phone-xl:hover { border-bottom-color: var(--c-gold-soft); }
.phone-xl em {
  background: linear-gradient(180deg, var(--c-gold) 0%, #E5C079 60%, var(--c-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reservation-hours {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--c-cream-dim);
  margin-bottom: clamp(36px, 5vw, 52px);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin: 0 auto clamp(36px, 5vw, 52px);
  max-width: 880px;
  text-align: left;
  padding-top: 28px;
  border-top: 1px solid var(--c-gold-soft);
}
.contact-block { display: flex; flex-direction: column; gap: 8px; }
.contact-label {
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.contact-value {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--c-cream);
  line-height: 1.4;
  transition: color var(--t-base);
}
a.contact-value:hover { color: var(--c-gold); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); text-align: center; }
}
@media (max-width: 520px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-marks {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
}
.footer-marks .star { color: var(--c-gold); }
.footer-sep { color: var(--c-gold-soft); }
.footer-fine {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-cream-low);
}
.footer-fine a {
  color: var(--c-gold);
  border-bottom: 1px solid transparent;
  margin-left: 8px;
  transition: border-color var(--t-base);
}
.footer-fine a:hover { border-bottom-color: var(--c-gold); }

/* ============================================================
   REVEAL ANIMATIONS (scroll-snap)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-cinema), transform var(--t-cinema);
  transition-delay: 0ms;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gold-line.reveal {
  opacity: 1;            /* line uses width transition not opacity */
  transform: none;
  width: 0;
}
.gold-line.reveal.is-visible { /* width handled above */ }

/* ============================================================
   MOBILE TWEAKS
   ============================================================ */
@media (max-width: 720px) {
  .chapter-content { padding-right: clamp(24px, 6vw, 56px); }
  .chapter-content--split { margin-left: clamp(20px, 5vw, 32px); }
  .hero-title { font-size: clamp(54px, 14vw, 96px); }
  .chapter-title { font-size: clamp(42px, 10vw, 72px); }
  .scroll-hint { bottom: 18px; font-size: 9px; }
  .scroll-arrow { height: 28px; }
  .menu-card { padding: 28px 22px; }
  .chef-quote { font-size: clamp(20px, 5vw, 24px); }
}

@media (max-width: 720px) and (max-height: 640px) {
  .chapter { min-height: 560px; }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .bg-video { display: none; }
  .scroll-arrow { animation: none; }
  body { cursor: auto !important; }
  body::before { display: none !important; }
  .reveal { opacity: 1; transform: none; }
  .gold-line.reveal { width: 240px; }
  .gold-line--short.reveal { width: 60px; }
  .chapter-media::after {
    /* fallback: keep poster image visible via video poster — handled by video element itself */
  }
}
