/* =================================================================
   LMNS Training – Feuille de style principale
   Toutes les couleurs / polices sont réglables dans :root ci-dessous
   ================================================================= */

:root {
  /* Couleurs de la marque */
  --accent:        #C4895F;   /* orange-brun pastel (boutons)   */
  --accent-dark:   #A86F47;   /* au survol                      */
  --accent-light:  #F3E6DA;   /* très clair (étiquettes, fonds) */
  --dark:          #3B2F27;   /* titres (brun très foncé)       */
  --text:          #4A4039;   /* texte courant                  */
  --muted:         #8A7E75;   /* texte secondaire               */

  /* Fonds */
  --bg:            #F8F7F4;   /* gris très clair / blanc cassé  */
  --bg-alt:        #F1EFEA;   /* variante un peu plus soutenue  */
  --card:          #FFFFFF;   /* encadrés                       */
  --sand:          #EADFCB;   /* bas de page : beige sable      */
  --white:         #FFFFFF;

  /* Typographie
     Kepler est une police Adobe : voir le <link> dans index.html.
     Tant qu'elle n'est pas activée, "Playfair Display" (gratuite, très proche) prend le relais. */
  --font-title: "kepler-std-display", "kepler-std", "Playfair Display", Georgia, serif;
  --font-body:  "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Divers */
  --radius:  16px;
  --shadow:  0 10px 30px rgba(59, 47, 39, 0.07);
  --max-w:   1100px;
  --ease:    cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
address { font-style: normal; }
strong { font-weight: 500; }

/* ---------- Utilitaires ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 760px; }
.section { padding: clamp(64px, 10vw, 110px) 0; }
.section__title {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: .01em;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
}
.section__title::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px auto 0;
}

.icon, .icon-fill { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.icon { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-fill { fill: currentColor; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(196, 137, 95, .3);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* =================================================================
   SECTION 1 : HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;              /* hauteur correcte sur mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  /* Couleur de secours si la photo n'est pas encore là */
  background: linear-gradient(160deg, #6E5A4B 0%, #3B2F27 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 18s ease-out forwards;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.12) 40%, rgba(0,0,0,.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  padding: 100px 20px 120px;
}
.hero__title {
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--white);
  font-size: clamp(2.6rem, 10vw, 7rem);
  line-height: 1.05;
  letter-spacing: .01em;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
  animation: fadeUp 1s var(--ease) both;
}
.hero__subtitle {
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 100;                 /* Roboto Thin */
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  letter-spacing: .05em;
  animation: fadeUp 1s .15s var(--ease) both;
}

/* Navigation décalée : grille 2 colonnes
   ligne 1 : Mes formules (centre)
   ligne 2 : Qui suis-je (gauche) | Me contacter (droite)
   ligne 3 : Mes expériences (centre) */
.hero__nav {
  margin: clamp(48px, 9vh, 90px) auto 0;
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "primary primary"
    "left    right"
    "center  center";
  row-gap: 26px;
  align-items: center;
  animation: fadeUp 1s .3s var(--ease) both;
}
.hero__link {
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: .02em;
  text-decoration: none;
  position: relative;
  justify-self: center;
  padding-bottom: 4px;
}
/* Soulignement animé */
.hero__link:not(.hero__link--primary)::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform-origin: left;
  transition: transform .3s var(--ease), background .3s;
}
.hero__link:not(.hero__link--primary):hover::after { background: var(--accent); transform: scaleX(1.15); }

.hero__link--primary {
  grid-area: primary;
  background: var(--accent);
  padding: 15px 48px;
  border-radius: 999px;
  font-size: 1.3rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
  transition: transform .25s var(--ease), background .25s;
}
.hero__link--primary:hover { background: var(--accent-dark); transform: translateY(-2px) scale(1.03); }
.hero__link--left   { grid-area: left;  justify-self: start; margin-left: 8%; }
.hero__link--right  { grid-area: right; justify-self: end;   margin-right: 8%; }
.hero__link--center { grid-area: center; }

/* Petite flèche "scroll" en bas du hero */
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 14px;
  z-index: 1;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%;
  width: 4px; height: 8px; margin-left: -2px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}

/* =================================================================
   SECTION 2 : À PROPOS
   ================================================================= */
.about { text-align: center; background: var(--bg); }
.about__text {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.85;
  color: var(--text);
}
.about__text strong { color: var(--accent-dark); }
.about__logo {
  width: 600px;          /* 👉 taille du logo : change ce chiffre pour l'agrandir / le réduire */
  max-width: 85%;        /* ne dépasse jamais de l'écran sur mobile */
  height: auto;
  margin: 56px auto 0;
}
/* Logo en JPG : fait "disparaître" le fond blanc du logo
   pour qu'il se fonde dans le fond du site (blanc cassé ou sable) */
.about__logo,
.footer__logo { mix-blend-mode: multiply; }

/* =================================================================
   SECTION 3 : ÉQUIPE PARTENAIRE
   ================================================================= */
.partners { background: var(--bg-alt); }
.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.partner-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(59,47,39,.1); }
.partner-card__tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 999px;
}
.partner-card__name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin: 14px 0 8px;
}
.partner-card__place {
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--muted);
  font-size: .95rem;
}
.partner-card__place .icon { margin-top: 4px; color: var(--accent); }

/* Encadré cliquable (lien vers Doctolib, site du partenaire…) */
.partner-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.partner-card--link:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.partner-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--accent-dark);
}
.partner-card__cta span { display: inline-block; transition: transform .25s var(--ease); }
.partner-card--link:hover .partner-card__cta span { transform: translateX(4px); }

/* =================================================================
   SECTION 4 : AVIS
   ================================================================= */
.reviews { background: var(--bg); }
.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid #ECE7E1;
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow);
}
.review-card__stars { color: var(--accent); letter-spacing: 2px; font-size: 1.1rem; }
.review-card__stars .off { color: #E3DDD6; }
.review-card__text { color: var(--text); font-style: italic; flex-grow: 1; }
.review-card__text::before { content: "“"; }
.review-card__text::after  { content: "”"; }
.review-card__footer { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.review-card__name { font-weight: 500; color: var(--dark); }
.review-card__date { font-size: .85rem; color: var(--muted); }

.reviews__status {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 20px 0;
}
.reviews__cta { text-align: center; margin-top: 48px; }
.reviews__cta[hidden] { display: none; }

/* Encadré "Et si ton avis était le premier ?" (aucun avis publié) */
.reviews__empty {
  grid-column: 1 / -1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 2px dashed var(--accent);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 56px);
  box-shadow: var(--shadow);
}
.reviews__empty-stars {
  color: var(--accent);
  font-size: 1.8rem;
  letter-spacing: 6px;
  margin-bottom: 14px;
  animation: starsGlow 2.8s ease-in-out infinite;
}
.reviews__empty-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.reviews__empty-text {
  color: var(--text);
  margin-bottom: 30px;
}
@keyframes starsGlow { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .65; transform: scale(1.06); } }

/* =================================================================
   FOOTER (commun à toutes les pages) – beige sable
   Gauche : logo + « Merci, votre coach sportive »
   Trait vertical
   Droite : coordonnées + réseaux | liens légaux, puis copyright
   ================================================================= */
.footer {
  background: var(--sand);
  color: var(--text);
  padding: 64px 0 36px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1.3fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}
.footer__brand { display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.footer__logo { width: 120px; height: auto; transition: transform .3s var(--ease); }
.footer__logo-link { align-self: flex-start; }
.footer__logo-link:hover .footer__logo { transform: rotate(-4deg) scale(1.04); }
.footer__thanks {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--dark);
}
.footer__divider { background: rgba(59,47,39,.25); }

.footer__info {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  column-gap: 32px;
  row-gap: 40px;
}
.footer__heading {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.footer__address { font-size: .95rem; }
.footer__address p { margin-bottom: 3px; }
.footer__address a { text-decoration: none; }
.footer__address a:hover { color: var(--accent-dark); }

.footer__socials { display: flex; gap: 12px; margin-top: 18px; }
.footer__socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--sand);
  font-size: 1.1rem;
  transition: background .25s, transform .25s var(--ease);
}
.footer__socials a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }

.footer__legal { display: flex; flex-direction: column; gap: 4px; font-size: .88rem; text-align: right; }
.footer__legal a { text-decoration: underline; text-underline-offset: 3px; }
.footer__legal a:hover { color: var(--accent-dark); }
.footer__copy { grid-column: 1 / -1; align-self: end; font-size: .82rem; color: var(--muted); }

/* =================================================================
   BARRE DE MENU (toutes les pages sauf l'accueil)
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 247, 244, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59,47,39,.08);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px;
}
.site-header__logo img { height: 58px; width: auto; mix-blend-mode: multiply; }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 36px); }
.site-nav a {
  font-family: var(--font-title);
  font-size: 1.08rem;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.site-nav a:not(.site-nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--accent-dark); }
.site-nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 999px;
  transition: background .25s;
}
.site-nav__cta:hover { background: var(--accent-dark); }

/* Bouton ☰ (visible seulement sur mobile) */
.site-header__burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  position: relative; z-index: 60;
}
.site-header__burger span {
  position: absolute; left: 10px; right: 10px; height: 1.5px;
  background: var(--dark);
  transition: transform .3s var(--ease), opacity .2s;
}
.site-header__burger span:nth-child(1) { top: 15px; }
.site-header__burger span:nth-child(2) { top: 21px; }
.site-header__burger span:nth-child(3) { top: 27px; }
.menu-open .site-header__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .site-header__burger span:nth-child(2) { opacity: 0; }
.menu-open .site-header__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =================================================================
   PAGE À PROPOS
   ================================================================= */
.page-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 1;
  color: var(--dark);
  margin-bottom: clamp(40px, 7vw, 80px);
}
.about-intro { padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 9vw, 120px); }
.about-intro__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about-intro__tagline {
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--dark);
}
.about-intro__body {
  margin: clamp(48px, 9vw, 130px) 0 0 auto;
  max-width: 440px;
  font-weight: 300;
  font-size: 1.08rem;
}
.about-intro__body p + p { margin-top: 1.1em; }
.about-intro__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);            /* 👉 photo en noir & blanc : supprime cette ligne pour garder la couleur */
  border-radius: 4px;
}

/* Photo de montagne qui défile en entier (cadre fixe, photo qui glisse) */
.pan {
  --header-h: 78px;                 /* hauteur de la barre de menu */
  --pan-speed: 2;                   /* 👉 1 = défile vite, 3 = défile lentement */
  position: relative;
  background: #1f2321;              /* couleur de secours sans photo */
  min-height: 40vh;
}
.pan__frame {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow: hidden;
}
.pan__img {
  display: block;
  width: 100%;
  height: auto;                     /* la photo garde ses proportions : on la voit en entier */
  filter: grayscale(1);             /* 👉 noir & blanc : supprime cette ligne pour garder la couleur */
  will-change: transform;
}
/* Photo moins haute que l'écran (ex. téléphone) : simple affichage, sans défilement */
.pan.is-static { min-height: 0; }
.pan.is-static .pan__frame { position: relative; top: 0; height: auto; }

/* Mon histoire */
.story { padding: clamp(64px, 9vw, 110px) 0; }
.eyebrow {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.story__lead {
  max-width: 720px;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.story__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.story__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: end;
}
.story__photos img { width: 100%; object-fit: cover; border-radius: 4px; }
.story__photo--tall  { aspect-ratio: 3 / 4.3; }
.story__photo--small { aspect-ratio: 1 / 1; width: 88% !important; margin-bottom: 0; }
.story__text { font-weight: 300; font-size: 1rem; }
.story__text p + p { margin-top: 1em; }
.story__text .btn { margin-top: 30px; }
.story__cta { text-align: right; }

/* Pastille ronde avec icône (diplômes, expérience) */
.round-icon {
  width: 48px; height: 48px;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 1.35rem;
}

/* Diplômes & Formations */
.diplomas { background: var(--bg-alt); }
.diplomas__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.diploma-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}
.diploma-card__badge {
  position: absolute; top: 34px; right: 30px;
  font-size: .75rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 999px;
}
.diploma-card__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--dark);
  margin: 20px 0 4px;
}
.diploma-card__meta {
  font-size: .85rem; font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.diploma-card__text { font-size: .98rem; }

/* Mon expérience */
.xp__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.xp__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}
.xp__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 36px;
}
.xp__list { list-style: none; display: grid; gap: 28px; }
.xp-item { display: flex; gap: 18px; align-items: flex-start; }
.xp-item__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.xp-item p { font-size: .98rem; }

/* Appel à l'action en fin de page */
.about-cta { padding: 0 0 clamp(64px, 9vw, 110px); }
.about-cta__inner {
  text-align: center;
  padding-top: clamp(48px, 7vw, 72px);
  border-top: 1px solid rgba(59,47,39,.12);
}
.about-cta__text {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 26px;
}
.about-cta__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

.btn--outline {
  border: 1.5px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn--outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

/* =================================================================
   PAGE MES FORMULES
   ================================================================= */
.pricing { padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 9vw, 110px); }
.pricing .section__title { margin-bottom: 32px; }

/* Bascule Avec / Sans engagement */
.billing-toggle {
  display: flex; width: fit-content;
  margin: 0 auto 48px;
  padding: 5px;
  background: var(--bg-alt);
  border: 1px solid rgba(59,47,39,.1);
  border-radius: 999px;
}
.billing-toggle__btn {
  font: inherit; font-size: .98rem; font-weight: 400;
  color: var(--text);
  background: transparent; border: 0; cursor: pointer;
  padding: 11px 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s, color .25s, box-shadow .25s;
}
.billing-toggle__btn.is-active { background: var(--card); color: var(--dark); font-weight: 500; box-shadow: 0 4px 14px rgba(59,47,39,.1); }
.billing-toggle__tag {
  font-size: .7rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); background: var(--accent);
  padding: 3px 8px; border-radius: 999px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(59,47,39,.12);
  border-radius: var(--radius);
  padding: 40px 28px 34px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card--featured { border: 2px solid var(--accent); box-shadow: var(--shadow); }
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); background: var(--accent);
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.price-card__name {
  font-family: var(--font-title); font-weight: 400;
  font-size: 1.5rem; color: var(--dark);
}
.price-card__price {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5vw, 3.3rem);
  line-height: 1.1;
  color: var(--accent-dark);
  margin: 18px 0 4px;
}
.price-card__amount { display: inline-block; transition: opacity .2s, transform .2s; }
.price-card__amount.is-changing { opacity: 0; transform: translateY(-6px); }
.price-card__per { font-size: .45em; color: var(--muted); margin-left: 2px; }
.price-card__save {
  font-size: .85rem; font-weight: 500; color: var(--accent-dark);
  min-height: 1.4em;
  transition: opacity .25s;
}
.is-libre .price-card__save { opacity: 0; }
.price-card__volume {
  display: inline-block;
  margin-top: 8px;
  font-size: .85rem; font-weight: 500; letter-spacing: .04em;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 999px;
}
.price-card__for {
  margin-top: 20px;
  width: 100%;
  text-align: left;
  background: var(--bg);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: .93rem;
}
.price-card__for-title { font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.pricing__hesite { text-align: center; margin-top: 28px; font-size: 1rem; }
.pricing__hesite a { color: var(--accent-dark); font-weight: 500; }
.price-card__list {
  list-style: none;
  margin: 24px 0 30px;
  display: grid; gap: 10px;
  align-content: start;
  flex-grow: 1;
}
.price-card__list li { display: flex; gap: 10px; align-items: flex-start; text-align: left; }
.price-card__list li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 4px;
  border-radius: 50%;
  background: var(--accent-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A86F47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.price-card__btn { padding: 12px 34px; }

.price-card__list li.is-bonus { color: var(--accent-dark); font-weight: 400; }
.price-card__list li.is-bonus::before {
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Inclus dans toutes les formules */
.includes {
  margin: 56px auto 0;
  max-width: 980px;
  text-align: center;
}
.includes__title {
  font-family: var(--font-title); font-weight: 400;
  font-size: 1.5rem; color: var(--dark);
  margin-bottom: 24px;
}
.includes__list {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.includes__list li {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: .98rem;
}

/* Bilan offert */
.offer {
  margin: 56px auto 0;
  max-width: 980px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: var(--card);
  border: 2px dashed var(--accent);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
}
.offer__eyebrow {
  font-size: .8rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-dark);
}
.offer__title {
  font-family: var(--font-title); font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  color: var(--dark);
  margin: 4px 0 10px;
}
.offer__text { max-width: 560px; }
.offer__btn { flex-shrink: 0; }

.pricing__note {
  text-align: center;
  max-width: 640px;
  margin: 36px auto 0;
  font-size: .95rem;
  color: var(--muted);
}
.pricing__note strong { color: var(--text); }

/* L'engagement pour la performance */
.engage { background: var(--accent-light); }
.engage__title {
  font-family: var(--font-title); font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--dark);
  text-align: center;
  margin-bottom: 36px;
}
.engage__text { font-size: 1.05rem; }
.engage__text p + p { margin-top: 1.1em; }
.engage__cta { text-align: center; margin-top: 40px; }

/* Cours à l'unité */
.units__list { list-style: none; max-width: 820px; margin: 0 auto; }
.unit {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(59,47,39,.15);
}
.unit:first-child { border-top: 1px solid rgba(59,47,39,.15); }
.unit__name {
  font-family: var(--font-title); font-weight: 400;
  font-size: 1.4rem; color: var(--dark);
  margin-bottom: 4px;
}
.unit__desc { font-size: .95rem; }
.unit__perk { font-size: .85rem; font-weight: 500; color: var(--accent-dark); margin-top: 4px; }
.unit__price {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1;
  color: var(--dark);
  white-space: nowrap;
}
.unit__price span { font-size: .45em; color: var(--muted); margin-left: 2px; }
.units__question { text-align: center; margin-top: 44px; }
.units__question a { color: var(--accent-dark); font-weight: 500; }

/* =================================================================
   PAGES LÉGALES (mentions légales, confidentialité)
   ================================================================= */
.legal { padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 9vw, 110px); }
.legal .page-title { font-size: clamp(2.4rem, 7vw, 4.2rem); margin-bottom: 12px; }
.legal__updated { font-size: .9rem; color: var(--muted); margin-bottom: 40px; }
.legal__intro { font-size: 1.1rem; margin-bottom: 12px; }
.legal__block { padding: 32px 0; border-bottom: 1px solid rgba(59,47,39,.12); }
.legal__block:last-child { border-bottom: 0; }
.legal h2 {
  font-family: var(--font-title); font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--dark);
  margin-bottom: 14px;
}
.legal p + p, .legal ul + p, .legal p + ul, .legal__table-wrap + p { margin-top: 12px; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent-dark); }
.legal strong { color: var(--dark); }

.legal h3 {
  font-weight: 500; font-size: 1.02rem; color: var(--dark);
  margin: 20px 0 8px;
}
.legal__box {
  margin-top: 16px;
  background: var(--card);
  border: 1px solid rgba(59,47,39,.12);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: .95rem;
}
.pricing__cgv { text-align: center; font-size: .88rem; color: var(--muted); margin-top: 10px; }
.pricing__cgv a { color: var(--accent-dark); }

/* Tableau (s'il est trop large sur mobile, il défile horizontalement dans son cadre) */
.legal__table-wrap { overflow-x: auto; margin-top: 4px; }
.legal__table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .93rem; }
.legal__table th, .legal__table td {
  text-align: left; vertical-align: top;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(59,47,39,.12);
}
.legal__table th {
  font-weight: 500; color: var(--dark);
  background: var(--accent-light);
}

/* Passages à compléter : bien visibles tant qu'ils ne sont pas remplis */
mark.todo {
  background: #FFF1B8;
  color: #6B4E00;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: .92em;
}

/* =================================================================
   FORMULAIRES (Contact, Avis)
   ================================================================= */
.contact-page, .review-page { padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 9vw, 110px); }
.page-intro { font-size: 1.12rem; max-width: 640px; margin: -24px 0 44px; }
.page-intro strong { color: var(--accent-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.form-card {
  background: var(--card);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form { display: grid; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 7px; border: 0; min-width: 0; }
.field label, .field legend { font-weight: 400; font-size: .95rem; color: var(--dark); }
.field legend { margin-bottom: 8px; }
.req { color: var(--accent-dark); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%;
  font: inherit; font-weight: 300; font-size: 1rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid #E4DDD5;
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A86F47' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  padding-right: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196,137,95,.15);
}
.field__hint { font-size: .82rem; color: var(--muted); }
.field__error { display: none; font-size: .85rem; color: #B3261E; }
.field.has-error .field__error { display: block; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #D9534F; }

/* Choix en pastilles (engagement) */
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: inline-block; cursor: pointer;
  padding: 9px 16px;
  border: 1.5px solid #E4DDD5; border-radius: 999px;
  font-size: .92rem;
  transition: all .2s;
}
.choice input:checked + span { background: var(--accent); border-color: var(--accent); color: var(--white); }
.choice input:focus-visible + span { box-shadow: 0 0 0 4px rgba(196,137,95,.25); }

/* Case à cocher */
.checkbox { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: .95rem; }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }

/* Note en étoiles (les étoiles s'allument de gauche à droite) */
.rating { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rating input { position: absolute; opacity: 0; pointer-events: none; }
.rating label {
  font-size: 2.4rem; line-height: 1;
  color: #E3DDD6; cursor: pointer;
  transition: color .15s, transform .15s;
}
.rating label:hover, .rating label:hover ~ label,
.rating input:checked ~ label { color: var(--accent); }
.rating label:hover { transform: scale(1.12); }
.rating input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.form__info { font-size: .85rem; color: var(--muted); }
.form__info a { color: var(--accent-dark); }
.form__status {
  font-size: .95rem;
  background: #FDECEA; color: #8C1D18;
  border-radius: 12px; padding: 14px 16px;
}
.form__status a { color: inherit; font-weight: 500; }
.form__submit { justify-self: start; }
.form__submit:disabled { opacity: .6; cursor: wait; transform: none; }

/* Message de confirmation */
.form-success { text-align: center; padding: 20px 0; }
.form-success .round-icon { width: 64px; height: 64px; font-size: 1.8rem; margin-bottom: 16px; }
.form-success__title {
  font-family: var(--font-title); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--dark);
  margin-bottom: 8px;
}
.form-success p { margin-bottom: 26px; }

/* Colonne coordonnées */
.contact-aside { display: grid; gap: 28px; }
.contact-aside__title {
  font-family: var(--font-title); font-weight: 400;
  font-size: 1.6rem; color: var(--dark);
}
.contact-aside__list { list-style: none; display: grid; gap: 20px; }
.contact-aside__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-aside__label { font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-aside__list a { color: var(--dark); font-weight: 400; text-decoration: none; }
.contact-aside__list a:hover { color: var(--accent-dark); text-decoration: underline; }
.contact-aside__offer {
  border: 2px dashed var(--accent);
  border-radius: 18px;
  padding: 22px 24px;
}

/* Utilitaires d'accessibilité / anti-spam */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =================================================================
   PAGE EN CONSTRUCTION (Mon blog)
   ================================================================= */
.construction {
  min-height: calc(100vh - 78px);
  display: flex; align-items: center;
  padding: clamp(56px, 9vw, 110px) 0;
}
.construction__inner { text-align: center; }
.construction__art { width: min(260px, 70%); margin: 0 auto 28px; display: block; }
.construction__mountain { fill: var(--accent-light); stroke: var(--dark); stroke-width: 2; stroke-linejoin: round; }
.construction__snow { fill: var(--white); stroke: var(--dark); stroke-width: 1.5; stroke-linejoin: round; }
.construction__trail {
  fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 6 8;
  animation: trailWalk 1.6s linear infinite;
}
.construction__flag-pole { fill: var(--accent); }
@keyframes trailWalk { to { stroke-dashoffset: -28; } }
.construction__title {
  font-family: var(--font-title); font-weight: 400;
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 1; color: var(--dark);
  margin: 6px 0 14px;
}
.construction__lead { font-size: clamp(1.2rem, 2.6vw, 1.5rem); color: var(--dark); margin-bottom: 10px; }
.construction__text { max-width: 520px; margin: 0 auto 34px; }
.construction__buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* =================================================================
   Image manquante : cadre pointillé pendant le développement
   (la classe .img-missing est ajoutée par js/main.js)
   ================================================================= */
img.img-missing {
  min-height: 80px; min-width: 80px;
  border: 2px dashed #CFC5BA;
  border-radius: 12px;
  background: repeating-linear-gradient(45deg, transparent 0 10px, rgba(0,0,0,.03) 10px 20px);
}
.hero__bg.img-missing,
.pan__img.img-missing { display: none; }

/* =================================================================
   ANIMATIONS
   ================================================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes scrollDot { 0% { opacity: 1; transform: translateY(0); } 80%,100% { opacity: 0; transform: translateY(14px); } }

/* Apparition au scroll (activée par js/main.js) */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 900px) {
  /* Menu mobile */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--bg); }
  .site-header__burger { display: block; }
  .site-nav {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 28px;
    background: var(--bg);
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
  }
  .site-nav a { font-size: 1.7rem; }
  .menu-open .site-nav { opacity: 1; visibility: visible; }
  .menu-open { overflow: hidden; }

  .about-intro__grid,
  .story__grid,
  .xp__grid { grid-template-columns: 1fr; }
  .xp__photo { max-width: 460px; }
  .about-intro__body { margin: 32px 0 0; max-width: none; }
  .about-intro__photo { max-width: 460px; }
}

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 34px; }
  .includes__list { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .offer { flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  .partners__grid,
  .diplomas__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__divider { height: 1px; }
  .footer__brand { align-items: center; }
  .footer__logo-link { align-self: center; }
  .footer__info { grid-template-columns: 1fr; row-gap: 28px; }
  .footer__socials { justify-content: center; }
  .footer__legal { text-align: center; }
}

@media (max-width: 480px) {
  .hero__nav { row-gap: 22px; }
  .hero__link { font-size: 1.1rem; }
  .hero__link--primary { padding: 14px 38px; font-size: 1.2rem; }
  .hero__link--left  { margin-left: 0; }
  .hero__link--right { margin-right: 0; }
  .review-card { padding: 22px; }
  .story__cta { text-align: center; }
  .billing-toggle__btn { padding: 10px 14px; font-size: .9rem; }
  .billing-toggle__tag { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .form__submit { justify-self: stretch; }
}
