/* ==========================================================================
   THE PROSPEROUS ARTIST : styles.css

   SYSTÈME VOLONTAIREMENT RESTREINT
   2 familles typographiques · 8 tailles de texte · 2 fonds · 6 composants.
   Aucune mise en forme improvisée dans le HTML.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Palette de la DA (oklch converti en sRGB) */
  --eclipse:        #020309;
  --deep-blue:      #0F1932;
  --twilight:       #384768;
  --mist:           #949FB2;
  --silver:         #E1E5EA;
  --pure-silver:    #EFF2F6;
  --parchment:      #E8E4DC;
  --parchment-deep: #DCD7CC;
  --ink:            #0D111B;
  --ember:          #BE7E51;
  --ember-soft:     #D1A384;
  --ember-ink:      #8D481A;   /* ember foncé : texte accent sur fond clair (contraste AA) */

  /* Rôles (redéfinis par les thèmes de section) */
  --bg:        var(--parchment);
  --fg:        var(--ink);
  --fg-soft:   #4B5468;
  --accent:    var(--ember-ink);
  --line:      rgba(13, 17, 27, .16);
  --line-fine: rgba(13, 17, 27, .09);

  /* DEUX familles, point. */
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Archivo", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;

  /* HUIT tailles, point. */
  --fs-h1:        clamp(2.75rem, 1.9rem + 4.4vw, 6rem);
  --fs-h2:        clamp(1.9rem, 1.45rem + 2.1vw, 3.25rem);
  --fs-h3:        clamp(1.25rem, 1.12rem + 0.6vw, 1.65rem);
  --fs-statement: clamp(1.55rem, 1.15rem + 1.9vw, 2.75rem);
  --fs-lead:      clamp(1.15rem, 1.05rem + 0.55vw, 1.5rem);
  --fs-body:      clamp(1rem, 0.97rem + 0.16vw, 1.125rem);
  --fs-small:     clamp(0.875rem, 0.86rem + 0.08vw, 0.95rem);
  --fs-label:     clamp(0.68rem, 0.66rem + 0.08vw, 0.76rem);

  /* Rythme */
  --space-section: clamp(4.5rem, 2.5rem + 7.5vw, 10rem);
  --space-block:   clamp(2.25rem, 1.4rem + 3vw, 4rem);
  --gutter:        clamp(1.25rem, 0.6rem + 2.6vw, 3.5rem);

  --w-page:    72rem;
  --w-wide:    86rem;
  --w-measure: 36rem;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; }

::selection { background: var(--ember); color: var(--eclipse); }

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

.skip-link {
  position: absolute; left: 1rem; top: -10rem; z-index: 200;
  background: var(--ink); color: var(--pure-silver);
  padding: .75rem 1.25rem; font-size: var(--fs-small); text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHIE : les seuls styles de texte du site
   -------------------------------------------------------------------------- */

/* Titre principal (une seule occurrence) */
.h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: .98;
  letter-spacing: -.032em;
  text-wrap: balance;
}

/* Titre de section */
h2, .h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -.026em;
  text-wrap: balance;
}

/* Sous-titre */
h3, h4, .h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1.28;
  letter-spacing: -.014em;
}

/* Phrase forte, isolée */
.statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-statement);
  line-height: 1.22;
  letter-spacing: -.024em;
  text-wrap: balance;
}
.statement em { font-style: italic; }

/* Paragraphe d'introduction */
.lede {
  font-size: var(--fs-lead);
  line-height: 1.6;
  letter-spacing: -.004em;
}

/* Étiquette */
.eyebrow {
  display: block;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}

.small { font-size: var(--fs-small); line-height: 1.65; }
.soft  { color: var(--fg-soft); }
em, .italic { font-family: var(--serif); font-style: italic; }

p + p { margin-top: 1.1em; }

/* Espacement vertical : une seule mécanique */
.stack > * + * { margin-top: var(--gap, 1.35rem); }
.stack-lg { --gap: clamp(1.75rem, 3vw, 2.75rem); }
.stack-sm { --gap: .55rem; }

.measure { max-width: var(--w-measure); }
.measure-l { max-width: 44rem; }
.center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------
   4. SECTIONS : deux fonds seulement
   -------------------------------------------------------------------------- */
.section {
  position: relative;
  padding-block: var(--space-section);
  background: var(--bg);
  color: var(--fg);
}
.section--tight { padding-block: clamp(3rem, 1.5rem + 5vw, 6rem); }

.wrap { width: min(100% - (2 * var(--gutter)), var(--w-page)); margin-inline: auto; }
.wrap--wide { width: min(100% - (2 * var(--gutter)), var(--w-wide)); }

/* Papier */
.s--paper { --bg: var(--parchment); }

/* Nuit */
.s--night {
  --bg: var(--eclipse);
  --fg: var(--pure-silver);
  --fg-soft: #C6CEDB;              /* remonté : le mist était trop peu lisible */
  --accent: var(--ember-soft);
  --line: rgba(239, 242, 246, .24);
  --line-fine: rgba(239, 242, 246, .14);
  background:
    radial-gradient(115% 75% at 50% 0%, rgba(56, 71, 104, .34) 0%, rgba(2, 3, 9, 0) 62%),
    linear-gradient(180deg, var(--eclipse) 0%, #070B18 58%, var(--deep-blue) 100%);
}

/* Poussière d'étoiles (sections nuit uniquement) */
.s--night::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cg fill='%23FFFFFF'%3E%3Ccircle cx='20' cy='40' r='.8'/%3E%3Ccircle cx='120' cy='18' r='.6'/%3E%3Ccircle cx='210' cy='72' r='.9'/%3E%3Ccircle cx='64' cy='128' r='.55'/%3E%3Ccircle cx='168' cy='160' r='.75'/%3E%3Ccircle cx='236' cy='214' r='.6'/%3E%3Ccircle cx='40' cy='222' r='.7'/%3E%3Ccircle cx='142' cy='244' r='.5'/%3E%3Ccircle cx='96' cy='84' r='.5'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .45;
}
.section > * { position: relative; z-index: 1; }

/* Grilles éditoriales : trois variantes, pas davantage */
.grid { display: grid; gap: var(--space-block) var(--gutter); align-items: start; }
@media (min-width: 56rem) {
  .grid--half  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--text  { grid-template-columns: minmax(0, 1fr) minmax(0, .78fr); }
  .grid--media { grid-template-columns: minmax(0, .78fr) minmax(0, 1fr); }
  .grid--media-lg { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
  .sticky { position: sticky; top: 7rem; }
}

.rule { height: 1px; background: var(--line); border: 0; margin-block: var(--space-block); }

/* Colonne unique qui coule : un seul rythme vertical, pas de sous-blocs */
.flow > * + * { margin-top: clamp(1.5rem, 2.6vw, 2.25rem); }
.flow > .statement + *,
.flow > * + .statement,
.flow > .h1 + *,
.flow > * + .h1,
.flow > h2 + * { margin-top: clamp(2.25rem, 4vw, 3.5rem); }
.flow > .eyebrow + * { margin-top: 1rem; }

/* Séparateur de chapitre : filet, arche, filet */
.divider {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  color: var(--line);
}
.divider svg { width: clamp(2.25rem, 4vw, 3rem); flex: none; }
.divider-line { flex: 1 1 auto; height: 1px; background: var(--line); }

/* Paires « Art requires intuition. And structure. » : rythme serré */
.pairs { border-top: 1px solid var(--line-fine); }
.pairs li {
  display: flex;
  flex-wrap: wrap;
  gap: .1em .5em;
  padding-block: .7rem;
  border-bottom: 1px solid var(--line-fine);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.1rem, 1rem + .55vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -.015em;
}
.pairs .pair-b { color: var(--fg-soft); font-style: italic; }

/* --------------------------------------------------------------------------
   5. BOUTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  min-height: 3.5rem;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: clamp(.8rem, .77rem + .16vw, .88rem);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(.3em); }

.btn--primary {
  background: var(--ember);
  color: var(--eclipse);
  border-color: var(--ember);
}
.btn--primary:hover  { background: var(--ember-soft); border-color: var(--ember-soft); transform: translateY(-2px); }
.btn--primary:active { background: #AE6E45; border-color: #AE6E45; transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.btn--outline:hover  { border-color: var(--fg); background: rgba(190, 126, 81, .10); transform: translateY(-2px); }
.btn--outline:active { transform: translateY(0); background: rgba(190, 126, 81, .18); }

.btn--sm { min-height: 2.9rem; padding: .65rem 1.4rem; letter-spacing: .12em; }

.cta { display: flex; flex-wrap: wrap; gap: 1rem 1.25rem; align-items: center; }
.cta--center { justify-content: center; }
.cta-note { font-size: var(--fs-small); color: var(--fg-soft); }

/* --------------------------------------------------------------------------
   6. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: clamp(.7rem, 1.3vw, 1.1rem);
  color: var(--pure-silver);
  transition: background-color .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 3, 9, .70) 0%, rgba(2, 3, 9, 0) 100%);
  transition: opacity .4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(232, 228, 220, .94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(13, 17, 27, .12);
}
.site-header.is-stuck::after { opacity: 0; }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  text-decoration: none; color: inherit; flex-shrink: 0; min-height: 2.75rem;
}
.brand-mark { width: 1.5rem; flex: none; }
.brand-mark .ember { stroke: var(--ember); }
.brand-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(.98rem, .9rem + .3vw, 1.15rem);
  line-height: 1;
  white-space: nowrap;
}

.nav-desktop { display: none; }
.nav-list { display: flex; align-items: center; gap: clamp(1rem, 1.9vw, 2rem); }
.nav-link {
  position: relative;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; padding-block: .45rem; white-space: nowrap;
  opacity: .82; transition: opacity .28s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ember);
  transform: scaleX(0); transform-origin: left;
  transition: transform .34s var(--ease);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after, .nav-link:focus-visible::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.header-actions .btn { display: none; }
@media (min-width: 64rem) { .header-actions .btn { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.9rem; height: 2.9rem; padding: .7rem;
  border-radius: 999px; border: 1px solid currentColor; flex: none;
}
.nav-toggle span { display: block; height: 1px; width: 100%; background: currentColor; transition: transform .3s var(--ease), opacity .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  background-image:
    radial-gradient(110% 70% at 50% 0%, rgba(56, 71, 104, .40) 0%, rgba(2, 3, 9, 0) 65%),
    linear-gradient(180deg, #050810 0%, var(--deep-blue) 100%);
  background-color: var(--eclipse);
  color: var(--pure-silver);
  opacity: 0; visibility: hidden; transform: translateY(-1rem);
  transition: opacity .36s var(--ease), transform .36s var(--ease), visibility .36s;
  overflow-y: auto; overscroll-behavior: contain;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-mobile ul { display: flex; flex-direction: column; }
.nav-mobile a.m-link {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.6rem, 1.2rem + 2.2vw, 2.3rem);
  letter-spacing: -.02em; text-decoration: none;
  padding-block: .5rem;
  border-bottom: 1px solid rgba(239, 242, 246, .12);
}
.nav-mobile a.m-link:hover { color: var(--ember-soft); }
.nav-mobile .btn { margin-top: 2rem; width: 100%; }
.nav-mobile .m-meta { margin-top: 1.5rem; color: var(--mist); font-size: var(--fs-small); }

body.nav-open { overflow: hidden; }

@media (min-width: 64rem) {
  .nav-desktop { display: block; }
  .nav-toggle  { display: none; }
  .nav-mobile  { display: none; }
}

/* Barre d'action fixe (mobile) */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem var(--gutter);
  padding-bottom: calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(2, 3, 9, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(239, 242, 246, .16);
  color: var(--silver);
  transform: translateY(105%);
  transition: transform .4s var(--ease);
}
.mobile-cta.is-visible { transform: none; }
body.nav-open .mobile-cta { transform: translateY(105%); }
.mobile-cta .m-price { font-family: var(--serif); font-size: 1rem; line-height: 1.2; white-space: nowrap; }
.mobile-cta .m-price span { display: block; font-family: var(--sans); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mist); }
.mobile-cta .btn { min-height: 3rem; padding: .7rem 1.2rem; letter-spacing: .1em; }
@media (min-width: 64rem) { .mobile-cta { display: none; } }
@media (max-width: 63.99rem) { .site-footer { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); } }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  /* Le hero utilise les mêmes rôles que les sections nuit */
  --fg: var(--pure-silver);
  --fg-soft: #C6CEDB;
  --accent: var(--ember-soft);
  --line: rgba(239, 242, 246, .30);
  --line-fine: rgba(239, 242, 246, .16);
  position: relative;
  display: flex; align-items: flex-end;
  min-height: min(100svh, 60rem);
  padding-block: clamp(8rem, 16vh, 11rem) clamp(3rem, 6vw, 5rem);
  color: var(--pure-silver);
  background: var(--eclipse);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--focal, 50% 40%); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 9, .70) 0%, rgba(2, 3, 9, .22) 32%, rgba(2, 3, 9, .86) 90%),
    linear-gradient(90deg, rgba(2, 3, 9, .74) 0%, rgba(2, 3, 9, .10) 66%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-body { max-width: 46rem; }
.statement--hero { font-size: clamp(1.75rem, 1.2rem + 2.3vw, 3.25rem); line-height: 1.16; }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1.5rem;
  font-size: var(--fs-small); letter-spacing: .04em; color: var(--silver);
}
.hero-meta .dot { color: var(--ember); }

/* Bandeau chiffres */
.facts { display: grid; border-top: 1px solid var(--line); }
.fact { padding-block: clamp(1.5rem, 3vw, 2.5rem); border-bottom: 1px solid var(--line-fine); }
.fact b {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  line-height: 1; letter-spacing: -.03em;
}
.fact span { display: block; margin-top: .7rem; font-size: var(--fs-small); color: var(--fg-soft); }
@media (min-width: 48rem) {
  .facts { grid-template-columns: repeat(3, 1fr); column-gap: var(--gutter); }
  .fact { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   8. LIGNES (listes de phrases courtes) : UN seul style
   -------------------------------------------------------------------------- */
.lines {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.5;
  letter-spacing: -.012em;
}
.lines li { padding-block: .22em; }

.lines--ruled li { padding-block: .6em; border-bottom: 1px solid var(--line-fine); }
.lines--ruled { border-top: 1px solid var(--line-fine); }

.lines--two { display: grid; column-gap: clamp(1.5rem, 3vw, 3rem); }
@media (min-width: 32rem) { .lines--two { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.lines--soft li { color: var(--fg-soft); }

/* Rythme large, aéré, sans filets */
.lines--airy li { padding-block: .5em; }

/* Rythme serré, sans filets */
.lines--tight { font-size: var(--fs-body); font-family: var(--sans); line-height: 1.6; }
.lines--tight li { padding-block: .45em; }

/* Rythme affirmé : plus lourd, marqueur ember, filets */
.lines--strong {
  border-top: 1px solid var(--line);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.05rem + .8vw, 1.75rem);
}
.lines--strong li {
  position: relative;
  padding: .7em 0 .7em 1.6em;
  border-bottom: 1px solid var(--line-fine);
}
.lines--strong li::before {
  content: "";
  position: absolute;
  left: 0; top: .95em;
  width: .42em; height: .42em;
  background: var(--accent);
}

/* Bloc en retrait, marqué par un filet ember */
.panel {
  border-left: 2px solid var(--ember);
  padding: clamp(1.25rem, 2.4vw, 1.85rem) 0 clamp(1.25rem, 2.4vw, 1.85rem) clamp(1.25rem, 3vw, 2.25rem);
}
.panel .eyebrow { margin-bottom: 1rem; }

/* Interligne serré pour les blocs en vers libres */
.tight { line-height: 1.35; }

/* --------------------------------------------------------------------------
   9. RANGÉES (le composant à tout faire : crossing, formats, objections…)
   -------------------------------------------------------------------------- */
.rows { display: grid; border-top: 1px solid var(--line); }
.row {
  display: grid;
  gap: .35rem clamp(2rem, 5vw, 4rem);
  padding-block: clamp(1.4rem, 2.8vw, 2.1rem);
  border-bottom: 1px solid var(--line-fine);
  align-items: start;
}
@media (min-width: 46rem) { .rows--split .row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (min-width: 52rem) { .rows--two { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2.5rem, 6vw, 5rem); } }
@media (min-width: 68rem) { .rows--three { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: clamp(2rem, 4vw, 3.5rem); } }

/* Les 3 éléments qu'une rangée peut contenir */
.row-tag {
  display: block;
  font-size: var(--fs-label); font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: .4rem;
}
.row-tag--accent { color: var(--accent); }
.row-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.05rem + .5vw, 1.45rem);
  line-height: 1.28;
  letter-spacing: -.015em;
}
.row-title--soft { font-weight: 400; font-style: italic; color: var(--fg-soft); }
.s--night .row-title--soft { color: #DBE1EA; }
.row-title .amp, .row-title--soft .amp { color: var(--accent); font-style: normal; }
.row-text { font-size: var(--fs-small); color: var(--fg-soft); margin-top: .4rem; }

/* Numéro (résultats 01 à 06) */
.row-no {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2.1rem);
  line-height: 1; letter-spacing: -.02em;
  color: var(--accent);
  margin-bottom: .5rem;
  display: block;
}

/* Verbes CREATE. FINISH. EXPOSE… */
.verbs {
  display: flex; flex-wrap: wrap; gap: .3em .8em;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem, 1.05rem + 2.2vw, 3rem);
  line-height: 1.12; letter-spacing: -.03em;
}

/* --------------------------------------------------------------------------
   10. PHOTOS
   -------------------------------------------------------------------------- */
figure { margin: 0; }

.ph { position: relative; overflow: hidden; background: var(--parchment-deep); }
.ph img { width: 100%; height: 100%; object-fit: cover; object-position: var(--focal, 50% 38%); }
.ph--portrait  { aspect-ratio: 4 / 5; }
.ph--tall      { aspect-ratio: 3 / 4; }
.ph--square    { aspect-ratio: 1 / 1; }
.ph--wide      { aspect-ratio: 16 / 9; }
.ph--arch      { border-radius: 999px 999px 3px 3px; }

.band {
  position: relative;
  height: clamp(24rem, 70vh, 46rem);
  overflow: hidden;
  margin-top: var(--space-block);
}
.band img { width: 100%; height: 100%; object-fit: cover; object-position: var(--focal, 50% 45%); }
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2, 3, 9, .30) 0%, rgba(2, 3, 9, .05) 50%, rgba(2, 3, 9, .42) 100%);
}

/* --------------------------------------------------------------------------
   11. PARCOURS 12 SEMAINES
   -------------------------------------------------------------------------- */
.threshold + .threshold { margin-top: clamp(3rem, 6vw, 5rem); }
.threshold-head {
  display: grid; gap: .6rem;
  padding-bottom: clamp(1.4rem, 2.6vw, 2rem);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.75rem, 3.2vw, 2.5rem);
}
.threshold-head .eyebrow {
  font-size: clamp(.78rem, .74rem + .18vw, .9rem);
  letter-spacing: .26em;
}
.threshold-head h3 {
  font-size: clamp(2.5rem, 1.8rem + 3.2vw, 4.75rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.threshold-head .lede { color: var(--fg); }

/* --------------------------------------------------------------------------
   12. TÉMOIGNAGES : typographie renforcée
   -------------------------------------------------------------------------- */
.voices { display: grid; gap: clamp(2rem, 4vw, 3rem) var(--gutter); }
@media (min-width: 52rem) { .voices { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.voice {
  display: flex; flex-direction: column;
  padding-top: 1.6rem;
  border-top: 2px solid var(--line);
}
.voice p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, .97rem + .2vw, 1.1rem);
  line-height: 1.75;
  letter-spacing: 0;
}
.voice p + p { margin-top: .85em; }
/* Mots mis en avant à l'intérieur des citations */
.voice em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  color: var(--fg);
  box-shadow: inset 0 -.4em 0 rgba(190, 126, 81, .28);
}
.voice cite {
  margin-top: 1.25rem;
  font-style: normal;
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   13. INVESTISSEMENT
   -------------------------------------------------------------------------- */
.price {
  border: 1px solid var(--line);
  border-radius: clamp(8rem, 22vw, 13rem) clamp(8rem, 22vw, 13rem) 4px 4px;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  max-width: 34rem;
  margin-inline: auto;
}
.price-amount {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.25rem, 2.2rem + 4.6vw, 5.25rem);
  line-height: 1; letter-spacing: -.04em;
}
.price-alt {
  display: block;
  font-family: var(--serif);
  font-size: var(--fs-lead);
  letter-spacing: -.015em;
}
.price .rows { text-align: left; max-width: 22rem; margin-inline: auto; border-top: 0; }
.price .row { padding-block: .55rem; font-size: var(--fs-small); }

.seats {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 999px 999px 4px 4px;
  text-align: center;
}
.seats b { color: var(--accent); }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); max-width: 48rem; }
.faq details { border-bottom: 1px solid var(--line-fine); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding-block: clamp(1.15rem, 2.2vw, 1.6rem);
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.08rem, 1rem + .5vw, 1.35rem);
  line-height: 1.32; letter-spacing: -.015em;
  transition: color .28s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq .sign { flex: none; width: 1.1rem; height: 1.1rem; margin-top: .38em; position: relative; }
.faq .sign::before, .faq .sign::after {
  content: ""; position: absolute; background: var(--ember-ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq .sign::before { inset: 50% 0 auto 0; height: 1px; transform: translateY(-50%); }
.faq .sign::after  { inset: 0 50% 0 auto; width: 1px; transform: translateX(50%); }
.faq details[open] .sign::after { transform: translateX(50%) scaleY(0); opacity: 0; }
.faq-answer { padding-bottom: clamp(1.25rem, 2.4vw, 1.85rem); max-width: 40rem; color: var(--fg-soft); }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--eclipse);
  color: var(--silver);
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem);
  --line: rgba(239, 242, 246, .18);
  --line-fine: rgba(239, 242, 246, .10);
  --accent: var(--ember-soft);
  --fg-soft: #B3BCCB;
}
.footer-top {
  display: grid; gap: var(--space-block) var(--gutter);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-fine);
}
@media (min-width: 56rem) { .footer-top { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); } }
.footer-col h2 { font-family: var(--sans); font-size: var(--fs-label); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { text-decoration: none; font-size: var(--fs-small); opacity: .82; transition: opacity .25s var(--ease), color .25s var(--ease); }
.footer-links a:hover { opacity: 1; color: var(--ember-soft); }
.footer-links .todo { color: var(--mist); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .75rem 2rem;
  justify-content: space-between; align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  font-size: var(--fs-small); color: var(--mist);
}

/* --------------------------------------------------------------------------
   15 bis. PAGES LÉGALES (legal.html, terms.html, privacy.html)
   -------------------------------------------------------------------------- */
/* Pages légales */
body.is-doc { padding-top: 5rem; }
body.is-doc .site-header { position: sticky; }
body.is-doc .header-actions .btn { display: inline-flex; }   /* le retour au site reste visible sur mobile */

.doc { max-width: 44rem; }
.doc h2 {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.35rem);
}
.doc h3 {
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: .6rem;
}
.doc p { margin-top: 1rem; }
.doc p.meta { font-size: var(--fs-small); color: var(--fg-soft); }
.doc ul { margin-top: 1rem; }
.doc li { position: relative; padding-left: 1.5rem; margin-top: .6rem; }
.doc li::before {
  content: ""; position: absolute;
  left: 0; top: .78em;
  width: .38em; height: .38em;
  background: var(--accent);
}
.doc a { color: var(--accent); text-underline-offset: .18em; }
.doc a:hover { color: var(--ink); }
.doc strong { font-weight: 600; }

.langswitch { display: flex; gap: .75rem; align-items: center; margin-top: 1.5rem; font-size: var(--fs-small); }
.langswitch a { color: var(--accent); }

.doc .rule { margin-block: clamp(3rem, 6vw, 5rem); }

.site-footer .footer-bottom a { color: var(--ember-soft); text-decoration: none; }
.site-footer .footer-bottom a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   16. ANIMATIONS
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .btn:active { transform: none; }
}

@media print {
  .site-header, .nav-mobile, .mobile-cta, .btn { display: none !important; }
  .section { padding-block: 1.5rem; background: #FFF !important; color: #000 !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
