/* =========================================================================
   AcuSanté — feuille de style principale
   Blanc, lignes vertes, typographie sérif pour les titres.
   ========================================================================= */

/* ------------------------------------------------------------- 1. Tokens */
:root {
    --ink:         #12231c;
    --ink-soft:    #4a5d54;
    --ink-muted:   #6e8279;

    --green-900:   #0b2b21;
    --green-800:   #123d2c;
    --green-700:   #1b6b4a;
    --green-600:   #22855c;
    --green-500:   #2fa76a;
    --green-300:   #7fc9a4;
    --green-200:   #b2e0c8;
    --green-100:   #d9f0e4;
    --green-50:    #eef8f2;
    --green-tint:  #f3faf6;

    --gold:        #b8894a;
    --gold-soft:   #f3ead9;

    --white:       #ffffff;
    --line:        #d8e8df;
    --line-strong: #b6d4c4;

    --shadow-sm: 0 1px 2px rgba(11, 43, 33, .05);
    --shadow-md: 0 12px 32px -18px rgba(11, 43, 33, .35);
    --shadow-lg: 0 32px 70px -40px rgba(11, 43, 33, .45);

    --radius:    14px;
    --radius-lg: 22px;

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --wrap:  1200px;
    --wrap-narrow: 760px;
    --header-h: 84px;
}

/* ---------------------------------------------------------- 2. Réglages */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink-soft);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-600); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -.015em;
    margin: 0 0 .6em;
    font-variation-settings: 'SOFT' 0, 'WONK' 0;
}

h1 { font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

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

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

/* ------------------------------------------------------------ 3. Layout */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tint { background: var(--green-tint); }
.section--line { border-top: 1px solid var(--line); }
.section--dark { background: var(--green-900); color: #c9ded4; }
.section--dark h2, .section--dark h3 { color: #fff; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--green-700); color: #fff; padding: .75rem 1.25rem;
    border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------- 4. Titres de bloc */
.eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-body);
    font-size: .78rem; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--green-700);
    margin: 0 0 1rem;
}
.eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--green-500);
}

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::after {
    content: ''; width: 28px; height: 1px; background: var(--green-500);
}
.section-head p { font-size: 1.075rem; }
.section-head > :last-child { margin-bottom: 0; }

.lead {
    font-size: clamp(1.1rem, 1rem + .45vw, 1.3rem);
    line-height: 1.6;
    color: var(--ink);
}

/* ------------------------------------------------------------- 5. Boutons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    font-family: var(--font-body); font-size: .95rem; font-weight: 600;
    padding: .85rem 1.5rem;
    border-radius: 999px; border: 1px solid transparent;
    text-decoration: none; cursor: pointer; white-space: nowrap;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn--primary:hover { background: var(--green-800); border-color: var(--green-800); color: #fff; }

.btn--ghost { background: transparent; color: var(--green-800); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--green-tint); border-color: var(--green-500); color: var(--green-800); }

.btn--light { background: #fff; color: var(--green-800); border-color: #fff; }
.btn--light:hover { background: var(--green-50); color: var(--green-900); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }

.btn--sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 600; font-size: .95rem; text-decoration: none;
    color: var(--green-700);
}
.link-arrow i { transition: transform .18s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* -------------------------------------------------------------- 6. En-tête */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
}
/* L'en-tête dispose d'une gouttière plus large que le contenu : logo,
   six entrées de menu, sélecteur de langue et téléphone ne tiennent pas
   dans 1200 px. */
.header .wrap { width: min(100% - 2.5rem, 1340px); }

.header__inner {
    display: flex; align-items: center; gap: 1rem;
    min-height: var(--header-h);
}
.header__logo { flex: 0 0 auto; }
.header__logo img { width: 165px; height: auto; }

.nav { margin-left: auto; min-width: 0; }
.nav__list {
    display: flex; align-items: center; gap: 0;
    list-style: none; margin: 0; padding: 0;
}
.nav__link {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .6rem .68rem; border-radius: 8px;
    font-size: .92rem; font-weight: 500; color: var(--ink);
    text-decoration: none; white-space: nowrap;
    transition: background .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--green-tint); color: var(--green-800); }
.nav__link[aria-current="page"],
.nav__item--active > .nav__link { color: var(--green-700); font-weight: 600; }
.nav__item--active > .nav__link { box-shadow: inset 0 -2px 0 var(--green-500); border-radius: 8px 8px 0 0; }

.nav__item { position: relative; }

/* Passerelle invisible entre le lien et le sous-menu : sans elle, le curseur
   traverse l'espace vide, perd le survol et le menu se referme aussitôt.
   L'écart réel est de 12 px (6 px d'offset + 6 px de translation initiale) ;
   on prend 18 px pour garder une marge. Largeur = celle du sous-menu. */
.nav__item--has-sub::after {
    content: ''; position: absolute;
    top: 100%; left: 0; width: 260px; height: 18px;
}

.nav__item--has-sub > .nav__link i { font-size: .7rem; transition: transform .18s ease; }
.nav__item--has-sub:hover > .nav__link i,
.nav__item--has-sub:focus-within > .nav__link i { transform: rotate(180deg); }

.nav__sub {
    position: absolute; top: calc(100% + 6px); left: 0;
    min-width: 260px; padding: .5rem;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-md);
    list-style: none; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__item--has-sub:hover > .nav__sub,
.nav__item--has-sub:focus-within > .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a {
    display: flex; align-items: center; gap: .65rem;
    padding: .55rem .7rem; border-radius: 8px;
    font-size: .92rem; color: var(--ink); text-decoration: none;
}
.nav__sub a:hover { background: var(--green-tint); color: var(--green-800); }
.nav__sub i { color: var(--green-500); font-size: .8rem; width: 1rem; text-align: center; }

.header__actions { display: flex; align-items: center; gap: .6rem; flex: 0 0 auto; }
.header__cta { font-variant-numeric: tabular-nums; }

/* La barre complète (logo + 6 entrées + langues + téléphone) ne tient plus
   sous ~1400 px : on réduit le bouton à sa seule icône. */
@media (max-width: 1330px) {
    .header__cta span { display: none; }
    .header__cta { padding: .6rem .8rem; }
}
@media (max-width: 1180px) {
    .header__logo img { width: 145px; }
    .nav__link { padding: .55rem .5rem; font-size: .875rem; }
    .lang a { padding: .3rem .45rem; font-size: .74rem; }
}

.lang {
    display: flex; align-items: center; gap: 2px;
    padding: 3px; border: 1px solid var(--line); border-radius: 999px;
}
.lang a {
    padding: .3rem .6rem; border-radius: 999px;
    font-size: .78rem; font-weight: 600; letter-spacing: .04em;
    color: var(--ink-muted); text-decoration: none;
}
.lang a:hover { background: var(--green-tint); color: var(--green-800); }
.lang a[aria-current="true"] { background: var(--green-700); color: #fff; }

.lang-label {
    margin: 0 0 .6rem;
    font-size: .74rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; text-align: center; color: var(--ink-muted);
}

/* Variante large — bas du menu mobile. Cibles tactiles confortables,
   bloc centré. */
.lang--lg {
    justify-content: center;
    width: fit-content; margin-inline: auto;
    padding: 5px; gap: 4px;
    border-color: var(--line-strong);
}
.lang--lg a { padding: .7rem 1.5rem; font-size: 1.05rem; letter-spacing: .06em; }

/* Variante pied de page — sur fond vert sombre. */
.footer__lang { margin-top: 3rem; }
.footer__lang .lang-label { color: #7fa294; }
.lang--footer {
    justify-content: center;
    width: fit-content; margin-inline: auto;
    padding: 5px; gap: 4px;
    border-color: rgba(255, 255, 255, .22);
}
.lang--footer a { padding: .55rem 1.25rem; font-size: .95rem; color: #c9ded4; }
.lang--footer a:hover { background: rgba(255, 255, 255, .12); color: #fff; text-decoration: none; }
.lang--footer a[aria-current="true"] { background: var(--green-600); color: #fff; }

.burger {
    display: none; width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--line);
    border-radius: 10px; color: var(--ink); font-size: 1.15rem; cursor: pointer;
}

/* ---------------------------------------------------------- 7. Nav mobile */
/* Panneau plein écran. Volontairement pas de translateX pour le masquer :
   un élément décalé de 100 % vers la droite élargit le document et provoque
   un défilement horizontal sur mobile. */
.mnav {
    position: fixed; inset: 0; z-index: 200;
    background: #fff; padding: 1.25rem;
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.mnav[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
.mnav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.mnav__list { list-style: none; margin: 0; padding: 0; }
.mnav__list a {
    display: block; padding: .9rem .25rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display); font-size: 1.2rem;
    color: var(--ink); text-decoration: none;
}
.mnav__list a:hover { color: var(--green-700); }
.mnav__sub { list-style: none; margin: 0 0 0 1rem; padding: 0; }
.mnav__sub a { font-family: var(--font-body); font-size: .98rem; color: var(--ink-soft); }
.mnav__footer { margin-top: 2rem; display: grid; gap: .75rem; }

/* Accordéon « Médecine chinoise » : les huit thérapies rendraient le menu
   interminable si elles étaient toujours dépliées. */
.mnav__details > summary { list-style: none; }
.mnav__details > summary::-webkit-details-marker { display: none; }
.mnav__summary {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: .9rem .25rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display); font-size: 1.2rem; color: var(--ink);
    cursor: pointer; user-select: none;
}
.mnav__summary:hover { color: var(--green-700); }
.mnav__summary i {
    flex: 0 0 auto; font-size: .85rem; color: var(--green-600);
    transition: transform .2s ease;
}
.mnav__details[open] > .mnav__summary i { transform: rotate(180deg); }
.mnav__details[open] > .mnav__summary { color: var(--green-800); }

/* ================================================ 8. En-têtes en image =====
   Photo en plein cadre, voile noir dégradé vers le transparent, texte blanc
   par-dessus. Le même composant sert à l'accueil (`.phero--home`) et aux
   pages intérieures ; la seule différence est la hauteur et le contenu.
   ========================================================================= */
/* Grille plutôt que flex : `.wrap` reste un bloc centré par ses marges auto.
   En flex il devenait un élément flexible, se faisait comprimer par ses
   voisins et perdait sa gouttière latérale. */
.phero {
    position: relative; isolation: isolate;
    display: grid; align-content: end;
    min-height: clamp(300px, 34vw, 440px);
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3.25rem);
    overflow: hidden;
    background: var(--green-900);
    border-bottom: 3px solid var(--green-600);
}
/* Pas de liseré vert sur l'accueil : le bandeau d'infos pratiques vient
   chevaucher le bas de l'en-tête et le couperait en deux. */
.phero--home {
    min-height: clamp(460px, 58vw, 660px);
    align-content: center;
    border-bottom: 0;
}

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

/* Le filigrane, en trois couches superposées :
   1. horizontale — assombrit le côté du texte quelle que soit la photo ;
   2. verticale montante — noir en bas vers transparent en haut ;
   3. verticale descendante — voile le haut pour détacher la navigation.
   Le contraste du texte blanc ne dépend ainsi jamais de l'image. */
.phero__scrim {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(to right,
            rgba(4, 16, 11, .82) 0%,
            rgba(4, 16, 11, .66) 38%,
            rgba(4, 16, 11, .28) 72%,
            rgba(4, 16, 11, .12) 100%),
        linear-gradient(to top,
            rgba(4, 16, 11, .82) 0%,
            rgba(4, 16, 11, .58) 30%,
            rgba(4, 16, 11, .26) 62%,
            rgba(4, 16, 11, .08) 100%),
        linear-gradient(to bottom, rgba(4, 16, 11, .5) 0%, transparent 26%);
}

.phero__inner { position: relative; max-width: 52rem; }
.phero__inner > :last-child { margin-bottom: 0; }

.phero h1 { color: #fff; margin-bottom: .6rem; text-wrap: balance; }
.phero .lead { color: rgba(255, 255, 255, .88); }
.phero .eyebrow { color: var(--green-300); }
.phero .eyebrow::before,
.phero .eyebrow::after { background: var(--green-300); }

.phero__text {
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1.05rem, .98rem + .4vw, 1.2rem);
    max-width: 54ch;
}
.phero__actions { margin-top: 2rem; }

/* Crédit photo incrusté dans l'angle inférieur droit de l'image.
   Le décalage droit reprend la gouttière de `.wrap` pour rester aligné sur
   le contenu, et retombe sur 1,25 rem dès que la fenêtre est plus étroite. */
.phero__credit {
    position: absolute; z-index: 1;
    bottom: .85rem;
    right: max(1.25rem, calc((100% - var(--wrap)) / 2));
    margin: 0;
    font-size: .72rem; letter-spacing: .01em;
    color: rgba(255, 255, 255, .62);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

/* Étiquettes d'agrément posées sur la photo */
.phero__badges {
    display: flex; flex-wrap: wrap; gap: .6rem;
    list-style: none; margin: 1.75rem 0 0; padding: 0;
}
.phero__badges li {
    display: inline-flex; align-items: center; gap: .5rem; margin: 0;
    padding: .45rem 1rem .45rem .8rem;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
    font-size: .82rem; font-weight: 600; color: #fff;
}
.phero__badges i { color: var(--green-300); }

/* Variante sans photo (mentions légales) : fond vert sombre, même typographie */
.phero--plain { min-height: 0; background: var(--green-900); }

/* Fil d'Ariane posé sur la photo */
.breadcrumb { padding: .9rem 0; border-bottom: 1px solid var(--line); background: #fff; }
.breadcrumb ol {
    display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
    list-style: none; margin: 0; padding: 0; font-size: .83rem; color: var(--ink-muted);
}
.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-700); text-decoration: underline; }
.breadcrumb li + li::before { content: '/'; margin-right: .45rem; color: var(--line-strong); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 500; }

.breadcrumb--over {
    padding: 0 0 1.25rem; border: 0; background: transparent;
}
.breadcrumb--over ol { color: rgba(255, 255, 255, .65); }
.breadcrumb--over a { color: rgba(255, 255, 255, .72); }
.breadcrumb--over a:hover { color: #fff; }
.breadcrumb--over li + li::before { color: rgba(255, 255, 255, .4); }
.breadcrumb--over [aria-current] { color: #fff; }

/* ------------------------------------------- 9. Bandeau d'infos pratiques */
/* Posé à cheval sous l'en-tête de l'accueil, en blanc sur la photo. */
.facts {
    position: relative; z-index: 2;
    margin: -3.25rem auto 0;
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.fact {
    display: flex; align-items: flex-start; gap: .85rem;
    padding: 1.5rem 1.4rem; font-size: .9rem;
    border-right: 1px solid var(--line);
}
.fact:last-child { border-right: 0; }
.fact i {
    flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--green-tint); border: 1px solid var(--line);
    color: var(--green-700); font-size: .9rem;
}
.fact strong { display: block; color: var(--ink); font-weight: 600; }
.fact span { color: var(--ink-soft); }

/* ------------------------------------ Photo légendée en cours de page ----
   Même langage visuel que les en-têtes : voile noir dégradé en bas, texte
   blanc par-dessus. La légende n'est pas décorative — elle explique ce que
   l'on regarde, sans quoi une photo de pièce vide reste énigmatique.
   ------------------------------------------------------------------------ */
.media {
    position: relative; margin: 0;
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--line);
}
.media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.media__caption {
    position: absolute; right: 0; bottom: 0; left: 0;
    padding: 3rem 1.5rem 1.35rem;
    background: linear-gradient(to top,
        rgba(4, 16, 11, .92) 0%,
        rgba(4, 16, 11, .72) 42%,
        rgba(4, 16, 11, .28) 74%,
        transparent 100%);
    color: #fff;
}
.media__caption strong {
    display: block;
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
    margin-bottom: .2rem;
}
.media__caption span {
    display: block;
    font-size: .88rem; line-height: 1.55; color: rgba(255, 255, 255, .82);
}

/* -------------------------------------------------------------- 10. Cartes */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 1.85rem;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card--hover:hover { border-color: var(--green-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card > :last-child { margin-bottom: 0; }
.card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; margin-bottom: 1.1rem;
    border-radius: 12px; background: var(--green-tint);
    border: 1px solid var(--line); color: var(--green-700); font-size: 1.15rem;
}
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .96rem; margin-bottom: 0; }

/* Cartes thérapie avec image */
.tcard {
    display: flex; flex-direction: column; overflow: hidden;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    text-decoration: none; color: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.tcard:hover { border-color: var(--green-300); box-shadow: var(--shadow-md); transform: translateY(-3px); color: inherit; }
.tcard__img { position: relative; aspect-ratio: 16 / 7; overflow: hidden; background: var(--green-tint); }
.tcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tcard:hover .tcard__img img { transform: scale(1.04); }
.tcard__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.tcard__body h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.tcard__body p { font-size: .93rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.tcard__more { margin-top: auto; font-size: .88rem; font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: .45rem; }
.tcard:hover .tcard__more i { transform: translateX(4px); }
.tcard__more i { transition: transform .18s ease; }

/* ------------------------------------------------------------ 11. Étapes */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.step {
    position: relative; padding: 2rem 1.5rem 2rem 0;
    border-top: 2px solid var(--line);
}
.step + .step { padding-left: 1.75rem; }
.step::before {
    content: ''; position: absolute; top: -7px; left: 0;
    width: 12px; height: 12px; border-radius: 50%;
    background: #fff; border: 2px solid var(--green-500);
}
.step + .step::before { left: 1.75rem; }
.step h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.step p { font-size: .93rem; margin-bottom: 0; }

/* ------------------------------------------------------ 12. Chiffres clés */
.stats {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.stat { padding: 1.9rem 1.6rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__value {
    font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem);
    color: var(--green-700); line-height: 1.1; margin-bottom: .35rem;
}
.stat__label { font-size: .86rem; color: var(--ink-muted); }

/* ------------------------------------------------------- 13. Citation */
.quote-block {
    position: relative; padding: clamp(2rem, 4vw, 3.25rem);
    background: var(--green-tint); border: 1px solid var(--line);
    border-left: 3px solid var(--green-500); border-radius: var(--radius-lg);
}
.quote-block__mark {
    font-family: var(--font-display); font-size: 3.5rem; line-height: 1;
    color: var(--green-300); margin-bottom: .25rem;
}
.quote-block blockquote {
    margin: 0 0 1.5rem;
    font-family: var(--font-display); font-size: clamp(1.25rem, 1.05rem + .9vw, 1.75rem);
    line-height: 1.35; color: var(--ink);
}
.quote-block p:last-child { margin-bottom: 0; }

/* --------------------------------------------- 14. Bandeau reconnaissance */
.trust { padding: clamp(2.25rem, 4vw, 3rem) 0; border-block: 1px solid var(--line); background: #fff; }
.trust__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .75rem 1.25rem; margin-bottom: 1.75rem; }
.trust__title {
    font-family: var(--font-body); font-size: .78rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; color: var(--green-700); margin: 0;
}
.trust__note { font-size: .88rem; color: var(--ink-muted); margin: 0; }

.trust__list {
    display: flex; flex-wrap: wrap; align-items: stretch; gap: 1rem;
    list-style: none; margin: 0; padding: 0;
}
.trust__item {
    display: flex; align-items: center; justify-content: center; gap: .75rem;
    min-height: 86px; padding: 1rem 1.5rem; flex: 1 1 170px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.trust__item:hover { border-color: var(--green-300); box-shadow: var(--shadow-sm); }
.trust__item img { max-height: 46px; width: auto; object-fit: contain; }
.trust__word {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
    color: var(--green-800); letter-spacing: -.01em; line-height: 1.1; text-align: center;
}
.trust__word small { display: block; font-family: var(--font-body); font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-top: .2rem; }

/* -------------------------------------------------------- 15. Prose / texte */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; }
.prose > :first-child { margin-top: 0; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before {
    content: ''; position: absolute; left: .2rem; top: .72em;
    width: 6px; height: 6px; border-radius: 50%; background: var(--green-500);
}

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split--reverse > :first-child { order: 2; }

/* Portrait du thérapeute */
.portrait {
    display: inline-block; margin: 0 0 1.5rem; padding: 5px;
    border: 1px solid var(--line-strong); border-radius: 50%; background: #fff;
}
.portrait img {
    width: 128px; height: 128px; object-fit: cover; border-radius: 50%;
}
.portrait--lg { padding: 7px; border-color: var(--green-300); }
.portrait--lg img { width: 220px; height: 220px; }
.portrait figcaption {
    display: none;
}
.split__media { margin: 0; }
.split__media img {
    width: 100%; aspect-ratio: 1430 / 440; object-fit: cover;
    border-radius: var(--radius-lg); border: 1px solid var(--line);
}
.split__media figcaption { font-size: .78rem; color: var(--ink-muted); margin-top: .6rem; }

/* Encadré d'information latéral */
.infobox {
    background: var(--green-tint); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 1.6rem 1.75rem;
    position: sticky; top: calc(var(--header-h) + 1.5rem);
}
.infobox h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.infobox dl { margin: 0; }
.infobox dt { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--green-700); font-weight: 600; }
.infobox dd { margin: .15rem 0 1rem; font-size: .93rem; color: var(--ink); }
.infobox dd:last-child { margin-bottom: 0; }

.notice {
    display: flex; gap: 1rem; padding: 1.35rem 1.6rem;
    background: var(--gold-soft); border: 1px solid #e4d3b4;
    border-radius: var(--radius); font-size: .95rem;
}
.notice i { color: var(--gold); font-size: 1.15rem; margin-top: .15rem; }
.notice p { margin-bottom: 0; }
.notice strong { color: var(--ink); }

/* ------------------------------------------------------- 16. Listes riches */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.chips li {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem .95rem; border-radius: 999px;
    background: var(--green-tint); border: 1px solid var(--line);
    font-size: .875rem; color: var(--ink); margin: 0;
}
.chips i { color: var(--green-500); font-size: .75rem; }

.indication-card { padding: 1.75rem; }
.indication-card ul { list-style: none; padding: 0; margin: 0; }
.indication-card li {
    position: relative; padding-left: 1.5rem; font-size: .94rem;
    margin-bottom: .55rem; color: var(--ink-soft);
}
.indication-card li::before {
    content: ''; position: absolute; left: 0; top: .68em;
    width: 6px; height: 6px; border-radius: 50%; background: var(--green-300);
}

/* --------------------------------------------------------- 17. Chronologie */
.timeline { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--line); }
.timeline li {
    position: relative; padding: 0 0 2rem 2rem; margin: 0;
}
.timeline li::before {
    content: ''; position: absolute; left: -5px; top: .6rem;
    width: 9px; height: 9px; border-radius: 50%;
    background: #fff; border: 2px solid var(--green-500);
}
.timeline li:hover::before { background: var(--green-500); }
.timeline__period {
    display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--green-700); margin-bottom: .3rem;
}
.timeline__title { font-family: var(--font-display); font-size: 1.08rem; color: var(--ink); margin-bottom: .2rem; }
.timeline__teacher { font-size: .92rem; color: var(--ink-soft); }
.timeline__place { font-size: .86rem; color: var(--ink-muted); }

/* -------------------------------------------------------------- 18. Tarifs */
.price-card {
    display: flex; flex-direction: column;
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 2rem; background: #fff;
}
.price-card--featured { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.price-card__duration {
    font-size: .78rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
    color: var(--green-700); margin-bottom: .6rem;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: .9rem; }
.price-card__price {
    font-family: var(--font-display); font-size: 2.1rem; color: var(--ink);
    line-height: 1; margin-bottom: 1rem;
}
.price-card p { font-size: .93rem; margin-bottom: 0; }

/* ---------------------------------------------------------------- 19. FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
    width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
    padding: 1.4rem 0; background: none; border: 0; cursor: pointer;
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--ink); text-align: left; line-height: 1.35;
}
.faq__q:hover { color: var(--green-700); }
.faq__q i { color: var(--green-500); font-size: .9rem; margin-top: .35rem; transition: transform .22s ease; flex: 0 0 auto; }
.faq__q[aria-expanded="true"] i { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 0 1.5rem; max-width: 72ch; }
.faq__a p { margin-bottom: 0; font-size: .97rem; }
.faq__item[data-open="true"] .faq__a { display: block; }

/* ------------------------------------------------------------- 20. Contact */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); margin: 0; }
.contact-list li:first-child { padding-top: 0; }
.contact-list i {
    flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--green-tint); border: 1px solid var(--line); color: var(--green-700); font-size: .95rem;
}
.contact-list dt, .contact-list strong {
    display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--ink-muted); font-weight: 600; margin-bottom: .15rem;
}
.contact-list a { color: var(--ink); font-weight: 500; text-decoration: none; }
.contact-list a:hover { color: var(--green-700); text-decoration: underline; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
    display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem;
}
.field label .req { color: var(--green-600); }
.field input, .field textarea, .field select {
    width: 100%; padding: .8rem 1rem;
    font-family: inherit; font-size: .97rem; color: var(--ink);
    background: #fff; border: 1px solid var(--line-strong); border-radius: 10px;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #a8bab1; }
.field input:focus, .field textarea:focus {
    outline: none; border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(47, 167, 106, .15);
}
.field textarea { min-height: 170px; resize: vertical; }
.field--error input, .field--error textarea { border-color: #c0473f; }
.field__error { display: block; margin-top: .35rem; font-size: .82rem; color: #c0473f; }

.field--check { display: flex; align-items: flex-start; gap: .7rem; }
.field--check input { width: auto; margin-top: .25rem; flex: 0 0 auto; accent-color: var(--green-700); }
.field--check label { font-weight: 400; font-size: .9rem; color: var(--ink-soft); margin: 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
    display: flex; gap: .85rem; padding: 1rem 1.25rem; border-radius: var(--radius);
    font-size: .94rem; margin-bottom: 1.5rem; border: 1px solid;
}
.alert i { margin-top: .15rem; }
.alert--success { background: var(--green-tint); border-color: var(--green-300); color: var(--green-800); }
.alert--error { background: #fdf2f1; border-color: #e8c4c0; color: #93332c; }
.alert p { margin: 0; }

.map-frame {
    border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
    background: var(--green-tint);
}
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ------------------------------------------------------------- 21. CTA bas */
.cta {
    position: relative; overflow: hidden;
    background: var(--green-900); color: #c6ddd2;
    border-radius: var(--radius-lg);
    padding: clamp(2.25rem, 5vw, 3.75rem);
}
.cta::before {
    content: ''; position: absolute; inset: 0; opacity: .18;
    background-image:
        linear-gradient(to right, rgba(255,255,255,.25) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.25) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 80% 90% at 100% 0%, #000, transparent 70%);
    mask-image: radial-gradient(ellipse 80% 90% at 100% 0%, #000, transparent 70%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta p { max-width: 58ch; }
.cta .eyebrow { color: var(--green-300); }
.cta .eyebrow::before { background: var(--green-500); }

/* ------------------------------------------------------------ 22. Pied */
.footer { background: var(--green-900); color: #9fbdb0; padding: clamp(3rem, 5vw, 4.5rem) 0 0; }
.footer a { color: #c9ded4; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer__logo { width: 170px; margin-bottom: 1.25rem; }
.footer__logo .lg-ink { fill: #fff; }
.footer h4 {
    color: #fff; font-family: var(--font-body);
    font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .55rem; font-size: .92rem; }
.footer p { font-size: .92rem; }
.footer__bottom {
    margin-top: 2.5rem; padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
    font-size: .82rem; color: #7fa294;
}
.footer__disclaimer { max-width: 60ch; }

.footer__credit {
    margin: 0; padding: 0 0 1.75rem;
    text-align: center; font-size: .8rem; color: #7fa294;
}
.footer__credit a { color: #a9c7ba; text-decoration: none; }
.footer__credit a:hover { color: #fff; text-decoration: underline; }

/* ---------------------------------------------------------- 23. Page erreur */
.error-page { text-align: center; padding: clamp(4rem, 10vw, 8rem) 0; }
.error-page__code {
    font-family: var(--font-display); font-size: clamp(4rem, 12vw, 8rem);
    color: var(--green-200); line-height: 1; margin-bottom: .5rem;
}

/* ==================================================== 24. Apparitions ======
   La classe `anim` est posée sur <html> par un script en tête de page, mais
   jamais en mouvement réduit ni sans JavaScript : dans ces deux cas, aucune
   règle ci-dessous ne s'applique et le contenu reste simplement visible.
   ========================================================================= */
.anim [data-anim] {
    opacity: 0;
    transform: translate3d(0, var(--anim-y, 20px), 0);
    transition:
        opacity   .75s cubic-bezier(.22, .61, .36, 1),
        transform .75s cubic-bezier(.22, .61, .36, 1),
        filter    .75s cubic-bezier(.22, .61, .36, 1);
    transition-delay: var(--anim-delay, 0ms);
}

/* Le titre monte d'un peu plus loin et se dévoile d'un léger flou. */
.anim [data-anim="title"] { --anim-y: 28px; filter: blur(9px); }

/* Variantes de direction pour les blocs latéraux. */
.anim [data-anim="left"]  { transform: translate3d(-24px, 0, 0); }
.anim [data-anim="right"] { transform: translate3d(24px, 0, 0); }

.anim [data-anim].is-in {
    opacity: 1;
    transform: none;
    filter: none;
}

/* ------------------------------------------------------------ 25. Utilitaires */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.muted { color: var(--ink-muted); font-size: .9rem; }
.rule { height: 1px; background: var(--line); border: 0; margin: clamp(2.5rem, 5vw, 4rem) 0; }

/* ------------------------------------------------------------ 26. Réactif */
@media (max-width: 1080px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat:nth-child(2n) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 960px) {
    .nav, .header__actions .lang { display: none; }
    .burger { display: inline-flex; }
    .header__actions { margin-left: auto; }
    .split, .split--reverse, .contact-grid { grid-template-columns: 1fr; }
    .split--reverse > :first-child { order: 0; }
    .infobox { position: static; }
    .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fact:nth-child(2n) { border-right: 0; }
    .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step, .step + .step { padding-left: 1.75rem; }
    .step::before, .step + .step::before { left: 0; }
    .step { border-top: 0; border-left: 2px solid var(--line); padding-top: 0; padding-bottom: 1.75rem; }
    .step::before { top: 0; left: -7px; }
    .step + .step::before { left: -7px; }
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: 0; }
    .footer__grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .trust__item { flex-basis: 100%; }
    .split__media img { aspect-ratio: 4 / 3; }
    .tcard__img { aspect-ratio: 16 / 9; }

    /* En-têtes : les photos du cabinet sont des bandeaux 3,25:1 ; sur petit
       écran on limite la hauteur pour éviter un recadrage destructeur. */
    /* Marge basse suffisante pour que le crédit photo incrusté ne recouvre
       pas l'accroche. */
    .phero { min-height: 270px; padding-bottom: 2.75rem; }
    /* Marge basse suffisante pour que la carte d'infos, qui remonte de 2rem,
       ne vienne pas mordre sur les étiquettes d'agrément. */
    .phero--home { min-height: 420px; align-content: end; padding-bottom: 3.75rem; }
    /* Le texte occupe toute la largeur : le dégradé horizontal n'a plus de
       sens, on ne garde que le voile vertical — renforcé, car le fil d'Ariane
       et le sur-titre se retrouvent haut dans l'image. */
    .phero__scrim {
        background:
            linear-gradient(to top,
                rgba(4, 16, 11, .92) 0%,
                rgba(4, 16, 11, .82) 40%,
                rgba(4, 16, 11, .62) 72%,
                rgba(4, 16, 11, .34) 100%),
            linear-gradient(to bottom, rgba(4, 16, 11, .55) 0%, transparent 42%);
    }
    .phero__badges { margin-top: 1.25rem; }
    .phero__actions .btn { width: 100%; }

    .facts { grid-template-columns: 1fr; margin-top: -2rem; }
    .fact { border-right: 0; border-bottom: 1px solid var(--line); }
    .fact:last-child { border-bottom: 0; }
}

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

@media print {
    .header, .footer, .cta, .burger, .mnav, .breadcrumb { display: none !important; }
    body { color: #000; }

    /* Sans cela, tout ce qui n'a pas encore été révélé au défilement
       s'imprimerait en blanc. */
    .anim [data-anim] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    /* L'en-tête en image ne rend rien d'utile à l'impression : on l'aplatit
       en simple titre sur fond blanc. */
    .phero {
        min-height: 0; padding: 0 0 1rem; border: 0;
        background: #fff; display: block;
    }
    .phero__media, .phero__scrim, .phero__badges, .phero__actions { display: none !important; }
    .phero h1 { color: #000; }
    .phero .lead, .phero__text { color: #333; }
    .phero .eyebrow { color: #555; }
    .facts { margin-top: 0; box-shadow: none; }
}
