/* ================================================================
   LE DIX VINGT — V2
   Édition cinematic. Inspiré : Louis Vuitton · Cédric Grolet · Apple
================================================================ */

/* ============ TOKENS ============ */
:root {
  /* Palette — charbon chaud plutôt que noir absolu */
  --bg: #14110d;
  --bg-2: #1a1611;
  --bg-3: #211c16;
  --ink: #f4eee2;
  --ink-soft: #cdc6b8;
  --ink-mute: #8f897c;
  --gold: #c29a5a;
  --gold-light: #e0c290;
  --gold-deep: #957338;
  --line: rgba(244, 238, 226, 0.13);
  --line-gold: rgba(194, 154, 90, 0.28);

  /* Fonts */
  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-serif: 'Italiana', serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-script: 'Allura', cursive;

  /* Easings */
  --e-out: cubic-bezier(0.22, 1, 0.36, 1);
  --e-io: cubic-bezier(0.76, 0, 0.24, 1);
  --e-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing scale */
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(90px, 13vw, 190px);
}

/* THÈME CLAIR — sections ivoire pour faire respirer */
.theme-light {
  --bg: #f4ede0;
  --bg-2: #ece3d3;
  --bg-3: #e3d8c5;
  --ink: #1c1813;
  --ink-soft: #46403a;
  --ink-mute: #8c8478;
  --gold: #9a7434;
  --gold-light: #b8924e;
  --gold-deep: #7d5d28;
  --line: rgba(28, 24, 19, 0.14);
  --line-gold: rgba(154, 116, 52, 0.32);
  background: var(--bg);
  color: var(--ink);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: auto;
}

body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { background: none; border: none; color: inherit; font: inherit; cursor: none; }
a { color: inherit; text-decoration: none; cursor: none; }
input, select, textarea, button { font-family: inherit; cursor: none; }

::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 0; height: 0; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.display em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0;
}
.eyebrow {
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.with-line { display: inline-flex; align-items: center; gap: 14px; }
.eyebrow.with-line::before {
  content: '';
  width: 38px;
  height: 1px;
  background: var(--gold);
}
.kicker {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  color: var(--ink);
}
.body-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0.005em;
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.55;
  transition: width 0.35s var(--e-out), height 0.35s var(--e-out),
              border-color 0.35s, background 0.35s, opacity 0.35s;
}
.cursor-ring.hover {
  width: 80px; height: 80px;
  background: rgba(176, 141, 87, 0.08);
  border-color: var(--gold-light);
  opacity: 1;
}
.cursor-ring.text {
  width: 90px; height: 90px;
  background: var(--gold);
  border-color: var(--gold);
  mix-blend-mode: normal;
}
.cursor-ring .label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor-ring.text .label { opacity: 1; }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pl-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
}
.pl-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 10vw, 140px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  gap: 0.05em;
  overflow: hidden;
}
.pl-mark span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.pl-mark em {
  font-family: var(--f-script);
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
  font-size: 0.85em;
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.pl-line {
  position: absolute;
  bottom: var(--gutter);
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.pl-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
}
.pl-meta {
  position: absolute;
  bottom: calc(var(--gutter) + 24px);
  display: flex;
  justify-content: space-between;
  width: calc(100% - var(--gutter) * 2);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.pl-meta .right { color: var(--gold); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px var(--gutter);
  transition: padding 0.5s var(--e-out), background 0.5s var(--e-out);
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav.is-scrolled {
  padding: 14px var(--gutter);
  background: rgba(20, 17, 13, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  height: 54px;
  transition: height 0.4s var(--e-out);
}
.nav.is-scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 10px 2px;
  display: inline-block;
}
.nav-links a span {
  display: inline-block;
  position: relative;
  transition: transform 0.5s var(--e-io);
}
.nav-links a:hover span { transform: translateY(-2px); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--e-io);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-phone {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s;
  white-space: nowrap;
  position: relative;
  padding-left: 28px;
  margin-left: 6px;
}
.nav-phone::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 14px;
  background: var(--line);
}
.nav-phone:hover { color: var(--gold-light); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--e-out);
  z-index: -1;
}
.nav-cta:hover { color: var(--bg); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.nav-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: nav-pulse 2.4s ease-in-out infinite;
}
.nav-cta:hover .nav-dot { background: var(--bg); }
.nav-cta:hover .nav-dot::after { border-color: var(--bg); }
@keyframes nav-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.nav-burger {
  display: none;
  width: 30px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s var(--e-out), opacity 0.3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gutter) 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--e-out);
}
.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-overlay a {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 9vw, 64px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  padding: 14px 0;
  transition: color 0.3s, transform 0.5s var(--e-io);
  display: inline-block;
}
.menu-overlay a:hover { color: var(--gold); transform: translateX(20px); }
.menu-overlay-foot {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ LAYOUT ============ */
section { position: relative; }
.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.74) contrast(1.02) saturate(0.95);
  will-change: transform;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(20, 17, 13, 0.45) 100%),
    linear-gradient(180deg, rgba(20, 17, 13, 0.45) 0%, transparent 32%, transparent 62%, rgba(20, 17, 13, 0.92) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch' /%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  text-align: center;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  opacity: 0;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(72px, 13.5vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(100%);
  will-change: transform;
}
.hero-title .crown {
  color: var(--gold);
  font-style: normal;
  font-family: var(--f-script);
  font-size: 0.55em;
  display: inline-block;
  vertical-align: 0.45em;
  margin: 0 0.06em;
}
.hero-subline {
  margin-top: 36px;
  font-size: 11.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.hero-subline .dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-foot {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
}
.hero-foot .info {
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.8;
}
.hero-foot .info strong {
  color: var(--ink);
  font-weight: 400;
}
.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-scroll-indicator .label {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-scroll-indicator .bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-indicator .bar::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-light);
  animation: scroll-tick 2.4s var(--e-io) infinite;
}
@keyframes scroll-tick {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* ============ MARQUEE BAND ============ */
.band {
  position: relative;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
}
.band-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  width: max-content;
}
.band-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.band-track .mark {
  color: var(--gold);
  font-family: var(--f-script);
  font-size: 32px;
  display: inline-block;
  font-style: normal;
  transform: translateY(2px);
}

/* ============ SECTION HEADERS ============ */
.section-pad { padding: var(--section) 0; }
.section-pad-tight { padding: calc(var(--section) * 0.7) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 90px;
}
.section-head .eyebrow { margin-bottom: 6px; }
.section-head .title {
  font-size: clamp(42px, 6.5vw, 100px);
}
.section-head .subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink-soft);
  max-width: 580px;
  margin-top: 10px;
  line-height: 1.55;
  font-weight: 300;
}

/* ============ MANIFESTO (pinned scroll) ============ */
.manifesto {
  background: var(--bg);
  position: relative;
}
.manifesto-stage {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.manifesto-spacer { height: 220vh; }
.manifesto-text {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(38px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  max-width: 1200px;
}
.manifesto-text .word {
  display: inline-block;
  margin: 0 0.07em;
  color: rgba(244, 238, 226, 0.16);
  transition: color 0.3s;
}
.theme-light .manifesto-text .word { color: rgba(28, 24, 19, 0.15); }
.manifesto-text .word.is-on { color: var(--ink); }
.manifesto-text .word.gold,
.manifesto-text .word.gold.is-on {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--gold);
  font-size: 1.15em;
  display: inline-block;
}
.manifesto-meta {
  position: absolute;
  left: var(--gutter);
  bottom: 60px;
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.manifesto-meta-r {
  position: absolute;
  right: var(--gutter);
  bottom: 60px;
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ CHEF / SIGNATURE ============ */
.chef {
  background: var(--bg);
  padding: var(--section) 0;
  overflow: hidden;
}
.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.chef-text .eyebrow { margin-bottom: 24px; }
.chef-text .title {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(38px, 5.5vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.chef-text .title em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--gold);
}
.chef-text .body-text { max-width: 480px; }
.chef-text .body-text + .body-text { margin-top: 18px; }

.chef-sig {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 30px;
}
.chef-sig img {
  width: 180px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(8%) saturate(770%) hue-rotate(2deg) brightness(95%) contrast(91%);
  clip-path: inset(0 100% 0 0);
}
.chef-sig-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chef-sig-meta .who {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
}
.chef-sig-meta .role {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.chef-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.chef-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 25%;
  transform: scale(1.1);
  will-change: transform;
}
.chef-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 17, 13, 0.5) 100%);
}
.chef-media-tag {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
}
.chef-media-tag .small {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.chef-media-tag .big {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.chef-media-num {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 2;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
}

/* ============ CINEMATIC FRAMES (horizontal pin) ============ */
.cinematic {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.cinematic-track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.cinematic-frame {
  flex: 0 0 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cinematic-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cinematic-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20,17,13,0.4), rgba(20,17,13,0.7));
}
.cinematic-caption {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 1100px;
}
.cinematic-caption .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.cinematic-caption .text {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 86px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cinematic-caption .text em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--gold);
}
.cinematic-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.cinematic-progress .step {
  position: relative;
  padding-top: 14px;
  transition: color 0.4s;
}
.cinematic-progress .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
}
.cinematic-progress .step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--e-io);
}
.cinematic-progress .step.active { color: var(--gold-light); }
.cinematic-progress .step.active::after { transform: scaleX(1); }

/* ============ MENUS ============ */
.menus {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
}
.menus-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; }
.menus-head .right p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 440px;
}

.menus-list {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  position: relative;
}

.menu-row {
  position: relative;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  padding: 40px 0;
  gap: 40px;
  transition: padding 0.5s var(--e-out);
}
.menu-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.04) 50%, transparent);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.menu-row:hover::before { opacity: 1; }
.menu-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.menu-title {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: transform 0.6s var(--e-io), color 0.4s;
  display: flex;
  align-items: baseline;
  gap: 22px;
  flex-wrap: wrap;
}
.menu-title .tagline {
  font-family: var(--f-script);
  font-style: normal;
  font-size: 0.45em;
  color: var(--gold);
  font-weight: 400;
}
.menu-row:hover .menu-title { transform: translateX(20px); color: var(--gold-light); }
.menu-price {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--ink-soft);
  white-space: nowrap;
}

.menu-preview {
  position: fixed;
  pointer-events: none;
  width: 300px;
  height: 380px;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.4s;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.menu-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}
.menu-preview.is-on { opacity: 1; }

.menu-detail-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
  cursor: pointer;
}
.menu-detail-toggle .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.menu-detail {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s var(--e-out);
}
.menu-row.is-open .menu-detail { max-height: 2000px; }
.menu-detail-inner {
  padding: 50px 0 30px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 50px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}
.menu-detail-side {
  font-family: var(--f-script);
  font-size: 30px;
  color: var(--gold);
  align-self: start;
}
.menu-courses {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.course {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: baseline;
}
.course .lbl {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}
.course .desc {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
}
.course .desc .or {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 6px 0;
}
.menu-include {
  padding: 28px 28px;
  background: rgba(176, 141, 87, 0.04);
  border: 1px solid var(--line-gold);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu-include .ttl {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-include .ico {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}
.menu-include .ico span {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold-light);
}
.menu-include .desc {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
}
.menu-include .note {
  font-family: var(--f-body);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ============ CELESTINE ============ */
.celestine {
  background: var(--bg-2);
  padding: var(--section) 0;
  overflow: hidden;
  position: relative;
}
.celestine::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.06), transparent 70%);
  pointer-events: none;
}
.celestine-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.celestine-vis {
  position: relative;
  height: clamp(500px, 70vw, 760px);
}
.celestine-vis .v {
  position: absolute;
  overflow: hidden;
}
.celestine-vis .v img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.celestine-vis .v-1 {
  top: 0; left: 0;
  width: 70%; height: 60%;
}
.celestine-vis .v-2 {
  bottom: 0; right: 0;
  width: 60%; height: 55%;
  border: 1px solid var(--line-gold);
}
.celestine-vis .v-tag {
  position: absolute;
  bottom: 32%;
  left: 38%;
  z-index: 3;
  background: var(--bg);
  border: 1px solid var(--gold);
  padding: 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.celestine-vis .v-tag .l {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.celestine-vis .v-tag .b {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
}

.celestine-text .title {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(42px, 5.5vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 24px 0 36px;
}
.celestine-text .title em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--gold);
}
.celestine-text p { max-width: 440px; margin-bottom: 16px; }
.celestine-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.celestine-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.celestine-stat .n {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.celestine-stat .n sup {
  font-size: 0.4em;
  vertical-align: top;
}
.celestine-stat .l {
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--bg);
  padding: var(--section) 0;
}
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 18px;
}
.gallery-cell {
  position: relative;
  overflow: hidden;
}
.gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--e-out), filter 1s;
  will-change: transform;
}
.gallery-cell:hover img { transform: scale(1.07); filter: brightness(1.05); }
.gallery-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 17, 13, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-cell:hover::after { opacity: 1; }
.gallery-cell .cap {
  position: absolute;
  bottom: 20px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s, transform 0.5s var(--e-out);
}
.gallery-cell:hover .cap { opacity: 1; transform: translateY(0); }
.gallery-cell .cap .ttl {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.gallery-cell .cap .num {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-light);
}
.gallery-cell.c-1 { grid-column: span 7; grid-row: span 5; }
.gallery-cell.c-2 { grid-column: span 5; grid-row: span 3; }
.gallery-cell.c-3 { grid-column: span 5; grid-row: span 2; }
.gallery-cell.c-4 { grid-column: span 4; grid-row: span 3; }
.gallery-cell.c-5 { grid-column: span 4; grid-row: span 3; }
.gallery-cell.c-6 { grid-column: span 4; grid-row: span 3; }

/* ============ REVIEWS ============ */
.reviews {
  background: var(--bg);
  padding: var(--section) 0;
  overflow: hidden;
}
.reviews-head {
  text-align: center;
  margin-bottom: 70px;
}
.reviews-head .title { font-size: clamp(48px, 7vw, 110px); }
.reviews-head .badge {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 30px;
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  margin-bottom: 26px;
}
.reviews-head .badge .n {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.reviews-head .badge .s {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 14px;
}
.reviews-head .badge .c {
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.reviews-marquee {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 26px;
  width: max-content;
  will-change: transform;
}
.review {
  flex-shrink: 0;
  width: 380px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.5s, transform 0.5s var(--e-out), background 0.5s;
}
.theme-light .review { background: rgba(28, 24, 19, 0.025); }
.review:hover {
  border-color: var(--gold);
  background: rgba(176, 141, 87, 0.03);
  transform: translateY(-6px);
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.review-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
}
.review-quote::before { content: '“'; color: var(--gold); font-size: 28px; line-height: 0; vertical-align: -0.2em; margin-right: 4px; }
.review-meta {
  margin-top: auto;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ RESERVATION ============ */
.reserve {
  background: var(--bg);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}
.reserve::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.08), transparent 60%);
  pointer-events: none;
}
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 90px);
  position: relative;
}
.reserve-left .title {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(44px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 22px 0 32px;
}
.reserve-left .title em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--gold);
}
.reserve-quote {
  font-family: var(--f-script);
  font-size: 28px;
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 40px;
}

.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item .lbl {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item .val,
.contact-item a {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold-light); }

.hours { display: flex; flex-direction: column; gap: 8px; }
.hour {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink-soft);
}
.hour .d { color: var(--ink); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400; }
.hour.cl .t { color: var(--gold-deep); font-style: italic; }
.hour.now { color: var(--gold); }
.hour.now .d { color: var(--gold); }

.reserve-form {
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line-gold);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.reserve-form-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.reserve-form-head .ttl {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.reserve-form-head .n {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { position: relative; display: flex; flex-direction: column; }
.field label {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 6px 0 14px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); opacity: 0.6; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field select option { background: var(--bg); color: var(--ink); font-style: normal; font-family: var(--f-body); }
.field textarea { resize: vertical; min-height: 86px; }

.form-submit {
  margin-top: 10px;
  padding: 22px 36px;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s, transform 0.3s;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.5s var(--e-out);
  z-index: -1;
}
.form-submit:hover::before { transform: translateY(0); }
.form-submit:hover { color: var(--bg); }

/* ============ FOOTER ============ */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}
.foot-mega {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(90px, 18vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 70px;
  overflow: hidden;
}
.foot-mega em {
  font-family: var(--f-script);
  color: var(--gold);
  font-style: normal;
  font-size: 0.75em;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.foot-col h5 {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
.foot-col a, .foot-col p {
  display: block;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  transition: color 0.3s;
}
.foot-col a:hover { color: var(--gold-light); }
.foot-brand img { height: 80px; margin-bottom: 22px; }
.foot-brand p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink);
  max-width: 340px;
  line-height: 1.5;
}

.foot-bot {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bot p, .foot-bot a {
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.foot-bot a { transition: color 0.3s; }
.foot-bot a:hover { color: var(--gold); }
.foot-soc { display: flex; gap: 22px; }

/* ============ MAGNETIC HELPER ============ */
.magnetic { display: inline-block; will-change: transform; }
.magnetic-inner { display: inline-block; will-change: transform; }

/* ============ ANIMATION HELPERS ============ */
.split-char {
  display: inline-block;
  will-change: transform;
}
.line-clip { overflow: hidden; display: inline-block; }
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}


/* ============================================================
   COMPOSANTS V3 — hero logo · piliers · menus onglets · avis Google
============================================================ */

/* ---- HERO LOGO ---- */
.hero-logo {
  opacity: 0;
  margin-bottom: 6px;
}
.hero-logo img {
  width: clamp(290px, 46vw, 660px);
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.55));
}

/* ---- NAV CTA (refait) ---- */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--e-out), border-color 0.45s;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.55s var(--e-out);
  z-index: -1;
}
.nav-cta:hover { color: #14110d; border-color: var(--gold); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta .magnetic-inner { white-space: nowrap; }
.nav-cta-arrow {
  font-size: 13px;
  transition: transform 0.45s var(--e-out);
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

/* ---- PILIERS ---- */
.pillars {
  background: var(--bg);
  padding: clamp(70px, 9vw, 130px) 0;
  border-bottom: 1px solid var(--line);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 70px);
}
.pillar {
  padding-top: 30px;
  border-top: 1px solid var(--line-gold);
  position: relative;
}
.pillar-idx {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}
.pillar-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(30px, 3.4vw, 50px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.pillar-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 340px;
}

/* ---- MENUS ONGLETS ---- */
.menus-tabs {
  display: grid;
  grid-template-columns: 0.82fr 1.45fr;
  gap: clamp(36px, 5vw, 90px);
  margin-top: 72px;
  align-items: start;
}
.menus-selector {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.menu-tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 22px 4px 22px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  position: relative;
  transition: padding-left 0.45s var(--e-out);
}
.menu-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.45s var(--e-out);
}
.menu-tab-no {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  transition: color 0.4s;
}
.menu-tab-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--ink);
  line-height: 1;
  transition: color 0.4s;
}
.menu-tab-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  transition: color 0.4s;
}
.menu-tab:hover { padding-left: 14px; }
.menu-tab:hover::before { width: 24px; }
.menu-tab:hover .menu-tab-name { color: var(--gold-deep); }
.menu-tab.is-active { padding-left: 22px; }
.menu-tab.is-active::before { width: 14px; }
.menu-tab.is-active .menu-tab-no,
.menu-tab.is-active .menu-tab-name,
.menu-tab.is-active .menu-tab-price { color: var(--gold); }

.menus-display { position: relative; }
.menu-panel {
  display: none;
}
.menu-panel.is-active {
  display: block;
}
.menu-panel-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-gold);
  margin-bottom: 34px;
}
.menu-panel-tagline {
  font-family: var(--f-script);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  flex-basis: 100%;
}
.menu-panel-title {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(34px, 4.4vw, 62px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-right: auto;
}
.menu-panel-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(30px, 3.2vw, 46px);
  color: var(--gold);
}
.menu-panel-courses {
  display: flex;
  flex-direction: column;
}
.menu-panel-courses .course {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.menu-panel-courses .course:last-child { border-bottom: none; }
.menu-panel-courses .lbl {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-panel-courses .desc {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
}
.menu-panel-courses .desc .or {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 6px 0;
}
.menu-panel-foot {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.menu-panel-foot .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- AVIS GOOGLE ---- */
.reviews-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews-title { font-size: clamp(44px, 6.5vw, 96px); margin-top: 18px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 13px 26px;
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
}
.theme-light .google-badge { background: rgba(255, 255, 255, 0.5); }
.google-logo { display: flex; }
.google-score {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
}
.google-stars { color: #fbbc05; letter-spacing: 2px; font-size: 15px; }
.google-count {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.greview {
  border: 1px solid var(--line);
  padding: 26px;
  background: rgba(28, 24, 19, 0.025);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.5s var(--e-out), border-color 0.5s, box-shadow 0.5s;
}
.greview:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.greview-top { display: flex; align-items: center; gap: 12px; }
.greview-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c, #888);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  flex-shrink: 0;
}
.greview-id { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.gname { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.gwhen { font-size: 11px; color: var(--ink-mute); margin-top: 2px; }
.gG { flex-shrink: 0; opacity: 0.85; }
.greview-stars { color: #fbbc05; letter-spacing: 2px; font-size: 14px; }
.greview-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}
.reviews-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 54px auto 0;
  padding: 18px 38px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s;
}
.reviews-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.55s var(--e-out);
  z-index: -1;
}
.reviews-cta:hover { color: #fff; }
.reviews-cta:hover::before { transform: translateY(0); }

/* container that centers the reviews-cta */
.reviews .container { display: flex; flex-direction: column; }


/* ============ MEDIA QUERIES ============ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-burger { display: flex; }

  .chef-grid,
  .celestine-grid,
  .reserve-grid,
  .menus-head { grid-template-columns: 1fr; gap: 50px; }
  .menus-head { align-items: start; }

  .menu-detail-inner { grid-template-columns: 1fr; gap: 30px; }
  .menu-detail-side { display: none; }
  .course { grid-template-columns: 90px 1fr; gap: 18px; }
  .course .lbl { padding-top: 4px; }

  .celestine-stats { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-cell.c-1 { grid-column: span 6; grid-row: span 4; }
  .gallery-cell.c-2 { grid-column: span 6; grid-row: span 3; }
  .gallery-cell.c-3 { grid-column: span 6; grid-row: span 2; }
  .gallery-cell.c-4 { grid-column: span 3; grid-row: span 3; }
  .gallery-cell.c-5 { grid-column: span 3; grid-row: span 3; }
  .gallery-cell.c-6 { grid-column: span 6; grid-row: span 3; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .menu-preview { display: none; }

  /* CINÉMATIQUE → empilement vertical sur mobile/tablette */
  .cinematic { height: auto; }
  .cinematic-track { flex-direction: column; }
  .cinematic-frame { flex: none; width: 100%; height: 72vh; }
  .cinematic-progress { display: none; }

  body { cursor: auto; }
  a, button, input, select, textarea { cursor: pointer; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 700px) {
  :root { --gutter: 22px; --section: clamp(72px, 16vw, 110px); }

  .nav { padding: 16px var(--gutter); grid-template-columns: auto 1fr; }
  .nav.is-scrolled { padding: 11px var(--gutter); }
  .nav-logo img { height: 46px; }
  .nav.is-scrolled .nav-logo img { height: 38px; }
  .nav-cta { padding: 11px 18px; font-size: 10px; }
  .nav-cta .nav-dot { display: none; }

  /* HERO */
  .hero { min-height: 600px; }
  .hero-foot { display: none; }
  .hero-scroll-indicator { bottom: 22px; }
  .hero-scroll-indicator .label { font-size: 9px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.3em; gap: 10px; margin-bottom: 24px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 22px; }
  .hero-title { font-size: clamp(62px, 19vw, 96px); line-height: 0.9; }
  .hero-subline { font-size: 9.5px; letter-spacing: 0.22em; gap: 10px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }

  /* BAND */
  .band-track { font-size: 17px; gap: 40px; }
  .band-track span { gap: 40px; }
  .band-track .mark { font-size: 22px; }

  /* SECTION HEADS */
  .section-head { margin-bottom: 50px; }
  .eyebrow { font-size: 9.5px; letter-spacing: 0.3em; }

  /* MANIFESTO */
  .manifesto-spacer { height: 160vh; }
  .manifesto-stage { padding: 0 var(--gutter); }
  .manifesto-text { font-size: clamp(26px, 7.6vw, 42px); line-height: 1.12; }
  .manifesto-meta, .manifesto-meta-r { display: none; }

  /* CHEF */
  .chef-grid { gap: 36px; }
  .chef-text .title { font-size: clamp(36px, 11vw, 56px); margin-bottom: 26px; }
  .chef-media { aspect-ratio: 3 / 4; }
  .chef-sig { margin-top: 36px; gap: 20px; }
  .chef-sig img { width: 140px; }

  /* CINÉMATIQUE */
  .cinematic-frame { height: 64vh; }
  .cinematic-caption .text { font-size: clamp(32px, 9vw, 48px); }
  .cinematic-caption .num { font-size: 12px; margin-bottom: 14px; }

  /* MENUS */
  .menus-head .right { margin-top: 4px; }
  .menu-row { grid-template-columns: 1fr; gap: 4px; padding: 26px 0; }
  .menu-num { display: none; }
  .menu-title { font-size: clamp(34px, 10vw, 46px); gap: 12px; }
  .menu-title .tagline { font-size: 0.5em; }
  .menu-price { font-size: 26px; margin-top: 4px; }
  .menu-detail-inner { padding: 34px 0 20px; margin-top: 22px; }
  .course { grid-template-columns: 1fr; gap: 6px; }
  .course .lbl { padding-top: 0; }
  .course .desc { font-size: 17px; }
  .menu-include { padding: 24px; }

  /* CELESTINE */
  .celestine-vis { height: 440px; }
  .celestine-vis .v-1 { width: 74%; height: 58%; }
  .celestine-vis .v-2 { width: 60%; height: 52%; }
  .celestine-vis .v-tag { left: auto; right: 0; bottom: 30%; padding: 12px 18px; }
  .celestine-vis .v-tag .b { font-size: 20px; }
  .celestine-text .title { font-size: clamp(38px, 11vw, 60px); margin: 18px 0 26px; }
  .celestine-stats { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; padding-top: 30px; }
  .celestine-stat .n { font-size: 30px; }

  /* GALLERY */
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 44px; }
  .gallery-grid { gap: 12px; grid-auto-rows: 70px; }
  .gallery-cell .cap { opacity: 1; transform: none; }
  .gallery-cell .cap .ttl { font-size: 14px; }
  .gallery-cell::after { opacity: 0.55; }

  /* REVIEWS */
  .reviews-head { margin-bottom: 44px; }
  .reviews-head .title { font-size: clamp(40px, 13vw, 60px); }
  .reviews-head .badge { gap: 14px; padding: 12px 20px; margin-bottom: 22px; }
  .reviews-head .badge .n { font-size: 22px; }
  .reviews-head .badge .c { font-size: 9px; letter-spacing: 0.15em; }
  .review { width: 270px; padding: 24px; gap: 14px; }
  .review-quote { font-size: 15px; }

  /* RESERVE */
  .reserve-left .title { font-size: clamp(40px, 12vw, 62px); margin: 16px 0 24px; }
  .reserve-quote { font-size: 24px; margin-bottom: 30px; }
  .contact-item .val, .contact-item a { font-size: 18px; }
  .reserve-form { padding: 28px 22px; gap: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 22px; }
  .reserve-form-head .ttl { font-size: 19px; }

  /* FOOTER */
  .foot { padding: 60px 0 30px; }
  .foot-mega { font-size: clamp(72px, 26vw, 140px); margin-bottom: 50px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .foot-brand img { height: 64px; }
  .foot-bot { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 28px; }

  /* MOBILE MENU OVERLAY */
  .menu-overlay a { font-size: clamp(34px, 11vw, 52px); padding: 10px 0; }
  .menu-overlay-foot { flex-direction: column; gap: 8px; text-align: left; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 58px; }
  .menu-title { font-size: 32px; }
  .celestine-stats { grid-template-columns: 1fr; }
}

/* ============ RESPONSIVE — COMPOSANTS V3 ============ */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 0; }
  .pillar { padding: 28px 0; border-top: 1px solid var(--line-gold); }
  .pillar:last-child { border-bottom: 1px solid var(--line-gold); }
  .pillar-text { max-width: none; }

  .menus-tabs { grid-template-columns: 1fr; gap: 40px; margin-top: 56px; }
  .menus-selector {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    border-top: none;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menus-selector::-webkit-scrollbar { display: none; }
  .menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line-gold);
    border-bottom: 1px solid var(--line-gold);
    border-radius: 100px;
    padding: 11px 20px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .menu-tab::before { display: none; }
  .menu-tab-no { display: none; }
  .menu-tab-name { font-size: 19px; }
  .menu-tab-price { font-size: 15px; }
  .menu-tab:hover { padding-left: 20px; }
  .menu-tab.is-active {
    background: var(--gold);
    border-color: var(--gold);
    padding-left: 20px;
  }
  .menu-tab.is-active .menu-tab-name,
  .menu-tab.is-active .menu-tab-price { color: #14110d; }

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

@media (max-width: 700px) {
  .hero-logo img { width: clamp(240px, 74vw, 360px); }

  .menu-panel-head { gap: 12px; padding-bottom: 20px; margin-bottom: 24px; }
  .menu-panel-tagline { font-size: 24px; }
  .menu-panel-courses .course { grid-template-columns: 1fr; gap: 5px; padding: 15px 0; }
  .menu-panel-courses .desc { font-size: 17px; }
  .menu-panel-foot { font-size: 10.5px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-title { font-size: clamp(38px, 12vw, 58px); }
  .google-badge { gap: 12px; padding: 11px 18px; flex-wrap: wrap; justify-content: center; }
  .google-count { font-size: 10px; }
  .reviews-cta { margin-top: 40px; padding: 16px 28px; font-size: 10px; }

  .pillar-title { font-size: clamp(28px, 9vw, 40px); }
}
