/* =====================================================================
   DAVID QUATTRINI — Site vitrine
   Reproduction fidèle des maquettes (desktop / tablette / mobile)
   Charte : Nuanzia
   ===================================================================== */

/* ----------------------------- POLICES ----------------------------- */
@font-face{
  font-family:"Geneva";
  src:url("../fonts/Geneva.ttf") format("truetype");
  font-weight:500;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"CAS Magakoro";
  src:url("../fonts/CAS-Magakoro.woff2") format("woff2"),
      url("../fonts/CAS-Magakoro.ttf") format("truetype");
  font-weight:500;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Urbanist";
  src:url("../fonts/Urbanist-Light.ttf") format("truetype");
  font-weight:400;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Urbanist";
  src:url("../fonts/Urbanist-Regular.ttf") format("truetype");
  font-weight:500;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Urbanist";
  src:url("../fonts/Urbanist-Medium.ttf") format("truetype");
  font-weight:600;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Urbanist";
  src:url("../fonts/Urbanist-SemiBold.ttf") format("truetype");
  font-weight:700;font-style:normal;font-display:swap;
}

/* ----------------------------- TOKENS ------------------------------ */
:root{
  /* Palette charte */
  --vert-sauge:#94946E;
  --vert-pale:#C4C8AC;
  --gris-platine:#D3D4D4;
  --jaune-naples:#FFE1B6;
  --blanc-casse:#F7F5F3;
  --noir:#090909;
  /* Dérivés utilitaires */
  --vert-fonce:#6f6f52;
  --texte:#33332a;
  --texte-doux:black;

  --font-titre:"Geneva", "Segoe UI", system-ui, sans-serif;
  --font-soustitre:"CAS Magakoro", Georgia, "Times New Roman", serif;
  --font-corps:"Urbanist", system-ui, -apple-system, Arial, sans-serif;

  --max:1450px;
  --pad-x:clamp(20px,5vw,64px);
  --sect-y:clamp(64px,9vw,120px);
  --radius:18px;
  --btn-radius:8px;
  --pill:999px;
}

/* ----------------------------- BASE -------------------------------- */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-corps);
  font-weight:300;
  color:var(--texte);
  background:var(--blanc-casse);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%;height:auto;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;}
:focus-visible{outline:2px solid var(--vert-fonce);outline-offset:3px;border-radius:4px;}

.container{max-width:var(--max);margin-inline:auto;padding-inline:var(--pad-x);}
.center{text-align:center;}

/* Typo rôles */
.overline{
  font-family:var(--font-soustitre);
  font-size:clamp(1rem,1.6vw,1.25rem);
  font-weight:400;letter-spacing:.01em;
  color:var(--texte-doux);
  margin:0 0 .9rem;
}
.h2{
  font-family:var(--font-titre);
  font-weight:400;
  font-size:clamp(1.7rem,3.4vw,2.6rem);
  line-height:1.12;
  color:var(--noir);
  margin:0;
  letter-spacing:.005em;
}

/* Boutons (pilules) */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.5rem;
  font-family:var(--font-corps);font-weight:400;
  font-size:.95rem;letter-spacing:.02em;
  padding:.85em 1.9em;border:none;border-radius:var(--btn-radius);
  transition:transform .2s ease, filter .2s ease, background .2s ease;
  text-align:center;line-height:1.1;
}
.btn:hover{filter:brightness(.96);transform:translateY(-1px);}
.btn:active{transform:translateY(0);}
.btn--sage{background:var(--vert-sauge);color:var(--jaune-naples);}
.btn--cream{background:var(--jaune-naples);color:var(--vert-fonce);}
.btn--cream-soft{background:#fbe8c9;color:var(--vert-fonce);}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header{
  position:sticky;top:0;z-index:60;
  background:var(--blanc-casse);
}
.site-header__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:1.5rem;
  padding-block:1.25rem;
}
.brand{
  font-family:var(--font-corps);font-weight:400;
  font-size:clamp(1rem,1.6vw,1.18rem);
  letter-spacing:.28em;
  color:var(--vert-fonce);
  white-space:nowrap;
}
.nav{display:flex;align-items:center;gap:2rem;}
.nav__link{
  font-size:.95rem;letter-spacing:.02em;
  color:var(--vert-sauge);font-weight:400;
  transition:color .2s ease;
}
.nav__link:hover{color:var(--vert-fonce);}

/* Burger */
.burger{
  display:none;
  width:42px;height:42px;border:none;background:transparent;
  position:relative;
}
.burger span{
  position:absolute;left:9px;right:9px;height:2px;background:var(--noir);
  transition:transform .3s ease, opacity .3s ease, top .3s ease;
}
.burger span:nth-child(1){top:14px;}
.burger span:nth-child(2){top:21px;}
.burger span:nth-child(3){top:28px;}
body.menu-open .burger span:nth-child(1){top:21px;transform:rotate(45deg);}
body.menu-open .burger span:nth-child(2){opacity:0;}
body.menu-open .burger span:nth-child(3){top:21px;transform:rotate(-45deg);}

/* Menu mobile (overlay) */
.mobile-nav{
  position:fixed;inset:0;top:0;z-index:55;
  background:var(--blanc-casse);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:1.6rem;
  opacity:0;visibility:hidden;transform:translateY(-8px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s;
}
body.menu-open .mobile-nav{opacity:1;visibility:visible;transform:none;}
.mobile-nav a{font-size:1.25rem;color:var(--vert-fonce);letter-spacing:.03em;}
.mobile-nav .btn{margin-top:.6rem;}

/* =====================================================================
   HERO
   ===================================================================== */
.hero{position:relative;isolation:isolate;}
.hero__media{
  width:100%;aspect-ratio:1.82;height:auto;
  object-fit:cover;object-position:center 15%;
}
.hero__overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(60,58,48,.22) 0%, rgba(60,58,48,.10) 35%, rgba(60,58,48,0) 60%);
  z-index:1;
}
.hero__text{
  position:absolute;inset:0;z-index:2;
  display:flex;flex-direction:column;justify-content:center;
  max-width:var(--max);margin-inline:auto;
  padding-inline:var(--pad-x);
}

.hero__inner{
    max-width: 680px;
    color: #fff;
}

/* Page À propos, sur ordinateur uniquement */
@media (min-width: 1025px){
    .hero__inner2{
        max-width: 550px;
        background-color: rgb(from var(--vert-sauge) r g b / 0.7);
        padding: 20px;
        border-radius: 20px !important;
    }
}
.hero__eyebrow{
  font-family:var(--font-soustitre);font-weight:400;
  font-size:clamp(1rem,1.8vw,1.3rem);
  margin:0 0 1.1rem;color:rgba(255,255,255,.92);
}
.hero__title{
  font-family:var(--font-titre);font-weight:400;
  font-size:clamp(2rem,3.7vw,2.9rem);
  line-height:1.08;margin:0 0 1.4rem;letter-spacing:.005em;
}
.hero__title .accent{color:var(--jaune-naples);}
.hero__lead{
  font-weight:300;font-size:clamp(.95rem,1.4vw,1.05rem);
  max-width:430px;margin:0 0 1.1rem;color:rgba(255,255,255,.95);
}
.hero__asca{font-weight:300;font-size:.95rem;color:rgba(255,255,255,.9);margin:0;}

/* version mobile (texte au-dessus de l'image) */
.hero__text--stack{display:none;}

/* Bannière À propos : dégradé doux teinté vert identité (au lieu du noir) + texte net */
.hero--apropos .hero__overlay{
  background:linear-gradient(90deg, rgba(78,80,54,.50) 0%, rgba(78,80,54,.32) 32%, rgba(78,80,54,.12) 56%, rgba(78,80,54,0) 74%);
}
.hero--apropos .hero__text .hero__eyebrow,
.hero--apropos .hero__text .hero__lead,
.hero--apropos .hero__text .hero__asca{
  text-shadow:0 1px 3px rgba(26,30,18,.55), 0 2px 14px rgba(26,30,18,.5);
}

/* =====================================================================
   POURQUOI CONSULTER
   ===================================================================== */
.why{padding-block:var(--sect-y);background:var(--blanc-casse);}
.why__title{max-width:760px;margin:0 auto;}
.why__title .accent{color:var(--vert-sauge);}
.cards{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem;
  margin-top:clamp(2.5rem,5vw,3.5rem);
}
.card{
  background:var(--vert-pale);
  border-radius:var(--radius);
  padding:2.4rem 1.8rem 2.6rem;
  text-align:center;
  position:relative;overflow:hidden;
}
.card__blob{
  width:108px;height:108px;margin:0 auto 1.6rem;
  background-repeat:no-repeat;background-position:center;background-size:contain;
}
/* Icônes réelles (maquette) — cartes Accueil & Accompagnements */
.icon-symptomes{background-image:url("../assets/img/icons/icon-card-symptomes.png");}
.icon-desequilibres{background-image:url("../assets/img/icons/icon-card-desequilibres.png");}
.icon-pathologies{background-image:url("../assets/img/icons/icon-card-pathologies.png");}
/* Icônes réelles — cellules « Une approche qui me ressemble » (À propos) */
.icon-cell-1{background-image:url("../assets/img/icons/icon-cell-1.png");}
.icon-cell-2{background-image:url("../assets/img/icons/icon-cell-2.png");}
.icon-cell-3{background-image:url("../assets/img/icons/icon-cell-3.png");}
.icon-cell-4{background-image:url("../assets/img/icons/icon-cell-4.png");}
.card__title{
  font-family:var(--font-corps);font-weight:600;
  font-size:1.05rem;color:var(--texte);margin:0 0 .9rem;line-height:1.3;
}
.card__text{font-weight:300;font-size:.95rem;color:var(--texte-doux);margin:0;}
.why__cta{margin-top:clamp(2.2rem,4vw,3rem);}

/* =====================================================================
   LES MÉTHODES
   ===================================================================== */
.methods{padding-block:var(--sect-y);background:var(--vert-sauge);color:#fff;}
.methods .overline{color:rgba(255,255,255,.82);}
.methods__title{color:#fff;}
.methods__title .accent{color:var(--jaune-naples);}

.carousel{
  max-width:880px;margin:clamp(2.2rem,4vw,3rem) auto 0;
  display:flex;align-items:center;gap:.75rem;
}
.carousel__arrow{
  flex:0 0 auto;width:42px;height:42px;border-radius:50%;
  background:transparent;border:none;color:#fff;
  font-size:1.6rem;line-height:1;display:grid;place-items:center;
  transition:opacity .2s ease, transform .2s ease;opacity:.85;
}
.carousel__arrow:hover{opacity:1;transform:scale(1.08);}
.carousel__viewport{flex:1 1 auto;overflow:hidden;}
.carousel__track{display:flex;gap:1rem;transition:transform .5s cubic-bezier(.4,.0,.2,1);}
/* 3 images visibles à la fois, défilement d'une image à la fois (cf. JS) */
.slide{
  flex:0 0 calc((100% - 2rem) / 3);
  display:flex;flex-direction:column;
}
.slide__cap{
  text-align:center;margin-top:.7rem;
  font-family:var(--font-corps);font-weight:400;font-size:.9rem;
  color:#fff;letter-spacing:.02em;line-height:1.3;
}
/* Placeholders illustration (à remplacer par tes photos) */
.slide img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:12px;display:block;}
.slide--ph1{background:linear-gradient(135deg,#b9bd9f,#e7d9bd 55%,#cfd3b6);}
.slide--ph2{background:linear-gradient(135deg,#d8dcc4,#f3e6cd 60%,#c4c8ac);}
.slide--ph3{background:linear-gradient(135deg,#cfd1cb,#aeae8f 70%,#d3d4d4);}
.slide--ph4{background:linear-gradient(135deg,#e8e2cd,#ffe1b6 70%,#cdd0b4);}
.slide__ph-note{
  font-family:var(--font-soustitre);color:rgba(60,58,48,.45);
  font-size:1rem;letter-spacing:.05em;
}
.carousel__caption{
  text-align:center;margin-top:1.2rem;
  font-family:var(--font-corps);font-weight:400;font-size:1rem;
  color:#fff;letter-spacing:.02em;
}
.methods__cta{margin-top:clamp(2rem,4vw,2.8rem);}

/* =====================================================================
   CABINET (bandeau image + texte)
   ===================================================================== */
.cabinet{position:relative;isolation:isolate;}
.cabinet__media{width:100%;height:clamp(380px,42vw,520px);object-fit:cover;object-position:center;}
.cabinet__overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(90deg, rgba(40,44,40,.42) 0%, rgba(40,44,40,.18) 45%, rgba(40,44,40,0) 70%);
}
.cabinet__text{
  position:absolute;inset:0;z-index:2;
  display:flex;flex-direction:column;justify-content:center;
  max-width:var(--max);margin-inline:auto;padding-inline:var(--pad-x);
}
.cabinet__inner{max-width:560px;color:#fff;}
.cabinet__p{font-weight:300;font-size:clamp(.95rem,1.4vw,1.05rem);margin:0 0 1.6rem;color:rgba(255,255,255,.96);}

/* =====================================================================
   PRENDRE RENDEZ-VOUS
   ===================================================================== */
.rdv{padding-block:var(--sect-y);background:var(--blanc-casse);text-align:center;}
.rdv__title{margin:0 0 1.6rem;}
.rdv__address{font-weight:300;color:var(--texte-doux);margin:0 0 2.2rem;line-height:1.9;}
.rdv__actions{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer{background:var(--blanc-casse);padding-bottom:2.5rem;}
.footer__rule{height:1px;background:rgba(60,58,48,.18);max-width:var(--max);margin:0 auto;}
.footer__grid{
  display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:2rem;
  padding-top:clamp(2.5rem,5vw,3.5rem);align-items:start;
}
.footer__brand{display:flex;flex-direction:column;align-items:center;text-align:center;gap:.55rem;width:max-content;}
.footer__brand img{width:64px;height:auto;}
.footer__brand-name{
  font-family:var(--font-corps);letter-spacing:.22em;font-size:.78rem;
  color:var(--vert-sauge);
}
.footer__col h3{
  font-family:var(--font-corps);font-weight:400;font-size:1rem;
  color:var(--vert-fonce);margin:0 0 1.1rem;
}
.footer__col ul{list-style:none;margin:0;padding:0;display:grid;gap:.7rem;}
.footer__col a{color:var(--texte-doux);font-size:.95rem;transition:color .2s;}
.footer__col a:hover{color:var(--vert-fonce);}
.socials{display:flex;gap:.8rem;}
.socials a{
  width:40px;height:40px;border-radius:10px;background:var(--vert-sauge);
  display:grid;place-items:center;color:#fff;transition:filter .2s, transform .2s;
}
.socials a:hover{filter:brightness(.95);transform:translateY(-1px);}
.socials svg{width:20px;height:20px;}
.footer__legal{text-align:center;margin-top:clamp(2.5rem,5vw,3.5rem);}
.footer__legal a{color:var(--texte-doux);font-size:.9rem;}
.footer__legal a:hover{color:var(--vert-fonce);}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* Tablette : burger + cartes 1 colonne, hero garde l'overlay */
@media (max-width:992px){
  .nav{display:none;}
  .burger{display:block;}
  .cards{grid-template-columns:1fr;max-width:520px;margin-inline:auto;}
  .footer__grid{grid-template-columns:1fr 1fr;gap:2rem 1.5rem;}
  .footer__brand{grid-column:1 / -1;margin-inline:auto;}
  /* Slider : 2 images visibles sur tablette */
  .slide{flex-basis:calc((100% - 1rem) / 2);}
}

/* Mobile : hero empilé (texte puis image) */
@media (max-width:767px){
  .hero__media{height:auto;aspect-ratio:3/2;}
  .hero__overlay{display:none;}
  .hero{display:flex;flex-direction:column;}
  .hero__text{display:none;}            /* on masque l'overlay */
  .hero__text--stack{
    display:block;position:static;color:var(--noir);
    text-align:center;padding:2.6rem var(--pad-x) 2rem;
  }
  .hero__text--stack .hero__inner{max-width:none;color:var(--noir);}
  .hero__text--stack .hero__eyebrow{color:var(--texte-doux);}
  .hero__text--stack .hero__title{color:var(--noir);}
  .hero__text--stack .hero__title .accent{color:var(--vert-sauge);}
  .hero__text--stack .hero__lead,
  .hero__text--stack .hero__asca{color:var(--texte-doux);margin-inline:auto;}
  .hero__media{order:2;}

  .cabinet__overlay{background:linear-gradient(180deg, rgba(40,44,40,.15), rgba(40,44,40,.55));}
  .rdv__actions .btn{width:100%;max-width:340px;}
  /* Slider : 1 image visible sur mobile */
  .slide{flex-basis:100%;}
  .footer__grid{grid-template-columns:1fr;text-align:center;justify-items:center;}
  .footer__brand{align-items:center;}
  .socials{justify-content:center;}
}

@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto !important;}
  .carousel__track{transition:none;}
  .btn,.carousel__arrow{transition:none;}
}

/* =====================================================================
   PAGES INTERNES — composants additionnels
   ===================================================================== */

/* En-tête : état actif */
.nav__link.is-active{color:var(--vert-fonce);}

/* Hero de page (titre centré sur fond clair) */
.page-hero{padding:clamp(3rem,7vw,5.5rem) 0 clamp(2rem,4vw,3rem);text-align:center;background:var(--blanc-casse);}
.page-hero__title{
  font-family:var(--font-titre);font-weight:400;
  font-size:clamp(2rem,4vw,3rem);line-height:1.1;color:var(--noir);margin:0;
}
.page-hero__title .accent-sage{color:var(--vert-sauge);display:block;}
.page-hero__title .accent-cream{color:var(--jaune-naples);display:block;}
.page-hero__lead{max-width:560px;margin:1.4rem auto 0;color:var(--texte-doux);font-weight:300;}

/* Section générique */
.section{padding-block:var(--sect-y);}
.section--sage{background:var(--vert-sauge);color:#fff;}
.section--cream{background:var(--blanc-casse);}
.section__intro{max-width:680px;margin:0 auto clamp(2.5rem,5vw,3.5rem);text-align:center;}
.section--sage .overline{color:rgba(255,255,255,.82);}
.section--sage .h2{color:#fff;}
.section--sage .section__{color:rgba(255,255,255,.9);}
.section__sub{margin:1.2rem auto 0;max-width:620px;font-weight:300;color:black;}

/* ---------------------- TARIFS : cartes prix ---------------------- */
.pricing{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem;max-width:900px;margin:0 auto;}
.price-card{border-radius:var(--radius);padding:2.2rem 2rem 2.4rem;border:2px solid var(--jaune-naples);background:transparent;}
.price-card--feature{background:var(--vert-sauge);color:#fff;border:none;}
.price-card__eyebrow{font-family:var(--font-soustitre);font-size:1.05rem;margin:0 0 .8rem;opacity:.85;}
.price-card__title{font-family:var(--font-corps);font-weight:600;font-size:1.25rem;margin:0 0 .4rem;}
.price-card__meta{font-weight:300;font-size:.92rem;opacity:.8;margin:0 0 1rem;}
.price-card__amount{font-family:var(--font-titre);font-size:2.4rem;margin:0 0 1.1rem;line-height:1;}
.price-card__text{font-weight:300;font-size:.95rem;margin:0;opacity:.92;line-height:1.6;}
.refund{max-width:900px;margin:1.6rem auto 0;border:1px solid rgba(60,58,48,.22);border-radius:var(--radius);padding:1.8rem 2rem;background:transparent;}
.refund h3{font-family:var(--font-corps);font-weight:600;font-size:1.05rem;margin:0 0 .9rem;color:var(--texte);}
.refund p{margin:.3rem 0;font-weight:300;font-size:.92rem;color:var(--texte-doux);line-height:1.55;}

/* ---------------- Cartes détaillées (accompagne pour) ------------- */
.cards--detail .card{text-align:left;padding:2.2rem 1.8rem;}
.cards--detail .card__blob{margin-left:0;margin-right:auto;}
.card__listlabel{font-family:var(--font-soustitre);font-size:1.2rem;color:var(--jaune-naples);margin:1.1rem 0 .6rem;font-weight: 700;}
.card__list{list-style:none;margin:0;padding:0;display:grid;gap:.45rem;}
.card__list li{position:relative;padding-left:1.1rem;font-weight:300;font-size:.92rem;color:var(--texte);line-height:1.45;}
.card__list li::before{content:"·";position:absolute;left:.2rem;top:-.05rem;color:var(--vert-sauge);font-weight:700;}

/* --------------------- Grille des méthodes ------------------------ */
.methodes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;max-width:1000px;margin:0 auto;}
.methode-card{
  background:var(--jaune-naples);border:none;border-radius:14px;
  padding:1.6rem 1.5rem;text-align:left;cursor:pointer;color:var(--texte);
  transition:transform .2s ease, filter .2s ease;font:inherit;
}
.methode-card:hover{transform:translateY(-2px);filter:brightness(.98);}
.methode-card h3{font-family:var(--font-corps);font-weight:600;font-size:1.02rem;margin:0 0 .7rem;color:black;}
.methode-card p{margin:0;font-weight:300;font-size:.9rem;color:var(--texte);line-height:1.5;}

/* Modale méthode */
.modal{position:fixed;inset:0;z-index:200;display:none;align-items:center;justify-content:center;padding:1.5rem;
  background:rgba(9,9,9,.55);opacity:0;transition:opacity .25s ease;}
.modal.is-open{display:flex;opacity:1;}
.modal__box{background:var(--blanc-casse);border-radius:18px;max-width:560px;width:100%;
  max-height:88vh;overflow:auto;padding:0;position:relative;box-shadow:0 24px 60px rgba(0,0,0,.3);}
.modal__img{width:100%;height:240px;object-fit:cover;border-radius:18px 18px 0 0;display:block;background:var(--vert-pale);}
.modal__body{padding:1.8rem 2rem 2.2rem;}
.modal__body h3{font-family:var(--font-titre);font-weight:400;font-size:1.6rem;margin:0 0 1rem;color:var(--noir);}
.modal__body p{margin:0;font-weight:300;color:var(--texte);line-height:1.65;}
.modal__close{position:absolute;top:.8rem;right:.8rem;width:38px;height:38px;border-radius:50%;
  border:none;background:rgba(9,9,9,.45);color:#fff;font-size:1.3rem;line-height:1;cursor:pointer;display:grid;place-items:center;}
.modal__close:hover{background:rgba(9,9,9,.65);}

/* ---------------------- À PROPOS : timeline ----------------------- */
.timeline{max-width:1040px;margin:0 auto;}
.timeline__row{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;}
.timeline__step .eyebrow-sm{font-family:var(--font-soustitre);color:var(--vert-sauge);font-size:.95rem;margin:0 0 .6rem;}
.timeline__step h3{font-family:var(--font-corps);font-weight:600;font-size:1.1rem;margin:0 0 .8rem;color:var(--texte);line-height:1.3;}
.timeline__step p{font-weight:300;font-size:.92rem;color:var(--texte-doux);margin:0;line-height:1.6;}
.timeline__axis{position:relative;height:40px;margin:2rem 0 0;}
.timeline__axis::before{content:"";position:absolute;top:50%;left:2%;right:2%;height:1.5px;background:var(--noir);}
.timeline__axis::after{content:"";position:absolute;top:calc(50% - 4px);right:2%;width:9px;height:9px;border-right:1.5px solid var(--noir);border-top:1.5px solid var(--noir);transform:rotate(45deg);}
.timeline__dots{position:absolute;top:50%;left:0;right:0;display:flex;justify-content:space-around;transform:translateY(-50%);padding:0 14%;}
.timeline__dots span{width:14px;height:14px;border-radius:50%;background:var(--vert-sauge);}

/* Carte Sandra / mentor */
.mentor{max-width:1040px;margin:clamp(2.5rem,5vw,3.5rem) auto 0;background:var(--jaune-naples);
  border-radius:var(--radius);padding:2rem;display:grid;grid-template-columns:200px 1fr;gap:2rem;align-items:center;}
.mentor img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:12px;display:block;}
.mentor h3{font-family:var(--font-corps);font-weight:600;font-size:1.15rem;margin:0 0 .3rem;color:var(--texte);}
.mentor__role{font-weight:300;font-size:.9rem;color:var(--vert-fonce);margin:0 0 .2rem;}
.mentor__link{font-weight:300;font-size:.9rem;color:var(--vert-fonce);}
.mentor p.mentor__text{font-weight:300;font-size:.92rem;color:var(--texte);margin:1rem 0 0;line-height:1.6;}

/* Approche : grille 2x2 avec filets */
.approche-grid{max-width:1000px;margin:0 auto;border:1px solid rgba(60,58,48,.16);border-radius:var(--radius);overflow:hidden;
  display:grid;grid-template-columns:1fr 1fr;}
.approche-cell{padding:2rem;border-bottom:1px solid rgba(60,58,48,.16);}
.approche-cell:nth-child(odd){border-right:1px solid rgba(60,58,48,.16);}
.approche-cell:nth-last-child(-n+2){border-bottom:none;}
.approche-cell .card__blob{margin:0 0 1.2rem;width:80px;height:80px;}
.approche-cell h3{font-family:var(--font-corps);font-weight:600;font-size:1.05rem;margin:0 0 .8rem;color:var(--texte);}
.approche-cell p{font-weight:300;font-size:.92rem;color:var(--texte-doux);margin:.5rem 0 0;line-height:1.6;}

/* Formations & certifications */
.formations{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;max-width:1040px;margin:0 auto;}
.formation-card{border:1px solid rgba(255,255,255,.45);border-radius:12px;padding:1.4rem;}
.formation-card h3{font-family:var(--font-corps);font-weight:600;font-size:1rem;margin:0 0 .5rem;color:var(--jaune-naples);}
.formation-card p{font-weight:300;font-size:.88rem;color:rgba(255,255,255,.82);margin:0 0 1rem;}
.badge{display:inline-block;background:var(--jaune-naples);color:var(--vert-fonce);
  font-size:.78rem;border-radius:var(--btn-radius);padding:.4em 1em;font-weight:400;}

/* ---------------------------- CONTACT ----------------------------- */
.onedoc-wrap{max-width:1024px;margin:0 auto;padding-inline:var(--pad-x);}
.onedoc-wrap iframe{width:100%;border:none;border-radius:14px;}
.contact-form-section{background:var(--vert-pale);color:var(--texte);padding-block:var(--sect-y);}
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:2.5rem;align-items:start;}
.contact-form h2{font-family:var(--font-soustitre);font-weight:400;font-size:1.5rem;margin:0 0 1.6rem;color:var(--texte);}
.field{margin-bottom:1.1rem;}
.field label{display:block;font-weight:400;font-size:.9rem;margin:0 0 .4rem;color:var(--texte);}
.field input,.field select,.field textarea{
  width:100%;border:none;border-radius:10px;padding:.85rem 1rem;font:inherit;font-weight:300;
  background:var(--blanc-casse);color:var(--texte);
}
.field textarea{min-height:130px;resize:vertical;}
.contact-form .btn{margin-top:.4rem;}
/* Case à cocher RGPD/nLPD */
.consent{display:flex;align-items:flex-start;gap:.6rem;margin:.4rem 0 1.1rem;}
.consent input{margin-top:.2rem;width:16px;height:16px;flex:0 0 auto;accent-color:var(--vert-sauge);}
.consent label{font-weight:300;font-size:.82rem;color:var(--texte-doux);line-height:1.5;}
.info-cards{display:grid;gap:1rem;}
.info-card{border:1px solid rgba(60,58,48,.22);border-radius:12px;padding:1.3rem 1.4rem;}
.info-card__icon{width:38px;height:38px;border-radius:10px;background:var(--jaune-naples);color:var(--vert-fonce);
  display:grid;place-items:center;margin-bottom:.8rem;}
.info-card__icon svg{width:18px;height:18px;}
.info-card h3{font-family:var(--font-corps);font-weight:600;font-size:1rem;margin:0 0 .5rem;color:var(--texte);}
.info-card p{font-weight:300;font-size:.9rem;color:var(--texte-doux);margin:.15rem 0;line-height:1.5;}
.info-card a{color:var(--vert-fonce);font-weight:400;}
.info-cards__row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
/* Carte conditions de paiement (sauge) */
.payment-card{background:var(--vert-sauge);border:none;border-radius:12px;padding:1.3rem 1.4rem;text-align:center;}
.payment-card h3{font-family:var(--font-corps);font-weight:600;font-size:1rem;margin:0 0 .5rem;color:#fff;}
.payment-card p{font-weight:300;font-size:.88rem;color:rgba(255,255,255,.9);margin:0;line-height:1.55;}
.form-note{font-size:.82rem;color:var(--texte-doux);margin-top:1rem;line-height:1.5;}

/* ------------------------ MENTIONS LÉGALES ------------------------ */
.legal{padding-block:clamp(2rem,4vw,3rem) var(--sect-y);}
.legal__cols{column-count:2;column-gap:3rem;max-width:1040px;margin:0 auto;}
.legal h2{font-family:var(--font-corps);font-weight:600;font-size:1.15rem;color:var(--vert-sauge);
  margin:1.8rem 0 .9rem;break-after:avoid;}
.legal h2:first-child{margin-top:0;}
.legal h3{font-family:var(--font-corps);font-weight:600;font-size:.98rem;color:var(--texte);margin:1.2rem 0 .5rem;break-after:avoid;}
.legal p{font-weight:300;font-size:.9rem;color:var(--texte-doux);line-height:1.6;margin:.3rem 0;break-inside:avoid;}
.legal ul{margin:.3rem 0 .6rem;padding-left:1.1rem;}
.legal li{font-weight:300;font-size:.9rem;color:var(--texte-doux);line-height:1.55;margin:.2rem 0;}
.legal strong{font-weight:600;color:var(--texte);}
.legal__block{break-inside:avoid;}

/* ---------------------- RESPONSIVE pages -------------------------- */
@media (max-width:992px){
  .pricing{grid-template-columns:1fr;}
  .methodes-grid{grid-template-columns:1fr 1fr;}
  .timeline__row{grid-template-columns:1fr;gap:2.2rem;}
  .timeline__axis{display:none;}
  .approche-grid{grid-template-columns:1fr;}
  .approche-cell{border-right:none !important;}
  .approche-cell:nth-last-child(2){border-bottom:1px solid rgba(60,58,48,.16);}
  .formations{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr;gap:2rem;}
  .mentor{grid-template-columns:1fr;text-align:center;justify-items:center;}
  .mentor img{max-width:220px;}
  .legal__cols{column-count:1;}
}
@media (max-width:560px){
  .methodes-grid{grid-template-columns:1fr;}
  .formations{grid-template-columns:1fr;}
  .info-cards__row{grid-template-columns:1fr;}
  .cards--detail .card__blob{margin-right:auto;}
}

/* Tarifs — bandeau intro */
.tarifs-hero{background:var(--vert-pale);padding-block:var(--sect-y);text-align:center;}
.tarifs-hero .page-hero__title{color:var(--noir);}
.tarifs-hero .page-hero__title .accent-cream{color:var(--jaune-naples);}
.tarifs-hero__lead{max-width:620px;margin:1.4rem auto 2.8rem;color:rgba(20,20,12,.8);font-weight:300;}
.price-card--feature{background:var(--vert-sauge);color:#fff;}
.band-title{font-family:var(--font-corps);font-weight:600;font-size:clamp(1.7rem,3.4vw,2.4rem);color:#fff;text-align:center;margin:0 0 1.4rem;}
.band-title .accent-cream{color:var(--jaune-naples);}
.band-text{max-width:620px;margin:0 auto;text-align:center;color:rgba(255,255,255,.92);font-weight:300;}
.methods-accent .accent{color:var(--vert-sauge);}

/* ===== Modale crème (sans image) + déroulé + FAQ ===== */
.modal__box{background:var(--jaune-naples);max-width:620px;}
.modal__img{display:none !important;}
.modal__body{padding:2rem 2.2rem 2.2rem;}
.modal__body h3{font-family:var(--font-titre);font-weight:400;font-size:1.55rem;color:var(--noir);margin:0 0 1.1rem;}
.modal__content p{margin:0 0 .9rem;font-weight:300;color:var(--texte);line-height:1.65;font-size:.95rem;}
.modal__content p:last-child{margin-bottom:0;}
.modal-meta{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:1.6rem;padding-top:1.3rem;border-top:1px solid rgba(60,58,48,.2);}
.modal-meta .meta-label{font-family:var(--font-soustitre);font-size:.85rem;color:var(--vert-fonce);display:block;margin-bottom:.35rem;}
.modal-meta .meta-val{font-weight:300;font-size:.9rem;color:var(--texte);line-height:1.4;}

.deroule{max-width:1040px;margin:clamp(2rem,4vw,2.8rem) auto 0;display:grid;grid-template-columns:repeat(4,1fr);
  border:1px solid rgba(255,255,255,.4);border-radius:var(--radius);overflow:hidden;}
.deroule__step{padding:1.8rem 1.5rem;border-right:1px solid rgba(255,255,255,.4);}
.deroule__step:last-child{border-right:none;}
.deroule__num{font-family:var(--font-soustitre);font-size:2.4rem;color:var(--jaune-naples);margin:0 0 1rem;line-height:1;}
.deroule__eyebrow{font-weight:300;font-size:.85rem;color:rgba(255,255,255,.8);margin:0 0 .6rem;}
.deroule__title{font-family:var(--font-corps);font-weight:600;font-size:1rem;color:var(--jaune-naples);margin:0 0 .8rem;line-height:1.3;}
.deroule__text{font-weight:300;font-size:.88rem;color:rgba(255,255,255,.85);margin:0;line-height:1.55;}

.faq{max-width:820px;margin:0 auto;}
.faq__item{border-bottom:1px solid rgba(60,58,48,.18);}
.faq__q{width:100%;background:none;border:none;text-align:left;padding:1.3rem .2rem;font:inherit;font-weight:400;
  font-size:1.02rem;color:var(--texte);display:flex;justify-content:space-between;align-items:center;gap:1rem;cursor:pointer;}
.faq__q::after{content:"";width:9px;height:9px;border-right:2px solid var(--vert-sauge);border-bottom:2px solid var(--vert-sauge);
  transform:rotate(45deg);transition:transform .25s ease;flex:0 0 auto;margin-right:.4rem;}
.faq__item.is-open .faq__q::after{transform:rotate(-135deg);}
.faq__a{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.faq__a p{margin:0 .2rem 1.3rem;font-weight:300;color:var(--texte-doux);line-height:1.6;font-size:.95rem;}

@media (max-width:992px){.deroule{grid-template-columns:1fr 1fr;}.deroule__step:nth-child(2){border-right:none;}
  .deroule__step:nth-child(1),.deroule__step:nth-child(2){border-bottom:1px solid rgba(255,255,255,.4);}}
@media (max-width:560px){.deroule{grid-template-columns:1fr;}.deroule__step{border-right:none;border-bottom:1px solid rgba(255,255,255,.4);}}

/* =====================================================================
   HALOS DÉCORATIFS (fonds colorés de la charte)
   Lueurs douces crème/sauge visibles derrière la FAQ et la section
   « Une approche qui me ressemble ». Purement décoratif, sous le contenu.
   ===================================================================== */
.has-glow{position:relative;isolation:isolate;overflow:hidden;}
.has-glow > *{position:relative;z-index:1;}
.has-glow::before{
  content:"";position:absolute;z-index:0;pointer-events:none;
  inset:0;
  background:
    radial-gradient(60% 55% at 18% 42%, rgba(255,225,182,.55), rgba(255,225,182,0) 70%),
    radial-gradient(50% 45% at 88% 78%, rgba(196,200,172,.45), rgba(196,200,172,0) 72%);
}
.has-glow--right::before{
  background:
    radial-gradient(55% 50% at 90% 30%, rgba(255,225,182,.5), rgba(255,225,182,0) 70%),
    radial-gradient(55% 55% at 78% 92%, rgba(196,200,172,.42), rgba(196,200,172,0) 72%);
}
