/* ==========================================================================
   Bouger Ensemble Autrement — feuille de style unique
   Mobile-first. Toutes les couleurs et espacements sont des variables :
   modifier la charte = modifier le bloc :root ci-dessous, rien d'autre.
   ========================================================================== */

:root {
  /* ------------------------------------------------------------------
     Palette reprise du flyer de l'association.
     Chaque couleur porteuse de texte a été vérifiée au ratio AA (4,5:1).
     Les couleurs du flyer trop claires pour du texte ont une variante
     assombrie, signalée ci-dessous.
     ------------------------------------------------------------------ */

  /* --- Verts --- */
  --vert:          #476446;  /* flyer — couleur principale. Blanc dessus : 6,6:1 */
  --vert-fonce:    #3A5239;  /* survol des boutons verts */
  --vert-nuit:     #2A3A29;  /* pied de page et titres. Sur crème : 11,5:1 */
  --vert-doux:     #588157;  /* flyer « vert grisé » — décoratif : trop clair pour du texte (4,3:1) */
  --vert-clair:    #DEE8DD;  /* fond des pastilles « intensité légère » */
  --vert-pale:     #D5E3D6;  /* texte clair sur fond vert : 4,9:1 */

  /* --- Oranges --- */
  --orange:        #E5773E;  /* flyer — décoratif uniquement : seulement 3,0:1 avec du blanc */
  --orange-texte:  #B0541F;  /* variante assombrie pour boutons et liens. Blanc dessus : 5,1:1 */
  --orange-texte-survol: #954616;
  --orange-clair:  #FBD2A4;  /* flyer — fond de pastille et surfaces douces */
  --orange-fonce:  #8F3A17;  /* texte sur fond #FBD2A4 : 5,3:1 */

  /* --- Jaune (hors flyer, conservé pour distinguer l'intensité modérée) --- */
  --jaune:         #E9B44C;
  --jaune-clair:   #F7E7C3;

  /* --- Rose néon (flyer) : cours adaptés cancer --- */
  --rose:          #AC25AB;  /* sur crème : 5,6:1 — utilisable en texte */
  --rose-fonce:    #8E1D8D;  /* sur fond rose clair : 6,3:1 */
  --rose-clair:    #F6E3F5;

  /* --- Bleu (hors flyer) : repère fonctionnel des cours en visio --- */
  --bleu:          #2C5F7A;
  --bleu-clair:    #DCEAF2;

  /* --- Neutres --- */
  --creme:         #FFFAF0;  /* flyer « orange clair » — fond de page */
  --blanc:         #FFFFFF;
  --bordure:       #EFE4D4;
  --bordure-douce: #F5EDE2;
  --texte:         #2A3A29;  /* 11,5:1 sur crème */
  --texte-corps:   #3D4B3C;  /*  8,8:1 sur crème */
  --texte-discret: #5C6B5B;  /*  5,4:1 sur crème */

  /* --- Typographie ---
     DM Sans pour les titres, Open Sans pour le texte courant : deux familles
     du flyer, très lisibles, y compris à petite taille et pour un public âgé.
     « Bryndan Write », la manuscrite du flyer, est une police commerciale
     absente de Google Fonts : voir LISEZ-MOI.md pour l'ajouter. */
  --font-titre: 'DM Sans', 'Segoe UI', 'Trebuchet MS', sans-serif;
  --font-corps: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- Mesures --- */
  --largeur:   1240px;
  --rayon:     16px;
  --rayon-lg:  24px;
  --pastille:  999px;
  --ombre:     0 1px 2px rgba(42, 58, 41, .04), 0 4px 14px rgba(42, 58, 41, .05);
  --ombre-fort:0 4px 12px rgba(42, 58, 41, .10), 0 12px 32px rgba(42, 58, 41, .10);
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--creme);
  color: var(--texte-corps);
  font-family: var(--font-corps);
  font-size: 1.0625rem;      /* 17px — confortable pour le public visé */
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-titre);
  color: var(--texte);
  line-height: 1.15;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.375rem); font-weight: 800; letter-spacing: -.015em; }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.125rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2.2vw, 1.3125rem); font-weight: 700; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--vert);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--orange); text-decoration-thickness: 2px; }

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

/* <picture> ne sert qu'à proposer une source AVIF : il ne doit pas créer de boîte
   supplémentaire, sans quoi les règles de mise en page ciblant l'image ne
   s'appliqueraient plus correctement. */
picture { display: contents; }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

strong { color: var(--texte); font-weight: 700; }

/* --- Accessibilité : focus visible sur tout élément interactif --- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.saut-contenu {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--vert);
  color: var(--creme);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  text-decoration: none;
}
.saut-contenu:focus {
  left: 0;
  color: var(--creme);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Structure
   ========================================================================== */

.conteneur {
  width: 100%;
  max-width: var(--largeur);
  margin-inline: auto;
  padding-inline: 20px;
}

main { flex: 1; }

.section       { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--haut { padding-top: clamp(2rem, 4vw, 3.5rem); }
.section--vert { background: var(--vert); color: var(--vert-clair); }
.section--vert h2, .section--vert h3 { color: var(--creme); }

.entete-page { max-width: 70ch; }
.entete-page p.chapo {
  font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
  color: var(--texte-corps);
}

/* ==========================================================================
   Bandeau haut
   ========================================================================== */

.bandeau {
  background: var(--vert);
  color: var(--creme);
  text-align: center;
  padding: 10px 20px;
  font-size: .9375rem;
}
/* Jaune éclairci : #E9B44C sur le vert ne donne que 3,8:1, insuffisant à cette taille. */
.bandeau strong { color: #F7DFA6; }
.bandeau a { color: var(--creme); font-weight: 600; }
.bandeau a:hover { color: #F7DFA6; }

/* ==========================================================================
   En-tête et navigation
   ========================================================================== */

.entete {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, .97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bordure);
}

.entete__barre {
  max-width: 1400px;
  margin-inline: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { flex: none; display: flex; align-items: center; text-decoration: none; }
.logo img { height: 44px; width: auto; }

/* --- Bouton hamburger (mobile) --- */
.nav-bascule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vert);
  color: var(--creme);
  border: none;
  border-radius: var(--pastille);
  padding: 10px 16px;
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: .9375rem;
  cursor: pointer;
}
.nav-bascule__traits {
  display: inline-block;
  width: 18px; height: 2px;
  background: currentColor;
  position: relative;
}
.nav-bascule__traits::before,
.nav-bascule__traits::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: currentColor;
}
.nav-bascule__traits::before { top: -6px; }
.nav-bascule__traits::after  { top:  6px; }

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--creme);
  border-bottom: 1px solid var(--bordure);
  box-shadow: var(--ombre-fort);
  padding: 12px 20px 20px;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.nav.est-ouverte { display: block; }

/* Repli sans JavaScript : le menu reste déplié et le hamburger disparaît,
   pour que le site demeure navigable même si le script ne se charge pas.
   La classe "sans-js" est retirée par un script en ligne dans <head>. */
.sans-js .nav {
  display: block;
  position: static;
  box-shadow: none;
  border-bottom: none;
  padding: 0 0 12px;
  max-height: none;
}
.sans-js .nav ul { flex-direction: row; flex-wrap: wrap; }
.sans-js .nav-bascule { display: none; }
.sans-js .entete__barre { flex-wrap: wrap; }

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--vert);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}
.nav a:hover { background: var(--vert-clair); color: var(--vert); }
.nav a[aria-current="page"] { background: var(--vert); color: var(--creme); }

/* ==========================================================================
   Boutons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--pastille);
  font-family: var(--font-corps);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--principal {
  background: var(--vert);
  border-color: var(--vert);
  color: var(--creme);
}
.btn--principal:hover { background: var(--vert-fonce); border-color: var(--vert-fonce); color: var(--creme); }

.btn--secondaire {
  background: transparent;
  border-color: var(--vert);
  color: var(--vert);
}
.btn--secondaire:hover { background: var(--vert-clair); color: var(--vert-fonce); }

.btn--orange {
  background: var(--orange-texte);
  border-color: var(--orange-texte);
  color: var(--blanc);
}
.btn--orange:hover { background: var(--orange-texte-survol); border-color: var(--orange-texte-survol); color: var(--blanc); }

.btn--nuit {
  background: var(--vert-nuit);
  border-color: var(--vert-nuit);
  color: var(--creme);
}
.btn--nuit:hover { background: var(--vert); border-color: var(--vert); color: var(--creme); }

.btn--petit { padding: 10px 20px; font-size: .9375rem; }

.groupe-btn { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Pastilles / étiquettes
   ========================================================================== */

.pastille {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--pastille);
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.3;
}
.pastille--legere   { background: var(--vert-clair);   color: var(--vert); }
.pastille--moderee  { background: var(--jaune-clair);  color: #7A5D18; }
.pastille--soutenue { background: var(--orange-clair); color: var(--orange-fonce); }
.pastille--lieu     { background: var(--bordure-douce);color: #4E5C52; }
.pastille--visio    { background: var(--bleu-clair);   color: var(--bleu); }
.pastille--cancer   { background: var(--rose-clair);   color: var(--rose-fonce); }

.etiquette-section {
  display: inline-block;
  background: var(--vert-clair);
  color: var(--vert);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--pastille);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Cartes
   ========================================================================== */

.carte {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 26px;
  box-shadow: var(--ombre);
}
.carte h3 { margin-bottom: .35rem; }
.carte > :last-child { margin-bottom: 0; }

.grille { display: grid; gap: 18px; }
.grille--2 { grid-template-columns: 1fr; }
.grille--3 { grid-template-columns: 1fr; }
.grille--4 { grid-template-columns: 1fr 1fr; }
.grille--6 { grid-template-columns: 1fr 1fr; }

/* ==========================================================================
   Hero (accueil)
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 4rem);
}
.hero__texte { display: flex; flex-direction: column; gap: 20px; }
.hero__texte h1 { margin: 0; }
.hero__texte h1 .accent { color: var(--orange); }
.hero__accroche {
  font-size: clamp(1.0625rem, 2.4vw, 1.1875rem);
  color: var(--texte-corps);
  max-width: 52ch;
  margin: 0;
}
.hero__media { position: relative; }
.hero__media::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--jaune);
  border-radius: var(--rayon-lg);
  opacity: .35;
}
.hero__media img {
  position: relative;
  width: 100%;
  height: clamp(230px, 45vw, 420px);
  object-fit: cover;
  border-radius: var(--rayon-lg);
}

/* --- Bloc image + texte alterné --- */
.duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.duo__media img {
  width: 100%;
  height: clamp(230px, 42vw, 380px);
  object-fit: cover;
  border-radius: var(--rayon-lg);
}

/* ==========================================================================
   Valeurs
   ========================================================================== */

.valeurs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.valeur {
  background: rgba(255, 250, 240, .08);
  border: 1px solid rgba(255, 250, 240, .22);
  border-radius: var(--rayon);
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.valeur__icone {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.valeur__icone svg { width: 24px; height: 24px; }
.valeur__nom { color: var(--creme); font-weight: 700; font-size: .9375rem; }

/* --- Liste à puces colorées --- */
.liste-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.liste-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.55;
}
.liste-points li::before {
  content: '';
  flex: none;
  width: 9px; height: 9px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--vert-doux);
}
.liste-points li:nth-child(4n+1)::before { background: var(--orange); }
.liste-points li:nth-child(4n+2)::before { background: var(--jaune); }
.liste-points li:nth-child(4n+3)::before { background: var(--vert-doux); }
.liste-points li:nth-child(4n+4)::before { background: var(--vert); }

/* ==========================================================================
   Fiches activités
   ========================================================================== */

.activite {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-left: 6px solid var(--vert-doux);
  border-radius: var(--rayon);
  padding: 26px 22px;
  box-shadow: var(--ombre);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.activite--soutenue { border-left-color: var(--orange); }
.activite--moderee  { border-left-color: var(--jaune); }
.activite--legere   { border-left-color: var(--vert-doux); }
.activite--cancer   { border-left-color: var(--rose); border-color: #EED0ED; }

.activite__titre { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.activite__titre h2 { margin: 0; font-size: clamp(1.3125rem, 3vw, 1.6875rem); }
.activite__slogan {
  font-style: italic;
  color: var(--orange-texte);   /* 4.6:1 sur blanc */
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 0;
}
.activite__objectifs {
  margin: 0;
  padding-left: 1.25rem;
  columns: 1;
  font-size: 1rem;
  line-height: 1.65;
}
.activite__pied {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--bordure-douce);
  padding-top: 16px;
}
.activite__lieu { font-size: .9375rem; color: var(--texte-discret); }
.activite__pied .btn { margin-left: auto; }

.separateur-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.separateur-section::before,
.separateur-section::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bordure);
}
.separateur-section h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  color: var(--rose-fonce);
  text-align: center;
}

/* ==========================================================================
   Planning
   ========================================================================== */

.planning { display: grid; grid-template-columns: 1fr; gap: 20px; }

.jour { display: flex; flex-direction: column; gap: 10px; }
.jour__titre {
  background: var(--vert);
  color: var(--creme);
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: .06em;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  margin: 0;
}

.creneau {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-top: 4px solid var(--vert-doux);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--ombre);
}
.creneau--legere   { border-top-color: var(--vert-doux); }
.creneau--moderee  { border-top-color: var(--jaune); }
.creneau--soutenue { border-top-color: var(--orange); }
.creneau--cancer   { border-top-color: var(--rose); }

.creneau__heure { font-weight: 700; font-size: .875rem; color: var(--vert); }
.creneau--moderee  .creneau__heure { color: #7A5D18; }
.creneau--soutenue .creneau__heure { color: var(--orange-fonce); }
.creneau--cancer   .creneau__heure { color: var(--rose-fonce); }
.creneau__nom  { font-weight: 700; font-size: .9375rem; color: var(--texte); }
.creneau__lieu { font-size: .8125rem; color: var(--texte-discret); }
.creneau__visio { font-size: .8125rem; color: var(--bleu); font-weight: 700; }

.legende {
  display: flex;
  gap: 8px 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}
.legende__titre {
  font-weight: 700;
  font-size: .8125rem;
  color: var(--texte-discret);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.legende__item { display: inline-flex; align-items: center; gap: 7px; font-size: .9375rem; }
.legende__puce { width: 13px; height: 13px; border-radius: 3px; flex: none; }

/* ==========================================================================
   Tarifs
   ========================================================================== */

.tarif-bloc {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  overflow: hidden;
  box-shadow: var(--ombre);
}
.tarif-bloc__entete { padding: 20px 24px; }
.tarif-bloc__entete h2 { margin: 0; font-size: 1.375rem; color: var(--creme); }
.tarif-bloc__entete p  { margin: 4px 0 0; font-size: .9375rem; }
.tarif-bloc__entete--collectif { background: var(--vert); }
.tarif-bloc__entete--collectif p { color: var(--vert-pale); }
.tarif-bloc__entete--individuel { background: var(--orange-texte); }
.tarif-bloc__entete--individuel p { color: var(--blanc); }

.tableau-enveloppe { overflow-x: auto; }

table.tarifs {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
table.tarifs caption { text-align: left; padding: 14px 24px 0; color: var(--texte-discret); font-size: .875rem; }
table.tarifs th, table.tarifs td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid var(--bordure-douce);
  vertical-align: top;
}
table.tarifs thead th { border-bottom: 2px solid var(--bordure-douce); }
table.tarifs tbody tr:last-child th,
table.tarifs tbody tr:last-child td { border-bottom: none; }
table.tarifs th[scope="row"] { text-align: left; font-weight: 700; color: var(--texte); padding-left: 24px; }
table.tarifs .col-solo { color: var(--vert); }
table.tarifs .col-duo  { color: var(--orange-texte); }
.prix { font-size: 1.1875rem; font-weight: 700; color: var(--texte); display: block; }
.prix-detail { font-size: .8125rem; color: var(--texte-discret); display: block; }
.prix-fiscal { font-size: .8125rem; color: var(--vert); display: block; }

.encart {
  border-radius: var(--rayon);
  padding: 26px 28px;
}
.encart--jaune { background: var(--jaune); }
.encart--jaune h3 { margin-bottom: .3rem; }
.encart--jaune p  { color: #4A3A16; }
.encart--vert  { background: var(--vert-clair); }
.encart--vert h3 { color: var(--vert); margin-bottom: .3rem; }
.encart--rose  { background: var(--rose-clair); }
.encart--rose h3 { color: var(--rose-fonce); margin-bottom: .3rem; }

/* Bandeau d'avertissement / information importante */
.avertissement {
  background: var(--bleu-clair);
  border-left: 5px solid var(--bleu);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: .9375rem;
}
.avertissement strong { color: #1F4A61; }

.a-completer {
  background: #FFF3CD;
  border: 1px dashed #B58A0F;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: .9375rem;
  color: #6B5200;
}
.a-completer strong { color: #6B5200; }

/* ==========================================================================
   Étapes numérotées
   ========================================================================== */

.etape__num {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.etape__num--1 { background: var(--vert);   color: var(--creme); }
.etape__num--2 { background: var(--jaune);  color: var(--vert-nuit); }
.etape__num--3 { background: var(--orange); color: var(--blanc); }

/* ==========================================================================
   Équipe
   ========================================================================== */

.coach {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  box-shadow: var(--ombre);
}
.coach__aside { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.coach__photo {
  width: 190px; height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--vert-clair);
}
.coach__initiales {
  width: 190px; height: 190px;
  border-radius: 50%;
  background: var(--vert-clair);
  border: 4px solid var(--vert-clair);
  color: var(--vert);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-weight: 800;
  font-size: 3.5rem;
  flex: none;
}
.coach__nom  { font-family: var(--font-titre); font-weight: 800; font-size: 1.375rem; color: var(--texte); }
.coach__role { font-size: .9375rem; color: var(--orange-texte); font-weight: 700; }

.membre {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--ombre);
}
.membre__avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-weight: 800;
  font-size: 1.125rem;
  flex: none;
}
.membre__nom  { font-weight: 700; font-size: 1.0625rem; color: var(--texte); }
.membre__role { font-size: .9375rem; color: var(--texte-discret); }

/* ==========================================================================
   Bienfaits / sources
   ========================================================================== */

.bienfait {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--ombre);
}
.bienfait__titre {
  font-weight: 700;
  font-size: .875rem;
  color: var(--vert);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.bienfait p { font-size: 1rem; margin: 0; }

.source-ref {
  font-size: .8125rem;
  color: var(--texte-discret);
  margin-top: 10px;
  display: block;
}

/* ==========================================================================
   FAQ (accordéon natif)
   ========================================================================== */

.faq-item {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: 14px; }
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
  color: var(--vert);
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--orange);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { background: var(--creme); }
.faq-item__reponse { padding: 0 24px 22px; }
.faq-item__reponse > :last-child { margin-bottom: 0; }

/* ==========================================================================
   Événements
   ========================================================================== */

.evenement {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--ombre);
}
.evenement__date {
  flex: none;
  width: 86px;
  text-align: center;
  border-radius: 12px;
  padding: 12px 8px;
}
.evenement__jour  { font-family: var(--font-titre); font-weight: 800; font-size: 1.375rem; line-height: 1; }
.evenement__mois  { font-family: var(--font-titre); font-weight: 800; font-size: .9375rem; }
.evenement__annee { font-size: .78125rem; font-weight: 700; }
.evenement h3 { margin-bottom: .2rem; }
.evenement p  { margin: 0; font-size: .9375rem; color: var(--texte-discret); }

/* ==========================================================================
   Partenaires
   ========================================================================== */

.partenaire {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 26px 18px;
  text-align: center;
  font-family: var(--font-titre);
  font-weight: 700;
  font-size: 1rem;
  color: var(--vert);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  box-shadow: var(--ombre);
}

/* ==========================================================================
   Contact / formulaire
   ========================================================================== */

.contact-moyen {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--ombre);
}
.contact-moyen__icone {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-moyen__icone svg { width: 22px; height: 22px; }
.contact-moyen h3 { margin: 0 0 3px; font-size: 1.0625rem; }
.contact-moyen a { word-break: break-word; }

.formulaire { display: grid; gap: 18px; }
.champ { display: flex; flex-direction: column; gap: 6px; }
.champ label { font-weight: 700; color: var(--texte); font-size: .9375rem; }
.champ .aide  { font-size: .8125rem; color: var(--texte-discret); font-weight: 400; }
.champ input,
.champ select,
.champ textarea {
  font-family: var(--font-corps);
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid var(--bordure);
  border-radius: 10px;
  background: var(--blanc);
  color: var(--texte);
  width: 100%;
}
.champ input:focus,
.champ select:focus,
.champ textarea:focus { border-color: var(--vert); }
.champ textarea { min-height: 130px; resize: vertical; }
/* Champ leurre anti-spam : invisible pour les humains, rempli par les robots.
   Netlify jette la soumission si le champ bot-field est renseigné.
   Volontairement décalé hors écran plutôt que display:none, que certains robots détectent. */
.pot-de-miel {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.champ--case { flex-direction: row; align-items: flex-start; gap: 10px; }
.champ--case input { width: auto; margin-top: 4px; flex: none; }
.champ--case label { font-weight: 400; font-size: .9375rem; }
.obligatoire { color: var(--orange-texte); }

.lieu {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 20px 22px;
  box-shadow: var(--ombre);
}
.lieu h3 { margin-bottom: .25rem; font-size: 1.0625rem; }
.lieu p  { margin: 0 0 .5rem; font-size: .9375rem; color: var(--texte-discret); }
.lieu .activites-lieu { font-size: .875rem; color: var(--texte-corps); }

/* ==========================================================================
   Appel à l'action
   ========================================================================== */

.cta {
  background: var(--jaune);
  border-radius: var(--rayon-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta h2 { margin: 0 0 6px; font-size: clamp(1.5rem, 3.4vw, 2rem); font-weight: 800; }
.cta p  { margin: 0; color: #4A3A16; font-size: 1.0625rem; }

/* ==========================================================================
   Pied de page
   ========================================================================== */

.pied {
  background: var(--vert-nuit);
  color: var(--vert-pale);          /* 5.0:1 sur #23372E */
  padding: 44px 0 28px;
  margin-top: auto;
  font-size: .9375rem;
}
.pied a { color: var(--vert-pale); }
.pied a:hover { color: var(--jaune); }
.pied__grille {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.pied__marque { font-family: var(--font-titre); font-weight: 800; font-size: 1.1875rem; color: var(--creme); }
.pied__marque .accent { color: var(--orange); }
.pied h2 { font-size: .9375rem; color: var(--creme); margin: 0 0 10px; font-family: var(--font-corps); font-weight: 700; }
.pied ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.pied__bas {
  border-top: 1px solid rgba(213, 227, 214, .25);
  margin-top: 28px;
  padding-top: 18px;
  font-size: .8125rem;
  color: #A9C0B1;          /* 6.4:1 sur #23372E */
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.pied__bas a { color: #A9C0B1; }

/* ==========================================================================
   Points de rupture
   ========================================================================== */

@media (min-width: 560px) {
  .grille--3 { grid-template-columns: 1fr 1fr; }
  .valeurs   { grid-template-columns: repeat(3, 1fr); }
  .cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 40px 44px; }
  .cta .btn { flex: none; }
  .activite__objectifs { columns: 2; column-gap: 32px; }
  .activite { padding: 30px 32px; }
  .coach__photo, .coach__initiales { width: 220px; height: 220px; }
}

@media (min-width: 760px) {
  .conteneur { padding-inline: 28px; }
  .grille--2 { grid-template-columns: 1fr 1fr; }
  .grille--4 { grid-template-columns: repeat(4, 1fr); }
  .grille--6 { grid-template-columns: repeat(3, 1fr); }
  .hero { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; }
  .duo  { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
  .valeurs { grid-template-columns: repeat(3, 1fr); }
  .coach { grid-template-columns: 260px 1fr; gap: 36px; padding: 36px; }
  .planning { grid-template-columns: repeat(2, 1fr); }
  .pied__grille { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
}

@media (min-width: 1000px) {
  .grille--3 { grid-template-columns: repeat(3, 1fr); }
  .grille--6 { grid-template-columns: repeat(6, 1fr); }
  .valeurs   { grid-template-columns: repeat(6, 1fr); }
  .planning  { grid-template-columns: repeat(5, 1fr); align-items: start; }

  /* Navigation horizontale : on masque le hamburger */
  .nav-bascule { display: none; }
  .nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    max-height: none;
    overflow: visible;
  }
  .nav ul { flex-direction: row; flex-wrap: wrap; justify-content: flex-end; gap: 2px; }
  .nav a {
    padding: 8px 11px;
    font-size: .8125rem;      /* 13px — lisible, contre 11,5px en majuscules auparavant */
    letter-spacing: .01em;
    white-space: nowrap;
  }
}

/* ==========================================================================
   Impression
   ========================================================================== */

@media print {
  .bandeau, .entete, .cta, .nav-bascule, .saut-contenu { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .carte, .activite, .creneau, .coach { box-shadow: none; border: 1px solid #bbb; break-inside: avoid; }
  .pied { background: #fff; color: #000; border-top: 1px solid #bbb; }
  .pied a, .pied__bas { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
