/* ────────────────────────────────────────────────────────────
   Yves Doumergue — Illusionniste
   Design v2 : noir profond, accents champagne, finition
   éditoriale (masques typographiques, hairlines, grain).
──────────────────────────────────────────────────────────── */

:root {
  --bg:            #0a0a09;
  --bg-elev:       #121110;
  --bg-soft:       #171614;
  --line:          rgba(255, 255, 255, 0.07);
  --line-strong:   rgba(255, 255, 255, 0.15);
  --text:          #f5f4f2;
  --text-muted:    rgba(245, 244, 242, 0.72);
  /* 0.40 donnait 3,53:1 — sous le minimum WCAG AA (4,5:1). 0.58 → ≈6,3:1 */
  --text-dim:      rgba(245, 244, 242, 0.58);
  /* Bord porteur de sens (champs, cases à cocher) : --line était à 1,2:1 */
  --line-ui:       rgba(255, 255, 255, 0.42);
  --accent:        #c9a96e;
  --accent-bright: #e3c98f;
  --accent-ink:    #1a1410;
  --accent-soft:   rgba(201, 169, 110, 0.12);
  --accent-line:   rgba(201, 169, 110, 0.35);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.83, 0, 0.17, 1);

  --maxw: 1280px;
  --pad:  clamp(20px, 4vw, 48px);
  --sec:  clamp(96px, 11vw, 176px);
  --nav-h: 72px;
}

/* ────────── Reset ────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
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: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.is-loading, body.menu-open { overflow: hidden; }

img, picture, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.02em; }
em { font-style: italic; color: var(--accent); }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { padding: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

* { scrollbar-width: thin; scrollbar-color: rgba(201,169,110,.4) transparent; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,.35); border-radius: 99px; border: 3px solid var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ────────── Typographie partagée ────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 clamp(20px, 3vw, 32px);
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent-line);
  flex: none;
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(32px, 4vw, 56px);
  text-wrap: balance;
}

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 0 clamp(32px, 5vw, 56px);
}

/* Masques de mots (réveils typographiques pilotés par GSAP).
   Le padding agrandit la zone visible du masque pour ne pas rogner les
   accents (É, é) ni les jambages descendants (g, p, q) ; la marge négative
   annule l'espace ajouté pour que la mise en page ne bouge pas. */
.w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0.22em 0.08em 0.28em;
  margin: -0.22em -0.08em -0.28em;
}
.w-i { display: inline-block; will-change: transform; }

/* ────────── Boutons ────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  transition:
    color .35s var(--ease),
    border-color .35s var(--ease),
    background-color .35s var(--ease),
    box-shadow .35s var(--ease);
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .7s var(--ease);
}
.btn--primary:hover { background: var(--accent-bright); box-shadow: 0 8px 32px -8px rgba(201,169,110,.45); }
.btn--primary:hover::after { transform: translateX(110%); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-bright); }

.btn--large { padding: 19px 40px; font-size: 16px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; box-shadow: none; }

/* ────────── Reveal générique (IO) ────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.reduced-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ────────── PRELOADER ────────── */
.loader { display: none; }
.js .loader {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  transition: transform .85s var(--ease-io);
}
.js .loader.is-done { transform: translateY(-101%); pointer-events: none; }
/* Filet de sécurité indépendant du JavaScript : si GSAP ou un CDN ne répond
   pas, le voile s'ouvre malgré tout au bout de 4 s au lieu de laisser un
   écran noir définitif. */
.js .loader { animation: loaderFailsafe 0.6s var(--ease-io) 4s forwards; }
@keyframes loaderFailsafe { to { transform: translateY(-101%); visibility: hidden; } }
.reduced-motion .loader { display: none; }

.loader__inner { display: grid; justify-items: center; gap: 18px; padding: 0 24px; }
.loader__name {
  display: flex;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: pre;
}
.loader__ch { display: inline-block; will-change: transform; }
.loader__line {
  display: block;
  width: min(280px, 56vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform-origin: center;
}
.loader__tag {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ────────── GRAIN CINÉMA ────────── */
.grain {
  position: fixed;
  inset: -100%;
  width: 300%;
  height: 300%;
  z-index: 8999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  30% { transform: translate(3%, -2%); }
  50% { transform: translate(-3%, 2%); }
  70% { transform: translate(2%, 3%); }
  90% { transform: translate(-2%, 1%); }
}
.reduced-motion .grain { animation: none; }

/* ────────── CURSEUR CUSTOM ────────── */
.cursor, .cursor-dot { display: none; }
.has-cursor, .has-cursor * { cursor: none !important; }
.has-cursor .cursor {
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(245, 244, 242, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  mix-blend-mode: difference;
  transition: width .35s var(--ease), height .35s var(--ease),
              opacity .3s ease, border-color .3s ease, border-radius .35s var(--ease);
}
.has-cursor .cursor-dot {
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10002;
  opacity: 0;
  mix-blend-mode: difference;
  transition: opacity .3s ease, width .2s ease, height .2s ease;
}
.has-cursor .cursor.is-visible, .has-cursor .cursor-dot.is-visible { opacity: 1; }
.has-cursor .cursor.is-hover { width: 62px; height: 62px; border-color: rgba(245,244,242,.95); }
.has-cursor .cursor.is-text { width: 3px; height: 30px; border-radius: 2px; }
.has-cursor .cursor.is-down { width: 26px; height: 26px; }

/* ────────── NAV ────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 950;
  transition: transform .55s var(--ease), background-color .4s ease,
              backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 9, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand { display: grid; line-height: 1.15; }
.nav__brand-name {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.01em;
}
.nav__brand-sub {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 450;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color .3s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__links a.nav__highlight { color: var(--accent); }
.nav__links a.nav__highlight:hover { color: var(--accent-bright); }

.nav__cta { flex: none; padding: 11px 22px; font-size: 14px; }

.nav__progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2;
}

/* Burger (mobile) */
.nav__burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  margin-left: auto;
  z-index: 1002;
}
.nav__burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: var(--text);
  transition: transform .45s var(--ease), top .45s var(--ease), bottom .45s var(--ease);
}
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { bottom: 17px; }
.nav__burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { bottom: 21.5px; transform: rotate(-45deg); }

/* Menu mobile plein écran */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(10, 10, 9, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  padding: calc(var(--nav-h) + 24px) var(--pad) 40px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: opacity .5s var(--ease), visibility 0s linear .5s;
}
.nav__mobile.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s var(--ease);
}
.nav__mobile-links { display: grid; gap: 4px; }
.nav__mobile-links a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 52px);
  line-height: 1.25;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s ease;
}
.nav__mobile-links a:hover { color: var(--accent-bright); }
.nav__mobile.is-open .nav__mobile-links a { opacity: 1; transform: none; }
.nav__mobile.is-open .nav__mobile-links a:nth-child(1) { transition-delay: .08s; }
.nav__mobile.is-open .nav__mobile-links a:nth-child(2) { transition-delay: .14s; }
.nav__mobile.is-open .nav__mobile-links a:nth-child(3) { transition-delay: .2s; }
.nav__mobile.is-open .nav__mobile-links a:nth-child(4) { transition-delay: .26s; }
.nav__mobile.is-open .nav__mobile-links a:nth-child(5) { transition-delay: .32s; }
.nav__mobile-num {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.nav__mobile-foot {
  display: grid;
  gap: 18px;
  justify-items: start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease) .4s, transform .6s var(--ease) .4s;
}
.nav__mobile.is-open .nav__mobile-foot { opacity: 1; transform: none; }
.nav__mobile-mail { font-size: 14px; color: var(--text-muted); }
.nav__mobile-mail:hover { color: var(--accent); }

/* ────────── HERO ────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__photo {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(62vw, 900px);
  object-fit: cover;
  object-position: 72% 15%;
  transform: scale(1.06);
  transform-origin: 72% 15%;
  will-change: transform;
}
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 30%, rgba(10,10,9,0.55) 62%, rgba(10,10,9,0.25) 100%),
    linear-gradient(180deg, rgba(10,10,9,0.35) 0%, transparent 26%, transparent 62%, var(--bg) 100%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 28%, rgba(201,169,110,.5), transparent 100%),
    radial-gradient(1px 1px at 28% 68%, rgba(245,244,242,.3), transparent 100%),
    radial-gradient(1.5px 1.5px at 44% 22%, rgba(201,169,110,.35), transparent 100%),
    radial-gradient(1px 1px at 62% 78%, rgba(245,244,242,.25), transparent 100%),
    radial-gradient(1px 1px at 78% 38%, rgba(201,169,110,.4), transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) var(--pad) 96px;
}
.hero__content { max-width: 720px; }

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(60px, 10.5vw, 148px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 34px;
}
.hero__title .line { display: block; overflow: hidden; padding: 0.14em 0.06em 0.2em; margin: -0.14em -0.06em -0.2em; }
.hero__title .line__inner { display: block; }
.hero__title .line--accent em { color: var(--accent); }

.hero__subtitle {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0 0 40px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 22px; }
.hero__cta-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}
.hero__cta-hint span { color: var(--accent); font-size: 8px; }

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 64px;
  overflow: hidden;
}
.hero__scroll span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--accent));
  animation: scrollHint 2.2s var(--ease-io) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}
.reduced-motion .hero__scroll span { animation: none; }

/* ────────── Sections génériques ────────── */
.section { padding: var(--sec) 0; position: relative; }

/* ────────── SCÈNE PHOTO IMMERSIVE (about / contact) ────────── */
.scene-photo {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--sec) 0;
}
.scene-photo__bg {
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.scene-photo--right .scene-photo__bg { right: auto; left: 0; }
.scene-photo__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 38%, rgba(10,10,9,0.72) 58%, rgba(10,10,9,0.3) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 80%, var(--bg) 100%);
}
.scene-photo--right .scene-photo__overlay {
  background:
    linear-gradient(270deg, var(--bg) 38%, rgba(10,10,9,0.72) 58%, rgba(10,10,9,0.35) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 80%, var(--bg) 100%);
}
.scene-photo__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.scene-photo--right .scene-photo__content {
  display: grid;
  justify-items: end;
  text-align: left;
}
.scene-photo--right .scene-photo__content > * { max-width: 640px; width: 100%; }

.scene-photo__text {
  max-width: 560px;
  display: grid;
  gap: 20px;
}
.scene-photo__text p {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 18.5px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}
.scene-photo__text strong { color: var(--text); font-weight: 500; }

/* ────────── BANDE DE STATS ────────── */
.stats-band { padding: 0 0 var(--sec); }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  --rule-scale: 1;
}
.stat {
  position: relative;
  padding: 36px 32px 8px;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line-strong);
  transform: scaleX(var(--rule-scale, 1));
  transform-origin: left;
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(56px, 6.5vw, 96px);
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: lining-nums;
}
.stat__num::after { content: "+"; font-size: 0.55em; vertical-align: 0.45em; opacity: 0.65; }
.stat__label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ────────── SCÈNES IMMERSIVES (vidéos) ────────── */
.scenes { position: relative; }
.scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  will-change: clip-path;
}
.scene__bg {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  will-change: transform;
}
.scene__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,9,0.55) 0%, rgba(10,10,9,0.15) 35%, rgba(10,10,9,0.78) 100%),
    linear-gradient(90deg, rgba(10,10,9,0.55) 0%, transparent 55%);
}
.scene--right .scene__overlay {
  background:
    linear-gradient(180deg, rgba(10,10,9,0.55) 0%, rgba(10,10,9,0.15) 35%, rgba(10,10,9,0.78) 100%),
    linear-gradient(270deg, rgba(10,10,9,0.55) 0%, transparent 55%);
}
.scene__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(72px, 10vh, 128px);
}
.scene--right .scene__content { display: grid; justify-items: end; }
.scene--right .scene__content > * { max-width: 560px; width: 100%; }
.scene__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.03;
  margin: 0 0 22px;
  max-width: 14ch;
}
.scene--right .scene__title { max-width: none; }
.scene__lede {
  max-width: 52ch;
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ────────── BANDE DÉMO ────────── */
.performances { padding-bottom: calc(var(--sec) * 0.6); }
.video-stage { padding: 0 var(--pad); }
.video-stage__frame {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.8);
  will-change: transform;
}
.video-stage__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-stage__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,9,0.55) 100%);
  pointer-events: none;
}
.video-stage__sound {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(10, 10, 9, 0.55);
  border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: 13.5px;
  font-weight: 500;
  transition: border-color .3s ease, background-color .3s ease;
}
.video-stage__sound:hover { border-color: var(--accent); }
.video-stage__sound .icon-sound { display: none; }
.video-stage__sound[aria-pressed="true"] .icon-sound { display: block; }
.video-stage__sound[aria-pressed="true"] .icon-mute { display: none; }

/* ────────── PRESTATIONS ────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  padding: clamp(28px, 3.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  transition: transform .5s var(--ease), border-color .4s ease;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,110,.09), transparent 45%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.card:hover::after { opacity: 1; }
.card--featured { border-color: var(--accent-line); }
.card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--accent-soft), transparent 45%);
  pointer-events: none;
}
.card__index {
  position: absolute;
  top: 26px;
  right: 30px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.card__icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 22px;
}
.card h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 36px);
  margin-bottom: 10px;
}
.card__lede {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 14px;
}
.card > p:not(.card__lede) {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 22px;
}
.card__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}
.card__list li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 14.5px;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
}
.card__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 11px;
  font-size: 8px;
  color: var(--accent);
}
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  transition: color .3s ease, gap .3s var(--ease);
}
.card__cta:hover { color: var(--accent-bright); gap: 14px; }

/* ────────── PROCESS ────────── */
.process { padding-top: calc(var(--sec) * 0.7); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.step {
  position: relative;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .4s ease, transform .5s var(--ease);
}
.step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,110,.07), transparent 45%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.step:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.step:hover::after { opacity: 1; }
.step__num {
  display: block;
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step__text {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.step__hint {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.process__cta { display: flex; justify-content: center; }

/* ────────── OCCASIONS (SEO — types d'événements) ────────── */
.occasions__list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}
.occasion {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.6fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(22px, 3vw, 34px) 4px;
  border-bottom: 1px solid var(--line);
  transition: padding .45s var(--ease), background-color .3s ease;
}
.occasion:hover { padding-left: 18px; }
.occasion__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  transition: color .3s ease;
}
.occasion:hover .occasion__title { color: var(--accent-bright); }
.occasion__text {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 62ch;
}
.occasion__arrow {
  font-size: 20px;
  color: var(--text-dim);
  transition: transform .4s var(--ease), color .3s ease;
}
.occasion:hover .occasion__arrow { transform: translateX(8px); color: var(--accent); }

/* ────────── RÉFÉRENCES + MARQUEE ────────── */
.references { overflow: hidden; padding-bottom: calc(var(--sec) * 0.8); }
.references .lede { margin-bottom: clamp(40px, 6vw, 72px); }
.marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee__track:not(.is-gsap) { animation: marquee 32s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.reduced-motion .marquee__track:not(.is-gsap) { animation-duration: 90s; }
.marquee__set {
  display: flex;
  align-items: center;
  flex: none;
}
.marquee__item {
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 1.25;
  white-space: nowrap;
  padding: 0 28px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 244, 242, 0.45);
  transition: color .4s ease;
}
.marquee__item:hover { color: var(--text); -webkit-text-stroke-color: transparent; }
.marquee__sep {
  font-size: 18px;
  color: var(--accent);
  flex: none;
}

/* ────────── MÉDIAS ────────── */
.medias__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.media-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-elev);
  transition: transform .5s var(--ease), border-color .4s ease;
}
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,110,.08), transparent 45%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.media-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.media-card:hover::after { opacity: 1; }
.media-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 100% at 20% 0%, rgba(201,169,110,.14), transparent 55%),
    linear-gradient(160deg, #191817, #0d0c0b);
  overflow: hidden;
}
.media-card__visual--tf1 {
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(90, 110, 160, .2), transparent 55%),
    linear-gradient(160deg, #16171b, #0c0d10);
}
.media-card__visual--cnac {
  background:
    radial-gradient(120% 100% at 30% 0%, rgba(150, 70, 70, .18), transparent 55%),
    linear-gradient(160deg, #1a1514, #0d0b0b);
}
.media-card__visual--tour {
  background:
    radial-gradient(120% 100% at 70% 0%, rgba(90, 140, 120, .16), transparent 55%),
    linear-gradient(160deg, #141816, #0b0d0c);
}
.media-card__channel {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: 0.06em;
  color: rgba(245, 244, 242, 0.85);
}
.media-card__play {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 9, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 11px;
  color: var(--text);
  transition: background-color .3s ease, border-color .3s ease, transform .4s var(--ease);
}
.media-card:hover .media-card__play {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  transform: scale(1.08);
}
.media-card__body { padding: 20px 22px 24px; }
.media-card__year {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.media-card__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  margin: 8px 0 14px;
}
.media-card__cta {
  display: inline-flex;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .3s ease;
}
.media-card:hover .media-card__cta { color: var(--accent); }

/* ────────── TESTIMONIALS ────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  position: relative;
  margin: 0;
  padding: clamp(26px, 2.6vw, 36px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.014), transparent);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .4s ease, transform .5s var(--ease);
  overflow: hidden;
}
.testimonial::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,110,.07), transparent 45%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.testimonial:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.testimonial:hover::after { opacity: 1; }
.testimonial blockquote { margin: 0; flex: 1; }
.testimonial blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--text);
}
.testimonial--featured { border-color: var(--accent-line); }
.testimonial--featured blockquote p { font-size: clamp(21px, 1.9vw, 26px); }
.testimonial figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
}
.testimonial__avatar {
  grid-row: 1 / 3;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.testimonial__author { font-size: 15px; font-weight: 600; }
.testimonial__role { font-size: 13px; color: var(--text-dim); }

.testimonial--rating {
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
}
.testimonial__big { display: grid; gap: 6px; justify-items: center; }
.testimonial__big-num {
  font-family: var(--serif);
  font-size: 76px;
  line-height: 1;
  color: var(--accent);
}
.testimonial__big-stars { font-size: 18px; letter-spacing: 0.3em; color: var(--accent); }
.testimonial__big-label { font-size: 14px; font-weight: 500; margin-top: 8px; }
.testimonial__big-source { font-size: 12.5px; color: var(--text-dim); }

/* ────────── FAQ ────────── */
.faq .container { max-width: 920px; }
.faq__list { border-top: 1px solid var(--line-strong); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 2.6vw, 30px) 4px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.3;
  cursor: pointer;
  transition: color .3s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-bright); }
.faq__item summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform .45s var(--ease);
  transform-origin: center;
  line-height: 1;
  align-self: center;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { overflow: hidden; }
.faq__body p {
  margin: 0;
  padding: 2px 4px 28px;
  max-width: 68ch;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}
.faq__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: clamp(36px, 4vw, 52px);
}
.faq__cta p { margin: 0; color: var(--text-muted); font-size: 16px; }

/* ────────── RÉSERVATION DIRECTE ────────── */
.booking-direct { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.012) 18%, transparent); }
.booking-direct__head { max-width: 780px; }
.booking-form {
  max-width: 920px;
  display: grid;
  gap: 18px;
}
.booking-block {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 40px);
  padding-top: clamp(34px, 3.4vw, 46px);
}
.booking-block__num {
  position: absolute;
  top: -1px;
  left: clamp(26px, 3vw, 40px);
  transform: translateY(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent-line);
  background: var(--bg);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.booking-block__title {
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 29px);
  margin-bottom: 22px;
}
.booking-block__hint {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--text-dim);
}

.booking-radios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.booking-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-radio__inner {
  display: grid;
  gap: 4px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 108px;
  align-content: start;
  transition: border-color .3s ease, background-color .3s ease, transform .35s var(--ease);
  cursor: pointer;
}
.booking-radio:hover .booking-radio__inner { border-color: var(--line-strong); }
.booking-radio input:checked + .booking-radio__inner {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.booking-radio input:focus-visible + .booking-radio__inner {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.booking-radio__icon { font-size: 15px; color: var(--accent); }
.booking-radio__title { font-size: 15.5px; font-weight: 600; }
.booking-radio__hint { font-size: 12.5px; color: var(--text-dim); }

/* ────────── FORMULAIRES (partagé) ────────── */
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }
.field label, .field-legend {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field-optional { text-transform: none; letter-spacing: 0.02em; opacity: 0.8; }
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-ui);
  border-radius: 0;
  padding: 11px 2px;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  color-scheme: dark;
  transition: border-color .3s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 54px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23c9a96e' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  padding-right: 28px;
  cursor: pointer;
}
.field select option { background: var(--bg-elev); color: var(--text); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.field-note {
  margin: -8px 0 20px;
  font-size: 13px;
  color: var(--text-dim);
}

.contact-choice { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-choice__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact-choice__opt span {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .3s ease, color .3s ease, background-color .3s ease;
}
.contact-choice__opt:hover span { border-color: var(--line-strong); }
.contact-choice__opt input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}
.contact-choice__opt input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Honeypot — invisible pour les humains */
.field--honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Captcha maison */
.captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 26px 0 18px;
  transition: border-color .3s ease;
}
.captcha.is-valid { border-color: var(--accent-line); }
.captcha__check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.captcha__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.captcha__box {
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-ui);
  border-radius: 7px;
  color: transparent;
  transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}
.captcha__check input:checked ~ .captcha__box {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.captcha__check input:focus-visible ~ .captcha__box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.captcha__label { font-size: 14.5px; }
.captcha__note {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: right;
}

.form__hint {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}
.form__success {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--accent-bright);
}
/* État d'échec : ne jamais annoncer un succès qui n'a pas eu lieu */
.form__success.is-error {
  border-color: rgba(224, 122, 95, 0.55);
  background: rgba(224, 122, 95, 0.12);
  color: #f0a68f;
}

/* ────────── QUOTE ────────── */
.quote { text-align: center; }
.quote blockquote {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.quote blockquote::before {
  content: "“";
  position: absolute;
  top: -0.55em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(90px, 10vw, 150px);
  line-height: 1;
  color: var(--accent);
  opacity: 0.22;
  pointer-events: none;
}
.quote blockquote p {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.25;
  text-wrap: balance;
}
.quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ────────── CONTACT — 3 voies ────────── */
.scene-photo--light .scene-photo__overlay {
  background:
    linear-gradient(270deg, rgba(10,10,9,0.88) 30%, rgba(10,10,9,0.6) 55%, rgba(10,10,9,0.3) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 78%, var(--bg) 100%);
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}
.contact-option {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: start;
  text-align: left;
  padding: 26px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(10, 10, 9, 0.55);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color .35s ease, transform .5s var(--ease), background-color .35s ease;
}
.contact-option::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,110,.1), transparent 45%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.contact-option:hover { border-color: var(--accent); transform: translateY(-4px); }
.contact-option:hover::after { opacity: 1; }
.contact-option__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  color: var(--accent);
  margin-bottom: 8px;
}
.contact-option__title {
  font-family: var(--serif);
  font-size: 24px;
}
.contact-option__hint {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.contact-option__cta {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  transition: color .3s ease;
}
.contact-option:hover .contact-option__cta { color: var(--accent-bright); }

.contact-direct { font-size: 15px; color: var(--text-muted); }
.contact-direct a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-line);
  padding-bottom: 2px;
  transition: color .3s ease, border-color .3s ease;
}
.contact-direct a:hover { color: var(--accent-bright); border-color: var(--accent); }

/* ────────── FOOTER ────────── */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding-top: clamp(20px, 4vw, 48px);
}
.footer__big {
  pointer-events: none;
  user-select: none;
  display: flex;
  justify-content: center;
  overflow: hidden;
  /* Assez de hauteur pour les jambages du « g » — sinon le mot est rogné. */
  line-height: 1.12;
  max-height: 0.82em;
  font-size: clamp(110px, 19vw, 300px);
}
.footer__big-text {
  font-family: var(--serif);
  font-size: 1em;
  line-height: 1.12;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.16);
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: 40px;
}
.footer__brand { display: grid; gap: 4px; }
.footer__name { font-family: var(--serif); font-size: 24px; }
.footer__tag {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer__email {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color .3s ease;
}
.footer__email:hover { color: var(--accent); }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer__links a, .footer__contact {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .3s ease;
}
.footer__links a:hover, .footer__contact:hover { color: var(--accent); }
.footer__copy {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-dim);
}

/* ────────── STICKY CTA (mobile) ────────── */
.sticky-cta {
  position: fixed;
  left: 14px; right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 900;
  display: none;
  gap: 10px;
  transition: transform .5s var(--ease), opacity .4s ease;
}
.sticky-cta.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.sticky-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 14px 40px -10px rgba(201, 169, 110, 0.5);
}
.sticky-cta__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-ink);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}
.reduced-motion .sticky-cta__pulse { animation: none; }
.sticky-cta__wa {
  flex: none;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #17a34a;
  color: #fff;
  box-shadow: 0 14px 40px -10px rgba(23, 163, 74, 0.45);
}

/* ────────── MODALE ────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}
.modal.is-open { visibility: visible; pointer-events: auto; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 4, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .45s ease;
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(86vh, 860px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__panel .eyebrow { margin-bottom: 14px; padding-right: 56px; }
.modal__panel h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  margin-bottom: 26px;
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 22px;
  line-height: 1;
  color: var(--text-muted);
  transition: border-color .3s ease, color .3s ease, transform .4s var(--ease);
}
.modal__close:hover { border-color: var(--accent); color: var(--text); transform: rotate(90deg); }

.contact-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}
.contact-path {
  display: grid;
  gap: 3px;
  justify-items: center;
  text-align: center;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .3s ease, background-color .3s ease;
}
.contact-path:hover { border-color: var(--line-strong); }
.contact-path.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.contact-path__icon { color: var(--accent); margin-bottom: 4px; }
.contact-path__label { font-size: 13.5px; font-weight: 600; }
.contact-path__hint { font-size: 11.5px; color: var(--text-dim); }

.modal__panel-content { display: none; }
.modal__panel-content.is-active { display: block; animation: panelIn .5s var(--ease); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.reduced-motion .modal__panel-content.is-active { animation: none; }
.modal__lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.modal__lede strong { color: var(--text); }

.calendly-embed { min-height: 480px; border-radius: 14px; overflow: hidden; }
.calendly-embed__placeholder {
  min-height: 480px;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  padding: 40px;
}
.calendly-embed__icon { font-size: 34px; margin: 0; }
.calendly-embed__title { font-family: var(--serif); font-size: 24px; margin: 0; }
.calendly-embed__hint { font-size: 14px; color: var(--text-muted); margin: 0; max-width: 40ch; }

/* ────────── RESPONSIVE ────────── */
@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .medias__grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .scene-photo__bg { width: 70%; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }

  .hero__photo { width: 100vw; opacity: 0.5; }
  .hero__photo-overlay {
    background:
      linear-gradient(180deg, rgba(10,10,9,0.5) 0%, rgba(10,10,9,0.35) 40%, var(--bg) 100%);
  }
  .hero__content { max-width: none; }

  .scene-photo { min-height: auto; }
  .scene-photo__bg {
    position: relative;
    width: 100%;
    height: 54vw;
    min-height: 300px;
    order: -1;
  }
  .scene-photo {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding-top: 0;
  }
  .scene-photo__overlay {
    background: linear-gradient(180deg, transparent 30%, var(--bg) 92%);
    height: 60vw;
    min-height: 320px;
    inset: auto 0 auto 0;
    top: 0;
  }
  .scene-photo--right .scene-photo__content { justify-items: start; }

  .about__stats { grid-template-columns: 1fr; }
  .stat { padding: 24px 0 8px; }

  .occasion { grid-template-columns: 1fr auto; }
  .occasion__text { grid-column: 1 / -1; }

  .process__steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .contact-options { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .booking-radios { grid-template-columns: 1fr 1fr; }

  .sticky-cta { display: flex; }

  .footer__inner { grid-template-columns: 1fr; }

  .modal { padding: 0; align-items: end; }
  .modal__panel {
    width: 100%;
    max-height: 92dvh;
    border-radius: 24px 24px 0 0;
    border-left: 0; border-right: 0; border-bottom: 0;
  }
  .contact-paths { grid-template-columns: 1fr; }
  .contact-path {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    justify-items: start;
    align-items: center;
    column-gap: 12px;
  }
  .contact-path__icon { grid-row: 1 / 3; margin: 0; }
  .contact-path__hint { grid-column: 2; }
}

@media (max-width: 560px) {
  .medias__grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .booking-radios { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .faq__cta { flex-direction: column; align-items: flex-start; }
  .captcha { flex-direction: column; align-items: flex-start; gap: 10px; }
  .captcha__note { text-align: left; }
}

/* ────────── REDUCED MOTION ────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
}

/* ────────── PAGES LÉGALES ────────── */
.legal {
  padding: calc(var(--nav-h) + clamp(56px, 9vw, 120px)) 0 clamp(72px, 9vw, 128px);
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.legal__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(32px, 4vw, 48px);
}
.legal__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.legal__toc a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: border-color .3s ease, color .3s ease;
}
.legal__toc a:hover { border-color: var(--accent); color: var(--accent-bright); }

.legal__section { margin-bottom: clamp(40px, 5vw, 64px); scroll-margin-top: calc(var(--nav-h) + 24px); }
.legal__section h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal__section h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 30px 0 10px;
}
.legal__section p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 16px;
  max-width: 68ch;
}
.legal__section strong { color: var(--text); font-weight: 500; }
.legal__section a:not(.btn) {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-line);
  transition: color .3s ease, border-color .3s ease;
}
.legal__section a:not(.btn):hover { color: var(--accent-bright); border-color: var(--accent); }
.legal__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  max-width: 68ch;
}
.legal__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
}
.legal__list li::before {
  content: "◆";
  position: absolute;
  left: 0; top: 12px;
  font-size: 7px;
  color: var(--accent);
}
.legal__updated {
  font-size: 13px;
  color: var(--text-dim);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal__back { margin-top: 32px; }

/* Mention RGPD sous les formulaires */
.form__rgpd {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-dim);
  text-align: center;
}
.form__rgpd a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--line-strong);
  transition: color .3s ease, border-color .3s ease;
}
.form__rgpd a:hover { color: var(--accent); border-color: var(--accent); }

/* ────────── ZONES D'INTERVENTION ────────── */
.zones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.zone {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.014), transparent);
  overflow: hidden;
  transition: border-color .4s ease, transform .5s var(--ease);
}
.zone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,110,.08), transparent 45%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.zone:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.zone:hover::after { opacity: 1; }
.zone__city {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--accent-bright);
}
.zone__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.zone__text strong { color: var(--text); font-weight: 500; }
.zone__towns {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--text-dim);
}

@media (max-width: 1024px) { .zones__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px)  { .zones__grid { grid-template-columns: 1fr; } }

/* Adresse dans le footer (signal de référencement local) */
.footer__address {
  margin-top: 14px;
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ────────── PAGES D'ATTERRISSAGE ────────── */
.legal__crumb {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.legal__crumb a { color: var(--text-muted); transition: color .3s ease; }
.legal__crumb a:hover { color: var(--accent); }
.legal__crumb span { margin: 0 8px; color: var(--accent); }

.legal__intro {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 0 clamp(40px, 5vw, 60px);
  padding-bottom: clamp(32px, 4vw, 44px);
  border-bottom: 1px solid var(--line-strong);
}
.legal__title em { display: block; }

.legal .faq__list { border-top: 1px solid var(--line); margin-top: 4px; }
.legal .faq__item summary { font-size: clamp(18px, 1.7vw, 23px); padding: 20px 4px; }
.legal .faq__item p { padding-bottom: 22px; }

.legal__cta {
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--accent-line);
  border-radius: 22px;
  background: linear-gradient(160deg, var(--accent-soft), transparent 60%);
  display: grid;
  gap: 16px;
  justify-items: start;
}
.legal__cta p {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--text);
  max-width: 46ch;
}
.legal__cta .btn { margin-right: 10px; }

@media (max-width: 560px) {
  .legal__cta { justify-items: stretch; }
  .legal__cta .btn { width: 100%; margin-right: 0; }
}

/* Réseaux sociaux dans le footer */
.footer__social { display: flex; gap: 18px; margin-top: 16px; }
.footer__social a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-muted);
  transition: color .3s ease;
}
.footer__social a:hover { color: var(--accent); }
