/* ==========================================================================
   Douce Evasion VR
   Direction : « l'horizon ». Le paysage brumeux du verre du casque devient
   la structure de la page. Des crêtes successives séparent les sections :
   à chaque horizon franchi, on est ailleurs.
   Une seule famille : Poppins, du 200 au 600, en contraste fort.
   ========================================================================== */

:root {
  --charbon:   #22282A;  /* la monture du casque */
  --ardoise:   #4A585B;
  --lointain:  #2F5D63;  /* la crête la plus profonde, couleur d'action */
  --brume:     #93A79E;  /* le vert-gris des montagnes */
  --voile:     #E9EEEC;  /* le ciel du verre */
  --papier:    #FBFBFA;
  --blanc:     #FFFFFF;
  --trait:     #DFE4E2;

  --police: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --largeur: 78rem;
  --texte: 40rem;
  --gouttiere: clamp(1.25rem, 5vw, 4rem);
  --rayon-photo: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--papier);
  color: var(--charbon);
  font-family: var(--police);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--lointain); text-underline-offset: .25em; text-decoration-thickness: 1px; }
a:hover { color: var(--charbon); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--lointain);
  outline-offset: 4px;
  border-radius: 2px;
}

h1, h2, h3 { margin: 0 0 .6em; letter-spacing: -.03em; line-height: 1.12; font-weight: 200; }
h1 { font-size: clamp(1.9rem, 3.9vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.35rem); font-weight: 500; letter-spacing: -.01em; line-height: 1.35; }
p  { margin: 0 0 1.2em; max-width: var(--texte); }
strong { font-weight: 500; color: var(--charbon); }

.conteneur { width: 100%; max-width: var(--largeur); margin-inline: auto; padding-inline: var(--gouttiere); }
.etroit { max-width: 46rem; }

/* ---------- Accès rapide ---------- */
.saut-contenu { position: absolute; left: -9999px; top: 0; background: var(--charbon); color: var(--blanc); padding: .8rem 1.2rem; z-index: 100; }
.saut-contenu:focus { left: .5rem; top: .5rem; }

/* ---------- En-tête ---------- */
.entete { position: sticky; top: 0; z-index: 60; background: rgba(251,251,250,.88); backdrop-filter: blur(14px); }
.entete__interieur { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); min-height: 84px; }
.marque { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--charbon); }
.marque img { width: 46px; height: 46px; object-fit: contain; }
.marque span { font-size: 1.05rem; font-weight: 300; letter-spacing: -.02em; }
.marque b { font-weight: 600; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: clamp(1rem, 2vw, 1.7rem); list-style: none; margin: 0; padding: 0; align-items: center; }
.nav a { text-decoration: none; color: var(--ardoise); font-size: .96rem; font-weight: 400; white-space: nowrap; padding-bottom: 3px; border-bottom: 1px solid transparent; }
.nav a:hover { color: var(--charbon); border-bottom-color: var(--brume); }
.nav a[aria-current="page"] { color: var(--charbon); border-bottom-color: var(--lointain); }

.tel-entete {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--lointain); color: var(--blanc);
  padding: .6rem 1.25rem; border-radius: 4px;
  text-decoration: none; font-weight: 400; font-size: .98rem; white-space: nowrap;
}
.tel-entete:hover { background: var(--charbon); color: var(--blanc); }

.burger {
  display: none; margin-left: auto; background: none; border: 0;
  padding: .55rem .3rem; cursor: pointer; width: 44px; height: 44px;
}
.burger span {
  display: block; width: 26px; height: 2px; margin: 0 auto;
  background: var(--charbon); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (prefers-reduced-motion: reduce) { .burger span { transition: none; } }

@media (max-width: 1150px) {
  .burger { display: block; }
  .nav { display: none; width: 100%; order: 4; margin-left: 0; }
  .nav[data-ouvert="true"] { display: block; }
  .nav ul { flex-direction: column; gap: 0; padding-bottom: 1rem; }
  .nav li { border-top: 1px solid var(--trait); }
  .nav a { display: block; padding: .95rem 0; border: none; }
  .entete__interieur { flex-wrap: wrap; gap: .8rem; }
  .tel-entete { padding: .5rem 1rem; font-size: .92rem; }
  .tel-entete__icone { display: none; }
}

/* ---------- Le motif : les crêtes ---------- */
.cretes { display: block; width: 100%; height: clamp(70px, 9vw, 140px); }
.cretes path { fill: currentColor; }
.cretes--loin  { color: var(--voile); }
.cretes--moyen { color: #CBD8D2; }
.cretes--pres  { color: var(--brume); }

.horizon { position: relative; line-height: 0; }
.horizon svg { position: absolute; left: 0; right: 0; width: 100%; }

/* ---------- Héros ---------- */
.heros {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0 0;
  background: linear-gradient(180deg, var(--papier) 0%, var(--voile) 100%);
  overflow: hidden;
}
.heros__grille { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.heros h1 { max-width: 18ch; margin-bottom: .45em; }
.heros h1 em { font-style: normal; font-weight: 500; }
.heros__accroche { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ardoise); max-width: 46ch; margin-top: 1.2rem; }
.heros__visuel { width: 100%; height: auto; }
@media (min-width: 901px) {
  .heros__visuel { width: calc(100% + calc(var(--gouttiere) / 2)); max-width: none; }
}
@media (max-width: 900px) {
  .heros__grille { grid-template-columns: 1fr; }
  .heros h1 { max-width: none; }
  .heros__visuel { margin-top: 1.5rem; }
}
.heros__cretes { margin-top: clamp(1.5rem, 4vw, 3rem); position: relative; }
.heros__cretes svg { display: block; width: 100%; }
.heros__cretes svg + svg { margin-top: -60px; }

.devise {
  font-size: .85rem; font-weight: 500; letter-spacing: .14em;
  color: var(--brume); margin: 0 0 1.1rem;
}

.boutons { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.bouton { display: inline-block; padding: .9rem 1.9rem; border-radius: 4px; text-decoration: none; font-weight: 400; font-size: 1.02rem; border: 1px solid var(--lointain); }
.bouton--plein { background: var(--lointain); color: var(--blanc); }
.bouton--plein:hover { background: var(--charbon); border-color: var(--charbon); color: var(--blanc); }
.bouton--creux { background: transparent; color: var(--lointain); }
.bouton--creux:hover { background: var(--lointain); color: var(--blanc); }

/* ---------- Bande de repères ---------- */
.reperes { background: var(--brume); color: var(--blanc); }
.reperes ul { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem); list-style: none; margin: 0; padding: 1.6rem 0; }
.reperes li { font-size: 1rem; font-weight: 300; }
.reperes b { display: block; font-size: 1.5rem; font-weight: 200; letter-spacing: -.02em; line-height: 1.3; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 9vw, 7rem) 0; }
.section--voile { background: var(--voile); }
.section--nuit { background: var(--charbon); color: #C6D0CD; }
.section--nuit h2, .section--nuit h3, .section--nuit strong { color: var(--blanc); }
.section--nuit a { color: var(--brume); }
.section--nuit a:hover { color: var(--blanc); }

.chapo { font-size: clamp(1.15rem, 1.8vw, 1.35rem); color: var(--ardoise); max-width: 46ch; font-weight: 300; }
.section--nuit .chapo { color: #AFBCB8; }

/* Titre de section : une crête miniature en guise de filet */
.titre-section { margin-bottom: 2.5rem; }
.titre-section::after {
  content: ""; display: block; width: 72px; height: 2px;
  background: var(--brume); margin-top: 1.2rem;
}

/* ---------- Mise en page éditoriale asymétrique ---------- */
.decale { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.decale--texte-large { grid-template-columns: 1.25fr .75fr; }
.decale--image-large { grid-template-columns: .75fr 1.25fr; }
.decale--photo-petite { grid-template-columns: 1.4fr .6fr; }
.decale--photo-petite img { max-width: 340px; }
.decale--photo-petite.decale--inverse img { margin-left: auto; }
@media (max-width: 900px) {
  .decale--photo-petite { grid-template-columns: 1fr; }
  .decale--photo-petite img { max-width: 300px; }
}
.decale--inverse > *:first-child { order: 2; }
@media (max-width: 900px) {
  .decale, .decale--texte-large, .decale--image-large { grid-template-columns: 1fr; }
  .decale--inverse > *:first-child { order: 0; }
}

.image-nette { border-radius: var(--rayon-photo); width: 100%; overflow: hidden; }
.image-haute { aspect-ratio: 3/4; object-fit: cover; }
.image-large { aspect-ratio: 4/3; object-fit: cover; }
.image-debord { width: 100%; }
@media (min-width: 901px) {
  .image-debord--droite { width: calc(100% + var(--gouttiere)); max-width: none; }
}

/* ---------- Liste de définitions (bienfaits) ---------- */
.definitions { border-top: 1px solid var(--trait); }
.definitions > div {
  display: grid; grid-template-columns: 15rem 1fr; gap: clamp(1rem, 4vw, 3rem);
  padding: 2rem 0; border-bottom: 1px solid var(--trait);
}
.definitions h3 { margin: 0; font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 200; letter-spacing: -.02em; color: var(--lointain); }
.definitions p { margin: 0; }
@media (max-width: 780px) { .definitions > div { grid-template-columns: 1fr; gap: .6rem; } }

/* ---------- Deux formats de séance ---------- */
.format { padding: 2.2rem 0; }
.format__num { font-size: .85rem; font-weight: 600; letter-spacing: .1em; color: var(--brume); margin-bottom: .6rem; }

/* ---------- Formules ---------- */
.formules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--trait); border: 1px solid var(--trait); }
@media (max-width: 900px) { .formules { grid-template-columns: 1fr; } }
.formule { background: var(--blanc); padding: 2rem 1.8rem; }
.formule--vedette { background: var(--voile); }
.formule h3 { margin-bottom: .1em; }
.formule .rythme { color: var(--brume); font-size: .95rem; margin-bottom: 1.4rem; }
.formule .prix { font-size: 2.6rem; font-weight: 200; line-height: 1.1; letter-spacing: -.04em; margin-bottom: .3rem; }
.formule .detail { font-size: .98rem; color: var(--ardoise); margin-bottom: 0; }
.formule ul { padding-left: 1.1rem; margin: 1.1rem 0 0; }
.formule li { margin-bottom: .4rem; font-size: .98rem; }

table.tarifs { width: 100%; border-collapse: collapse; margin: 2rem 0; background: var(--blanc); font-size: .98rem; }
table.tarifs caption { text-align: left; padding-bottom: .8rem; color: var(--ardoise); font-size: .95rem; }
table.tarifs th, table.tarifs td { border-bottom: 1px solid var(--trait); padding: 1rem .9rem; text-align: left; vertical-align: top; }
table.tarifs thead th { background: var(--charbon); color: var(--blanc); font-weight: 400; }
table.tarifs tbody th { font-weight: 500; }
table.tarifs .aide { display: block; color: var(--brume); font-size: .88rem; line-height: 1.5; }
.table-defile { overflow-x: auto; }

/* ---------- Témoignages ---------- */
.paroles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 900px) { .paroles { grid-template-columns: 1fr; } }
.parole blockquote { margin: 0; font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 200; line-height: 1.35; letter-spacing: -.02em; }
.parole cite { display: block; font-style: normal; margin-top: 1rem; font-size: .95rem; color: var(--brume); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--trait); }
.faq details { border-bottom: 1px solid var(--trait); }
.faq summary { font-size: 1.15rem; font-weight: 300; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1.5rem; align-items: baseline; padding: 1.3rem 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 200; color: var(--brume); line-height: 1; }
.faq details[open] summary { color: var(--lointain); }
.faq details[open] summary::after { content: "–"; }
.faq details > p { margin-top: -.3rem; margin-bottom: 1.5rem; color: var(--ardoise); }

/* ---------- Presse ---------- */
.presse { text-align: center; }
.presse__source {
  font-size: .82rem; font-weight: 500; letter-spacing: .16em;
  color: var(--brume); margin: 0 0 1.6rem; max-width: none;
}
.presse__titre {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); font-weight: 200; letter-spacing: -.03em;
  line-height: 1.25; margin: 0 auto 1.6rem; max-width: 22ch;
}
.presse__meta { margin: 0 auto; max-width: none; font-size: .98rem; color: var(--ardoise); }
.presse__meta a { margin-left: .2rem; }
.presse__filet { width: 60px; height: 1px; background: var(--brume); margin: 0 auto 1.8rem; }

/* ---------- Formulaire ---------- */
.champ { margin-bottom: 1.4rem; }
.champ label { display: block; font-weight: 400; margin-bottom: .45rem; font-size: 1rem; }
.champ input, .champ textarea, .champ select {
  width: 100%; padding: .85rem 1rem; font: inherit; font-weight: 300;
  border: 1px solid var(--trait); border-radius: 3px; background: var(--blanc); color: var(--charbon);
}
.champ input:hover, .champ textarea:hover, .champ select:hover { border-color: var(--brume); }
.champ textarea { min-height: 160px; resize: vertical; }
.aide { font-size: .93rem; color: var(--ardoise); }
/* Piège à robots : masqué sans display:none, que certains bots détectent */
.piege { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }
button.bouton--plein { cursor: pointer; font-family: inherit; }

/* ---------- Fil d'Ariane ---------- */
.fil { font-size: .92rem; color: var(--brume); padding-top: 1.6rem; }
.fil ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.fil li + li::before { content: "/"; margin-right: .45rem; }
.fil a { color: var(--brume); }

/* ---------- Page intérieure ---------- */
.tete-page { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem); }
.tete-page h1 { max-width: 20ch; }

/* ---------- Article ---------- */
.article { max-width: 44rem; }
.article h2 { margin-top: 2.8rem; font-size: clamp(1.5rem, 2.8vw, 2rem); }
.article h3 { margin-top: 1.8rem; }
.article ul { padding-left: 1.2rem; }
.article li { margin-bottom: .6rem; max-width: 62ch; }
.sources li { margin-bottom: .7rem; font-size: .98rem; }

/* ---------- Pages légales ---------- */
.legal { max-width: 44rem; }
.legal h2 { margin-top: 2.4rem; font-size: 1.4rem; font-weight: 400; }
.legal dt { font-weight: 500; margin-top: .7rem; }
.legal dd { margin: 0 0 .2rem; }
.a-completer { border-left: 2px solid var(--lointain); padding: .3rem 0 .3rem 1.4rem; margin: 1.5rem 0; }
.a-completer p { color: var(--ardoise); }

/* ---------- Appel final ---------- */
.appel { text-align: center; padding: clamp(3.5rem, 9vw, 7rem) 0; }
.appel h2 { max-width: 20ch; margin-inline: auto; }
.appel p { margin-inline: auto; }
.appel .boutons { justify-content: center; }

/* ---------- Encadré de synthèse ---------- */
.en-bref { background: var(--voile); border-radius: var(--rayon-photo); padding: clamp(1.6rem, 3.5vw, 2.4rem); margin: 2rem 0 3rem; }
.en-bref h2 { font-size: .82rem; font-weight: 500; letter-spacing: .14em; color: var(--brume); margin-bottom: 1.2rem; }
.en-bref ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.en-bref li { display: grid; grid-template-columns: 1.6rem 1fr; gap: .6rem; font-size: 1.05rem; max-width: 62ch; }
.en-bref li::before { content: "—"; color: var(--brume); }

/* ---------- Citation détachée ---------- */
.citation {
  margin: 3rem 0; padding: 0 0 0 clamp(1.2rem, 3vw, 2.2rem);
  border-left: 2px solid var(--brume);
}
.citation p {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 200;
  letter-spacing: -.02em; line-height: 1.35; color: var(--lointain); margin: 0; max-width: 26ch;
}

/* ---------- Mécanismes ---------- */
.mecanismes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--trait); border: 1px solid var(--trait); margin: 2rem 0; }
@media (max-width: 780px) { .mecanismes { grid-template-columns: 1fr; } }
.mecanisme { background: var(--blanc); padding: 1.7rem; }
.mecanisme h3 { color: var(--lointain); font-weight: 400; margin-bottom: .5em; }
.mecanisme p { margin: 0; font-size: 1rem; }

/* ---------- Vignettes de repères ---------- */
.vignettes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2.5rem 0; }
@media (max-width: 880px) { .vignettes { grid-template-columns: 1fr; gap: 1rem; } }

.vignette {
  position: relative;
  padding: 1.8rem 1.6rem 1.6rem;
  border-radius: var(--rayon-photo);
  background: var(--blanc);
  border: 1px solid var(--trait);
  overflow: hidden;
}
/* une crête discrète en pied de vignette : le motif du site */
.vignette::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--brume), var(--lointain));
  opacity: .55;
}
.vignette__icone { display: block; width: 34px; height: 34px; margin-bottom: 1.1rem; color: var(--lointain); }
.vignette__icone svg { width: 100%; height: 100%; display: block; }
.vignette b {
  display: block; font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 300;
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: .5rem; text-wrap: balance;
}
.vignette span { display: block; font-size: .97rem; line-height: 1.6; color: var(--ardoise); }

/* déclinaison sur fond sombre */
.section--nuit .vignette { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.13); }
.section--nuit .vignette b { color: var(--blanc); }
.section--nuit .vignette span { color: #A7B2B0; }
.section--nuit .vignette__icone { color: var(--brume); }

/* ---------- Liste de communes ---------- */
.colonnes-communes {
  columns: 3; column-gap: 2rem; list-style: none; padding: 0;
  margin: 1.6rem 0; font-size: .98rem; color: var(--ardoise);
}
.colonnes-communes li { break-inside: avoid; margin-bottom: .3rem; }
@media (max-width: 700px) { .colonnes-communes { columns: 2; } }

/* ---------- Aiguillage vers les deux publics ---------- */
.publics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--trait); border: 1px solid var(--trait); }
@media (max-width: 820px) { .publics { grid-template-columns: 1fr; } }
.public { background: var(--blanc); padding: clamp(1.8rem, 4vw, 2.6rem); }
.public h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 200; letter-spacing: -.02em; color: var(--lointain); margin-bottom: .6em; }
.public p { font-size: 1.02rem; }
.public ul { padding-left: 1.1rem; margin: 0 0 1.4rem; font-size: .98rem; color: var(--ardoise); }
.public li { margin-bottom: .3rem; }

/* ---------- Le mot de la créatrice ---------- */
.mot-creatrice { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.mot-creatrice__grille {
  display: grid; grid-template-columns: 15rem 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center;
}
.mot-creatrice__portrait { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--rayon-photo); }
.mot-creatrice p { font-size: 1.02rem; max-width: 52ch; }
.mot-creatrice .titre-section { margin-bottom: 1.6rem; }
@media (max-width: 780px) {
  .mot-creatrice__grille { grid-template-columns: 1fr; }
  .mot-creatrice__portrait { max-width: 15rem; }
}

/* ---------- Pied de page ---------- */
.pied { background: var(--charbon); color: #A8B4B1; padding: clamp(3rem, 6vw, 4.5rem) 0 1.6rem; font-size: 1rem; }
.pied a { color: #D3DBD9; text-decoration: none; }
.pied a:hover { color: var(--blanc); text-decoration: underline; }
.pied h2 { color: var(--blanc); font-size: .8rem; font-weight: 500; letter-spacing: .1em; margin-bottom: 1.1rem; }
.pied__grille {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: clamp(1.8rem, 3.5vw, 3rem);
  align-items: start;
}
@media (max-width: 1000px) { .pied__grille { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; } }
@media (max-width: 620px)  { .pied__grille { grid-template-columns: 1fr; } }
.pied__grille > div:last-child { display: flex; flex-direction: column; }
.pied ul { list-style: none; margin: 0; padding: 0; }
.pied li { margin-bottom: .55rem; font-size: .97rem; }
.pied address { font-style: normal; }
.pied p { max-width: 32ch; font-size: .97rem; }
.pied__marque { font-size: 1.4rem; font-weight: 200; letter-spacing: -.03em; color: var(--blanc); margin-bottom: .3rem; }
.pied__marque b { font-weight: 600; }
.pied__devise { font-size: .82rem; font-weight: 500; letter-spacing: .14em; color: var(--brume); margin-bottom: 1.5rem; }
.pied__casque { width: 118px; margin-top: 2.5rem; opacity: .45; align-self: flex-start; }
@media (max-width: 1000px) { .pied__casque { display: none; } }
.pied__bas { border-top: 1px solid #39413F; margin-top: 3rem; padding-top: 1.4rem; font-size: .9rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; color: #7E8B88; }
.pied__bas p { margin: 0; max-width: none; }
.reseaux { display: flex; gap: 1.2rem; list-style: none; padding: 0; margin-top: 1.4rem; }

.visuellement-cache { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Entrée du héros : le seul mouvement de la page ---------- */
@media (prefers-reduced-motion: no-preference) {
  .heros h1, .heros .devise, .heros__accroche, .heros .boutons, .heros__visuel {
    animation: monter .9s cubic-bezier(.22,.61,.36,1) both;
  }
  .heros .devise      { animation-delay: .05s; }
  .heros h1           { animation-delay: .12s; }
  .heros__accroche    { animation-delay: .22s; }
  .heros .boutons     { animation-delay: .32s; }
  .heros__visuel      { animation-delay: .26s; }
  @keyframes monter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}


/* ==========================================================================
   Mobile : composition centrée
   ========================================================================== */
@media (max-width: 900px) {
  .heros, .section, .tete-page, .appel, .pied { text-align: center; }

  h1, h2, h3, p, .chapo, .intro, .devise, .aide,
  .heros__accroche, .presse__meta, .en-bref li, .article li {
    margin-left: auto; margin-right: auto;
  }
  p, .chapo, .heros__accroche, .intro { max-width: 42ch; }

  .titre-section::after { margin-left: auto; margin-right: auto; }

  .boutons { justify-content: center; }
  .bouton { width: 100%; max-width: 22rem; text-align: center; }

  .devise { letter-spacing: .16em; }

  /* Menu déroulant centré */
  .nav ul { text-align: center; }
  .marque { margin-inline: 0; }

  /* Blocs de contenu */
  .definitions > div { text-align: center; }
  .definitions h3 { margin-bottom: .3em; }
  .vignette, .mecanisme, .public, .formule, .parole, .avis { text-align: center; }
  .vignette__icone { margin-left: auto; margin-right: auto; }
  .public ul, .formule ul { list-style: none; padding-left: 0; }
  .en-bref li { grid-template-columns: 1fr; }
  .en-bref li::before { display: none; }
  .en-bref h2 { text-align: center; }

  .citation { border-left: 0; border-top: 2px solid var(--brume); padding: 1.4rem 0 0; }
  .citation p { margin-inline: auto; }

  .presse { text-align: center; }
  .presse__filet { margin-inline: auto; }

  .fil ol { justify-content: center; }

  .colonnes-communes { columns: 2; text-align: center; }

  .mot-creatrice__portrait { margin-inline: auto; }
  .decale img, .decale--photo-petite img, .image-nette { margin-inline: auto; }

  /* Formulaire : les champs restent alignés à gauche pour rester utilisables */
  .champ label { text-align: left; }
  .champ input, .champ textarea, .champ select { text-align: left; }

  /* Tableau des tarifs : la lecture en colonnes impose l'alignement à gauche */
  table.tarifs th, table.tarifs td { text-align: left; }

  /* Pied de page */
  .pied address, .pied ul { text-align: center; }
  .reseaux { justify-content: center; }
  .pied__bas { justify-content: center; text-align: center; }
  .pied__casque { margin-inline: auto; align-self: center; }
  .pied p { margin-inline: auto; }
}
