/* =========================================================
   LD ACCESS - "NOCTURNE"
   Cinématographique · photo plein cadre · monochrome sombre
   Accent champagne discret. Inspiration : butlerista.
   Anton (display) / Archivo (corps) / Space Mono (labels)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* La nav est fixe : sans ça, une ancre place la cible sous la barre. */
  scroll-padding-top: 96px;
}
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  --bg:      #0b0b0c;
  --bg-2:    #101011;
  --surface: #151517;
  --surface-2: #1c1c1f;
  --text:    #f2eee6;   /* blanc chaud */
  --text-soft: rgba(242,238,230,.62);
  /* Anciennement .38 → 3,3:1, sous le minimum WCAG de 4,5:1 pour du texte.
     .58 donne ~6:1 sur le fond noir. */
  --text-mute: rgba(242,238,230,.58);
  --line:    rgba(242,238,230,.14);
  --line-2:  rgba(242,238,230,.26);
  /* Bordures de champs de formulaire : WCAG 1.4.11 impose 3:1 pour les
     contours de contrôles. --line-2 ne donnait que 1,9:1. */
  --field-line: rgba(242,238,230,.44);
  --accent:  #c9a25b;   /* champagne, discret */
  --accent-2:#deba76;
  --accent-soft: rgba(201,162,91,.14);
  --error:   #e8705a;   /* était référencé sous le nom --molten, jamais déclaré */
  --error-soft: rgba(232,112,90,.12);
  --ok:      #7fd39b;

  --font-display: "Anton", "Archivo Narrow", "Archivo", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --pad: clamp(20px, 5vw, 80px);
  --maxw: 1300px;
  --sec: clamp(56px, 8vw, 112px);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #1a1408; }

/* ---------- Focus clavier : visible partout ---------- */
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utilitaires ---------- */
/* Sprite SVG : hors flux, sinon il réserve une ligne en haut de page. */
.sprite { position: absolute; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Lien d'évitement : premier élément focusable, invisible jusqu'au Tab. */
.skip {
  position: fixed; top: -100px; left: 50%; transform: translateX(-50%); z-index: 9999;
  background: var(--text); color: #14110c; padding: 12px 20px; border-radius: 0 0 4px 4px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: top .2s;
}
/* :focus et non seulement :focus-visible - le lien d'évitement doit apparaître
   dès qu'il reçoit le focus, quelle que soit l'heuristique du navigateur. */
.skip:focus { top: 0; outline-offset: -3px; }

/* ---------- Overlays ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .05; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (hover: none), (pointer: coarse) { .grain { display: none; } }

/* ---------- Typo ---------- */
/* display:block et non inline-flex : en flex, un intitulé qui passe à la ligne
   sur mobile laissait le « / » orphelin sur sa propre ligne. En flux inline,
   la barre reste collée au premier mot. */
.eyebrow {
  display: block;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--text-soft); line-height: 1.5;
}
.eyebrow__slash { color: var(--accent); margin-right: .6em; }

.h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 5.6vw, 78px); line-height: 1.2; letter-spacing: .012em;
  text-transform: uppercase;
}
.h2 em, .hero__title em { color: var(--accent); font-style: normal; }

.lede { font-size: clamp(16px, 1.3vw, 18px); color: var(--text-soft); max-width: 52ch; line-height: 1.7; }
.lede--center { margin-inline: auto; text-align: center; }

/* ---------- Boutons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 26px; border: 1px solid var(--line-2); border-radius: 2px;
  background: transparent; color: var(--text); cursor: pointer;
  min-height: 48px; /* cible tactile confortable */
  transition: background-color .35s, color .35s, border-color .35s, transform .3s, opacity .25s;
  will-change: transform;
}
.btn__arrow { width: 19px; height: 19px; flex: none; transition: transform .3s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--text); border-color: var(--text); color: #14110c; }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: #1a1408; }
.btn--ghost { border-color: var(--field-line); }
.btn--ghost:hover { background: rgba(242,238,230,.08); border-color: var(--text); }
.btn--sm { padding: 11px 18px; font-size: 11px; min-height: 42px; }
.btn--block { width: 100%; justify-content: center; padding: 19px; }
.btn__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
/* État d'envoi : le bouton devient inerte et le dit. */
.btn[disabled], .btn[aria-busy="true"] { opacity: .6; cursor: progress; pointer-events: none; }
.btn[disabled] .btn__arrow { display: none; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; gap: clamp(12px, 2vw, 24px); padding: 24px var(--pad);
  transition: background-color .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.1); -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--line); padding-top: 16px; padding-bottom: 16px;
}
/* Repli si color-mix n'est pas supporté : fond opaque plutôt que texte illisible. */
@supports not (background: color-mix(in srgb, red 50%, transparent)) {
  .nav.is-scrolled { background: rgba(11,11,12,.94); }
}
.nav__logo { display: inline-flex; align-items: baseline; gap: 8px; flex: none; }
.nav__mark {
  font-family: var(--font-display); font-size: 24px; line-height: 1; letter-spacing: .02em;
  color: var(--text);
}
.nav__word { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .38em; text-transform: uppercase; align-self: center; color: var(--text-soft); }
.nav__links { display: flex; gap: clamp(18px, 2.4vw, 32px); margin-left: auto; }
.nav__links a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-soft); position: relative; padding: 6px 0; transition: color .25s;
}
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--accent); transition: width .3s; }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
/* Téléphone visible dans la nav : sur un service à rappel, c'est le raccourci
   le plus demandé. Il n'existait nulle part dans l'en-tête. */
.nav__social {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--text); padding: 6px 2px; transition: color .25s;
}
.nav__social:hover { color: var(--accent); }
.nav__social-ico { width: 15px; height: 15px; flex: none; color: var(--accent); }
.nav__cta { flex: none; }
.nav__burger { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding: clamp(104px,14vh,150px) var(--pad) clamp(76px,11vh,120px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
/* Les IMAGES parallaxées débordent de 12 % en haut et en bas de leur cadre :
   le décalage vertical ne peut donc jamais découvrir le fond de la section.
   Les scrims, eux, restent collés à la section (inset: 0), donc le dégradé
   de raccord reste exact. */
.hero__media, .demande__media, .cta-band__media { overflow: hidden; }
.hero__media img, .demande__media img, .cta-band__media img {
  position: absolute; left: 0; right: 0; top: -12%; width: 100%; height: 124%;
  object-fit: cover;
}
.hero__img { filter: saturate(.82) contrast(1.02) brightness(.72); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,.58) 0%, rgba(11,11,12,.22) 34%, rgba(11,11,12,.6) 74%, var(--bg) 100%),
    radial-gradient(120% 90% at 50% 60%, transparent 40%, rgba(11,11,12,.44) 100%);
}
.hero__inner {
  position: relative; z-index: 1; max-width: var(--maxw); width: 100%; margin: 0 auto;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.hero__inner > * + * { margin-top: clamp(20px, 2.6vw, 30px); }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(46px, 8.4vw, 118px); line-height: 1.2; letter-spacing: .01em;
  text-transform: uppercase; text-shadow: 0 4px 40px rgba(0,0,0,.45);
}
/* Anton monte les accents des capitales quasiment jusqu'au haut du cadratin :
   sous line-height 1.14 l'accent de « MÊME » ou de « ÊTRE » frôlait encore la
   ligne du dessus : plancher relevé a 1.2. Et
   overflow:hidden (nécessaire au masque de révélation) le rogne.
   line-height 1.14 donne la place verticale ; le padding haut protège l'accent
   du masque et la marge négative annule le padding pour garder l'interligne
   exactement égal au line-height. */
.line-mask { display: block; overflow: hidden; padding: .2em 0 .06em; margin-bottom: -.26em; }
.line { display: block; }
/* Le mot accentué reste à taille pleine, comme dans tous les .h2 du site :
   un em réduit cassait l'alignement optique des trois lignes du hero. */
.hero__lede { font-size: clamp(15px, 1.4vw, 19px); color: rgba(242,238,230,.86); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
/* Note Trustpilot : la plateforme et le volume sont dans le libellé, sinon
   l'étoile seule redevient un signal invérifiable. */
.hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  background: rgba(21,21,23,.6); backdrop-filter: blur(6px);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .07em;
  text-transform: uppercase; color: var(--text-soft);
  transition: border-color .2s, color .2s;
}
.hero__rating:hover { border-color: var(--accent); color: var(--text); }
.hero__rating strong { color: var(--text); }
.hero__proof {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 22px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(242,238,230,.78);
}
.hero__proof li { display: inline-flex; align-items: center; gap: .55em; }
.hero__proof li + li::before { content: "✦"; color: var(--accent); font-size: 9px; margin-right: .4em; }
.hero__proof strong { color: var(--text); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1;
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 8px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--text-soft);
}
.hero__scroll:hover { color: var(--text); }
.hero__scroll span { width: 30px; height: 1px; background: var(--line-2); position: relative; overflow: hidden; }
.hero__scroll span::after { content:""; position:absolute; inset:0; background: var(--accent); transform: translateX(-100%); animation: scrollline 1.9s ease-in-out infinite; }
@keyframes scrollline { 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* ============ TICKER (discret) ============ */
.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; background: var(--bg-2); }
.ticker__track { display: flex; width: max-content; }
.ticker__set { display: flex; align-items: center; flex: none; }
.ticker__set span {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-soft); padding: 0 26px; white-space: nowrap;
}
.ticker__set i { color: var(--accent); font-style: normal; font-size: 10px; }

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: var(--maxw); margin: 0 auto clamp(48px, 6vw, 80px); padding: 0 var(--pad);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.section-head--left { text-align: left; align-items: flex-start; }

/* ============ ABOUT ============ */
.about {
  max-width: var(--maxw); margin: 0 auto; padding: var(--sec) var(--pad);
  display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 6vw, 90px); align-items: center;
}
.about__copy > * + * { margin-top: 24px; }
.about__p { color: var(--text-soft); max-width: 52ch; }
.frame { position: relative; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
/* height:auto est indispensable : l'attribut height="1200" du <img> est une
   « presentational hint » qui reste appliquée tant qu'aucune règle ne la
   remplace, et une hauteur fixée neutralise aspect-ratio. Sans ça la photo
   faisait 1200 px de haut, soit 3 écrans sur mobile. */
.frame img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.82) brightness(.82); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.frame:hover img { transform: scale(1.04); }
.frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(11,11,12,.85));
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(242,238,230,.9);
}
.stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 56px); margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num { font-family: var(--font-display); font-size: clamp(40px, 4.6vw, 60px); line-height: 1; letter-spacing: .01em; }
.stat:first-child .stat__num { color: var(--accent); }
.stat__label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); }

/* ============ CARTES SERVICES (photo plein cadre) ============ */
.services, .events { padding: var(--sec) 0; }
.cards { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: grid; gap: clamp(14px, 1.4vw, 20px); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

/* Les tuiles sont des liens vers #demande : on neutralise le style de lien
   et on garde une bordure d'accent au survol comme au focus clavier. */
.tile {
  position: relative; border-radius: 4px; overflow: hidden; border: 1px solid var(--line);
  min-height: clamp(380px, 42vw, 520px); display: flex; align-items: flex-end;
  color: inherit; text-decoration: none; cursor: pointer;
  transition: border-color .4s ease;
}
.tile:hover, .tile:focus-visible { border-color: rgba(201,162,91,.55); }
.tile:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.72); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.tile:hover img { transform: scale(1.05); }
.tile__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,12,.1) 0%, rgba(11,11,12,.18) 40%, rgba(11,11,12,.93) 100%); }
.tile__body { position: relative; z-index: 1; padding: clamp(22px, 2.4vw, 32px); }
.tile__index { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--accent); }
.tile h3 { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 34px); text-transform: uppercase; letter-spacing: .01em; margin: 10px 0 10px; }
.tile p { font-size: 14.5px; color: rgba(242,238,230,.78); max-width: 34ch; }
.tile__go {
  display: inline-block; margin-top: 16px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
  opacity: .78; transition: opacity .35s ease, transform .35s ease;
}
.tile:hover .tile__go, .tile:focus-visible .tile__go { opacity: 1; transform: translateX(4px); }

/* ============ PROCESS ============ */
.process { padding: var(--sec) 0; }
.steps { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 3vw, 44px); }
.steps__line { position: absolute; left: var(--pad); right: var(--pad); top: 26px; height: 1px; background: var(--line); }
.steps__line span { display: block; height: 100%; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; }
.step { position: relative; padding-top: 62px; }
.step__num {
  position: absolute; top: 0; left: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--field-line); background: var(--bg);
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--text-soft);
}
.step:first-child .step__num { border-color: var(--accent); color: var(--accent); }
.step__title { font-family: var(--font-display); font-size: 20px; text-transform: uppercase; letter-spacing: .01em; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--text-soft); }

/* ============ EVENTS ============ */
.events__head { max-width: var(--maxw); margin: 0 auto clamp(44px, 5vw, 68px); padding: 0 var(--pad); display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.events__note { font-size: 14px; color: var(--text-soft); max-width: 38ch; }
.event { border-radius: 4px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.event__media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.event__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.78); transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.event:hover .event__media img { transform: scale(1.05); }
.event__body { padding: 20px; }
.tag { display: inline-block; margin-bottom: 12px; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); border: 1px solid var(--accent-soft); border-radius: 2px; padding: 3px 9px; background: var(--accent-soft); }
/* h4 → h3 : les cartes suivaient un h2, il n'y avait aucun h3 pour combler le saut. */
.event__body h3 { font-family: var(--font-display); font-size: 18px; text-transform: uppercase; letter-spacing: .01em; line-height: 1.2; margin-bottom: 8px; }
.event__body p { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); }

/* ============ FAQ ============ */
.faq { max-width: var(--maxw); margin: 0 auto; padding: var(--sec) var(--pad); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 90px); align-items: start; }
.faq .section-head { margin: 0; padding: 0; }
.faq__list { border-top: 1px solid var(--line-2); }
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__h { font: inherit; font-weight: inherit; margin: 0; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 2px; background: transparent; border: 0; text-align: left; cursor: pointer;
  font-family: var(--font-display); font-size: clamp(17px, 1.8vw, 24px); text-transform: uppercase; letter-spacing: .01em; line-height: 1.2; color: var(--text);
  transition: color .25s;
}
.faq__item.is-open .faq__q, .faq__q:hover { color: var(--accent); }
.faq__icon { position: relative; flex: none; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content:""; position:absolute; top:50%; left:50%; background: currentColor; transform: translate(-50%,-50%); }
.faq__icon::before { width: 18px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 18px; transition: transform .35s; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { height: 0; overflow: hidden; }
/* Sans JS (ou si GSAP tombe), les réponses doivent rester lisibles :
   la hauteur 0 n'est appliquée que quand le script a pris la main. */
html:not(.anim-ready) .faq__a { height: auto; }
.faq__a > * + * { margin-top: 14px; }
.faq__a p { padding: 0 2px; max-width: 60ch; color: var(--text-soft); font-size: 15.5px; }
.faq__a p:last-child { padding-bottom: 26px; }
.faq__a a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }
.faq__a a:hover { border-color: var(--accent); }

/* ============ DEMANDE ============ */
.demande { position: relative; padding: var(--sec) 0; overflow: hidden; }
.demande__media { position: absolute; inset: 0; z-index: 0; }
.demande__media img { filter: saturate(.7) brightness(.4); }
.demande__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(11,11,12,.86) 30%, rgba(11,11,12,.86) 70%, var(--bg) 100%); }
.demande__inner {
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: start;
}
.demande__copy { position: sticky; top: 120px; }
.demande__copy > * + * { margin-top: 22px; }
.checks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.checks li { display: flex; align-items: center; gap: 13px; font-size: 15px; color: var(--text); }
.check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #1a1408; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.demande__alt { font-size: 14.5px; color: var(--text-soft); }
.demande__social {
  display: inline-block; margin-top: 4px;
  font-family: var(--font-mono); font-size: 17px; font-weight: 700; letter-spacing: .04em;
  color: var(--accent-2); border-bottom: 1px solid var(--accent-soft);
}
.demande__social:hover { border-color: var(--accent-2); }

/* ---------- Formulaire ---------- */
.form {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: 6px;
  padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 18px;
}
@supports not (background: color-mix(in srgb, red 50%, transparent)) {
  .form { background: var(--surface); }
}
.form__step {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-soft); padding-top: 4px;
}
.form__step:not(:first-child) { margin-top: 10px; padding-top: 22px; border-top: 1px solid var(--line); }
.form__step span {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--accent); color: var(--accent);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field > span:first-child { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); }
.field > span em { font-style: normal; color: var(--text-mute); letter-spacing: .08em; }
.field input, .field textarea, .select select {
  width: 100%; background: var(--bg); border: 1px solid var(--field-line); border-radius: 3px;
  padding: 14px 15px; color: var(--text);
  /* 16px minimum : en dessous, iOS Safari zoome automatiquement au focus. */
  font-size: 16px; font-family: var(--font-body);
  min-height: 48px;
  transition: border-color .25s, box-shadow .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus, .select select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field input:focus-visible, .field textarea:focus-visible, .select select:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }
.field textarea { resize: vertical; min-height: 108px; }
/* Le sélecteur de date natif est blanc sur blanc en thème sombre sans ça. */
.field input[type="date"] { color-scheme: dark; }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px; }
.select select option { background: var(--surface); color: var(--text); }
/* Positionné en absolu depuis le haut du label (titre 17px + gap 9px + demi-select 24px)
   et non depuis son centre : sinon l'apparition du message d'erreur le décale. */
.select__chevron { position: absolute; right: 16px; top: 50px; width: 8px; height: 8px; pointer-events: none; border-right: 1.5px solid var(--text-soft); border-bottom: 1.5px solid var(--text-soft); transform: translateY(-70%) rotate(45deg); }

/* État d'erreur : couleur + message texte + aria-invalid (jamais la couleur seule). */
.field.is-error input, .field.is-error textarea, .field.is-error select { border-color: var(--error); }
.field__err {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .02em; color: var(--error);
}
.field__err[hidden] { display: none; }
.field__err::before { content: "!"; flex: none; width: 15px; height: 15px; border-radius: 50%; border: 1px solid var(--error); display: grid; place-items: center; font-size: 10px; font-weight: 700; }

/* Case de consentement RGPD */
.field--check { flex-direction: row; align-items: flex-start; gap: 12px; flex-wrap: wrap; padding-top: 4px; }
.field--check input[type="checkbox"] {
  flex: none; appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; min-height: 0; margin-top: 1px; padding: 0;
  border: 1px solid var(--field-line); border-radius: 3px; background: var(--bg); cursor: pointer;
}
.field--check input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); }
.field--check input[type="checkbox"]:checked::after {
  content: "✓"; display: grid; place-items: center; height: 100%;
  color: #1a1408; font-size: 14px; font-weight: 700;
}
.field--check.is-error input[type="checkbox"] { border-color: var(--error); }
.field__consent { flex: 1; min-width: 200px; font-size: 13px; line-height: 1.5; color: var(--text-soft); }
.field__consent a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }
.field--check .field__err { flex-basis: 100%; }

/* Honeypot : hors flux, hors écran, hors tabulation. Pas display:none, que
   certains bots détectent. */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__reassure { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); text-align: center; }

.form__msg { font-size: 14px; line-height: 1.55; border-radius: 3px; padding: 14px 16px; }
.form__msg[hidden] { display: none; }
.form__msg--ok { color: var(--text); border: 1px solid var(--accent); background: var(--accent-soft); }
.form__msg--ok strong { color: var(--accent-2); }
.form__msg--ko { color: var(--text); border: 1px solid var(--error); background: var(--error-soft); }
.form__msg a { color: var(--accent-2); border-bottom: 1px solid currentColor; }
.form__legal { font-size: 12px; color: var(--text-mute); }
.form__legal a { color: var(--text-soft); border-bottom: 1px solid var(--line-2); }
.form__legal a:hover { color: var(--accent); }

/* ============ FOOTER ============ */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); overflow: hidden; padding-top: clamp(48px, 7vw, 96px); }
.footer__big {
  font-family: var(--font-display); text-transform: uppercase; line-height: .78;
  font-size: clamp(64px, 19vw, 280px); text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(242,238,230,.13); padding: 0 var(--pad) .07em; user-select: none;
}
.footer__row { max-width: var(--maxw); margin: 0 auto; padding: 30px var(--pad) 42px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__brand { display: inline-flex; align-items: baseline; gap: 8px; }
.footer__legal { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--text-mute); }
.footer__links { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.footer__links a { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); padding: 6px 0; transition: color .25s; }
.footer__links a:hover { color: var(--accent); }

/* ============ CTA MINI ============ */
.cta-mini {
  max-width: var(--maxw); margin: clamp(40px,5vw,64px) auto 0; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: center; gap: clamp(18px,3vw,40px); flex-wrap: wrap; text-align: center;
}
.cta-mini p { color: var(--text-soft); font-size: 15px; max-width: 32ch; }

/* ============ ENGAGEMENTS (remplace les faux avis) ============ */
.says { padding: var(--sec) 0; }
.says__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,1.6vw,22px); }
.says__card {
  border: 1px solid var(--line); border-radius: 4px; background: var(--surface);
  padding: clamp(24px,2.4vw,34px); display: flex; flex-direction: column; gap: 14px;
}
.says__ico { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--accent); }
.says__card h3 { font-family: var(--font-display); font-size: clamp(19px,1.9vw,23px); text-transform: uppercase; letter-spacing: .01em; line-height: 1.2; }
.says__card p { font-size: 15px; line-height: 1.6; color: var(--text-soft); }

/* ============ AVIS TRUSTPILOT ============ */
.reviews { padding: var(--sec) 0; }

/* Bandeau de note : le 4,7 en grand porte la section, le reste sourcé à côté. */
.reviews__score {
  max-width: var(--maxw); margin: 0 auto clamp(30px,3.4vw,46px); padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: center; gap: clamp(14px,2vw,26px); flex-wrap: wrap;
}
.reviews__score-num {
  font-family: var(--font-display); font-size: clamp(46px,6vw,76px); line-height: .86;
  letter-spacing: .01em; color: var(--accent-2);
}
.reviews__score-txt { display: flex; flex-direction: column; gap: 7px; max-width: 34ch; }
.reviews__score-txt p { font-size: 14px; line-height: 1.5; color: var(--text-soft); }
.reviews__score-txt strong { color: var(--text); font-weight: 600; }

/* Les étoiles : un seul symbole SVG répété, teinté à l'accent champagne.
   Chaque <svg> porte aussi width/height en attributs : sans ça, tant que cette
   feuille n'est pas chargée, un SVG sans dimensions se rend à sa taille par
   défaut de 300x150 px et la page flashe des étoiles géantes. Le CSS reprend
   la main ensuite (les attributs de présentation ont la priorité la plus basse). */
.stars { display: inline-flex; gap: 3px; color: var(--accent); }
.stars svg { flex: 0 0 auto; width: 15px; height: 15px; }
.stars--lg svg { width: clamp(19px,2vw,22px); height: clamp(19px,2vw,22px); }

/* Boucle infinie, en CSS pur : chaque rangée contient deux jeux de cartes
   identiques et glisse de la largeur d'un jeu (-50 %) avant de repartir de
   zéro — la reprise est invisible puisque les deux jeux sont les mêmes.
   Le gap est porté par les cartes (padding-right du jeu), pas par la rangée :
   un gap sur la rangée décalerait le point de bouclage d'un demi-gap. */
.reviews__loop {
  display: flex; flex-direction: column; gap: clamp(14px,1.4vw,20px);
  overflow: hidden;
  /* Fondu sur les bords : les cartes entrent et sortent au lieu d'être coupées. */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews__row {
  display: flex; width: max-content;
  animation: reviews-loop var(--boucle,64s) linear infinite;
  will-change: transform;
}
/* Durées différentes : deux rangées à la même vitesse se lisent comme un seul
   bloc qui glisse. Elles sont calées sur le nombre de cartes (12 en haut, 9 en
   bas) pour que les deux avancent à peu près à la même vitesse apparente. */
.reviews__row:first-child { --boucle: 68s; }
.reviews__row--rev { --boucle: 62s; animation-direction: reverse; }
/* stretch : toutes les cartes d'une rangée ont la même hauteur. C'est le format
   « 3 lignes » qui sert d'étalon (voir .review__text), donc plus personne ne
   dépasse et l'alignement ne coûte aucun vide. */
.reviews__set { display: flex; align-items: stretch; gap: var(--rgap,18px); padding-right: var(--rgap,18px); }
@keyframes reviews-loop { to { transform: translateX(-50%); } }

/* Le défilement s'arrête dès qu'on veut lire : survol, ou focus clavier sur le
   lien d'un avis. Sans ça la section est illisible à la souris. */
.reviews__loop:hover .reviews__row,
.reviews__loop:focus-within .reviews__row { animation-play-state: paused; }

.review {
  flex: 0 0 clamp(262px,22vw,306px);
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 8px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface) 62%);
  padding: clamp(20px,1.8vw,26px);
  display: flex; flex-direction: column; gap: 13px;
  transition: border-color .25s, transform .25s;
}
/* Guillemet en filigrane : signe le bloc comme une citation sans ajouter de texte. */
.review::before {
  content: "”"; position: absolute; top: -22px; right: 12px;
  font-family: var(--font-display); font-size: 92px; line-height: 1;
  color: var(--accent); opacity: .07; pointer-events: none;
}
.review:hover { border-color: var(--line-2); transform: translateY(-3px); }

/* Le bloc de texte fait TOUJOURS 3 lignes : au-delà il est coupé (« … » ajouté
   par le navigateur, la carte renvoie sur Trustpilot pour lire la suite), en
   deçà les lignes manquantes restent réservées. Toutes les cartes tombent donc
   à la même hauteur, étoiles et signatures alignées d'une carte à l'autre.
   -webkit-box est la seule écriture reconnue partout pour line-clamp, Firefox
   et Safari compris. */
.review__text {
  font-size: 15px; line-height: 1.62; color: var(--text-soft);
  min-height: calc(3em * 1.62);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3;
  overflow: hidden;
}

/* Lien qui couvre toute la carte : l'intitulé reste lisible par un lecteur
   d'écran (.sr-only), et le focus clavier met en plus la boucle en pause via
   le :focus-within de .reviews__loop. */
.review__link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; cursor: pointer; }
.review__link:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }

/* Signature en pied, séparée du texte par un filet. */
.review__who {
  padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 11px;
}
.review__avatar {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; background: var(--bg); border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em; color: var(--accent);
}
.review__id { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.review__id strong { font-size: 14.5px; font-weight: 600; }
.review__meta { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; color: var(--text-mute); }

/* Mouvement réduit : plus d'animation du tout. Les jeux clonés disparaissent
   (ils feraient doublon à l'écran) et chaque rangée redevient une simple piste
   qu'on fait défiler au doigt ou à la molette. */
@media (prefers-reduced-motion: reduce) {
  .reviews__row { animation: none; width: auto; overflow-x: auto; scrollbar-width: none; }
  .reviews__row::-webkit-scrollbar { display: none; }
  .reviews__set[aria-hidden] { display: none; }
  .review:hover { transform: none; }
}

/* ============ BANDE CTA ============ */
.cta-band { position: relative; overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { filter: saturate(.7) brightness(.34); }
.cta-band__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg), rgba(11,11,12,.82) 40%, rgba(11,11,12,.82) 60%, var(--bg)); }
.cta-band__inner {
  position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: clamp(64px,9vw,120px) var(--pad);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.cta-band__inner p { color: rgba(242,238,230,.8); font-size: clamp(15px,1.3vw,18px); max-width: 46ch; }

/* ============ CHATBOT ============ */
.chat { position: fixed; right: clamp(16px,2.4vw,30px); bottom: clamp(16px,2.4vw,30px); z-index: 500; }
/* Effacée quand le formulaire est à l'écran (voir initChat) : elle recouvrait
   les champs, y compris l'icône du sélecteur de date qui est justement a
   droite. Uniquement sous 900px : au-dela, la bulle ne chevauche aucun
   controle et il n'y a aucune raison de priver le visiteur de l'assistant.
   pointer-events:none pour qu'elle ne capte plus le tap une fois invisible. */
.chat { transition: opacity .3s ease, transform .3s ease; }
@media (max-width: 900px) {
  .chat--efface { opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) { .chat { transition: none; } }
.chat__toggle {
  position: relative; width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--accent);
  background: var(--accent); color: #1a1408; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .3s, background-color .3s;
}
.chat__toggle:hover { transform: translateY(-2px); }
.chat__ico { width: 26px; height: 26px; grid-area: 1/1; transition: opacity .25s, transform .25s; }
.chat__ico--close { opacity: 0; transform: rotate(-30deg); }
.chat.is-open .chat__ico--open { opacity: 0; transform: rotate(30deg); }
.chat.is-open .chat__ico--close { opacity: 1; transform: rotate(0); }
.chat__panel {
  position: absolute; right: 0; bottom: 74px; width: min(360px, calc(100vw - 32px));
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5); display: flex; flex-direction: column;
  transform-origin: bottom right;
}
.chat__panel[hidden] { display: none; }
.chat__head { display: flex; align-items: center; gap: 12px; padding: 16px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.chat__avatar { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--accent); color: #1a1408; font-family: var(--font-display); font-size: 15px; display: grid; place-items: center; }
.chat__id { display: flex; flex-direction: column; line-height: 1.3; }
.chat__id strong { font-size: 14px; letter-spacing: .02em; }
.chat__id span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-2); }
.chat__x { margin-left: auto; background: transparent; border: 0; color: var(--text-soft); cursor: pointer; padding: 6px; display: grid; place-items: center; }
.chat__x svg { width: 18px; height: 18px; }
.chat__x:hover { color: var(--text); }
.chat__log { padding: 16px; display: flex; flex-direction: column; gap: 12px; max-height: 320px; min-height: 180px; overflow-y: auto; overscroll-behavior: contain; }
.msg { max-width: 84%; padding: 11px 14px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.msg--bot { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.msg--user { align-self: flex-end; background: var(--accent); color: #1a1408; border-bottom-right-radius: 4px; }
/* Le CTA du bot est maintenant un vrai <button> injecté par le JS. */
.msg__cta {
  display: inline-flex; margin-top: 8px; padding: 0; background: transparent; border: 0;
  border-bottom: 1px solid var(--accent); cursor: pointer;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
}
.chat__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; }
.chat__chips button {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--text-soft);
  background: transparent; border: 1px solid var(--field-line); border-radius: 20px; padding: 8px 13px; cursor: pointer; transition: border-color .2s, color .2s;
}
.chat__chips button:hover { border-color: var(--accent); color: var(--accent); }
.chat__form { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--line); }
.chat__field { flex: 1; display: flex; }
.chat__form input { flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--field-line); border-radius: 22px; padding: 11px 15px; color: var(--text); font-size: 16px; }
.chat__form input:focus { outline: none; border-color: var(--accent); }
.chat__form input:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }
.chat__form button[type="submit"] { width: 44px; height: 44px; flex: none; border-radius: 50%; border: 0; background: var(--accent); color: #1a1408; cursor: pointer; display: grid; place-items: center; }
.chat__form button svg { width: 18px; height: 18px; }
.chat__legal { padding: 0 16px 12px; font-family: var(--font-mono); font-size: 10px; line-height: 1.5; letter-spacing: .02em; color: var(--text-mute); text-align: center; }

/* ============ REVEAL ============ */
.js .reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
  /* Le numéro seul prend trop de place à côté des liens : on garde l'icône. */
  .nav__social span { display: none; }
  /* 44x44 : cible tactile minimale une fois le numéro masqué. */
  .nav__social { padding: 12px; justify-content: center; }
  .nav__social-ico { width: 20px; height: 20px; }
}
@media (max-width: 1000px) {
  .about { grid-template-columns: 1fr; }
  .about__visual { max-width: 440px; }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .cards--3 { grid-template-columns: 1fr; }
  .tile { min-height: 340px; }
  .faq { grid-template-columns: 1fr; }
  .demande__inner { grid-template-columns: 1fr; }
  .demande__copy { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps__line { display: none; }
  .says__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { gap: 14px; }
  .nav__links, .nav__cta { display: none; }
  .nav__social { margin-left: auto; }
  .nav__social span { display: none; }
  .nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
    background: transparent; border: 0; cursor: pointer;
    width: 44px; height: 44px; align-items: center; /* cible tactile 44px */
  }
  .nav__burger span { width: 26px; height: 1.5px; background: var(--text); transition: transform .3s; }
  .nav.is-open .nav__burger span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav.is-open .nav__burger span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .nav.is-open { background: var(--bg); border-bottom-color: var(--line); flex-wrap: wrap; row-gap: 8px; }
  .nav.is-open .nav__links { display: flex; flex-direction: column; gap: 2px; width: 100%; margin: 8px 0 4px; order: 5; }
  .nav.is-open .nav__links a { font-size: 15px; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__cta { display: inline-flex; margin: 6px 0 8px; order: 6; }
}
@media (max-width: 640px) {
  .cards--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  /* Cartes gardées en largeur fixe : la durée de boucle étant en secondes, une
     largeur en vw ferait défiler bien plus vite sur petit écran. */
  .review { flex-basis: 264px; }
  .reviews__score { flex-direction: column; text-align: center; gap: 12px; }
  .reviews__score-txt { align-items: center; }
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .hero__actions .btn { justify-content: center; }
  .form__row { grid-template-columns: 1fr; }
  .events__head { flex-direction: column; align-items: flex-start; }
  /* Le chat ne doit pas masquer le bouton d'envoi du formulaire. */
  .chat__log { max-height: 46svh; }
  .chat__toggle { width: 52px; height: 52px; }
  .chat__ico { width: 22px; height: 22px; }
  /* De la place sous le formulaire pour que la bulle de chat ne se pose pas
     sur la mention légale ni sur le bouton d'envoi. */
  .demande { padding-bottom: calc(var(--sec) + 60px); }

  /* --- Interlettrage : .26em faisait passer « toute la France » à la ligne
     tout seul sur un intitulé de 2 mots. --- */
  .eyebrow { letter-spacing: .14em; font-size: 12px; }
  .stat__label, .event__body p, .form__step, .form__reassure { letter-spacing: .1em; }

  /* --- Photo « à propos » : en 4/5 pleine largeur elle occupait 1,3 écran
     à elle seule avant le moindre mot. --- */
  .about__visual { max-width: none; }
  .frame img { aspect-ratio: 4/3; }

  /* --- Chiffres clés : le flex-wrap laissait « FR » seul sur une 2e ligne
     avec des colonnes désalignées. Grille 2 colonnes régulières. --- */
  .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; margin-top: 32px; padding-top: 26px; }
  .stat__num { font-size: 40px; }
  .stat__label { font-size: 11.5px; }

  /* --- Étapes : numéro en pastille au-dessus = 62px de vide par étape.
     En colonne à gauche, les 4 étapes tiennent dans un écran de moins. --- */
  .step { padding-top: 0; padding-left: 62px; min-height: 46px; }
  .step__num { width: 44px; height: 44px; }
  .step__title { margin-top: 8px; }

  /* --- Lisibilité : les intitulés mono à 10,5 px passaient sous le seuil
     confortable sur écran tenu à bout de bras. --- */
  .form__step, .form__reassure, .event__body p { font-size: 11.5px; }
  .footer__legal { font-size: 12px; }
  .chat__legal { font-size: 11px; }
  .tile__go { font-size: 12px; }

  /* --- Cibles tactiles : liens de pied de page et logo sous les 44 px
     recommandés (WCAG 2.5.5). --- */
  .footer__links { gap: 4px 24px; }
  .footer__links a { padding: 12px 0; }
  .footer__row { padding-bottom: calc(42px + env(safe-area-inset-bottom)); }
  .nav__logo { padding: 10px 0; }
  .hero__scroll { padding: 14px 12px; }
  .field--check input[type="checkbox"] { width: 26px; height: 26px; }

  /* Encoche / barre de gestes iOS : la bulle du chat se retrouvait dessous. */
  .chat { bottom: calc(16px + env(safe-area-inset-bottom)); }
}

/* Pas de flash bleu au tap sur iOS/Android : le retour visuel vient déjà
   des états :active et :focus-visible. */
@media (hover: none) {
  a, button, input, select, textarea, label { -webkit-tap-highlight-color: transparent; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html { scroll-behavior: auto !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .steps__line span { transform: scaleX(1); }
}
