/* ============================================================
   LE MANOÏRE — Site cinématique
   Col de Jaman · 1 512 m
   ============================================================ */

/* Polices locales — pas de dépendance réseau
   Conformes à la charte graphique : Clash Grotesk (titres + corps de texte) */
@font-face {
  font-family: 'Clash Grotesk';
  src: url('assets/fonts/ClashGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Grotesk';
  src: url('assets/fonts/ClashGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Grotesk';
  src: url('assets/fonts/ClashGrotesk-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Tenaciou';
  src: url('assets/fonts/TenaciouHeavy.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

:root {
  /* Palette Manoïre */
  --ocre:        #C58632;
  --or-logo:     #E2BD8C;
  --bordeaux:    #4B0F1F;
  --bordeaux-2:  #3A0C18;
  --orange:      #E06530;
  --creme-1:     #FBFBF8;
  --creme-2:     #EFE5DB;
  --brun-moyen:  #7B694D;
  --brun-fonce:  #954315;

  /* Mapping sémantique (moteur) */
  --bg:          var(--bordeaux);
  --bg-2:        var(--creme-2);
  --bg-3:        var(--bordeaux-2);
  --ink:         var(--bordeaux-2);

  --fg:          var(--creme-2);
  --fg-soft:     #D4C4B0;
  --muted:       #9E8C7A;
  --accent:      var(--ocre);
  --line:        rgba(239, 229, 219, 0.14);

  /* Layout */
  --maxw:        1240px;
  --pad:         clamp(22px, 5vw, 80px);

  /* Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

  /* Typo — conforme charte : Clash Grotesk Semibold (titres) / Regular (corps) */
  --display:     'Clash Grotesk', Georgia, serif;
  --serif:       'Clash Grotesk', Georgia, serif;
  --sans:        'Clash Grotesk', system-ui, sans-serif;
}

/* ============================================================
   BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
em { font-style: italic; color: var(--ocre); }

/* Textes sur fond crème : bordeaux */
.editorial--histoire,
.editorial--experience,
.editorial--anouck,
.newsletter,
.stats {
  --fg:      var(--bordeaux);
  --fg-soft: var(--brun-moyen);
  --muted:   var(--brun-moyen);
  --line:    rgba(75, 15, 31, 0.14);
  color: var(--bordeaux);
}

/* Accessibilité */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Shared ------------------------------------------------ */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocre);
  margin: 0 0 22px;
}
.eyebrow--light { color: var(--or-logo); }
.eyebrow--center { text-align: center; }

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-soft);
  max-width: 46ch;
  margin: 22px 0 0;
  line-height: 1.75;
  font-weight: 400;
}
.meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 20px 0 0;
}

/* ---- Boutons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.btn--warm {
  background: var(--orange);
  color: var(--creme-1);
}
.btn--warm:hover {
  background: #c54a1f;
  transform: translateY(-2px);
}
.btn--light {
  color: var(--creme-2);
  border: 1px solid rgba(239,229,219,0.45);
  background: transparent;
}
.btn--light:hover {
  background: var(--creme-2);
  color: var(--bordeaux);
  transform: translateY(-2px);
}
.btn--solid {
  color: var(--creme-1);
  background: var(--bordeaux);
  margin-top: 8px;
}
.btn--solid:hover {
  background: var(--ocre);
  color: var(--creme-1);
  transform: translateY(-2px);
}
.btn:active { transform: scale(0.98); transition-duration: 0.12s; }

/* ---- Scroll progress --------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--ocre);
  z-index: 200;
  transition: width .1s linear;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 150;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: linear-gradient(to bottom, rgba(42,8,18,0.50) 0%, transparent 100%);
  transition: background .5s var(--ease), padding .5s var(--ease), backdrop-filter .5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(58, 12, 24, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  padding-top: 0; padding-bottom: 0;
  border-bottom: 1px solid rgba(239,229,219,0.1);
}
/* Pages sans hero (ex. la carte) : nav toujours pleine (pas de fondu sur image) */
body.no-hero .nav {
  background: rgba(58, 12, 24, 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  padding-top: 0; padding-bottom: 0;
  border-bottom: 1px solid rgba(239,229,219,0.1);
}
.nav__brand {
  display: flex; align-items: center;
}
.nav__logo {
  height: 92px;
  width: auto;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.nav__logo:hover { opacity: 0.85; }

.nav__links { display: flex; gap: 38px; }
.nav__links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--creme-2);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--ocre);
  transition: width .4s var(--ease);
}
.nav__links a:hover { color: var(--or-logo); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--creme-1);
  background: var(--orange);
  padding: 11px 24px;
  border-radius: 50px;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.nav__cta:hover {
  background: #c54a1f;
  transform: translateY(-1px);
}

/* ============================================================
   SCRUB HERO — 96 frames × 4.6vh ≈ 442vh
   ============================================================ */
.scrub { position: relative; height: calc(96 * 4.6vh); background: var(--bg); }
.scrub__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scrub__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.scrub__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(42, 8, 18, 0.82) 0%, rgba(42, 8, 18, 0.15) 42%, rgba(42, 8, 18, 0) 65%),
    linear-gradient(to bottom, rgba(42, 8, 18, 0.55) 0%, rgba(42, 8, 18, 0) 28%);
}

/* Loader */
.loader {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: var(--bordeaux-2);
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__brand {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  color: var(--creme-2);
  font-weight: 600;
}
.loader__track { width: 180px; height: 1px; background: rgba(239,229,219,0.2); overflow: hidden; }
.loader__bar { display: block; height: 100%; width: 0; background: var(--ocre); transition: width .25s var(--ease); }
.loader__pct { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); }

/* Beats cinématiques */
.scrub__beat {
  position: absolute;
  left: var(--pad);
  bottom: clamp(64px, 13vh, 140px);
  z-index: 10;
  max-width: 720px;
  opacity: 0;
  will-change: opacity, transform;
}
.scrub__eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--or-logo);
  background: rgba(42, 8, 18, 0.62);
  padding: 7px 16px;
  border-radius: 30px;
  margin: 0 0 20px;
}

.scrub__title {
  font-family: 'Tenaciou', var(--display);
  font-weight: 900;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.92;
  color: var(--creme-2);
  text-shadow: 0 2px 50px rgba(42,8,18,0.5);
  font-weight: 600;
}
.scrub__tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--creme-2);
  text-shadow: 0 1px 18px rgba(0,0,0,0.75);
  margin: 22px 0 0;
  max-width: 30ch;
  font-weight: 400;
}
.scrub__beat-title {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 6.4vw, 92px);
  color: var(--creme-2);
  text-shadow: 0 2px 50px rgba(42,8,18,0.5);
}
.scrub__beat-title em { color: var(--or-logo); }
.scrub__beat-copy {
  font-size: clamp(16px, 1.45vw, 20px);
  color: var(--creme-2);
  margin: 22px 0 0;
  max-width: 42ch;
  line-height: 1.7;
  text-shadow: 0 1px 20px rgba(0,0,0,0.7);
  font-weight: 400;
}
.scrub__beat .btn { margin-top: 30px; }

.scrub__cue {
  position: absolute;
  right: var(--pad);
  bottom: clamp(48px, 10vh, 96px);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.scrub__cue-line {
  width: 1px; height: 54px;
  background: linear-gradient(var(--or-logo), transparent);
  animation: cuePulse 2.4s var(--ease) infinite;
}
@keyframes cuePulse {
  0%, 100% { opacity: .35; transform: scaleY(.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   EDITORIAL (image + texte)
   ============================================================ */
.editorial {
  padding: clamp(60px, 9vh, 120px) var(--pad);
  background: var(--bordeaux);
}
.editorial--histoire {
  background: var(--creme-2);
}
.editorial--experience {
  background: var(--bordeaux);
}
.editorial--anouck {
  background: var(--creme-2);
}

.editorial__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.editorial__inner--reversed {
  /* Miroir de position uniquement : la colonne média reste la plus large
     (sinon order:2 la fait atterrir dans la petite colonne 0.85fr et la
     photo paraît trop petite / trop recadrée). */
  grid-template-columns: 0.85fr 1.15fr;
}
.editorial__inner--reversed .editorial__media { order: 2; }
.editorial__inner--reversed .editorial__text  { order: 1; }

.editorial__text { max-width: 480px; }
.editorial__title { font-size: clamp(36px, 5vw, 72px); }
.editorial--histoire .editorial__title { color: var(--bordeaux); }
.editorial--histoire .editorial__title em { color: var(--ocre); }
.editorial--experience .editorial__title { color: var(--creme-2); }
.editorial--experience .editorial__title em { color: var(--ocre); }
.editorial--anouck .editorial__title { color: var(--bordeaux); }
.editorial--anouck .editorial__title em { color: var(--brun-fonce); }

/* Eyebrow sur fond crème */
.editorial--histoire .eyebrow,
.editorial--anouck .eyebrow { color: var(--brun-fonce); }

/* Texte lede sur fond crème */
.editorial--histoire .lede,
.editorial--anouck .lede { color: var(--brun-moyen); }
.editorial--histoire .meta,
.editorial--anouck .meta { color: var(--brun-moyen); }

/* Frame image */
.frame {
  margin: 0; overflow: hidden; border-radius: 3px;
  box-shadow: 0 40px 90px -40px rgba(42,8,18,0.5);
  position: relative; aspect-ratio: 16 / 9;
  background: var(--bordeaux-2);
}
.editorial--histoire .frame,
.editorial--anouck .frame {
  box-shadow: 0 40px 90px -40px rgba(75,15,31,0.25);
}
.frame img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.editorial__media:hover .frame img { transform: scale(1.04); }

/* Media à deux photos côte à côte (verticales) */
.editorial__media--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.4vw, 18px);
}
.editorial__media--duo .frame {
  aspect-ratio: 3 / 4;
}

/* Pêle-mêle Anouck — 3 photos éparpillées comme des tirages posés */
.pelemele {
  position: relative;
  aspect-ratio: 5 / 4;
  margin: clamp(20px, 4vw, 40px) clamp(10px, 3vw, 30px) clamp(48px, 8vw, 80px);
}
.pelemele__photo {
  position: absolute;
  margin: 0;
  padding: 10px 10px 10px;
  background: var(--creme-1, #fff);
  border-radius: 2px;
  box-shadow: 0 24px 50px -20px rgba(42, 8, 18, 0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pelemele__photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--bordeaux-2);
}
.pelemele__photo:hover {
  z-index: 10 !important;
  box-shadow: 0 30px 60px -18px rgba(42, 8, 18, 0.55);
}

.pelemele__photo--1 {
  width: 66%;
  aspect-ratio: 16 / 9;
  top: 6%; left: 0;
  transform: rotate(-4deg);
  z-index: 3;
}
.pelemele__photo--2 {
  width: 42%;
  aspect-ratio: 3 / 4;
  top: 0; right: 2%;
  transform: rotate(6deg);
  z-index: 1;
}
.pelemele__photo--3 {
  width: 40%;
  aspect-ratio: 3 / 4;
  bottom: -9%; left: 16%;
  transform: rotate(-7deg);
  z-index: 2;
}
.pelemele__photo--1:hover { transform: rotate(-4deg) scale(1.03); }
.pelemele__photo--2:hover { transform: rotate(6deg) scale(1.05); }
.pelemele__photo--3:hover { transform: rotate(-7deg) scale(1.05); }

@media (max-width: 820px) {
  .pelemele {
    aspect-ratio: 4 / 3.6;
    margin: 24px 16px 30px;
  }
}

/* Social links */
.social-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.social-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brun-fonce);
  padding: 10px 18px;
  border: 1px solid rgba(75,15,31,0.25);
  border-radius: 2px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.social-link:hover {
  background: var(--bordeaux);
  color: var(--creme-2);
  border-color: var(--bordeaux);
}
.social-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocre);
}

/* ============================================================
   STATS — bandeau déroulant, annonce ouverture
   ============================================================ */
.stats {
  background: var(--bordeaux-2);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(197, 134, 50, 0.25);
  border-bottom: 1px solid rgba(197, 134, 50, 0.25);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.stats__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: stats-scroll 24s linear infinite;
}
.stats:hover .stats__track {
  animation-play-state: paused;
}
.stats__msg {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  white-space: nowrap;
  padding: clamp(22px, 3.4vh, 34px) 3em clamp(22px, 3.4vh, 34px) 1.5em;
  font-family: var(--sans);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stats__seg--creme { color: var(--creme-2); }
.stats__seg--ocre  { color: var(--ocre); }
.stats__seg--or    { color: var(--or-logo); }
.stats__icon {
  display: inline-block;
  width: 34px; height: 34px;
  object-fit: contain;
  flex: none;
  animation: icon-float 2.6s ease-in-out infinite;
}
.stats__msg .stats__icon:nth-of-type(2n) { animation-delay: -0.6s; }
.stats__msg .stats__icon:nth-of-type(3n) { animation-delay: -1.3s; }
.stats__msg .stats__icon:nth-of-type(4n) { animation-delay: -1.9s; }
@keyframes stats-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .stats__track { animation: none; }
  .stats__msg:nth-child(2) { display: none; }
  .stats__icon { animation: none; }
}

/* ============================================================
   MENU — la carte
   ============================================================ */
.menu {
  background: var(--creme-2);
  color: var(--bordeaux);
  padding: clamp(60px, 9vh, 120px) var(--pad);
  text-align: center;
}
.menu .eyebrow { color: var(--brun-fonce); }
/* Page dédiée (pas de hero au-dessus) : dégager la nav fixe */
.menu--page {
  padding-top: clamp(140px, 20vh, 190px);
}

/* Intro + accent médaillon photo */
.menu-intro-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  margin: 0 0 clamp(44px, 6vw, 70px);
}
.menu-intro-text { text-align: center; }
.menu-intro-text .menu__intro { margin-bottom: 0; }
.menu-intro-accent {
  position: relative;
  flex: none;
}
.menu-intro-accent__icon {
  position: absolute;
  bottom: -6px; right: -6px;
  width: 30px; height: 30px;
  object-fit: contain;
  animation: icon-float 2.6s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(42,8,18,0.35));
}
@media (max-width: 820px) {
  .menu-intro-row { flex-direction: column; gap: 24px; }
}

/* Médaillons photo — accents dispersés dans la grille, esprit pêle-mêle */
.menu-medallion-slot {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-medallion {
  width: clamp(120px, 14vw, 150px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--or-logo);
  box-shadow: 0 20px 40px -16px rgba(42, 8, 18, 0.5);
  animation: medallion-float 4.6s ease-in-out infinite;
  transition: scale 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.menu-medallion img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.menu-medallion:hover {
  scale: 1.08;
  box-shadow: 0 26px 50px -14px rgba(42, 8, 18, 0.6);
}
.menu-medallion--table { width: clamp(96px, 10vw, 116px); rotate: -4deg; }
.menu-medallion--1 { rotate: -6deg; }
.menu-medallion--2 { rotate: 5deg; animation-delay: -1.5s; }
.menu-medallion--3 { rotate: -4deg; animation-delay: -3s; }
.menu-medallion--4 { rotate: 6deg; animation-delay: -0.8s; }
@keyframes medallion-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}
@media (prefers-reduced-motion: reduce) {
  .menu-medallion, .menu-intro-accent__icon { animation: none; }
}
.menu .editorial__title { color: var(--bordeaux); margin: 0 auto 14px; max-width: 40ch; }
.menu__intro {
  max-width: 46ch;
  margin: 0 auto clamp(44px, 6vw, 70px);
  color: var(--brun-moyen);
}
.menu__inner {
  max-width: var(--maxw); margin: 0 auto;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 5vw, 60px) clamp(36px, 4vw, 56px);
  text-align: left;
}
.menu__cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(19px, 1.6vw, 23px);
  color: var(--brun-fonce);
  border-bottom: 1px solid rgba(75, 15, 31, 0.18);
  padding-bottom: 12px;
  margin: 0 0 18px;
}
.menu__cat-icon {
  width: 26px; height: 26px;
  object-fit: contain;
  flex: none;
}
.menu__cat:nth-child(3n+2).reveal { transition-delay: 0.09s; }
.menu__cat:nth-child(3n+3).reveal { transition-delay: 0.18s; }
.menu__cat-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brun-moyen);
  margin-top: 4px;
}
.menu__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.menu__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.menu__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--bordeaux);
  white-space: nowrap;
}
.menu__row::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted rgba(75, 15, 31, 0.3);
  transform: translateY(-3px);
}
.menu__price {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocre);
  white-space: nowrap;
}
.menu__desc {
  margin: 4px 0 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--brun-moyen);
}
@media (max-width: 980px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .menu__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FULL-BLEED panoramique
   ============================================================ */
.bleed {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bleed--tall { min-height: 100vh; }
.bleed__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.12);
}
.bleed__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(42,8,18,0.88) 0%, rgba(42,8,18,0.32) 38%, rgba(42,8,18,0) 60%),
    linear-gradient(to right, rgba(42,8,18,0.55) 0%, rgba(42,8,18,0.12) 50%, rgba(42,8,18,0) 80%);
}
.bleed__content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 0 var(--pad);
}
.bleed__content--low {
  align-self: flex-end;
  padding-bottom: clamp(60px, 12vh, 120px);
}
.bleed__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 92px);
  color: var(--creme-2);
  text-shadow: 0 2px 40px rgba(42,8,18,0.5);
  letter-spacing: -0.02em;
}
.bleed__title em { color: var(--or-logo); }
.bleed__copy {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--or-logo);
  max-width: 46ch;
  margin: 24px 0 0;
  line-height: 1.75;
  text-shadow: 0 1px 24px rgba(42,8,18,0.85);
  font-weight: 400;
}

/* ============================================================
   CONTACT / RÉSERVER
   ============================================================ */
.contact {
  background: var(--bordeaux);
  padding: clamp(60px, 9vh, 120px) var(--pad);
}
.contact__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.contact__title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  color: var(--creme-2);
  margin-top: 8px;
  font-weight: 600;
}
.contact__copy {
  color: var(--fg-soft);
  max-width: 42ch;
  margin: 26px 0 0;
  font-weight: 400;
}
.contact__copy + .btn { margin-top: 36px; }
.contact__details {
  display: flex; flex-direction: column; gap: 4px;
}
.contact__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease);
}
.contact__row:not(.contact__row--static):hover { padding-left: 10px; }
.contact__row:not(.contact__row--static):hover .contact__value { color: var(--or-logo); }
.contact__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.contact__value {
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 21px);
  color: var(--creme-2);
  text-align: right;
  font-weight: 400;
  transition: color .35s var(--ease);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--creme-2);
  padding: clamp(60px, 9vh, 120px) var(--pad);
  text-align: center;
}
.newsletter__inner {
  max-width: 640px;
  margin: 0 auto;
}
.newsletter__title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--bordeaux);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 0;
}
.newsletter__title em { color: var(--brun-fonce); }
.newsletter__copy {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--brun-moyen);
  margin: 20px 0 0;
  line-height: 1.75;
  font-weight: 400;
}
.newsletter__form {
  display: flex;
  gap: 0;
  margin-top: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__input {
  flex: 1;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  padding: 14px 20px;
  border: 1px solid rgba(75,15,31,0.25);
  border-right: none;
  border-radius: 50px 0 0 50px;
  background: var(--creme-1);
  color: var(--bordeaux);
  outline: none;
  transition: border-color .3s var(--ease);
}
.newsletter__input::placeholder { color: var(--brun-moyen); opacity: 0.7; }
.newsletter__input:focus { border-color: var(--ocre); }
.newsletter__form .btn {
  border-radius: 0 50px 50px 0;
  white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bordeaux-2);
  padding: clamp(32px, 5vh, 60px) var(--pad) 24px;
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(239,229,219,0.1);
}
.footer__logo {
  height: 150px;
  width: auto;
  margin: 0 auto;
  opacity: 0.92;
}
.footer__tagline {
  font-family: var(--sans);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: var(--or-logo);
  margin: 10px 0 0;
  letter-spacing: 0.04em;
}
.footer__nav {
  max-width: var(--maxw); margin: 36px auto 0;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or-logo);
  opacity: 0.7;
  transition: opacity .3s;
}
.footer__nav a:hover { opacity: 1; }
.footer__base {
  max-width: var(--maxw);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
a.footer__legal:hover { color: var(--or-logo); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   MOTION LAYER
   ============================================================ */
.ml-reveal .ml-line {
  overflow: hidden;
  padding-bottom: 0.04em;
  margin-bottom: -0.04em;
}
.ml-reveal .ml-line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
  transition-delay: var(--ml-delay, 0s);
  will-change: transform;
}
.ml-reveal.is-shown .ml-line__inner { transform: translateY(0); }

.ml-eyebrow {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 0.7s var(--ease), opacity 0.7s var(--ease);
}
.ml-eyebrow.is-shown { clip-path: inset(0 0 0 0); opacity: 1; }

.stat__num.is-counting { font-variant-numeric: tabular-nums; }

.btn:active { transform: translateY(0) scale(0.98); transition-duration: 0.12s; }
.nav__cta:active { transform: translateY(0) scale(0.98); transition-duration: 0.12s; }
.btn--light:active { transform: scale(0.98); }

body.intro-ready .nav { opacity: 0; transform: translateY(-12px); }
body.intro-ready.is-loaded .nav {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .editorial__inner,
  .editorial__inner--reversed,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .editorial__inner--reversed .editorial__media { order: 1; }
  .editorial__inner--reversed .editorial__text  { order: 2; }
  .editorial__text { max-width: none; }
  .nav__links { display: none; }
}

@media (max-width: 820px) {
  .scrub { height: 100vh; }

  /* Beat : bas de l'écran, centré — 56px min pour compenser 100vh vs innerHeight */
  .scrub__beat {
    bottom: clamp(56px, 10vh, 80px);
    left: var(--pad);
    right: var(--pad);
    max-width: none;
    text-align: center;
  }
  /* Eyebrow trop long → wrap laid sur mobile, on le masque */
  .scrub__beat .scrub__eyebrow {
    display: none;
  }
  .scrub__title {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 0.95;
  }
  .scrub__tagline {
    font-size: clamp(14px, 3.8vw, 18px);
    margin-top: 12px;
  }
  .scrub__beat-title {
    font-size: clamp(28px, 8vw, 48px);
  }
  .scrub__beat-copy {
    font-size: clamp(14px, 3.8vw, 17px);
  }
  /* Footer logo : plus petit sur mobile (inversion des tailles) */
  .footer__logo {
    height: 100px;
  }
}

@media (max-width: 640px) {
  .newsletter__form {
    flex-direction: column;
    gap: 12px;
  }
  .newsletter__input {
    border-right: 1px solid rgba(75,15,31,0.25);
    border-radius: 50px;
  }
  .newsletter__form .btn {
    border-radius: 50px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .footer__base { flex-direction: column; text-align: center; align-items: center; }
  .nav__cta { display: none; }
  .scrub { height: 100vh; }
  .contact__inner { grid-template-columns: 1fr; }
  .social-links { gap: 12px; }
}

/* MOBILE : animation cinématique auto-play gérée en JS (voir enableScrub autoPlay) */

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ml-reveal .ml-line { overflow: visible; padding-bottom: 0; margin-bottom: 0; }
  .ml-reveal .ml-line__inner { transform: none !important; transition: none !important; }
  .ml-eyebrow { clip-path: none !important; opacity: 1 !important; transition: none !important; }
  .bleed__img { transform: none !important; will-change: auto; }
  .btn:active, .nav__cta:active, .btn--light:active { transform: none !important; }
  body.intro-ready .nav { opacity: 1 !important; transform: none !important; transition: none !important; }
}
