/* =========================================================
   Louissaint Training — Feuille de style
   Charte : blanc rosé / blush / rose framboise
   Typo : Anton (titres) + Montserrat (texte)
   Parti pris : clair, féminin, simple. Mobile-first.
   ========================================================= */

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

html, body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote { margin: 0; padding: 0; }

ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Variables ---------- */
:root {
  --blanc:   #FFFFFF;
  --fond:    #FFFBFC;   /* blanc rosé — fond général */
  --fond-2:  #FBF0F4;   /* blush très clair — bandes alternées */
  --fond-3:  #F6E3EA;   /* blush — surfaces marquées */

  --rose:       #B0567C;
  --rose-vif:   #C4628B;
  --rose-clair: #E9A9C0;
  --rose-pale:  #F9EAF0;
  --rose-fonce: #7E3050;

  --texte:      #2A181F;
  --texte-doux: #6E5A64;

  --ligne:        rgba(176, 86, 124, 0.20);
  --ligne-claire: rgba(42, 24, 31, 0.09);

  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --sans:    "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --serif:   var(--display);

  --degrade-rose: linear-gradient(120deg, #C4628B 0%, #B0567C 55%, #8E3A5C 100%);

  /* Alias historiques (styles inline dans les pages) */
  --or:         var(--rose);
  --or-clair:   var(--rose);
  --or-pale:    var(--rose-pale);
  --degrade-or: var(--degrade-rose);

  /* Compat : anciens noms de fond utilisés par quelques règles */
  --creme:   var(--fond);
  --creme-2: var(--fond-2);
  --noir:    var(--texte);
  --noir-2:  #3A252D;
  --noir-3:  #4A323B;

  --ombre-s: 0 2px 12px rgba(42, 24, 31, 0.05);
  --ombre-m: 0 12px 36px rgba(42, 24, 31, 0.08);
  --ombre-rose: 0 10px 30px rgba(176, 86, 124, 0.26);

  --rayon:    12px;
  --rayon-l:  22px;
  --rayon-xl: 30px;

  --header-h: 72px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--texte);
  background: var(--fond);
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--texte);
}

h3, h4 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.35;
  color: var(--texte);
}

h1 { font-size: clamp(2.3rem, 7.4vw, 4rem); }
h2 { font-size: clamp(1.85rem, 5vw, 2.8rem); }
h3 { font-size: clamp(1.08rem, 2.4vw, 1.3rem); }
h4 { font-size: 1rem; }

p { color: var(--texte-doux); }
main p { margin-bottom: 1.05em; }
main p:last-child { margin-bottom: 0; }

strong, b { font-weight: 600; color: var(--texte); }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.container-etroit { max-width: 760px; }

section { position: relative; }

.section { padding: 68px 0; }
.section-lg { padding: 88px 0; }

/* ---------- Utilitaires ---------- */
.or { color: var(--rose); }
.centre { text-align: center; }
.max-lecture { max-width: 60ch; }
.mx-auto { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.chapo { font-size: 1rem; line-height: 1.8; color: var(--texte-doux); }

.filet {
  width: 52px;
  height: 3px;
  border-radius: 3px;
  background: var(--rose);
  margin: 20px 0;
}
.filet.centre { margin-left: auto; margin-right: auto; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primaire {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--ombre-rose);
}
.btn-primaire:hover { background: var(--rose-fonce); transform: translateY(-2px); }

.btn-contour,
.btn-contour.sur-noir {
  border-color: var(--rose);
  color: var(--rose);
}
.btn-contour:hover,
.btn-contour.sur-noir:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

.btn-bloc { width: 100%; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 252, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ligne-claire);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.marque { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.marque-logo { width: 38px; height: 38px; flex-shrink: 0; }
.marque-texte { display: flex; flex-direction: column; line-height: 1.15; }

.marque-nom {
  font-size: 1rem;
  font-weight: 500;
  color: var(--texte);
  letter-spacing: 0.01em;
}
.marque-nom em { font-style: normal; color: var(--rose); }

.marque-sous {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.75;
}

/* Navigation */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: flex-end;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 23px;
  border-radius: 2px;
  background: var(--texte);
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(2) { width: 15px; background: var(--rose); }
.nav-toggle.ouvert span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.ouvert span:nth-child(2) { opacity: 0; }
.nav-toggle.ouvert span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 23px; }

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--fond);
  border-bottom: 1px solid var(--ligne-claire);
  display: flex;
  flex-direction: column;
  padding: 10px 22px 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s;
}
.site-nav.ouvert { max-height: 80vh; opacity: 1; visibility: visible; overflow-y: auto; }

.site-nav a {
  color: var(--texte);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 2px;
  border-bottom: 1px solid var(--ligne-claire);
  transition: color 0.25s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--rose); }

.site-nav .btn-nav {
  margin-top: 16px;
  background: var(--rose);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  border-bottom: none;
  padding: 14px 20px;
}
/* Sans ça, le survol et la page courante repassent le libellé en rose — donc invisible
   sur le fond rose du bouton. */
.site-nav .btn-nav:hover,
.site-nav .btn-nav[aria-current="page"] { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--fond-2) 0%, var(--fond) 62%);
  color: var(--texte);
  overflow: hidden;
  padding: 66px 0 62px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 82% 8%, rgba(233, 169, 192, 0.42), transparent 62%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }
.hero h1, .hero h2, .hero h3 { color: var(--texte); }
.hero p { color: var(--texte-doux); }

.hero-accueil { padding: 56px 0 64px; }
.hero-inner { max-width: 700px; }
.hero-inner h1 { margin-bottom: 20px; }
.hero-inner .chapo { max-width: 54ch; margin-bottom: 28px; }

.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }

.hero-chiffres {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--ligne);
}

.hero-chiffre b {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
}
.hero-chiffre span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-top: 7px;
}

/* Hero interne */
.hero-page { padding: 56px 0 52px; text-align: center; }
.hero-page h1 { font-size: clamp(2rem, 6.4vw, 3.6rem); margin-bottom: 16px; }
.hero-page .chapo { max-width: 58ch; margin: 0 auto; }

.fil-ariane {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-doux);
  opacity: 0.7;
  margin-bottom: 18px;
}
.fil-ariane a:hover { color: var(--rose); }
.fil-ariane span { margin: 0 8px; opacity: 0.5; }

/* ---------- Bandes ---------- */
.bande-noire { background: var(--fond-2); color: var(--texte); }
.bande-noire h1, .bande-noire h2, .bande-noire h3, .bande-noire h4 { color: var(--texte); }
.bande-noire p { color: var(--texte-doux); }

.bande-creme { background: var(--fond-2); }

.bande-rose, .bande-or { background: var(--rose); color: #fff; }
.bande-rose h2, .bande-rose h3, .bande-or h2, .bande-or h3 { color: #fff; }
.bande-rose p, .bande-or p { color: rgba(255, 255, 255, 0.86); }

/* Ruban défilant */
.ruban { background: var(--rose); padding: 13px 0; overflow: hidden; }
.ruban-piste { display: flex; gap: 38px; white-space: nowrap; animation: defile 38s linear infinite; }
.ruban-piste span {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}
.ruban-piste span::after {
  content: "✦";
  margin-left: 38px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  vertical-align: middle;
}
@keyframes defile { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Titres de section ---------- */
.entete-section { margin-bottom: 40px; }
.entete-section.centre { text-align: center; }
.entete-section h2 { margin-bottom: 14px; }
.entete-section .chapo { max-width: 60ch; }
.entete-section.centre .chapo { margin-left: auto; margin-right: auto; }

/* ---------- Grilles & cartes ---------- */
.grille { display: grid; gap: 20px; }
.grille-2 { grid-template-columns: 1fr; }
.grille-3 { grid-template-columns: 1fr; }
.grille-4 { grid-template-columns: 1fr 1fr; }

.carte {
  background: var(--blanc);
  border: 1px solid var(--ligne-claire);
  border-radius: var(--rayon-l);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carte:hover { transform: translateY(-4px); box-shadow: var(--ombre-m); }

.carte h3 { margin-bottom: 10px; }
.carte p { font-size: 0.92rem; }

.carte-sombre { background: var(--fond-3); border-color: var(--ligne); }

.carte-num {
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--rose);
  opacity: 0.35;
  margin-bottom: 10px;
  display: block;
}

.icone {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-pale);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.icone svg { width: 21px; height: 21px; stroke: var(--rose); fill: none; stroke-width: 1.8; }

/* ---------- Cartes services ---------- */
.carte-service {
  background: var(--blanc);
  border: 1px solid var(--ligne-claire);
  border-radius: var(--rayon-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carte-service:hover { transform: translateY(-5px); box-shadow: var(--ombre-m); }

.carte-service-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--fond-3); }
.carte-service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.carte-service:hover .carte-service-media img { transform: scale(1.05); }

.carte-service-corps { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.carte-service-corps h3 { margin-bottom: 10px; }
.carte-service-corps p { font-size: 0.92rem; flex: 1; }

.etiquette {
  display: inline-block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-fonce);
  background: var(--rose-pale);
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.lien-fleche {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  transition: gap 0.25s ease;
}
.lien-fleche:hover { gap: 13px; }

/* ---------- Listes ---------- */
.liste-or li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 0.93rem;
  color: var(--texte-doux);
}
.liste-or li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: rotate(-45deg);
}
.bande-noire .liste-or li { color: var(--texte-doux); }

/* ---------- Bloc image + texte ---------- */
.duo { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }

.duo-media {
  position: relative;
  border-radius: var(--rayon-xl);
  overflow: hidden;
  box-shadow: var(--ombre-m);
}
.duo-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Galerie ---------- */
.grille-galerie { display: grid; grid-template-columns: 1fr; gap: 16px; }

.galerie-item {
  position: relative;
  border-radius: var(--rayon-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--fond-3);
}
.galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.galerie-item:hover img { transform: scale(1.05); }

.galerie-legende {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(42, 24, 31, 0.82), transparent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.galerie-item.large { aspect-ratio: 4 / 3; }

/* ---------- Résultats avant / après ---------- */
/* Pas de ratio imposé : les montages avant/après ont des formats variables
   et un recadrage couperait l'une des deux moitiés de la photo. */
.grille-resultats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.resultat-item {
  background: var(--blanc);
  border: 1px solid var(--ligne-claire);
  border-radius: var(--rayon-l);
  overflow: hidden;
  box-shadow: var(--ombre-s);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.resultat-item:hover { transform: translateY(-3px); box-shadow: var(--ombre-m); }
.resultat-item img { width: 100%; height: auto; display: block; }

.resultat-legende {
  padding: 15px 18px 17px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rose);
}
.resultat-legende span {
  display: block;
  margin-top: 5px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--texte-doux);
}

.resultats-groupe { margin-bottom: 54px; }
.resultats-groupe:last-child { margin-bottom: 0; }
.resultats-groupe > h2 { margin-bottom: 10px; }
.resultats-groupe > .chapo { margin-bottom: 26px; max-width: 640px; }

/* ---------- Témoignages ---------- */
.temoignage {
  background: var(--blanc);
  border: 1px solid var(--ligne-claire);
  border-radius: var(--rayon-l);
  padding: 28px 24px;
}
.temoignage p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--texte);
  font-style: italic;
  margin-bottom: 18px;
}
.temoignage-auteur {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid var(--ligne-claire);
}
.temoignage-initiale {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.05rem;
  color: #fff;
  flex-shrink: 0;
}
.temoignage-auteur b { display: block; font-size: 0.86rem; font-weight: 600; }
.temoignage-auteur span { display: block; font-size: 0.72rem; color: var(--texte-doux); }
.etoiles { color: var(--rose); letter-spacing: 3px; font-size: 0.84rem; margin-bottom: 12px; }

/* ---------- Témoignages vidéo ---------- */
.temoignage-video {
  background: var(--blanc);
  border: 1px solid var(--ligne-claire);
  border-radius: var(--rayon-l);
  overflow: hidden;
  box-shadow: var(--ombre-m);
}
.temoignage-video .tv-affiche,
.temoignage-video iframe {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  border: none;
  background: var(--fond-3);
  overflow: hidden;
}
.temoignage-video .tv-affiche img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.temoignage-video .tv-affiche:hover img { transform: scale(1.04); }
.tv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(176, 86, 124, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(42, 24, 31, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}
.temoignage-video .tv-affiche:hover .tv-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--rose);
}
.tv-play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.temoignage-video { display: flex; flex-direction: column; }
.temoignage-video figcaption { padding: 16px 18px 18px; flex: 1; }
.temoignage-video figcaption b {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: 3px;
}
.temoignage-video figcaption span {
  display: block;
  font-size: 0.76rem;
  color: var(--texte-doux);
}
.temoignages-note {
  margin-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--texte-doux);
}
.temoignages-note a { color: var(--rose); font-weight: 600; }
.temoignages-note a:hover { text-decoration: underline; }

/* ---------- Étapes ---------- */
.etapes { display: grid; gap: 0; }
.etape {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ligne-claire);
}
.etape:last-child { border-bottom: none; }
.etape-num {
  font-family: var(--display);
  font-size: 1.35rem;
  color: #fff;
  background: var(--rose);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.etape h3 { margin-bottom: 6px; }
.etape p { font-size: 0.93rem; }

/* ---------- Tarifs ---------- */
.carte-tarif {
  background: var(--blanc);
  border: 1px solid var(--ligne-claire);
  border-radius: var(--rayon-l);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carte-tarif:hover { transform: translateY(-4px); box-shadow: var(--ombre-m); }

.carte-tarif.vedette { border-color: var(--rose); border-width: 2px; }
.carte-tarif.vedette::before {
  content: "Le plus choisi";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.tarif-prix { font-family: var(--display); font-size: 2.2rem; line-height: 1; color: var(--texte); margin: 6px 0 4px; }
.tarif-prix small { font-size: 0.84rem; font-family: var(--sans); color: var(--texte-doux); font-weight: 400; }
.tarif-mention { font-size: 0.78rem; color: var(--texte-doux); margin-bottom: 20px; }
.carte-tarif ul { flex: 1; margin-bottom: 24px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--ligne-claire); }
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--texte);
  line-height: 1.45;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--rose); }
.faq-question .plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--rose-pale);
}
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--rose);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-question .plus::before { top: 11px; left: 6px; width: 12px; height: 2px; }
.faq-question .plus::after  { left: 11px; top: 6px; height: 12px; width: 2px; }
.faq-item.ouvert .faq-question .plus::after { transform: rotate(90deg); opacity: 0; }

.faq-reponse { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-reponse p { padding-bottom: 22px; font-size: 0.93rem; }
.faq-item.ouvert .faq-reponse { max-height: 520px; }

/* ---------- Formulaires ---------- */
.formulaire {
  background: var(--blanc);
  border: 1px solid var(--ligne-claire);
  border-radius: var(--rayon-xl);
  padding: 30px 24px;
  box-shadow: var(--ombre-s);
}

.champ { margin-bottom: 18px; }
.champ label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-bottom: 8px;
}

.champ input, .champ textarea, .champ select {
  width: 100%;
  background: var(--fond);
  border: 1.5px solid var(--ligne-claire);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 0.93rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.champ input:focus, .champ textarea:focus, .champ select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(176, 86, 124, 0.1);
}
.champ textarea { min-height: 126px; resize: vertical; }

.champ select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B0567C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.champ-duo { display: grid; grid-template-columns: 1fr; gap: 0; }

.case {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--texte-doux);
  line-height: 1.5;
  margin-bottom: 20px;
}
.case input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--rose); }

.form-succes {
  display: none;
  background: var(--rose-pale);
  border: 1.5px solid var(--rose);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--rose-fonce);
  font-weight: 500;
}

.mention-form { font-size: 0.76rem; color: var(--texte-doux); margin-top: 14px; text-align: center; }
.champ-cache { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Blocs de contact ---------- */
.contact-bloc {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ligne-claire);
}
.contact-bloc:last-child { border-bottom: none; }
.contact-bloc .icone { margin-bottom: 0; width: 44px; height: 44px; }
.contact-bloc .icone svg { width: 18px; height: 18px; }

.contact-bloc h4 {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 5px;
}
.contact-bloc a, .contact-bloc p { font-size: 0.96rem; color: var(--texte); word-break: break-word; }
.contact-bloc a:hover { color: var(--rose); }

/* ---------- Appel à l'action ---------- */
.cta-final { text-align: center; padding: 76px 0; }
.cta-final h2 { margin-bottom: 16px; }
.cta-final .chapo { max-width: 54ch; margin: 0 auto 28px; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-width: 340px;
  margin: 0 auto;
}

/* ---------- Zone d'intervention ---------- */
.zone-autres {
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--fond-2);
  border: 1px solid var(--ligne);
  border-radius: 18px;
  text-align: center;
}
.zone-titre {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}
.zone-communes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.zone-communes li {
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--texte);
}
.zone-note {
  margin-top: 20px;
  font-size: 0.86rem;
  color: var(--texte-doux);
}
.zone-note a { color: var(--rose); font-weight: 600; }
.zone-note a:hover { text-decoration: underline; }

/* Bandeau des secteurs, en pied de page */
.footer-zones {
  border-top: 1px solid var(--ligne-claire);
  padding: 22px 0 4px;
  font-size: 0.8rem;
  line-height: 1.9;
}
.footer-zones h4 {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.footer-zones a { color: var(--texte-doux); transition: color 0.2s ease; }
.footer-zones a:hover { color: var(--rose); }
.footer-zones .sep { opacity: 0.4; margin: 0 7px; }

/* ---------- Pied de page ---------- */
.site-footer {
  background: var(--fond-2);
  color: var(--texte-doux);
  padding: 54px 0 0;
  border-top: 1px solid var(--ligne);
}

.footer-grille { display: grid; grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }

.footer-col h4 {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 9px; font-size: 0.88rem; }
.footer-col a { color: var(--texte-doux); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--rose); }
.footer-col p { font-size: 0.88rem; }

.footer-marque .marque { margin-bottom: 16px; }
.footer-marque p { max-width: 40ch; }

.footer-bas {
  border-top: 1px solid var(--ligne-claire);
  padding: 20px 0 92px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-size: 0.74rem;
  opacity: 0.8;
}
.footer-liens { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-bas a:hover { color: var(--rose); }

/* ---------- Barre d'action mobile ---------- */
.barre-mobile {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--blanc);
  border-top: 1px solid var(--ligne);
  box-shadow: 0 -6px 24px rgba(42, 24, 31, 0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.barre-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}
.barre-mobile a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.barre-mobile a.appel { background: var(--rose); color: #fff; }
.barre-mobile a.whatsapp { background: #25D366; color: #fff; }

/* ---------- WhatsApp : bouton flottant (écrans larges) ---------- */
.wa-flottant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 98;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-flottant svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.wa-flottant:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.44); color: #fff; }
.wa-flottant:focus-visible { outline: 3px solid var(--texte); outline-offset: 3px; }

@media (min-width: 900px) {
  .wa-flottant { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-flottant, .wa-flottant:hover { transition: none; transform: none; }
}

/* ---------- Apparition (hérité) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ruban-piste { animation: none; }
}

/* =========================================================
   Points de rupture
   ========================================================= */
@media (min-width: 600px) {
  .grille-2 { grid-template-columns: repeat(2, 1fr); }
  .grille-galerie { grid-template-columns: repeat(2, 1fr); }
  .grille-resultats { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .cta-actions { flex-direction: row; max-width: none; justify-content: center; }
  .champ-duo { grid-template-columns: 1fr 1fr; gap: 0 18px; }
  .formulaire { padding: 36px 32px; }
  .hero-chiffre b { font-size: 2.3rem; }
  .footer-bas { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- Blog & articles ---------- */
.blog-grille { display: grid; grid-template-columns: 1fr; gap: 26px; }

.blog-carte {
  background: var(--blanc);
  border: 1px solid var(--ligne-claire);
  border-radius: var(--rayon-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-carte:hover { transform: translateY(-4px); box-shadow: var(--ombre-m); }

.blog-carte-media { display: block; aspect-ratio: 3 / 2; background: var(--fond-3); overflow: hidden; }
.blog-carte-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-carte:hover .blog-carte-media img { transform: scale(1.05); }

.blog-carte-corps { padding: 24px 22px 26px; display: flex; flex-direction: column; gap: 10px; }
.blog-carte-corps time {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}
.blog-carte-corps h2 { font-size: 1.12rem; line-height: 1.25; margin: 0; }
.blog-carte-corps h2 a { color: inherit; text-decoration: none; }
.blog-carte-corps h2 a:hover { color: var(--rose); }
.blog-carte-corps p { font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* --- Page d'un article --- */
.hero-article { padding-bottom: 30px; }
.hero-article h1 { font-size: clamp(1.7rem, 5.2vw, 2.9rem); }

.art-meta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texte-doux);
  margin-top: 18px;
}
.art-meta a { color: var(--rose); text-decoration: none; }
.art-meta a:hover { text-decoration: underline; }
.art-meta .sep { margin: 0 8px; opacity: 0.5; }

.section.section-article { padding-top: 0; }

.art-visuel {
  margin: 0 0 38px;
  border-radius: var(--rayon-xl);
  overflow: hidden;
  box-shadow: var(--ombre-m);
  aspect-ratio: 3 / 2;
}
.art-visuel img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Le corps vient d'articles rédigés hors du site : on ne stylise que les
   balises de contenu, sans supposer de classes. */
.art-corps { font-size: 1rem; line-height: 1.85; color: var(--texte-doux); }
.art-corps > *:first-child { font-size: 1.06rem; color: var(--texte); font-weight: 500; }
.art-corps h2 { font-size: clamp(1.4rem, 3.6vw, 1.95rem); margin: 44px 0 14px; }
.art-corps h3 { font-size: clamp(1.12rem, 2.8vw, 1.4rem); margin: 34px 0 12px; }
.art-corps h4 { font-size: 1.02rem; margin: 26px 0 10px; }
.art-corps h2:first-child, .art-corps h3:first-child { margin-top: 0; }
.art-corps p { margin-bottom: 18px; }
.art-corps a { color: var(--rose); text-decoration: underline; text-underline-offset: 3px; }
.art-corps a:hover { color: var(--rose-fonce); }
.art-corps ul, .art-corps ol { margin: 0 0 22px; padding-left: 0; list-style: none; }
.art-corps ol { counter-reset: art-li; }
.art-corps li { position: relative; padding-left: 26px; margin-bottom: 11px; }
.art-corps ul > li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 11px; height: 6px;
  border-left: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: rotate(-45deg);
}
.art-corps ol > li::before {
  counter-increment: art-li;
  content: counter(art-li) ".";
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
  color: var(--rose);
}
.art-corps blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--rose);
  font-style: italic;
  color: var(--texte);
}

.art-cta {
  margin: 48px 0 0;
  padding: 34px 26px;
  background: var(--fond-2);
  border: 1px solid var(--ligne);
  border-radius: var(--rayon-l);
  text-align: center;
}
.art-cta h2 { font-size: clamp(1.3rem, 3.4vw, 1.8rem); margin: 6px 0 12px; }
.art-cta p { max-width: 46ch; margin: 0 auto 24px; }

.art-nav { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
.art-nav-lien {
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--ligne-claire);
  border-radius: var(--rayon-l);
  background: var(--blanc);
  color: var(--texte);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.45;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.art-nav-lien:hover { border-color: var(--rose); transform: translateY(-2px); }
.art-nav-lien span {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 7px;
}
.art-nav-lien.suivant { text-align: right; }

.art-retour { margin-top: 34px; text-align: center; }

@media (min-width: 600px) {
  .blog-grille { grid-template-columns: repeat(2, 1fr); }
  .art-nav { grid-template-columns: 1fr 1fr; }
  .art-cta { padding: 40px 34px; }
}

@media (min-width: 900px) {
  .blog-grille { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .art-visuel { margin-bottom: 46px; }
  .art-corps { font-size: 1.04rem; }
}

@media (min-width: 900px) {
  .section { padding: 88px 0; }
  .section-lg { padding: 112px 0; }

  .grille-3 { grid-template-columns: repeat(3, 1fr); }
  .grille-4 { grid-template-columns: repeat(4, 1fr); }
  .grille { gap: 24px; }
  .grille-galerie { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .grille-resultats { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .duo { grid-template-columns: 1fr 1fr; gap: 56px; }
  .duo.inverse .duo-media { order: 2; }

  .hero-accueil { padding: 90px 0 88px; }
  .hero-page { padding: 84px 0 76px; }
  .hero-chiffres { max-width: 540px; }

  .footer-grille { grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; }
  .barre-mobile { display: none; }
  .footer-bas { padding-bottom: 28px; }
  .cta-final { padding: 104px 0; }

  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    max-height: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    padding: 0;
    background: none;
    border: none;
    inset: auto;
  }
  .site-nav a { font-size: 0.7rem; padding: 6px 0; border-bottom: none; position: relative; }
  .site-nav a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    height: 2px; width: 0;
    border-radius: 2px;
    background: var(--rose);
    transition: width 0.25s ease;
  }
  .site-nav a:not(.btn-nav):hover::after,
  .site-nav a[aria-current="page"]:not(.btn-nav)::after { width: 100%; }
  .site-nav .btn-nav { margin-top: 0; padding: 12px 22px; }
}

@media (min-width: 1100px) {
  .grille-galerie .galerie-item.large { grid-column: span 2; }
}
