@charset "UTF-8";
/* Break Hossegor — feuille de style */

/* ---- 0. Fontes ---- */

@font-face {
  font-family: "Antique Olive";
  src: url("../fonts/AntiqueOliveStd-Light.woff2") format("woff2"),
       url("../fonts/AntiqueOliveStd-Light.woff")  format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antique Olive";
  src: url("../fonts/AntiqueOliveStd-Roman.woff2") format("woff2"),
       url("../fonts/AntiqueOliveStd-Roman.woff")  format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antique Olive";
  src: url("../fonts/AntiqueOliveStd-Bold.woff2") format("woff2"),
       url("../fonts/AntiqueOliveStd-Bold.woff")  format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antique Olive";
  src: url("../fonts/AntiqueOliveStd-Italic.woff2") format("woff2"),
       url("../fonts/AntiqueOliveStd-Italic.woff")  format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---- 1. Jetons ---- */

:root {

  --nuit:   #000000;
  --foret:  #111111;
  --lichen: #262626;
  --jaune:  #F2B721;
  --sauge:  #8E9578;
  --eteint: #5E5E5E;
  --sable:  #EDE8DA;
  --blanc:  #FFFFFF;

  --font: "Antique Olive", "antique-olive", "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --t-h1:      80px;
  --t-h2:      60px;
  --t-h3:      32px;
  --t-h4:      22px;
  --t-eyebrow: 16px;
  --t-body:    18px;
  --t-lead:    22px;
  --t-small:   12px;
  --t-counter: 75px;

  --pad-serre:    50px;
  --pad-standard: 80px;
  --pad-large:    100px;
  --pad-chapitre: 160px;

  --largeur: 1440px;
  --gouttiere: 24px;
  --rail: 96px;

  --radius: 20px;
  --radius-pilule: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duree: 250ms;

  --effort: 0;
  --progression: 0;
}

/* ---- 2. Base ---- */

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

html {

  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;

  background-color: #000000;
}

body {
  margin: 0;
  background: var(--nuit);
  color: var(--blanc);
  font-family: var(--font);
  font-size: var(--t-body);
  font-weight: 300;
  line-height: 1.45;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;

}

#scroll-root { will-change: transform; }

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

a { color: inherit; text-decoration: none; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: normal;
  text-wrap: balance;
}

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

::selection { background: var(--jaune); color: var(--nuit); }

.saut-contenu {
  position: absolute;
  left: 12px; top: -100px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--jaune);
  color: var(--nuit);
  border-radius: var(--radius);
  font-size: var(--t-eyebrow);
  font-weight: 700;
  transition: top 160ms var(--ease);
}
.saut-contenu:focus { top: 12px; }

.hors-ecran {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---- 3. Typographie de composition ---- */

.eyebrow {
  margin: 0 0 20px;
  font-size: var(--t-eyebrow);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--sauge);
}

.titre-section {
  font-size: clamp(32px, 5.2vw, var(--t-h2));
  max-width: 18ch;
}

.chapo {
  font-size: clamp(18px, 2.2vw, var(--t-lead));
  font-weight: 300;
  line-height: 1.4;
  color: var(--sable);
  max-width: 46ch;
}

.titre-bloc {
  font-size: var(--t-h3);
  margin-bottom: 18px;
}

.titre-section + .chapo,
.titre-bloc + .chapo,
.titre-geant + .chapo,
.titre-large + .chapo { margin-top: 20px; }

.corps { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.corps--serre { margin-top: 26px; }

.note {
  margin-top: 26px;
  max-width: 62ch;
}

.legende {
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.35;
  color: var(--sauge);
}

.chiffres { font-variant-numeric: tabular-nums; }

/* ---- 4. Primitives de mise en page ---- */

.shell {
  width: 100%;
  max-width: var(--largeur);
  margin-inline: auto;
  padding-inline: var(--gouttiere);
}
@media (min-width: 1280px) {
  .shell { padding-inline: 48px; }
}
.pied .shell { width: 98%; max-width: 1600px; padding-inline: 18px; }
@media (max-width: 720px) {
  .pied .shell { padding-inline: 14px; }
}

.station {
  position: relative;
  padding-block: var(--pad-chapitre);

  scroll-margin-top: 96px;
}
.station--serre    { padding-block: var(--pad-standard); }
.station--respire  { padding-block: var(--pad-large); }

.station + .station::before {
  content: "";
  position: absolute;
  inset-inline: var(--gouttiere);
  top: 0;
  height: 1px;
  background: var(--lichen);
}

.station--claire {
  background: var(--blanc);
  color: var(--nuit);
}
.station--claire .eyebrow { color: #555555; }
.station--claire .chapo   { color: #1A1A1A; }
.station--claire .legende { color: #555555; }

/* ---- 5. Boutons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 15px 22px 9px;
  border: 1.5px solid var(--blanc);
  border-radius: var(--radius-pilule);
  background: var(--blanc);
  color: var(--nuit);
  font-family: inherit;
  font-size: var(--t-eyebrow);
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
  cursor: pointer;
  transition: background var(--duree) var(--ease),
              color var(--duree) var(--ease),
              border-color var(--duree) var(--ease);
}
.btn:hover, .btn:focus-visible {
  background: transparent;
  color: var(--blanc);
}

.btn--jaune {
  border-color: var(--jaune);
  background: var(--jaune);
  color: var(--nuit);
}
.btn--jaune:hover, .btn--jaune:focus-visible {
  background: transparent;
  color: var(--jaune);
}

.btn--fantome {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}
.btn--fantome:hover, .btn--fantome:focus-visible {
  background: var(--blanc);
  color: var(--nuit);
  border-color: var(--blanc);
}

.station--claire .btn--fantome:hover,
.station--claire .btn--fantome:focus-visible {
  background: var(--nuit);
  color: var(--sable);
  border-color: var(--nuit);
}

.btn[target="_blank"]::after {
  content: "↗";
  font-weight: 400;
  transform: translateY(-1px);
}

.lien {
  border-bottom: 1px solid var(--lichen);
  padding-bottom: 2px;
  transition: border-color var(--duree) var(--ease), color var(--duree) var(--ease);
}
.lien:hover { border-color: var(--jaune); color: var(--jaune); }

/* ---- 6. Pictos et logo ---- */

.picto {
  display: block;
  width: 64px;
  aspect-ratio: 1;
  background: currentColor;
  -webkit-mask: var(--src) center / contain no-repeat;
          mask: var(--src) center / contain no-repeat;
}
.picto--train    { --src: url("../svg/picto-train-to-enjoy.svg"); }
.picto--ready    { --src: url("../svg/picto-ready-to-enjoy.svg"); }
.picto--hossegor { --src: url("../svg/picto-hossegor.svg"); }

.logo {
  display: block;
  width: 176px;
  aspect-ratio: 410.908 / 107;
  background: var(--blanc);
  -webkit-mask: url("../svg/logo-break-blanc.svg") center / contain no-repeat;
          mask: url("../svg/logo-break-blanc.svg") center / contain no-repeat;
}
.logo--grand { width: 260px; }
.logo--nuit  { background: var(--nuit); }

/* ---- 7. La bande de course ---- */

.bande {
  position: fixed;
  inset-block: 0;
  left: 0;
  z-index: 40;
  width: var(--rail);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  pointer-events: none;
  mix-blend-mode: difference;
}

.bande__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--blanc);
}

.bande__filet {
  position: relative;
  width: 1px;
  height: min(38vh, 320px);
  background: rgba(255, 255, 255, 0.28);
}
.bande__filet::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: calc(var(--progression) * 100%);
  background: var(--jaune);
}

.bande__split {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.bande__nom {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blanc);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  max-height: 24vh;
  overflow: hidden;
  transition: opacity 320ms var(--ease);
}

.bande-mobile {
  position: fixed;
  top: 0; left: 0;
  z-index: 40;
  height: 2px;
  width: 100%;
  background: transparent;
  display: none;
  pointer-events: none;
}
.bande-mobile::after {
  content: "";
  display: block;
  height: 100%;
  width: calc(var(--progression) * 100%);
  background: var(--jaune);
}

/* ---- 8. En-tête ---- */

.entete {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: min(98%, 1600px);
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2%;
  padding: 6px 8px 6px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-pilule);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.14));
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  transition: background 300ms var(--ease), border-color 300ms var(--ease),
              box-shadow 300ms var(--ease);
}

.entete[data-fige="oui"] {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.44));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08),
              0 10px 30px rgba(0, 0, 0, 0.22);
}

.entete[data-fond="clair"],
.entete[data-fond="clair"][data-fige="oui"] {
  background: rgba(0, 0, 0, 0.82);
  border-color: rgba(0, 0, 0, 0.82);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.entete__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.entete__nav a {
  font-size: var(--t-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blanc);
  transition: color var(--duree) var(--ease);
}
.entete__nav a:hover { color: var(--jaune); }

.entete__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.entete .btn { padding: 12px 18px 6px; white-space: nowrap; }

.entete__burger {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pilule);
  background: transparent;
  color: var(--blanc);
  cursor: pointer;
}
.entete__burger span {
  display: block;
  width: 20px; height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 260ms var(--ease), opacity 200ms var(--ease);
}
.entete__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.entete__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.entete__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- 9. Station 00 — hero ---- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 120px var(--pad-standard);
  overflow: clip;
}

.hero__cadre {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
}
.hero__cadre img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

@media (max-width: 720px) {
  .hero__cadre img { object-position: center 72%; }
}

.hero__voile {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.88) 22%,
    rgba(0, 0, 0, 0.70) 42%,
    rgba(0, 0, 0, 0.30) 58%,
    rgba(0, 0, 0, 0.10) 74%,
    rgba(0, 0, 0, 0.46) 100%
  );
}

.hero__contenu {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 40px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 7.4vw, var(--t-h1));
  max-width: 15ch;
}

.hero h1 .h1-cle {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  color: var(--sable);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 6px;
}

.hero__adresse {
  font-size: var(--t-eyebrow);
  font-weight: 300;
  line-height: 1.5;
  color: var(--sable);
}

.hero__affiliations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.affiliation {
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-pilule);
  font-size: var(--t-small);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blanc);
}

.hero__descente {
  position: absolute;
  right: var(--gouttiere);
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-small);
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero__descente i {
  display: block;
  width: 1px; height: 34px;
  background: linear-gradient(to bottom, transparent, var(--jaune));
}

.credit-photo {
  position: absolute;
  left: var(--gouttiere);
  bottom: 22px;
  z-index: 2;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- 10. Station 01 — manifeste ---- */

.manifeste__grille {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px 80px;
  align-items: start;
}

.manifeste__portrait { margin: 0; }
.manifeste__texte p { max-width: 44ch; }
.manifeste__texte p:first-of-type {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.35;
  color: var(--blanc);
}

.piliers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: var(--pad-large);
  padding-top: var(--pad-serre);
  border-top: 1px solid var(--lichen);
}

.pilier { color: var(--sauge); }

.pilier .picto {
  width: 72px;
  margin-bottom: 20px;
  background: var(--sable);
}
.pilier h3 {
  margin-bottom: 10px;
  font-size: var(--t-h4);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blanc);
}
.pilier p {
  font-size: var(--t-eyebrow);
  color: var(--sauge);
  max-width: 30ch;
}

.revele-masque {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.revele-masque img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

/* ---- 11. Station 02 — CrossFit & Hyrox ---- */

.piliers-sport {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: var(--pad-standard);
}

.carte-sport {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  padding: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: transform 500ms var(--ease);
}
.carte-sport:hover { transform: translateY(-8px); }

.carte-sport__fond {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.carte-sport__fond img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}
.carte-sport:hover .carte-sport__fond img { transform: scale(1.045); }

.carte-sport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.45) 46%, rgba(0, 0, 0, 0.25));
}

.carte-sport h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 12px;
}
.carte-sport p {
  font-size: var(--t-eyebrow);
  color: var(--sable);
  max-width: 38ch;
}
.carte-sport .eyebrow { color: var(--jaune); }

/* ---- 12. Station 03 — les cours ---- */

.cours { position: relative; }

.cours__collant {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
}

.cours__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cours__scene img,
.cours__scene canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.cours__scene img + img { opacity: 0; }
.html-js .cours__scene img { opacity: 0; }
.html-js .cours__scene img.est-active { opacity: 1; }

.cours__voile {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 42%, rgba(0, 0, 0, 0.42) 100%);
}

.cours__contenu {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cours__liste {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  columns: 2;
  column-gap: 60px;
  max-width: 760px;
}

.cours__liste li {
  position: relative;
  break-inside: avoid;
  padding: 9px 0 9px 46px;
  font-size: clamp(19px, 2.3vw, 27px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blanc);
  transition: color 420ms var(--ease), opacity 420ms var(--ease);
}

.cours__liste li::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--t-small);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--sauge);
  transition: color 420ms var(--ease);
}

.cours__liste li::after {
  content: "";
  position: absolute;
  left: 46px; right: 0;
  top: 50%;
  height: 1.5px;
  background: var(--jaune);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 480ms var(--ease);
}

.cours__liste li.est-faite { color: var(--sauge); opacity: 0.62; }
.cours__liste li.est-faite::before { color: var(--jaune); }
.cours__liste li.est-faite::after { transform: scaleX(1); }

.cours__bilan {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 40px;
  min-height: 30px;
  font-size: var(--t-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--jaune);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
.cours__bilan.est-visible { opacity: 1; transform: none; }

.cours__bilan .legende { color: inherit; text-transform: none; font-weight: 300; }

.cours__course { height: 260vh; }

/* ---- 13. Station 04 — la galerie ---- */

.galerie { overflow: hidden; }

.galerie__piste {
  display: flex;
  gap: 20px;
  margin-top: 44px;

  padding-left: max(var(--gouttiere), calc((100% - var(--largeur)) / 2 + var(--gouttiere)));
  padding-right: var(--gouttiere);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
}
.galerie__piste::-webkit-scrollbar { display: none; }
.galerie__piste.est-tiree { cursor: grabbing; scroll-snap-type: none; }

.vignette {
  position: relative;
  flex: 0 0 auto;
  width: clamp(240px, 27vw, 380px);

  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
}
.vignette img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: opacity 200ms linear;
}

.gl-actif .vignette.gl-pret img { opacity: 0; }

.vignette__legende {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--blanc);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}
.vignette:hover .vignette__legende { opacity: 1; transform: none; }

#gl-galerie {
  position: fixed;
  inset: 0;
  z-index: 5;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms linear;
}
#gl-galerie.est-visible { opacity: 1; }

.galerie__aide {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 22px;
  padding-inline: var(--gouttiere);
  font-size: var(--t-small);
  font-weight: 300;
  color: var(--sauge);
}

.galerie__aide b {
  font-weight: 700;
  text-transform: uppercase;
}

/* ---- 15. Station 06 — tarifs ---- */

.tarifs__note {
  margin-top: 28px;
  font-size: var(--t-small);
  font-weight: 500;
  color: #555555;
}

/* ---- 16. Station 07 — planning ---- */

.pratique {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 60px 80px;
  margin-top: 48px;
  align-items: start;
}

.infos {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--lichen);
}
.infos > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--lichen);
  font-size: var(--t-eyebrow);
}
.infos dt {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sauge);
  font-size: var(--t-small);
  padding-top: 3px;
}
.infos dd { margin: 0; }

.a-fournir {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 10px;
  border: 1px dashed var(--jaune);
  border-radius: var(--radius-pilule);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--jaune);
  vertical-align: middle;
}
.station--claire .a-fournir {
  border-color: #8A6A10;
  color: #6E540C;
}

/* ---- 17. Station 08 — essai gratuit ---- */

.essai {
  position: relative;
  overflow: clip;
}
.essai__fond {
  position: absolute;
  inset: -6% 0;
  z-index: 0;
}
.essai__fond img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.essai__voile {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.97) 0%,
      rgba(0, 0, 0, 0.93) 34%,
      rgba(0, 0, 0, 0.90) 62%,
      rgba(0, 0, 0, 0.72) 100%);
}
.essai .shell { position: relative; z-index: 2; }

.essai__grille {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 60px 80px;
  align-items: start;
}

.form { display: grid; gap: 18px; }

.form__paire {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.champ { display: flex; flex-direction: column; gap: 8px; margin: 0; }

.champ label {
  font-size: var(--t-small);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sauge);
}
.champ label .requis { color: var(--jaune); }

.champ input,
.champ select,
.champ textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--lichen);
  border-radius: var(--radius);
  background: rgba(24, 35, 28, 0.8);
  color: var(--blanc);
  font-family: inherit;
  font-size: var(--t-eyebrow);
  font-weight: 300;
  transition: border-color var(--duree) var(--ease), background var(--duree) var(--ease);
}
.champ textarea { min-height: 128px; resize: vertical; }

.champ input::placeholder,
.champ textarea::placeholder { color: rgba(142, 149, 120, 0.75); }

.champ input:hover, .champ select:hover, .champ textarea:hover { border-color: var(--sauge); }
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: none;
  border-color: var(--jaune);
  background: rgba(24, 35, 28, 1);
}

.champ select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--sauge) 50%),
                    linear-gradient(135deg, var(--sauge) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.champ select option { background: var(--foret); color: var(--blanc); }

.champ__erreur {
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--jaune);
  min-height: 0;
}
.champ[data-invalide] input,
.champ[data-invalide] select,
.champ[data-invalide] textarea { border-color: var(--jaune); }

.form__rgpd {
  font-size: var(--t-small);
  font-weight: 300;
  line-height: 1.5;
  color: var(--sauge);
  max-width: 52ch;
}

.form__envoi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.form__retour {
  font-size: var(--t-eyebrow);
  font-weight: 500;
  min-height: 24px;
}
.form__retour[data-etat="ok"]     { color: var(--jaune); }
.form__retour[data-etat="erreur"] { color: #FF9A8A; }

.pot-de-miel {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.essai__arguments {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--lichen);
}
.essai__arguments li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--lichen);
  font-size: var(--t-eyebrow);
  color: var(--sable);
}
.essai__arguments b {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--jaune);
  font-variant-numeric: tabular-nums;
}

/* ---- 18. Pied de page ---- */

.pied {
  padding-block: var(--pad-large) 34px;
  border-top: 1px solid var(--lichen);
  background: var(--foret);
}

.pied__grille {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
}

.pied .logo--grand { margin-bottom: 20px; }
.pied__nap { line-height: 1.6; }

.pied__titre {
  margin-bottom: 14px;
  font-size: var(--t-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blanc);
}

.pied ul { list-style: none; margin: 0; padding: 0; }
.pied li { padding: 5px 0; }

.pied,
.pied a { font-size: var(--t-eyebrow); color: var(--sauge); }
.pied a { transition: color var(--duree) var(--ease); }
.pied a:hover { color: var(--blanc); }

.pied__bas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: var(--pad-serre);
  padding-top: 22px;
  border-top: 1px solid var(--lichen);
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--sauge);
}

/* ---- 19. Mouvement ---- */

.html-js .entre {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
  transition-delay: var(--retard, 0ms);
}
.html-js .entre.est-entre { opacity: 1; transform: none; }

.html-js .revele-masque { clip-path: inset(0 0 100% 0); transition: clip-path 1100ms var(--ease); }
.html-js .revele-masque.est-entre { clip-path: inset(0 0 0% 0); }
.html-js .revele-masque img { transform: scale(1.14); transition: transform 1400ms var(--ease); }
.html-js .revele-masque.est-entre img { transform: none; }

.html-js .carte-sport { clip-path: inset(0 0 0 0 round var(--radius)); }

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: var(--grain-src);
  background-size: 180px 180px;
  mix-blend-mode: overlay;
  opacity: calc(0.035 + var(--effort) * 0.16);
  transition: opacity 220ms linear;
}
.html-js .grain img { filter: contrast(calc(1 + var(--effort) * 0.14)); }

/* ---- 20. Adaptations ---- */

@media (min-width: 1280px) {
  .html-js .bande { display: flex; }

}

@media (max-width: 1279px) {
  .html-js .bande-mobile { display: block; }
}

@media (max-width: 1080px) {
  :root { --pad-chapitre: 110px; --pad-large: 80px; --pad-standard: 64px; }

  .hero__contenu { grid-template-columns: 1fr; gap: 34px; }
  .hero__aside { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 18px 26px; }

  .manifeste__grille { grid-template-columns: 1fr; gap: 44px; }
  .manifeste__portrait { max-width: 460px; }
  .piliers { grid-template-columns: 1fr; gap: 34px; margin-top: 64px; }
  .pilier .picto { width: 52px; }

  .piliers-sport { grid-template-columns: 1fr; }
  .carte-sport { min-height: 440px; }

  .pratique, .essai__grille { grid-template-columns: 1fr; gap: 44px; }
  .pied__grille { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
}

@media (max-width: 1140px) {
  .entete__nav { display: none; }
  .entete__burger { display: block; }
  .entete .btn--deciplus { display: none; }

  .entete__nav[data-ouvert="oui"] {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: 1px solid var(--lichen);
    border-radius: 28px;
    background: var(--nuit);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  }
  .entete__nav[data-ouvert="oui"] a {
    display: flex;
    align-items: center;
    height: 58px;
    width: 92%;
    margin-inline: auto;
    padding-inline: 22px;
    border-radius: var(--radius-pilule);
    background: var(--foret);
    color: var(--blanc);
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  :root {
    --t-body: 16px;
    --t-eyebrow: 14px;
    --gouttiere: 20px;
    --pad-chapitre: 88px;
  }

  .entete { padding: 5px 6px 5px 14px; }
  .logo { width: 138px; }

  .hero { min-height: 98svh; padding-block: 110px 64px; }
  .hero h1 { max-width: none; }
  .credit-photo, .hero__descente { display: none; }

  .vignette { width: min(76vw, 300px); }
  .galerie__piste { gap: 14px; }

  .cours__liste { columns: 1; margin-top: 24px; }
  .cours__liste li { padding-block: 6px; }
  .cours__course { height: 200vh; }

  .form__paire { grid-template-columns: 1fr; }
  .pied__grille { grid-template-columns: 1fr; gap: 30px; }
  .infos > div { grid-template-columns: 1fr; gap: 5px; }
}

/* ---- 21. Mouvement réduit ---- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .html-js .entre { opacity: 1; transform: none; }
  .html-js .revele-masque { clip-path: none; }
  .html-js .revele-masque img { transform: none; }
  .html-js .grain img { filter: none; }
  .grain::after { opacity: 0.04; }

  .cours__collant { position: static; min-height: 0; padding-block: var(--pad-standard); }
  .cours__course { height: auto; }
  .cours__liste li.est-faite { color: var(--blanc); opacity: 1; }
  .cours__liste li.est-faite::after { transform: scaleX(0); }
  .cours__bilan { display: none; }
  .html-js .cours__scene img { opacity: 0; }
  .html-js .cours__scene img:first-child { opacity: 1; }

  .bande, .bande-mobile { display: none !important; }
  #gl-galerie { display: none; }
  .gl-actif .vignette img { opacity: 1; }

  .galerie__piste { scroll-snap-type: none; }
}

@media print {
  .entete, .bande, .bande-mobile, #gl-galerie, .hero__descente { display: none !important; }
  body { background: #fff; color: #000; }
  .cours__collant { position: static; }
}

/* ---- 22. Pages intérieures ---- */

/* ---- Chapeau de page ---- */

.chapeau {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  padding-block: 140px var(--pad-standard);
  overflow: clip;
}

.chapeau--nu { min-height: 0; padding-block: 116px 40px; }
.chapeau--nu + .station { padding-top: 64px; }
.chapeau--nu + .station > .shell > .portes { margin-top: 0; }
.chapeau:not(.chapeau--nu) + .station { padding-top: var(--pad-standard); }

.chapeau__cadre {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
}
.chapeau__cadre img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.chapeau::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 150px;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

.chapeau__voile {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 46%,
                    rgba(0, 0, 0, 0.42) 100%);
}
.chapeau > .shell { position: relative; z-index: 2; }

.chapeau h1 {
  font-size: clamp(38px, 6.4vw, 72px);
  max-width: 17ch;
}
.chapeau .chapo { margin-top: 24px; max-width: 54ch; }
.chapeau__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ---- Fil d'Ariane ---- */

.fil {
  margin: 0 0 22px;
  font-size: var(--t-small);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--sauge);
}
.fil ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fil li + li::before {
  content: "/";
  margin-right: 10px;
  color: var(--lichen);
}
.fil a { color: var(--sauge); transition: color var(--duree) var(--ease); }
.fil a:hover { color: var(--jaune); }
.fil [aria-current] { color: var(--blanc); }

/* ---- Colonne de texte ---- */

.prose { max-width: 66ch; }
.prose > * + * { margin-top: 20px; }
.prose h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-top: 52px;
  max-width: 22ch;
}
.prose h3 {
  font-size: var(--t-h4);
  font-weight: 700;
  margin-top: 38px;
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-top: 9px; }
.prose li::marker { color: var(--jaune); }
.prose strong { font-weight: 700; color: var(--blanc); }
.station--claire .prose strong { color: var(--nuit); }

/* ---- Deux colonnes texte / média ---- */

.duo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px 72px;
  align-items: start;
}
.duo--inverse .duo__media { order: -1; }
.duo__media { margin: 0; }
.duo__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* ---- Plaques ---- */

.plaques {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 1001px) {
  .plaques--trois { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.plaque {
  padding: 26px 24px;
  border: 1px solid var(--lichen);
  border-radius: var(--radius);
  background: var(--foret);
}
.plaque h3 {
  font-size: var(--t-h4);
  font-weight: 700;
  margin-bottom: 12px;
}
.plaque p { color: var(--sauge); font-size: var(--t-eyebrow); }
.plaque .eyebrow { color: var(--jaune); margin-bottom: 12px; }
.station--claire .plaque {
  background: #F4F4F2;
  border-color: rgba(0, 0, 0, 0.12);
}
.station--claire .plaque p { color: #3D3D3D; }
.station--claire .plaque .eyebrow { color: #6E540C; }

/* ---- Étapes numérotées ---- */

.duo--etapes { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); }
.duo--etapes .etapes { margin-top: 0; }

@media (min-width: 1081px) {
  .duo--etapes { align-items: stretch; }
  .duo--etapes .duo__media {
    position: relative;
    overflow: clip;
    border-radius: var(--radius);

    min-height: 320px;
  }
  .duo--etapes .duo__media picture { position: absolute; inset: 0; }
  .duo--etapes .duo__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
}

.etapes {
  list-style: none;
  counter-reset: etape;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--lichen);
}
.etapes li {
  counter-increment: etape;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 8px 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--lichen);
}
.etapes li::before {
  content: counter(etape, decimal-leading-zero);
  grid-row: 1 / span 2;
  font-size: 30px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--jaune);
}
.etapes h3 {
  font-size: var(--t-h4);
  font-weight: 700;
}
.etapes p { color: var(--sauge); max-width: 58ch; }
.station--claire .etapes,
.station--claire .etapes li { border-color: rgba(0, 0, 0, 0.14); }

.etapes li h3,
.etapes li::before { transition: color 620ms var(--ease); }

.html-js .etapes li.entre::before { color: rgba(242, 183, 33, 0.32); }
.html-js .etapes li.entre h3 { color: var(--sauge); }
.html-js .etapes li.entre.est-entre::before { color: var(--jaune); }
.html-js .etapes li.entre.est-entre h3 { color: var(--blanc); }

.html-js .station--claire .etapes li.entre::before { color: rgba(138, 106, 16, 0.34); }
.html-js .station--claire .etapes li.entre h3 { color: rgba(0, 0, 0, 0.42); }
.html-js .station--claire .etapes li.entre.est-entre::before { color: #8A6A10; }
.html-js .station--claire .etapes li.entre.est-entre h3 { color: var(--nuit); }

@media (max-width: 1080px) {
  .duo--etapes { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {

  .html-js .etapes li.entre::before { color: var(--jaune); }
  .html-js .etapes li.entre h3 { color: var(--blanc); }
  .html-js .station--claire .etapes li.entre::before { color: #8A6A10; }
  .html-js .station--claire .etapes li.entre h3 { color: var(--nuit); }
}
.station--claire .etapes p { color: #3D3D3D; }
.station--claire .etapes li::before { color: #8A6A10; }

/* ---- L'encart de passage ---- */

.plaque--passage h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--t-h4);
  margin-bottom: 18px;
}
.plaque__prix {
  list-style: none;
  margin: 0;
  padding: 0;
}
.plaque__prix li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: var(--t-small);
  font-weight: 500;
}
.plaque__prix b {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.plaque--passage .corps--serre { margin-top: 22px; }
.plaque__note { margin-top: 14px; font-size: var(--t-small); font-weight: 500; }

/* ---- Questions fréquentes ---- */

.faq {
  margin-top: 48px;
  border-top: 1px solid var(--lichen);
}
.faq details {
  border-bottom: 1px solid var(--lichen);
}
.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  transition: color var(--duree) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--jaune);
  transition: transform var(--duree) var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--jaune); }
.faq summary:focus-visible {
  outline: 2px solid var(--jaune);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq__reponse {
  padding-bottom: 24px;
  color: var(--sauge);
}
.faq__reponse > * + * { margin-top: 14px; }

/* ---- Le planning, jour par jour ---- */

.planning-deux {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.semaine { margin-top: 24px; }

.jours-barre {
  position: sticky;
  top: 84px;
  z-index: 40;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--lichen);
  border-radius: var(--radius-pilule);
  background: var(--foret);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.jours-barre__fleche {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-pilule);
  background: transparent;
  color: var(--blanc);
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--duree) var(--ease), background var(--duree) var(--ease);
}
.jours-barre__fleche:hover { border-color: var(--jaune); color: var(--jaune); }

.jours-barre__nom {
  margin: 0;
  text-align: center;
  font-size: clamp(20px, 3.6vw, 26px);
  font-weight: 700;
  line-height: 1.1;
}

.no-js .jours-barre { display: none; }

/* ---- Un jour ---- */

.jour { padding-top: 26px; }
.jour__titre {
  margin: 0 0 18px;
  font-size: var(--t-h4);
  font-weight: 700;
}

.html-js .jour__titre { display: none; }
.html-js .jour[hidden] { display: none; }

/* ---- Le fil des créneaux ---- */

.fil-jour {
  --pad-lat: 20px;
  --col-heure: 72px;
  --col-point: 30px;
  --gouttiere-fil: 4px;

  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
}

.fil-jour::before {
  content: "";
  position: absolute;
  left: calc(var(--pad-lat) + var(--col-heure) + var(--gouttiere-fil) + var(--col-point) / 2);
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: var(--lichen);
}

.creneau {
  position: relative;
  display: grid;
  grid-template-columns: var(--col-heure) var(--col-point) minmax(0, 1fr);
  align-items: center;
  gap: 0 var(--gouttiere-fil);
  margin-bottom: 10px;
  padding: 16px var(--pad-lat);
  border-radius: var(--radius);
  background: var(--foret);
}
.creneau:last-child { margin-bottom: 0; }

.creneau__t {
  text-align: left;
  font-variant-numeric: tabular-nums;
}
.creneau__t b {
  display: block;
  font-size: var(--t-eyebrow);
  font-weight: 700;
  line-height: 1.1;
}
.creneau__t span {
  display: block;
  margin-top: 3px;
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--sauge);
}

.creneau__point {
  justify-self: center;
  width: 9px;
  height: 9px;
  border-radius: var(--radius-pilule);
  background: var(--sauge);
}

.creneau__quoi b {
  display: block;
  font-size: var(--t-lead);
  font-weight: 700;
  line-height: 1.15;
}
.creneau__quoi span {
  display: block;
  margin-top: 4px;
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--sauge);
}

.creneau--open { background: transparent; box-shadow: inset 0 0 0 1px var(--lichen); }
.creneau--open .creneau__quoi b { font-weight: 500; color: var(--sable); }
.creneau--open .creneau__point { background: var(--lichen); }

.creneau[data-maintenant] {
  background: var(--jaune);
  color: var(--nuit);
}
.creneau[data-maintenant] .creneau__t span,
.creneau[data-maintenant] .creneau__quoi span { color: rgba(0, 0, 0, 0.75); }
.creneau[data-maintenant] .creneau__point { background: var(--nuit); }

@media (max-width: 560px) {

  .fil-jour { --pad-lat: 16px; --col-heure: 62px; --col-point: 26px; }
  .creneau__quoi b { font-size: var(--t-eyebrow); }
}

/* ---- Bande d'appel final ---- */

.cta-bande {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px 44px;
  margin-top: var(--pad-standard);
  padding: 40px 44px;
  border: 1px solid var(--lichen);
  border-radius: var(--radius);
  background: var(--foret);
}
.cta-bande h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  max-width: 20ch;
}
.cta-bande p { margin-top: 12px; color: var(--sauge); max-width: 46ch; }
.cta-bande__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Maillage interne ---- */

.suite {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.suite a {
  display: block;
  padding: 24px;
  border: 1px solid var(--lichen);
  border-radius: var(--radius);
  background: var(--foret);
  transition: border-color var(--duree) var(--ease), transform var(--duree) var(--ease);
}
.suite a:hover { border-color: var(--jaune); transform: translateY(-4px); }
.suite b {
  display: block;
  font-size: var(--t-h4);
  font-weight: 700;
  margin-bottom: 8px;
}
.suite span { font-size: var(--t-eyebrow); color: var(--sauge); }

/* ---- Adaptations ---- */

@media (max-width: 1080px) {
  .duo { grid-template-columns: 1fr; gap: 40px; }
  .duo--inverse .duo__media { order: 0; }
  .duo__media { max-width: 480px; }
  .cta-bande { padding: 32px 28px; }
}

@media (max-width: 720px) {
  .chapeau { min-height: 0; padding-block: 128px var(--pad-standard); }
  .etapes li { grid-template-columns: 44px 1fr; gap: 6px 16px; }
  .etapes li::before { font-size: 22px; }
}

/* ---- 23. Langage d'ouverture ---- */

/* ---- Titres d'ouverture ---- */

.titre-geant,
.titre-large {
  font-weight: 300;
  line-height: 0.98;
  text-wrap: balance;
}
.titre-geant { font-size: clamp(42px, 7.4vw, 104px); max-width: 15ch; }
.titre-large { font-size: clamp(30px, 4.6vw, 64px); max-width: 19ch; }

.titre-geant em,
.titre-large em,
.pile em {
  font-style: italic;
  font-weight: 400;
}

/* ---- Libellé court ---- */

.mention {
  display: block;
  margin: 0 0 22px;
  font-size: var(--t-small);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--sauge);
}
.mention--jaune { color: var(--jaune); }

/* ---- Ouverture vidéo ---- */

.ouverture {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 120px var(--pad-standard);
  overflow: clip;
}

.ouverture__video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ouverture__video video,
.ouverture__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}

.ouverture__voile {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.62) 42%,
                    rgba(0, 0, 0, 0.30) 72%, rgba(0, 0, 0, 0.58) 100%);
}
.ouverture > .shell { position: relative; z-index: 2; width: 100%; }

.ouverture__grille {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 40px 72px;
  align-items: end;
}
.ouverture__aside { padding-bottom: 10px; }
.ouverture__aside p {
  font-size: var(--t-eyebrow);
  color: var(--sable);
  max-width: 34ch;
}
.ouverture__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ouverture__service {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: var(--t-small);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sauge);
}
.ouverture__service b { color: var(--blanc); font-weight: 700; }

/* ---- Les deux portes ---- */

.portes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.porte {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 34px;
  border-radius: var(--radius);
  overflow: clip;
  isolation: isolate;
}
.porte__fond { position: absolute; inset: 0; z-index: -2; }
.porte__fond img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.porte::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 4%,
                              rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.18) 100%);
}
.porte:hover .porte__fond img { transform: scale(1.1); }

.porte h3 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 300;
}
.porte p {
  margin-top: 14px;
  max-width: 38ch;
  color: var(--sable);
  font-size: var(--t-eyebrow);
}

.porte__aller {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: var(--t-eyebrow);
  font-weight: 700;
  color: var(--jaune);
}
.porte__aller::after {
  content: "→";
  transition: transform var(--duree) var(--ease);
}
.porte:hover .porte__aller::after { transform: translateX(6px); }

.porte__lien { position: absolute; inset: 0; z-index: 3; }

/* ---- Le credo ---- */

.credo {
  margin-top: 56px;
  border-top: 1px solid var(--lichen);
}
.credo li {
  padding: 30px 0;
  border-bottom: 1px solid var(--lichen);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 300;

  line-height: 1.15;
  color: var(--sauge);
  transition: color 600ms var(--ease);
}
.credo { list-style: none; padding: 0; }
.credo li.est-entre { color: var(--blanc); }
.credo li em { font-style: italic; font-weight: 400; color: var(--jaune); }

/* ---- L'empilement de mots ---- */

.pile {
  font-size: clamp(34px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.02;
  max-width: 13ch;
}
.pile span { transition: color 320ms var(--ease); }

.html-js .pile span { color: var(--eteint); }
.html-js .pile span.est-dit { color: var(--blanc); }
.html-js .pile em.est-dit { color: var(--jaune); }

.pile-grille {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 48px 72px;
  align-items: end;
}
.pile-grille__note { max-width: 40ch; color: var(--sauge); padding-bottom: 12px; }

/* ---- Bande vidéo pleine largeur ---- */

.bande-video {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: clip;
}
.bande-video__fond { position: absolute; inset: 0; z-index: 0; }
.bande-video__fond video,
.bande-video__fond img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}
.bande-video__voile {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.62);
}
.bande-video > .shell { position: relative; z-index: 2; }

/* ---- Compteurs ---- */

.compteurs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
  border-top: 1px solid var(--lichen);
}
.compteur {
  padding: 34px 0 0;
  border-right: 1px solid var(--lichen);
  padding-right: 20px;
}
.compteur:last-child { border-right: 0; }
.compteur b {
  display: block;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.compteur span {
  display: block;
  margin-top: 14px;
  font-size: var(--t-small);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sauge);
}

/* ---- Photo pleine largeur ---- */

.pleine-photo {
  position: relative;
  margin: 0;
  overflow: clip;
}
.pleine-photo img { width: 100%; height: auto; }
.pleine-photo figcaption {
  position: absolute;
  left: var(--gouttiere);
  bottom: 18px;
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--sauge);
}

/* ---- Pied élargi ---- */


/* ---- Adaptations ---- */

@media (max-width: 760px) {
  .credo li { line-height: 1.32; }
}

@media (max-width: 1080px) {
  .ouverture__grille { grid-template-columns: 1fr; gap: 34px; }
  .portes { grid-template-columns: 1fr; }
  .porte { min-height: 420px; }
  .pile-grille { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .compteurs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .compteur { padding-block: 28px; border-bottom: 1px solid var(--lichen); }
  .compteur:nth-child(2n) { border-right: 0; padding-left: 20px; }
}

@media (max-width: 720px) {
  .ouverture { min-height: 96svh; padding-block: 104px 44px; }
  .ouverture__service { margin-top: 32px; }
  .porte { min-height: 380px; padding: 26px; }
  .bande-video { min-height: 62svh; }
}

@media (prefers-reduced-motion: reduce) {
  .html-js .pile span,
  .html-js .pile span.est-dit { color: var(--blanc); }
  .html-js .pile em, .html-js .pile em.est-dit { color: var(--jaune); }
  .credo li { color: var(--blanc); }
  .ouverture__video video, .bande-video__fond video { display: none; }
}

.station--claire .mention { color: #555555; }
.station--claire .mention--jaune { color: #6E540C; }

.equipe + .legende { margin-top: 20px; }
.pratique .faq { margin-top: 0; }

/* ---- 24. L'équipe ---- */

.equipe {
  display: grid;
  gap: 16px;
  margin-top: 52px;
}

.equipe__rang {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coach {
  flex: 1 1 0;
  min-width: 0;
  transition: flex-grow 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.coach__carte {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 22rem;
  border-radius: var(--radius);
  background: var(--foret);
  overflow: clip;
}

.coach__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.coach__photo--haut {
  object-position: center top;
  transform: scale(1.02);

  filter: brightness(0.78) contrast(1.02);
  transition: filter 550ms var(--ease), transform 850ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.coach__voile {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.28) 26%,
    rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.94) 100%);
}

.coach__haut {
  position: absolute;
  z-index: 1;
  inset: 22px 24px auto;
}

.coach__bas {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 22px 24px;
}

.coach__nom {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1;
}
.coach__role {
  margin-top: 7px;
  font-size: var(--t-small);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--jaune);
}

.coach__texte {
  padding-top: 12px;
  font-size: var(--t-eyebrow);
  font-weight: 300;
  line-height: 1.5;
  color: var(--sable);
  transition: opacity 320ms 420ms var(--ease);
}

.coach__carte:focus-visible {
  outline: 2px solid var(--jaune);
  outline-offset: 3px;
}

/* ---- Deux par rangée dès qu'il y a la place ---- */

@media (min-width: 621px) {
  .equipe__rang { flex-direction: row; flex-wrap: wrap; }
  .coach { flex: 1 1 calc(50% - 8px); }
  .coach__carte { height: 24rem; min-height: 0; }
  .coach__bas {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    margin-top: 0;
  }
}

/* ---- Trois par rangée ---- */

@media (min-width: 901px) {
  .equipe__rang { container-type: inline-size; --part: 0.4515; }
  .equipe__rang:has(> :nth-child(2):last-child) { --part: 0.622; }
  .equipe__rang:has(> :nth-child(4):last-child) { --part: 0.354; }
  .coach { flex: 1 1 0; }
  .coach__carte { height: 26rem; }
  .coach__texte { width: calc(100cqw * var(--part) - 48px); }
}

/* ---- Le survol, seulement là où il existe ---- */

@media (hover: hover) and (min-width: 621px) {
  .coach__photo { filter: brightness(0.62) contrast(1.04); }

  .coach__texte { opacity: 0; }

  .equipe__rang:hover .coach { flex-grow: 0.82; }
  .equipe__rang .coach:hover,
  .equipe__rang .coach:focus-within { flex-grow: 1.35; }

  .coach:hover .coach__photo,
  .coach:focus-within .coach__photo {
    filter: brightness(0.9) contrast(1.02);
    transform: scale(1.07);
  }
  .coach:hover .coach__texte,
  .coach:focus-within .coach__texte { opacity: 1; }
  .coach:not(:hover):not(:focus-within) .coach__texte { transition-delay: 0ms; }
}

@media (prefers-reduced-motion: reduce) {
  .coach, .coach__photo, .coach__texte { transition: none; }
  .coach__texte { opacity: 1; }
}

.reserver__grille { margin-top: 44px; }
.reserver__grille .essai__arguments { margin-top: 0; }
.reserver__grille .infos { margin-top: 34px; }

/* ---- 25. Aperçu du tunnel de réservation ---- */

.apercu {
  margin-top: 40px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--blanc);
  color: var(--nuit);
}

.apercu__tete {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.apercu__tete h3 { font-size: var(--t-h4); font-weight: 700; }

.apercu__etiquette {

  padding: 6px 14px;
  border: 1px dashed #8A6A10;
  border-radius: var(--radius-pilule);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6E540C;
}

.apercu__jours {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.apercu__jour {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 58px;
  padding: 9px 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 14px;
  font-size: var(--t-small);
  font-weight: 700;
  color: #3D3D3D;
}
.apercu__jour b { font-size: var(--t-eyebrow); font-weight: 700; color: var(--nuit); }
.apercu__jour[data-actif] {
  border-color: var(--nuit);
  background: var(--nuit);
  color: var(--sauge);
}
.apercu__jour[data-actif] b { color: var(--blanc); }

.apercu__liste { list-style: none; margin: 24px 0 0; padding: 0; }
.apercu__liste li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.apercu__liste li:last-child { border-bottom: 0; }

.apercu__h {
  flex: 0 0 auto;
  width: 104px;
  font-size: var(--t-eyebrow);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.apercu__quoi { flex: 1 1 180px; }
.apercu__quoi b { display: block; font-size: var(--t-eyebrow); font-weight: 700; }
.apercu__quoi span { font-size: var(--t-small); font-weight: 500; color: #555555; }

.apercu__action {
  flex: 0 0 auto;
  padding: 10px 18px 8px;
  border: 1.5px solid var(--nuit);
  border-radius: var(--radius-pilule);
  background: var(--nuit);
  color: var(--blanc);
  font-family: inherit;
  font-size: var(--t-small);
  font-weight: 700;
}
.apercu__action[disabled] { opacity: 1; cursor: default; }
.apercu__action--plein {
  border-color: rgba(0, 0, 0, 0.2);
  background: transparent;
  color: #555555;
}

.apercu__pied {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  font-size: var(--t-small);
  font-weight: 500;
  color: #555555;
}

@media (max-width: 720px) {
  .apercu { padding: 20px; }
  .apercu__h { width: 100%; }
  .apercu__action { width: 100%; text-align: center; }
}

/* ---- 26. Actions flottantes ---- */

.flottants {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  flex-direction: column;
  gap: 10px;
}

.flottant {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-pilule);
  background: var(--foret);
  color: var(--blanc);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}
.flottant svg { width: 22px; height: 22px; fill: currentColor; }

.flottant--appel {
  border-color: var(--jaune);
  background: var(--jaune);
  color: var(--nuit);
}

@keyframes battement {
  0%, 42%, 100% { transform: scale(1); }
  10%           { transform: scale(1.09); }
  20%           { transform: scale(1); }
  30%           { transform: scale(1.06); }
}
.flottant--appel { animation: battement 3.2s var(--ease) infinite; }

.flottant--haut {
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: opacity var(--duree) var(--ease), transform var(--duree) var(--ease);
}
.flottant--haut[data-visible] {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (max-width: 860px) {
  .flottants { display: flex; }

  .pied { padding-bottom: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  .flottant--appel { animation: none; }
  .flottant--haut { transition: none; }
}

/* ---- 27. La carte, chargée à la demande ---- */

.carte {
  position: relative;
  margin-top: 34px;
  border: 1px solid var(--lichen);
  border-radius: var(--radius);
  background: var(--foret);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.carte iframe { width: 100%; height: 100%; border: 0; display: block; }

.carte__invite {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
}
.carte__adresse { font-size: var(--t-lead); font-weight: 500; line-height: 1.35; }
.carte__invite .legende { max-width: 42ch; }

@media (max-width: 720px) {
  .carte { aspect-ratio: 4 / 5; }
}

/* ---- La colonne de droite du planning ---- */

.planning-cote { position: sticky; top: 84px; }

.planning-cote__carte {
  padding: 26px 24px;
  border: 1px solid var(--lichen);
  border-radius: var(--radius);
  background: var(--foret);
}

.planning-cote__tel {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.1;
}
.planning-cote__tel a { transition: color var(--duree) var(--ease); }
.planning-cote__tel a:hover { color: var(--jaune); }

.planning-cote__adresse {
  margin: 0 0 20px;
  font-size: var(--t-eyebrow);
  line-height: 1.5;
  color: var(--sable);
}

.planning-cote__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px;
}

@media (max-width: 1000px) {

  .planning-deux { grid-template-columns: 1fr; gap: 32px; }
  .planning-cote { position: static; }
  .planning-cote__actions { flex-direction: row; flex-wrap: wrap; }
}

.noir #equipe { padding-bottom: var(--pad-serre); }

/* ---- Les offres ---- */

.offres {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.offre {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offre__tete {
  padding: 24px 22px 22px;
  border-radius: var(--radius);
  background: var(--nuit);
  color: var(--blanc);
}
.offre__tete h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--t-h4);
  font-weight: 700;
  line-height: 1.1;
}
.offre__tete p {
  margin-top: 6px;
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--sauge);
}

.offre__ligne {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius);
  background: var(--blanc);
  color: var(--nuit);
  text-decoration: none;
  transition: background var(--duree) var(--ease), border-color var(--duree) var(--ease),
              color var(--duree) var(--ease);
}
.offre__quoi {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.3;
}
.offre__quoi small {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.62;
}
.offre__prix {
  display: flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.offre__prix b {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.offre__unite { font-size: var(--t-small); font-weight: 500; }

.offre__ligne:hover,
.offre__ligne:focus-visible {
  background: var(--nuit);
  border-color: var(--nuit);
  color: var(--blanc);
}

.offre__ligne--phare {
  border-color: var(--jaune);
  background: var(--jaune);
}
.offre__ligne--phare:hover,
.offre__ligne--phare:focus-visible {
  background: var(--nuit);
  border-color: var(--nuit);
}

.tarifs__legende {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}
.tarifs__cle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-small);
  font-weight: 500;
  color: #555555;
}
.tarifs__cle::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}
.tarifs__cle--ligne::before { border-color: var(--jaune); background: var(--jaune); }
.tarifs__cle--club::before { background: var(--blanc); }

@media (max-width: 1080px) {
  .offres { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .offres { grid-template-columns: 1fr; }
}

/* ---- La commande ---- */

.commande {
  min-height: 420px;
  padding: clamp(20px, 3vw, 40px);
  border: 1px solid var(--lichen);
  border-radius: var(--radius);
  background: var(--blanc);
  color: var(--nuit);
}
/* La feuille du widget pose un display sur .bodylink-widget, qui l'emporte
   sur la règle [hidden] du navigateur. Ce sélecteur reprend la main. */
#bodylink-widget[hidden] { display: none; }
.commande__secours { max-width: 52ch; }
.noir .commande__secours .titre-large { color: var(--nuit); }
.noir .commande__secours p { color: #3D3D3D; }
.noir .commande__secours .mention--jaune { color: #6E540C; }
.commande__secours .btn--fantome { border-color: var(--nuit); color: var(--nuit); }
.commande__secours .btn--fantome:hover { background: var(--nuit); color: var(--blanc); }

/* ---- Le club ---- */

.club {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px 72px;
  align-items: center;
}
.rideau {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: clamp(24px, 3.6vw, 50px);
  overflow: clip;
  background: var(--foret);
}
.rideau img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2400ms cubic-bezier(0.2, 0.7, 0.2, 1) 350ms;
}
.rideau::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--nuit);
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 1100ms cubic-bezier(0.76, 0, 0.24, 1) 350ms;
}
.html-js .rideau:not(.est-entre) img { transform: scale(1.18); }
.html-js .rideau:not(.est-entre)::after { transform: scaleY(1); }

.mosaique {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
  margin-top: 56px;
}
.mosaique figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: clip;
  background: var(--foret);
}
.mosaique figure:nth-child(2n) { margin-top: clamp(16px, 3vw, 44px); }
.mosaique img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1400ms cubic-bezier(0.19, 1, 0.22, 1);
}
.mosaique figure:hover img { transform: scale(1.07); }

@media (max-width: 1080px) {
  .club { grid-template-columns: 1fr; }
  .mosaique { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mosaique figure:nth-child(2n) { margin-top: 0; }
}
@media (max-width: 620px) {
  .mosaique { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  .rideau img, .rideau::after, .mosaique img { transition: none; }
  .html-js .rideau:not(.est-entre) img { transform: none; }
  .rideau::after { display: none; }
}

/* ---- 28. Thème noir ---- */

.plaque__horaires {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--lichen);
  font-size: var(--t-small);
  line-height: 1.5;
  color: var(--sauge);
}
.plaque__horaires b { color: var(--blanc); font-weight: 700; }

.noir .btn { padding: 19px 28px 13px; }
.noir .entete .btn { padding: 14px 22px 8px; }
@media (max-width: 400px) {
  .noir .entete .btn { padding: 12px 16px 6px; }
  .noir .logo { width: 118px; }
}
.noir .btn--jaune:hover,
.noir .btn--jaune:focus-visible {
  background: var(--blanc);
  border-color: var(--blanc);
  color: var(--nuit);
}

/* Sur fond clair, le blanc du bouton par défaut disparaît — au repos comme au
   survol. Les trois variantes reprennent donc le noir. */

.noir .station--claire .btn {
  border-color: var(--nuit);
  background: var(--nuit);
  color: var(--blanc);
}
.noir .station--claire .btn:hover,
.noir .station--claire .btn:focus-visible {
  background: transparent;
  color: var(--nuit);
}
.noir .station--claire .btn--fantome {
  border-color: var(--nuit);
  background: transparent;
  color: var(--nuit);
}
.noir .station--claire .btn--fantome:hover,
.noir .station--claire .btn--fantome:focus-visible {
  background: var(--nuit);
  color: var(--blanc);
}
.noir .station--claire .btn--jaune {
  border-color: var(--jaune);
  background: var(--jaune);
  color: var(--nuit);
}
.noir .station--claire .btn--jaune:hover,
.noir .station--claire .btn--jaune:focus-visible {
  background: var(--nuit);
  border-color: var(--nuit);
  color: var(--blanc);
}

.noir .titre-geant,
.noir .titre-large,
.noir .titre-section,
.noir .porte h3,
.noir .plaque h3,
.noir .coach__nom,
.noir .pied__titre {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--blanc);
}
.noir .titre-geant,
.noir .titre-large { line-height: 1.02; }
.noir .station--claire .titre-geant,
.noir .station--claire .titre-large,
.noir .station--claire .titre-section,
.noir .station--claire .plaque h3,
.noir .station--claire h3 { color: var(--nuit); }
.noir .station--claire .offre__tete h3 { color: var(--blanc); }
.noir .station--claire .chapo,
.noir .station--claire .note { color: #1A1A1A; }
.noir .station--claire .plaque p,
.noir .station--claire .prose p { color: #3D3D3D; }

/* Sur fond clair, le jaune de survol des liens tombe à 1,8:1 : il passe à l'ambre. */
.noir .station--claire .lien:hover,
.noir .station--claire .lien:focus-visible { border-color: #6E540C; color: #6E540C; }

.noir .titre-geant em,
.noir .titre-large em { font-style: normal; font-weight: inherit; }

.noir .ouverture { align-items: stretch; padding-block: 0; }
.noir .ouverture > .shell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-block: 110px;
}
.noir .ouverture__grille {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-block: auto;
  gap: 0;
}
.noir .ouverture .titre-geant {
  text-transform: uppercase;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.04;
  max-width: 22ch;
  margin-inline: auto;
}
.noir .ouverture .titre-geant .mention { text-transform: uppercase; }
.noir .chapeau .titre-geant {
  text-transform: uppercase;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.04;
  max-width: 22ch;
}
.noir .ouverture__aside { padding-bottom: 0; margin-top: 28px; }
.noir .ouverture__aside p { max-width: 60ch; margin-inline: auto; font-size: var(--t-body); }
.noir .ouverture__actions { justify-content: center; flex-wrap: nowrap; }
@media (max-width: 480px) {
  .noir .ouverture__actions { flex-wrap: wrap; }
  .noir .ouverture__actions .btn { width: 100%; justify-content: center; }
}
.noir .ouverture__service {
  position: absolute;
  left: var(--gouttiere);
  right: var(--gouttiere);
  bottom: 26px;
  justify-content: center;
  margin-top: 0;
  padding-top: 20px;
}
@media (min-width: 1280px) {
  .noir .ouverture__service { left: 48px; right: 48px; }
}
@media (max-width: 720px) {
  .noir .ouverture > .shell { min-height: 96svh; padding-block: 100px 150px; }
}
.noir .etoiles { color: var(--jaune); letter-spacing: 0; }

.noir .porte { border: 1px solid rgba(255, 255, 255, 0.28); }
.noir .pleine-photo {
  --z: 0;
  --zoom-max: 1;
  --largeur-photo: min(100% - 2 * var(--gouttiere), var(--largeur) - 96px);
  width: var(--largeur-photo);
  margin-inline: auto;
  margin-block: calc((100vw - var(--largeur-photo)) * 0.3 + 8px) calc((100vw - var(--largeur-photo)) * 0.3 + 40px);
  border-radius: calc(clamp(24px, 3.6vw, 50px) * (1 - var(--z)));
  transform: scale(calc(1 + var(--z) * (var(--zoom-max) - 1)));
  transform-origin: center;
  will-change: transform;
  z-index: 2;
}
.noir .pleine-photo img { border-radius: inherit; }
.noir .pleine-photo figcaption { left: 24px; }

.portes--trois { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.noir .porte--cours { min-height: 520px; padding: 28px; color: inherit; text-decoration: none; }
.noir .porte--cours h3 { font-size: clamp(26px, 2.6vw, 32px); }
.noir .porte--cours p { font-size: var(--t-eyebrow); max-width: none; }
.noir .porte--cours .porte__fond img { filter: brightness(0.7); }
.noir .porte--cta {
  background: var(--jaune);
  border-color: var(--jaune);
  color: var(--nuit);
}
.noir .porte--cta::before { content: none; }
.noir .porte--cta h3,
.noir .porte--cta p { color: var(--nuit); }
.noir .porte--cta .porte__tags li {
  border-color: rgba(0, 0, 0, 0.6);
  color: var(--nuit);
  background: transparent;
}
.noir .porte--cta .porte__aller {
  background: var(--nuit);
  border-color: var(--nuit);
  color: var(--blanc);
}
.noir .porte--cta:hover .porte__aller {
  background: var(--blanc);
  border-color: var(--blanc);
  color: var(--nuit);
}
@media (max-width: 1080px) {
  .portes--trois { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .portes--trois { grid-template-columns: 1fr; }
  .noir .porte--cours { min-height: 420px; }
}
.noir .porte__aller { margin-top: 26px; align-self: flex-start; color: var(--nuit); }
.noir .porte__aller::after { content: none; }
.noir .porte:hover .porte__aller { background: var(--blanc); border-color: var(--blanc); color: var(--nuit); }

.noir .ouverture__aside p,
.noir .porte p,
.noir .plaque p,
.noir .pile-grille__note,
.noir .credo li,
.noir .chapo,
.noir .note,
.noir .essai__arguments span,
.noir .pied__nap { color: var(--sable); }

.noir .ouverture__video video,
.noir .ouverture__video img,
.noir .bande-video__fond video,
.noir .bande-video__fond img { filter: none; }

.porte__tags {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.porte__tags li {
  padding: 8px 14px 6px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-pilule);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--blanc);
  background: rgba(0, 0, 0, 0.35);
}
.noir .porte { min-height: 560px; }
.noir .porte::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%,
                              rgba(0, 0, 0, 0.42) 55%, rgba(0, 0, 0, 0.22) 100%);
}
.noir .porte__fond img { filter: brightness(0.82); }
