/* ==========================================================================
   MADEMOISELLE OUI OUI — feuille de style unique
   Palette et typographie imposées par le cahier des charges.
   ========================================================================== */

/* Direction « La porte ouverte » : éditeur slow-living, contrastes crème /
   espresso, rose poudré et arche comme motif d’accueil. Chaque scène générée
   montre la même Carole-Anne adulte jeune, avec frange noire, yeux hazel-verts,
   tatouage au haut du thorax et teint sain naturel, mais chaque scène change de
   tenue, angle et attitude. Le portrait officiel demeure réservé à sa page de
   présentation ; la lisibilité passe avant l’effet. */
:root{
  /* Couleurs — cahier des charges §3 */
  --creme:#F7F3EE;
  --beige:#E8DDD1;
  --rose:#E7D1D1;
  --taupe:#B8A89A;
  --noir:#22201F;
  --blanc:#FFFFFF;

  /* Dérivés (opacités du noir doux, aucune couleur nouvelle) */
  --texte:#22201F;
  --texte-doux:rgba(34,32,31,.70);
  --texte-faible:rgba(34,32,31,.48);
  --trait:rgba(34,32,31,.14);
  --trait-fin:rgba(34,32,31,.08);

  /* Typographie */
  --display:"Playfair Display",Georgia,"Times New Roman",serif;
  --corps:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;

  /* Rythme */
  --marge:24px;
  --largeur:1120px;
  --etroit:720px;
  --section:72px;

  --transition:cubic-bezier(.22,.61,.36,1);
}

@media (min-width:768px){
  :root{ --marge:48px; --section:104px; }
}
@media (min-width:1200px){
  :root{ --section:128px; }
}

/* --------------------------------------------------------------- reset -- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--creme);
  color:var(--texte);
  font-family:var(--corps);
  font-size:16px;
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:500;
  line-height:1.12;
  letter-spacing:-.015em;
  margin:0;
  text-wrap:balance;
}

h1{ font-size:clamp(2.15rem,7.5vw,4.25rem); }
h2{ font-size:clamp(1.75rem,5.2vw,3rem); }
h3{ font-size:clamp(1.25rem,3vw,1.65rem); }

p{ margin:0 0 1.15em; }
p:last-child{ margin-bottom:0; }

/* ------------------------------------------------------------ utilitaires */
.contenant{
  width:100%;
  max-width:var(--largeur);
  margin-inline:auto;
  padding-inline:var(--marge);
}
.contenant--etroit{ max-width:var(--etroit); }

.section{ padding-block:var(--section); }
.section--serree{ padding-block:calc(var(--section) * .6); }
.section--beige{ background:var(--beige); }
.section--rose{ background:var(--rose); }
.section--noire{ background:var(--noir); color:var(--creme); }
.section--noire .surtitre{ color:rgba(247,243,238,.62); }
.section--noire p{ color:rgba(247,243,238,.82); }

.surtitre{
  font-family:var(--corps);
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--texte-faible);
  margin:0 0 20px;
}

.intro{
  font-size:clamp(1.02rem,2.1vw,1.18rem);
  color:var(--texte-doux);
  max-width:58ch;
}

.centre{ text-align:center; }
.centre .intro{ margin-inline:auto; }

.trait{ height:1px; background:var(--trait-fin); border:0; margin:0; }

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

/* --------------------------------------------------------------- boutons */
.bouton{
  display:inline-flex; align-items:center; justify-content:center;
  text-align:center; max-width:100%;
  min-height:54px; padding:14px 24px;
  font-family:var(--corps); font-size:.76rem; font-weight:600;
  letter-spacing:.13em; text-transform:uppercase; text-decoration:none;
  border:1px solid var(--noir); border-radius:0; cursor:pointer;
  background:var(--noir); color:var(--creme);
  transition:background .35s var(--transition), color .35s var(--transition);
}
.bouton:hover{ background:transparent; color:var(--noir); }

.bouton--ligne{ background:transparent; color:var(--noir); }
.bouton--ligne{
  background:rgba(231,209,209,.28); border-color:rgba(34,32,31,.42);
}
.bouton--ligne:hover{ background:var(--noir); color:var(--creme); }

.bouton--clair{ background:var(--creme); color:var(--noir); border-color:var(--creme); }
.bouton--clair:hover{ background:transparent; color:var(--creme); }

.boutons{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
@media (max-width:479px){
  .bouton{ letter-spacing:.09em; padding:14px 18px; }
}
.centre .boutons{ justify-content:center; }

.lien-fleche{
  display:inline-flex; align-items:center; gap:.5em;
  font-size:.74rem; font-weight:600; letter-spacing:.13em;
  text-transform:uppercase; text-decoration:none;
  padding-bottom:6px; border-bottom:1px solid var(--trait);
  transition:border-color .3s var(--transition);
}
.lien-fleche:hover{ border-color:var(--noir); }
.lien-fleche::after{ content:"\2192"; transition:transform .3s var(--transition); }
.lien-fleche:hover::after{ transform:translateX(4px); }

/* Focus clavier visible partout */
a:focus-visible,button:focus-visible,input:focus-visible,
select:focus-visible,textarea:focus-visible,summary:focus-visible{
  outline:2px solid var(--noir); outline-offset:3px;
}
.section--noire a:focus-visible,
.section--noire button:focus-visible{ outline-color:var(--creme); }

/* ---------------------------------------------------------------- entête */
.entete{
  position:sticky; top:0; z-index:60;
  background:rgba(247,243,238,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--trait-fin);
}
.entete__barre{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:16px; min-height:84px;
}
.entete__logo{
  display:flex; align-items:center; text-decoration:none; line-height:1.08;
  white-space:nowrap;
}
.entete__seal,.pied__seal{
  width:18px; height:23px; margin-right:8px; flex:0 0 auto;
  border:1px solid currentColor; border-bottom:0;
  border-radius:12px 12px 0 0; position:relative; opacity:.78;
}
.entete__seal::after,.pied__seal::after{
  content:""; position:absolute; left:4px; right:4px; bottom:0; height:1px; background:currentColor;
}
.entete__logo-officiel{ width:154px; height:66px; object-fit:contain; object-position:left center; }
@media (min-width:560px){ .entete__logo-officiel{ width:198px; height:76px; } }
.entete__actions{ display:flex; align-items:center; gap:10px; }

.entete__reserver{ min-height:42px; padding:0 16px; font-size:.66rem; letter-spacing:.1em; }

.burger{
  width:44px; height:44px; display:grid; place-items:center;
  background:none; border:1px solid var(--trait); cursor:pointer;
}
.burger span{
  display:block; width:18px; height:1px; background:var(--noir);
  position:relative;
}
.burger span::before,.burger span::after{
  content:""; position:absolute; left:0; width:18px; height:1px; background:var(--noir);
  transition:transform .3s var(--transition);
}
.burger span::before{ top:-6px; }
.burger span::after{ top:6px; }
.burger[aria-expanded="true"] span{ background:transparent; }
.burger[aria-expanded="true"] span::before{ transform:translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after{ transform:translateY(-6px) rotate(-45deg); }

.nav{ display:none; }
.nav[data-ouvert="true"]{
  display:block;
  flex:0 0 100%; order:3; width:100%;
  border-top:1px solid var(--trait-fin);
  padding-block:12px 28px;
  max-height:calc(100vh - 80px); overflow-y:auto;
}
.nav ul{ list-style:none; margin:0; padding:0; }
.nav a{
  display:block; padding:13px 0; text-decoration:none;
  font-size:1.02rem; border-bottom:1px solid var(--trait-fin);
}
.nav a[aria-current="page"]{ color:var(--texte); font-weight:600; }
.nav__groupe > span{
  display:block; padding:20px 0 8px;
  font-size:.66rem; font-weight:600; letter-spacing:.2em;
  text-transform:uppercase; color:var(--texte-faible);
}
.nav__groupe a{ padding-left:16px; }

@media (min-width:1000px){
  .burger{ display:none; }
  .nav,.nav[data-ouvert="true"]{
    display:block; flex:0 1 auto; order:0; width:auto;
    border-top:0; padding-block:0; max-height:none; overflow:visible;
  }
  .nav ul{ display:flex; align-items:center; gap:26px; }
  .nav a{
    padding:0; border:0; font-size:.8rem; letter-spacing:.05em;
    position:relative;
  }
  .nav a::after{
    content:""; position:absolute; left:0; bottom:-5px; width:0; height:1px;
    background:var(--noir); transition:width .3s var(--transition);
  }
  .nav a:hover::after,.nav a[aria-current="page"]::after{ width:100%; }
  .nav__groupe{ position:relative; }
  .nav__groupe > span{
    padding:0; font-size:.8rem; letter-spacing:.05em; text-transform:none;
    color:var(--texte); cursor:default; font-weight:400;
  }
  .nav__groupe ul{
    display:none; position:absolute; top:calc(100% + 18px); left:-20px;
    flex-direction:column; gap:0; align-items:stretch;
    min-width:210px; padding:10px 20px; background:var(--creme);
    border:1px solid var(--trait-fin);
  }
  .nav__groupe:hover ul,.nav__groupe:focus-within ul{ display:flex; }
  .nav__groupe ul a{ padding:9px 0; }
}

/* ----------------------------------------------------------------- héros */
.heros{ padding-block:56px 0; }
.heros h1{ margin-bottom:26px; }
.heros .intro{ max-width:48ch; }

.heros__media{
  margin-top:48px;
  aspect-ratio:4/5;
}
@media (min-width:900px){
  .heros{ padding-block:88px 0; }
  .heros__grille{
    display:grid; grid-template-columns:1.08fr .92fr; gap:72px; align-items:center;
  }
  .heros__media{ margin-top:0; aspect-ratio:3/4; }
}

/* SIGNATURE — le cadre en arche : une « porte » ouverte sur l'univers.
   Reprend littéralement les trois portes d'entrée du parcours. */
.arche{
  position:relative;
  background:var(--beige);
  border:1px solid rgba(34,32,31,.10);
  border-radius:50% 50% 0 0 / 26% 26% 0 0;
  overflow:hidden;
  display:grid; place-items:center;
  text-align:center;
  padding:12% 8% 8%;
}
.arche::after{
  content:""; position:absolute; inset:10px;
  border:1px solid rgba(34,32,31,.13);
  border-radius:50% 50% 0 0 / 26% 26% 0 0;
  pointer-events:none;
}
.arche img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.arche--rose{ background:var(--rose); }

.arche__legende{
  position:relative; z-index:1; max-width:26ch;
}
.arche__legende strong{
  display:block; font-family:var(--display); font-weight:500;
  font-size:clamp(1.15rem,3.4vw,1.6rem); line-height:1.2; margin-bottom:10px;
}
.arche__legende span{
  font-size:.8rem; color:var(--texte-doux); line-height:1.5; display:block;
}

/* Le cadre en arche s’étend aux images de cartes : il relie chaque invitation au geste de la marque. */
.cartes .carte{
  background:transparent;
  border:0;
  border-top:1px solid var(--trait-fin);
  padding:22px 0 10px;
}
.cartes .carte__media{
  margin:0 0 24px;
  overflow:hidden;
  border:1px solid rgba(34,32,31,.10);
  border-radius:50% 50% 0 0 / 14% 14% 0 0;
  position:relative;
}
.cartes .carte__media::after{
  content:""; position:absolute; inset:8px; pointer-events:none;
  border:1px solid rgba(34,32,31,.13);
  border-radius:50% 50% 0 0 / 14% 14% 0 0;
}
.cartes .carte h3{ font-size:clamp(1.38rem,2.2vw,1.8rem); max-width:16ch; }
@media (min-width:1050px){
  body[data-page="soins"] .cartes--trois .carte:nth-child(2),
  body[data-page="soins"] .cartes--trois .carte:nth-child(5){ margin-top:56px; }
  body[data-page="soins"] .cartes--trois .carte:nth-child(3){ margin-top:16px; }
}

/* Direction « fondatrice incarnée » : chaque scène associe un service à une présence humaine.
   Les photos sources privées servent uniquement de références et ne sont jamais exposées. */
body[data-page="accueil"] .heros__media{
  background-image:linear-gradient(180deg,rgba(247,243,238,0) 42%,rgba(247,243,238,.92) 100%),url("/manus-storage/mademoiselle-oui-oui-drainage-carole-varie_dd698b80.jpg");
  background-position:center; background-size:cover;
}
body[data-page="accueil"] .heros__media .arche__legende{
  align-self:end; justify-self:stretch; margin:0 5% 4%; padding:18px 20px;
  background:rgba(247,243,238,.88); text-align:left; backdrop-filter:blur(4px);
}
body[data-page="accueil"] .portes .porte:first-child .porte__arche{
  background-image:linear-gradient(180deg,rgba(247,243,238,.04),rgba(247,243,238,.80)),url("/manus-storage/mademoiselle-oui-oui-drainage-carole-varie_dd698b80.jpg");
  background-position:center; background-size:cover;
}
body[data-page="accueil"] .portes .porte:nth-child(2) .porte__arche{
  background-image:linear-gradient(180deg,rgba(247,243,238,.03),rgba(247,243,238,.72)),url("/manus-storage/mademoiselle-oui-oui-formation-arch-carole-fidele_1f9ceba0.jpg");
  background-position:center; background-size:cover;
}
body[data-page="accueil"] .portes .porte:nth-child(3) .porte__arche{
  background-image:linear-gradient(180deg,rgba(247,243,238,.05),rgba(247,243,238,.74)),url("/manus-storage/mademoiselle-oui-oui-univers-arch-carole-fidele_5d5dd219.jpg");
  background-position:center; background-size:cover;
}
body[data-page="accueil"] .section--beige .duo .aplat--rose{
  background-image:linear-gradient(180deg,rgba(247,243,238,.02),rgba(34,32,31,.32)),url("/manus-storage/mademoiselle-oui-oui-madero-carole-varie_64dc9d1b.jpg");
  background-position:center; background-size:cover;
}
body[data-page="accueil"] .section--beige .duo .aplat--rose .aplat__note{ color:var(--creme); }
body[data-page="accueil"] .duo--inverse .duo__media{
  background-image:linear-gradient(180deg,rgba(34,32,31,.04),rgba(247,243,238,.86)),url("/manus-storage/mademoiselle-oui-oui-madero-carole-varie_64dc9d1b.jpg");
  background-position:center; background-size:cover;
}
body[data-page="accueil"] .duo:not(.duo--inverse) .aplat--taupe{
  background-image:linear-gradient(180deg,rgba(34,32,31,.08),rgba(34,32,31,.46)),url("/manus-storage/mademoiselle-oui-oui-remodelage-carole-varie_eb93f931.jpg");
  background-position:center; background-size:cover;
}
body[data-page="accueil"] .duo:not(.duo--inverse) .aplat--taupe .aplat__note{ color:var(--creme); }
body[data-page="accueil"] .cartes .carte:first-child .carte__media{
  background-image:linear-gradient(180deg,rgba(247,243,238,.02),rgba(247,243,238,.60)),url("/manus-storage/mademoiselle-oui-oui-formation-carole-varie_47d1f7e1.jpg");
  background-position:center; background-size:cover;
}
body[data-page="accueil"] .cartes .carte:first-child .aplat__note{ opacity:0; }
body[data-page="accueil"] .cartes .carte:nth-child(2) .carte__media{
  background-image:linear-gradient(180deg,rgba(247,243,238,.03),rgba(247,243,238,.68)),url("/manus-storage/mademoiselle-oui-oui-masterclass-carole-varie_41061465.jpg");
  background-position:center; background-size:cover;
}
body[data-page="accueil"] .cartes .carte:nth-child(2) .aplat__note{ opacity:0; }

/* Cadres différenciés : chaque offre garde sa propre distance et son propre geste. */
body[data-page="soins"] .cartes .carte:nth-child(1) .carte__media{ background-position:50% 35%; }
body[data-page="soins"] .cartes .carte:nth-child(2) .carte__media{ background-position:54% 42%; }
body[data-page="soins"] .cartes .carte:nth-child(3) .carte__media{ background-position:46% 28%; }
body[data-page="soins"] .cartes .carte:nth-child(4) .carte__media{ background-position:50% 38%; }
body[data-page="soins"] .cartes .carte:nth-child(5) .carte__media{ background-position:60% 44%; }

/* La masterclass reprend exactement le calme et la hiérarchie des références mobiles fournies. */
body[data-page="masterclass"] .section:first-of-type{ background:linear-gradient(180deg,var(--creme),#F2ECE5); }
body[data-page="masterclass"] .liste-cochee li strong{ font-family:var(--display); font-size:1.28em; font-weight:500; color:var(--texte); }
body[data-page="masterclass"] .duo__media.arche{
  background-image:linear-gradient(180deg,rgba(247,243,238,.05),rgba(247,243,238,.82)),url("/manus-storage/mademoiselle-oui-oui-masterclass-carole-varie_41061465.jpg");
  background-position:center; background-size:cover;
}

/* Une présence personnelle dans les pages décisives : vision, formation, soins et contenus en ligne. */
body[data-page="ma-vision"] .duo__media.arche{
  background-image:linear-gradient(180deg,rgba(247,243,238,.04),rgba(247,243,238,.70)),url("/manus-storage/mademoiselle-oui-oui-carole-anne-portrait_dab39f03.jpeg");
  background-position:center; background-size:cover;
}
body[data-page="formations"] .duo__media.arche{
  background-image:linear-gradient(180deg,rgba(247,243,238,.03),rgba(247,243,238,.76)),url("/manus-storage/mademoiselle-oui-oui-formation-carole-varie_47d1f7e1.jpg");
  background-position:center; background-size:cover;
}
body[data-page="en-ligne"] .cartes .carte:first-child .carte__media,
body[data-page="en-ligne"] .cartes .carte:nth-child(3) .carte__media{
  background-image:linear-gradient(180deg,rgba(247,243,238,.04),rgba(247,243,238,.72)),url("/manus-storage/mademoiselle-oui-oui-masterclass-carole-varie_41061465.jpg");
  background-position:center; background-size:cover;
}
body[data-page="en-ligne"] .cartes .carte:nth-child(2) .carte__media{
  background-image:linear-gradient(180deg,rgba(247,243,238,.08),rgba(247,243,238,.72)),url("/manus-storage/mademoiselle-oui-oui-formation-carole-varie_47d1f7e1.jpg");
  background-position:center; background-size:cover;
}
body[data-page="en-ligne"] .cartes .carte:nth-child(3) .carte__media{
  background-image:linear-gradient(180deg,rgba(247,243,238,.04),rgba(247,243,238,.72)),url("/manus-storage/mademoiselle-oui-oui-formation-carole-varie_47d1f7e1.jpg");
}
body[data-page="en-ligne"] .carte__media .aplat__note{ opacity:0; }

body[data-page="soins"] .cartes .carte:nth-child(1) .carte__media,
body[data-page="soins"] .cartes .carte:nth-child(2) .carte__media,
body[data-page="soins"] .cartes .carte:nth-child(4) .carte__media,
body[data-page="soins"] .cartes .carte:nth-child(5) .carte__media{
  background-position:center; background-size:cover;
}
body[data-page="soins"] .cartes .carte:nth-child(1) .carte__media{ background-image:url("/manus-storage/mademoiselle-oui-oui-drainage-carole-varie_dd698b80.jpg"); }
body[data-page="soins"] .cartes .carte:nth-child(2) .carte__media{ background-image:url("/manus-storage/mademoiselle-oui-oui-madero-carole-varie_64dc9d1b.jpg"); }
body[data-page="soins"] .cartes .carte:nth-child(3) .carte__media{ background-image:url("/manus-storage/mademoiselle-oui-oui-remodelage-carole-varie_eb93f931.jpg"); background-position:center; background-size:cover; }
body[data-page="soins"] .cartes .carte:nth-child(4) .carte__media{ background-image:url("/manus-storage/mademoiselle-oui-oui-visage-carole-varie_5078afe7.jpg"); }
body[data-page="soins"] .cartes .carte:nth-child(5) .carte__media{ background-image:url("/manus-storage/mademoiselle-oui-oui-drainage-carole-varie_dd698b80.jpg"); }
body[data-page="soins"] .carte__media .aplat__note{ opacity:0; }


/* ------------------------------------------------------- portes d'entrée */
.portes{ display:grid; gap:40px; margin-top:56px; }
@media (min-width:860px){ .portes{ grid-template-columns:repeat(3,1fr); gap:36px; } }

.porte{ display:flex; flex-direction:column; }
.porte__arche{
  aspect-ratio:3/4; margin-bottom:26px;
}
.porte h3{ margin-bottom:12px; }
.porte p{ color:var(--texte-doux); font-size:.96rem; flex:1; }
.porte .lien-fleche{ margin-top:20px; align-self:flex-start; }

/* ------------------------------------------------------------- « split » */
.duo{ display:grid; gap:44px; align-items:center; }
@media (min-width:900px){
  .duo{ grid-template-columns:1fr 1fr; gap:72px; }
  .duo--inverse .duo__media{ order:-1; }
}
.duo__media{ aspect-ratio:4/5; }

/* ------------------------------------------------------------ les cartes */
.cartes{ display:grid; gap:28px; margin-top:52px; }
@media (min-width:700px){ .cartes{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1050px){ .cartes--trois{ grid-template-columns:repeat(3,1fr); } }

.carte{
  background:var(--blanc);
  border:1px solid var(--trait-fin);
  padding:32px 28px;
  display:flex; flex-direction:column;
}
.carte__media{ aspect-ratio:16/11; margin:-32px -28px 26px; }
.carte h3{ margin-bottom:12px; }
.carte p{ color:var(--texte-doux); font-size:.95rem; flex:1; }
.carte .lien-fleche{ margin-top:22px; align-self:flex-start; }

/* Bloc image manquante — « placeholder élégant » (§30) */
.aplat{
  background:var(--beige);
  display:grid; place-items:center; text-align:center;
  padding:24px; position:relative;
}
.aplat__note{
  font-size:.64rem; font-weight:600; letter-spacing:.18em;
  text-transform:uppercase; color:var(--texte-faible); max-width:24ch; line-height:1.7;
}
.aplat--rose{ background:var(--rose); }
.aplat--taupe{ background:var(--taupe); }
.aplat--taupe .aplat__note{ color:rgba(34,32,31,.62); }

.vide{
  position:relative; border:1px solid var(--trait-fin); background:var(--beige);
  padding:clamp(28px,5vw,58px); max-width:760px;
}
.vide::before{
  content:"«"; display:block; font-family:var(--display); color:var(--rose-fonce);
  font-size:3rem; line-height:.5; margin-bottom:20px;
}
.vide strong{ font-family:var(--display); font-size:clamp(1.45rem,3vw,2rem); font-weight:500; }
.vide p{ max-width:54ch; margin-top:14px; color:var(--texte-doux); }

/* ------------------------------------------------------------ la formation */
.faits{
  display:flex; flex-wrap:wrap; gap:10px 28px;
  font-size:.72rem; font-weight:600; letter-spacing:.13em;
  text-transform:uppercase; color:var(--texte-doux);
  margin:0; padding:0; list-style:none;
}
.faits li{ display:flex; align-items:center; gap:10px; }
.faits li + li::before{ content:none; }
@media (min-width:600px){
  .faits li + li::before{
    content:""; display:block; width:4px; height:4px; border-radius:50%;
    background:var(--taupe);
  }
}

.prix{
  font-family:var(--display); font-size:clamp(1.8rem,5vw,2.6rem);
  line-height:1; margin:0;
}
.prix small{
  display:block; font-family:var(--corps); font-size:.72rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; color:var(--texte-faible);
  margin-top:12px;
}

/* Programme en deux journées : la numérotation encode une vraie séquence. */
.jours{ display:grid; gap:32px; margin-top:52px; }
@media (min-width:840px){ .jours{ grid-template-columns:repeat(2,1fr); gap:40px; } }
.jour{ background:var(--blanc); border:1px solid var(--trait-fin); padding:36px 30px; }
.jour__num{
  font-family:var(--display); font-size:2.6rem; line-height:1;
  color:var(--taupe); display:block; margin-bottom:14px;
}
.jour h3{ margin-bottom:22px; }
.jour ul{ list-style:none; margin:0; padding:0; }
.jour li{
  padding:11px 0; border-bottom:1px solid var(--trait-fin);
  font-size:.95rem; color:var(--texte-doux);
}
.jour li:last-child{ border-bottom:0; }

.liste-cochee{ list-style:none; margin:0; padding:0; }
.liste-cochee li{
  padding:14px 0 14px 30px; border-bottom:1px solid var(--trait-fin);
  position:relative; color:var(--texte-doux);
}
.liste-cochee li::before{
  content:""; position:absolute; left:0; top:22px;
  width:12px; height:1px; background:var(--taupe);
}
.liste-cochee li:last-child{ border-bottom:0; }

/* -------------------------------------------------------------- sessions */
.sessions{ display:grid; gap:18px; margin-top:44px; }
.session{
  display:grid; gap:18px; align-items:center;
  background:var(--blanc); border:1px solid var(--trait-fin); padding:28px 26px;
}
@media (min-width:820px){
  .session{ grid-template-columns:1.1fr 1fr .9fr auto; gap:28px; }
}
.session__ville{ font-family:var(--display); font-size:1.5rem; line-height:1.1; }
.session__date{ font-size:.95rem; color:var(--texte-doux); }
.session__places{
  font-size:.7rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--texte-faible);
}
.session--complete{ background:var(--beige); }

/* ------------------------------------------------------------ formulaires */
.form{ display:grid; gap:18px; margin-top:34px; min-width:0; }
.form > *{ min-width:0; }
@media (min-width:640px){ .form--duo{ grid-template-columns:1fr 1fr; } }
.champ{ display:grid; gap:8px; }
.champ--pleine{ grid-column:1 / -1; }
.champ label{
  font-size:.68rem; font-weight:600; letter-spacing:.16em;
  text-transform:uppercase; color:var(--texte-faible);
}
.champ input,.champ select,.champ textarea{
  font-family:var(--corps); font-size:1rem; color:var(--texte);
  background:var(--blanc); border:1px solid var(--trait);
  padding:15px 16px; border-radius:0; min-height:54px; width:100%;
  transition:border-color .3s var(--transition);
}
.champ textarea{ min-height:150px; resize:vertical; }
.champ input:focus,.champ select:focus,.champ textarea:focus{ border-color:var(--noir); }

.form__note{
  grid-column:1 / -1; font-size:.82rem; color:var(--texte-faible); margin:0;
}
.form .bouton{ grid-column:1 / -1; justify-self:start; }

.bloc-form{
  background:var(--blanc); border:1px solid var(--trait-fin);
  padding:40px 30px;
}
@media (min-width:768px){ .bloc-form{ padding:56px 52px; } }

/* -------------------------------------------------------------------- FAQ */
.faq{ margin-top:44px; border-top:1px solid var(--trait); }
.faq details{ border-bottom:1px solid var(--trait); }
.faq summary{
  cursor:pointer; list-style:none; padding:26px 44px 26px 0; position:relative;
  font-family:var(--display); font-size:clamp(1.08rem,2.6vw,1.3rem); line-height:1.3;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+"; position:absolute; right:6px; top:26px;
  font-family:var(--corps); font-size:1.2rem; color:var(--taupe);
  transition:transform .3s var(--transition);
}
.faq details[open] summary::after{ transform:rotate(45deg); }
.faq__reponse{ padding:0 0 30px; color:var(--texte-doux); max-width:70ch; }

/* -------------------------------------------------------- état vide (§14) */
.vide{
  border:1px dashed var(--trait); padding:44px 30px; text-align:center;
  color:var(--texte-doux);
}
.vide strong{
  display:block; font-family:var(--display); font-weight:500;
  font-size:1.3rem; color:var(--texte); margin-bottom:12px;
}
.vide p{ max-width:48ch; margin-inline:auto; font-size:.95rem; }

/* -------------------------------------------------------------- citation */
.citation{
  font-family:var(--display); font-size:clamp(1.5rem,4.6vw,2.4rem);
  line-height:1.28; letter-spacing:-.015em; max-width:20ch; margin:0;
}
.citation--large{ max-width:26ch; }
.citation__source{
  display:block; margin-top:28px;
  font-family:var(--corps); font-size:.68rem; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase; color:var(--texte-faible);
}
.section--noire .citation__source{ color:rgba(247,243,238,.55); }

/* Note fondatrice : rupture éditoriale, plus intime qu’une carte générique. */
.note-fondatrice{
  margin-top:40px; max-width:760px; padding:clamp(32px,5vw,58px);
  background:var(--rose); border:1px solid rgba(34,32,31,.14); position:relative;
}
.note-fondatrice::before{
  content:"«"; display:block; font-family:var(--display); font-size:4.5rem;
  line-height:.45; color:rgba(34,32,31,.30); margin-bottom:24px;
}
.note-fondatrice p{
  max-width:28ch; font-family:var(--display); font-size:clamp(1.35rem,3vw,2rem);
  line-height:1.28; color:var(--texte); margin:0;
}
.note-fondatrice span{
  display:block; margin-top:26px; font-size:.67rem; font-weight:600; letter-spacing:.17em;
  text-transform:uppercase; color:var(--texte-doux);
}

/* ------------------------------------------------------------- l'orienteur */
.orienteur{ margin-top:40px; }
.orienteur__choix{ display:flex; flex-wrap:wrap; gap:12px; }
.puce{
  min-height:48px; padding:0 22px; background:var(--blanc);
  border:1px solid var(--trait); cursor:pointer;
  font-family:var(--corps); font-size:.74rem; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase; color:var(--texte);
  transition:background .3s var(--transition), border-color .3s var(--transition);
}
.puce:hover{ border-color:var(--noir); }
.puce[aria-pressed="true"]{ background:var(--noir); border-color:var(--noir); color:var(--creme); }
.orienteur__reponse{
  margin-top:26px; padding:26px 24px; background:var(--blanc);
  border:1px solid var(--trait-fin); display:none;
}
.orienteur__reponse[data-visible="true"]{ display:block; }
.orienteur__reponse h3{ font-size:1.25rem; margin-bottom:10px; }
.orienteur__reponse p{ color:var(--texte-doux); font-size:.95rem; }

/* ------------------------------------------------------------- pied de page */
.pied{ background:var(--noir); color:var(--creme); padding-block:72px 40px; }
.pied a{ text-decoration:none; }
.pied__haut{ display:grid; gap:48px; }
@media (min-width:900px){ .pied__haut{ grid-template-columns:1.2fr 1fr 1.2fr; gap:56px; } }

.pied__logo{ display:flex; align-items:flex-start; font-family:var(--display); font-size:1.72rem; line-height:1.05; }
.pied__seal{ margin-top:3px; color:var(--rose); width:20px; height:27px; }
.pied__devise{
  margin-top:16px; font-size:.7rem; font-weight:600; letter-spacing:.2em;
  text-transform:uppercase; color:rgba(247,243,238,.62);
}
.pied__titre{
  font-size:.66rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(247,243,238,.5); margin:0 0 18px;
}
.pied ul{ list-style:none; margin:0; padding:0; }
.pied ul li{ margin-bottom:11px; }
.pied ul a{ font-size:.94rem; color:rgba(247,243,238,.82); }
.pied ul a:hover{ color:var(--creme); }

.pied .champ input{
  background:transparent; border-color:rgba(247,243,238,.28); color:var(--creme);
}
.pied .champ input::placeholder{ color:rgba(247,243,238,.4); }
.pied .champ label{ color:rgba(247,243,238,.5); }

.pied__bas{
  margin-top:56px; padding-top:26px; border-top:1px solid rgba(247,243,238,.16);
  display:flex; flex-wrap:wrap; gap:14px 28px; justify-content:space-between;
  font-size:.78rem; color:rgba(247,243,238,.55);
}
.pied__bas a{ color:rgba(247,243,238,.72); }
.pied__legal{ display:flex; flex-wrap:wrap; gap:20px; }

.a-fournir{
  font-size:.62rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--taupe); border:1px solid currentColor; padding:3px 8px;
  display:inline-block; line-height:1.4;
}

/* -------------------------------------------------------------- animation */
[data-apparait]{
  opacity:0; transform:translateY(18px);
  transition:opacity .8s var(--transition), transform .8s var(--transition);
}
[data-apparait][data-vu="true"]{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important; transition-duration:.01ms !important;
  }
  [data-apparait]{ opacity:1; transform:none; }
}


/* ------------------------------------------------------- réservation premium */
.reservation-page{ overflow:hidden; }
.reservation-hero{ padding-top:clamp(56px,8vw,104px); padding-bottom:clamp(64px,9vw,120px); }
.reservation-hero__grid{ display:grid; gap:48px; align-items:center; }
@media (min-width:860px){ .reservation-hero__grid{ grid-template-columns:minmax(0,.92fr) minmax(360px,.8fr); gap:clamp(56px,8vw,120px); } }
.reservation-hero__copy h1{ max-width:680px; margin-top:18px; }
.reservation-hero__copy .intro{ max-width:570px; margin-top:28px; }
.reservation-hero__actions{ margin-top:34px; }
.reservation-hero__note{ max-width:460px; margin-top:18px; color:var(--texte-doux); font-size:.8rem; line-height:1.65; }
.reservation-hero__media{ min-height:460px; background-image:linear-gradient(180deg,rgba(247,243,238,.02),rgba(247,243,238,.48)),url("/manus-storage/mademoiselle-oui-oui-drainage-carole-varie_dd698b80.jpg"); background-position:center; background-size:cover; }
@media (max-width:600px){ .reservation-hero__media{ min-height:390px; } }
.reservation-section-heading{ max-width:720px; }
.reservation-section-heading h2{ margin-top:14px; }
.reservation-section-heading>p:last-child{ max-width:610px; margin-top:18px; color:var(--texte-doux); }
.reservation-choice-grid{ display:grid; gap:18px; margin-top:46px; }
@media (min-width:760px){ .reservation-choice-grid{ grid-template-columns:repeat(3,1fr); gap:22px; } }
.reservation-choice{ min-height:300px; padding:30px 28px 28px; background:rgba(255,255,255,.5); border:1px solid rgba(34,32,31,.14); display:flex; flex-direction:column; }
.reservation-choice--rose{ background:var(--rose); border-color:transparent; }
.reservation-choice__number{ font-size:.72rem; letter-spacing:.16em; color:var(--texte-doux); }
.reservation-choice h3{ margin-top:50px; font-family:var(--display); font-size:clamp(1.55rem,2.5vw,2.1rem); font-weight:500; line-height:1.08; }
.reservation-choice p{ margin-top:16px; color:var(--texte-doux); font-size:.94rem; line-height:1.65; }
.reservation-choice .lien-fleche{ margin-top:auto; padding-top:26px; }
.reservation-experience{ padding-top:clamp(70px,10vw,128px); padding-bottom:clamp(70px,10vw,128px); }
.reservation-experience__grid{ display:grid; gap:56px; align-items:start; }
@media (min-width:860px){ .reservation-experience__grid{ grid-template-columns:minmax(0,.85fr) minmax(0,1fr); gap:clamp(70px,10vw,150px); } }
.reservation-experience h2{ margin-top:16px; max-width:520px; }
.reservation-experience .intro{ max-width:560px; margin-top:22px; }
.reservation-steps{ border-top:1px solid rgba(34,32,31,.2); }
.reservation-step{ display:grid; grid-template-columns:48px 1fr; gap:18px; padding:22px 0; border-bottom:1px solid rgba(34,32,31,.2); }
.reservation-step>span{ font-size:.72rem; letter-spacing:.14em; color:var(--texte-doux); padding-top:3px; }
.reservation-step p{ line-height:1.6; color:var(--texte-doux); }
.reservation-step strong{ color:var(--noir); font-weight:500; }
.reservation-booking{ padding-top:clamp(54px,7vw,88px); padding-bottom:clamp(54px,7vw,88px); }
.reservation-booking__inner{ display:grid; gap:30px; align-items:center; }
@media (min-width:760px){ .reservation-booking__inner{ grid-template-columns:1fr auto; gap:70px; } }
.reservation-booking h2{ margin-top:14px; }
.reservation-booking p:not(.surtitre){ max-width:620px; margin-top:18px; color:rgba(34,32,31,.72); line-height:1.65; }
.reservation-booking__action{ min-width:min(100%,280px); }
.reservation-booking__action .bouton{ width:100%; justify-content:center; background:var(--noir); color:var(--creme); }
.reservation-before h2{ margin-top:14px; }

.reservation-launch{ padding:24px; border:1px solid rgba(34,32,31,.28); background:rgba(247,243,238,.5); }
.reservation-launch__eyebrow{ display:block; font-size:.67rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(34,32,31,.62); }
.reservation-launch strong{ display:block; margin-top:10px; font-family:var(--display); font-size:1.65rem; font-weight:500; line-height:1.1; }
.reservation-launch p{ margin:12px 0 20px; font-size:.84rem; line-height:1.55; }
.reservation-launch .bouton{ min-width:100%; }
.reservation-launch .bouton span{ margin-left:10px; font-size:1.05em; }
@media (min-width:760px){ .reservation-launch{ min-width:320px; padding:28px; } }
