/* ===================================================================
   ACACED Academy — feuille de style éditoriale
   Maison de luxe · exclusivité sobre
   Palette : noirs profonds / blancs chauds / or antique
=================================================================== */

:root {
  /* Noirs profonds, légèrement chauds */
  --noir:        #0a0908;
  --noir-doux:   #14120f;
  --noir-encre:  #1d1a16;

  /* Blancs chauds */
  --blanc:       #f7f4ee;
  --blanc-pur:   #fdfcf9;
  --parchemin:   #efeae0;

  /* Or antique, mat — jamais jaune vif */
  --or:          #9c7c4a;
  --or-clair:    #c3a677;
  --or-pale:     #e0d2b8;
  --or-voile:    rgba(156, 124, 74, 0.14);

  --gris:        #6b6459;
  --gris-doux:   #8d867a;
  --ligne:       #ddd7cb;
  --ligne-fine:  rgba(29, 26, 22, 0.10);
  --ligne-or:    rgba(156, 124, 74, 0.34);
  --ligne-nuit:  rgba(247, 244, 238, 0.13);

  --ombre-douce: 0 1px 2px rgba(20,18,15,.035), 0 8px 18px rgba(20,18,15,.035), 0 28px 64px rgba(20,18,15,.055);
  --ombre-levee: 0 2px 4px rgba(20,18,15,.05), 0 14px 32px rgba(20,18,15,.07), 0 44px 96px rgba(20,18,15,.09);

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans:  'Jost', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;

  --ease:  cubic-bezier(.22,.68,0,1);
  --transition: .55s var(--ease);
  --transition-court: .3s var(--ease);

  --gouttiere: clamp(1.5rem, 5vw, 3.5rem);
  --rythme:    clamp(5rem, 11vw, 9.5rem);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--noir-encre);
  background: var(--blanc);
  line-height: 1.75;
  font-weight: 300;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

::selection { background: var(--or); color: var(--blanc-pur); }

:focus-visible {
  outline: 1px solid var(--or);
  outline-offset: 4px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--gouttiere);
}

.container-etroit {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: var(--gouttiere);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 4000;
  background: var(--noir);
  color: var(--blanc-pur);
  padding: 14px 24px;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Typographie ---------- */

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 22px;
}

.eyebrow-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.eyebrow-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--ligne-or), transparent);
  max-width: 120px;
}
.section-dark .eyebrow-rule::after,
.page-hero .eyebrow-rule::after,
.hero .eyebrow-rule::after,
.cta-band .eyebrow-rule::after {
  background: linear-gradient(90deg, rgba(195,166,119,.5), transparent);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--noir);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.6rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.25;
  font-weight: 500;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--or);
  font-weight: 400;
}

p { color: var(--gris); font-weight: 300; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--noir-doux);
  line-height: 1.55;
  max-width: 34em;
}

.texte-corps { max-width: 66ch; }

.divider {
  width: 54px;
  height: 1px;
  background: var(--or);
  margin: 30px 0;
  opacity: .7;
}
.divider.center { margin-inline: auto; }

.regle-fine {
  height: 1px;
  border: 0;
  background: var(--ligne);
}

/* Filet or dégradé, signature de la maison */
.filet-or {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--ligne-or) 22%, var(--ligne-or) 78%, transparent);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(247, 244, 238, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.95);
  border-bottom-color: var(--ligne-fine);
  box-shadow: 0 1px 24px rgba(20,18,15,.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gouttiere);
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand svg { width: 38px; height: 38px; transition: transform .6s var(--ease); }
.brand:hover svg { transform: rotate(-8deg); }

.brand-name {
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: .1em;
  color: var(--noir);
  line-height: 1.1;
}
.brand-name em { font-style: italic; color: var(--or); }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 36px);
}

.main-nav a {
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--noir-doux);
  position: relative;
  padding-bottom: 5px;
  transition: color var(--transition-court);
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--or); }

.nav-cta {
  border: 1px solid var(--noir);
  padding: 11px 24px !important;
  font-size: .7rem !important;
  letter-spacing: .17em !important;
  transition: background var(--transition-court), color var(--transition-court) !important;
}
.nav-cta:hover { background: var(--noir); color: var(--blanc) !important; }
.nav-cta::after { display: none; }
.nav-cta.active { color: var(--noir) !important; border-color: var(--or); }
.nav-cta.active:hover { color: var(--blanc) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 1px;
  background: var(--noir);
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.nav-toggle.active span { background: var(--blanc-pur); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(140px, 18vh, 190px) 0 clamp(90px, 12vh, 130px);
  background:
    radial-gradient(ellipse 70% 55% at 78% 12%, rgba(156,124,74,.20), transparent 62%),
    radial-gradient(ellipse 60% 60% at 8% 92%, rgba(156,124,74,.09), transparent 60%),
    linear-gradient(168deg, #0a0908 0%, #16130f 58%, #0d0b09 100%);
  color: var(--blanc);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,244,238,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,244,238,.026) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 20%, transparent 82%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 20%, transparent 82%);
  pointer-events: none;
  z-index: -1;
}

/* Monogramme filigrane */
.hero-monogramme {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 660px);
  height: auto;
  opacity: .1;
  pointer-events: none;
  z-index: -1;
}

.hero .container { position: relative; z-index: 2; }

/* Hero en deux colonnes : texte à gauche, photographie à droite */
.hero-grille {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(36px, 4.5vw, 64px);
  align-items: center;
}
.hero-photo {
  margin: 0;
  border: 1px solid var(--ligne-or);
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: clamp(300px, 42vh, 460px);
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .hero-grille { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { order: -1; }
  .hero-photo img { height: clamp(200px, 30vh, 280px); }
}

.hero-inner { max-width: 900px; }

.hero h1 { color: var(--blanc-pur); }
.hero-grille h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
.hero h1 em { color: var(--or-clair); }
.hero .eyebrow { color: var(--or-clair); }
.hero .lede { color: #cec8bc; margin-top: 26px; }

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: clamp(38px, 5vw, 52px);
  flex-wrap: wrap;
}

.hero-signature {
  margin-top: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--or-pale);
  opacity: .8;
}

/* Chiffres du hero, filets or verticaux */
.hero-figures {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(56px, 8vw, 84px);
  padding-top: 38px;
  border-top: 1px solid rgba(195,166,119,.24);
}

.figure-item { min-width: 120px; }

.figure-item .num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 300;
  color: var(--or-clair);
  display: block;
  line-height: 1;
  letter-spacing: -.01em;
}

.figure-item .lbl {
  display: block;
  margin-top: 10px;
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #9d968a;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--or);
  background: transparent;
  color: var(--noir);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease), transform .45s var(--ease);
}

/* Voile qui balaye au survol — retenu, pas tapageur */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease), opacity .55s var(--ease);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }

.btn .fleche {
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .4s var(--ease);
  flex-shrink: 0;
}
.btn .fleche::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .fleche { width: 26px; }

.btn-primary {
  background: var(--or);
  border-color: var(--or);
  color: #100e0b;
}
.btn-primary:hover {
  background: var(--or-clair);
  border-color: var(--or-clair);
  color: #100e0b;
}

.btn-ghost {
  color: var(--blanc-pur);
  border-color: rgba(247,244,238,.34);
}
.btn-ghost:hover {
  border-color: var(--or-clair);
  color: var(--or-clair);
}

.btn-dark {
  border-color: var(--noir);
  color: var(--noir);
}
.btn-dark:hover { background: var(--noir); color: var(--blanc); }

.btn-or {
  border-color: var(--or);
  background: var(--or);
  color: #100e0b;
}
.btn-or:hover { background: transparent; color: var(--or); }

.btn-or-fin {
  border-color: var(--ligne-or);
  color: var(--noir);
}
.btn-or-fin:hover { background: var(--noir); border-color: var(--noir); color: var(--blanc); }

.btn-bloc { width: 100%; }
.btn-large { padding: 19px 42px; }

/* Lien texte souligné or */
.lien-or {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ligne-or);
  transition: border-color var(--transition-court), color var(--transition-court);
}
.lien-or:hover { border-color: var(--or); color: var(--noir); }
.section-dark .lien-or:hover, .cta-band .lien-or:hover { color: var(--or-pale); border-color: var(--or-pale); }

/* ---------- Sections ---------- */
section { padding-block: var(--rythme); }

.section-dark {
  background:
    radial-gradient(ellipse 60% 60% at 82% 10%, rgba(156,124,74,.13), transparent 62%),
    linear-gradient(172deg, #0a0908, #16130f);
  color: var(--blanc);
}
.section-dark p { color: #b0a99d; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--blanc-pur); }
.section-dark .eyebrow { color: var(--or-clair); }
.section-dark .lede { color: #cec8bc; }

.section-tint {
  background: var(--parchemin);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow-rule { justify-content: center; }
.section-head.center .eyebrow-rule::after { display: none; }
.section-head .lede { margin-top: 22px; }

/* Titre de section asymétrique : eyebrow à gauche, titre décalé */
.section-head-edito {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: baseline;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-top: 26px;
  border-top: 1px solid var(--ligne-or);
}
.section-head-edito .eyebrow { margin-bottom: 0; }
.section-head-edito .lede { margin-top: 22px; }
.section-dark .section-head-edito { border-top-color: rgba(195,166,119,.28); }

/* ---------- Bandeau de réassurance (discret) ---------- */
.reassurance {
  background: var(--blanc-pur);
  border-block: 1px solid var(--ligne-fine);
  padding-block: clamp(2.4rem, 4vw, 3.4rem);
}

.reassurance-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-inline: clamp(16px, 2.4vw, 34px);
  border-left: 1px solid var(--ligne-fine);
}
.reassurance-item:first-child { border-left: 0; padding-left: 0; }
.reassurance-item:last-child { padding-right: 0; }

.reassurance-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--or);
  fill: none;
  stroke-width: 1.1;
}

.reassurance-item .r-titre {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--noir);
  line-height: 1.5;
}
.reassurance-item .r-detail {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gris);
  line-height: 1.4;
  margin-top: 5px;
}

.section-dark .reassurance,
.reassurance.sur-noir {
  background: transparent;
  border-color: rgba(195,166,119,.2);
}
.reassurance.sur-noir .reassurance-item { border-left-color: rgba(247,244,238,.1); }
.reassurance.sur-noir .r-titre { color: var(--blanc-pur); }
.reassurance.sur-noir .r-detail { color: #a49d90; }

/* ---------- Manifeste / Édito ---------- */
.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.manifesto-mark { position: sticky; top: 130px; }
.manifesto-mark svg { width: clamp(120px, 15vw, 170px); height: auto; }

.manifesto-legende {
  margin-top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gris-doux);
  max-width: 20ch;
  line-height: 1.5;
}

.manifesto-text p {
  margin-bottom: 26px;
  font-size: 1.06rem;
  max-width: 62ch;
}
.manifesto-text p:last-child { margin-bottom: 0; }

.drop-cap::first-letter {
  font-family: var(--serif);
  font-size: 4.6rem;
  float: left;
  line-height: .78;
  padding: 9px 14px 0 0;
  color: var(--or);
  font-weight: 400;
}

/* ---------- Pull quote ---------- */
.pull-quote {
  max-width: 30ch;
  margin: clamp(44px, 6vw, 66px) 0;
  padding-left: clamp(22px, 3vw, 34px);
  border-left: 1px solid var(--or);
}
.pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  color: var(--noir);
  letter-spacing: -.005em;
}
.pull-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--sans);
  font-style: normal;
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--or);
}
.section-dark .pull-quote p, .cta-band .pull-quote p { color: var(--blanc-pur); }

.pull-quote.centre {
  max-width: 24ch;
  margin-inline: auto;
  text-align: center;
  border-left: 0;
  padding-left: 0;
  padding-block: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--ligne-or);
  border-bottom: 1px solid var(--ligne-or);
}

/* ---------- Pillars / valeurs ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4.5vw, 62px);
}

.pillar {
  border-top: 1px solid var(--or);
  padding-top: 28px;
}
.pillar .index {
  font-family: var(--serif);
  font-style: italic;
  color: var(--or);
  font-size: 1.15rem;
}
.pillar h3 { margin: 14px 0 14px; }
.pillar p { font-size: .98rem; }

/* ---------- Cartes d'offre (les 3 formations) ---------- */
.offres {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.4vw, 32px);
  align-items: stretch;
}

.offre {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--blanc-pur);
  border: 1px solid var(--ligne);
  padding: clamp(34px, 3.4vw, 46px) clamp(26px, 2.6vw, 38px) clamp(34px, 3.4vw, 44px);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.offre:hover {
  border-color: var(--ligne-or);
  transform: translateY(-5px);
  box-shadow: var(--ombre-douce);
}

/* La combinée — distinction typographique, jamais un badge criard */
.offre.offre-complete {
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(156,124,74,.14), transparent 62%),
    linear-gradient(174deg, #0a0908, #17140f);
  border-color: #0a0908;
  color: var(--blanc);
}
.offre.offre-complete h3,
.offre.offre-complete .offre-prix .montant { color: var(--blanc-pur); }
.offre.offre-complete p { color: #ada69a; }
.offre.offre-complete:hover { border-color: var(--or); box-shadow: var(--ombre-levee); }

.offre-mention {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--or);
  color: #100e0b;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 7px 20px;
  white-space: nowrap;
}

.offre-chapitre {
  font-family: var(--serif);
  font-style: italic;
  font-size: .98rem;
  letter-spacing: .06em;
  color: var(--or);
}

.offre-icone {
  width: 44px; height: 44px;
  margin: 22px 0 18px;
  stroke: var(--or);
  fill: none;
  stroke-width: 1.3;
}

.offre h3 { margin-bottom: 12px; }
.offre > p { font-size: .96rem; margin-bottom: 26px; }

.offre-prix {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--ligne);
  margin-top: auto;
}
.offre.offre-complete .offre-prix { border-top-color: rgba(195,166,119,.3); }

.offre-prix .montant {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 400;
  line-height: 1;
  color: var(--noir);
  letter-spacing: -.01em;
}
.offre-prix .montant .devise { font-size: .55em; margin-left: 2px; }

.offre-prix .details {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gris-doux);
  line-height: 1.6;
}
.offre.offre-complete .offre-prix .details { color: #948d81; }

.offre-inclus {
  list-style: none;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}
.offre-inclus li {
  position: relative;
  padding-left: 26px;
  font-size: .93rem;
  color: var(--gris);
  line-height: 1.55;
}
.offre-inclus li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 13px; height: 5px;
  border-left: 1px solid var(--or);
  border-bottom: 1px solid var(--or);
  transform: rotate(-45deg);
}
.offre.offre-complete .offre-inclus li { color: #b8b1a5; }

.offre .btn { width: 100%; }
.offre.offre-complete .btn-or-fin { color: var(--blanc-pur); border-color: rgba(195,166,119,.5); }
.offre.offre-complete .btn-or-fin:hover { background: var(--or); border-color: var(--or); color: #100e0b; }

.offres-note {
  margin-top: 34px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gris-doux);
}

/* ---------- Parcours en étapes numérotées ---------- */
.parcours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: etape;
}

.parcours-etape {
  position: relative;
  padding: 40px clamp(18px, 2.4vw, 34px) 8px 0;
  border-top: 1px solid var(--ligne-or);
  counter-increment: etape;
}
.parcours-etape + .parcours-etape { padding-left: clamp(18px, 2.4vw, 34px); }

.parcours-etape::before {
  content: counter(etape, decimal-leading-zero);
  position: absolute;
  top: -.72em;
  left: 0;
  background: var(--blanc);
  padding-right: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--or);
  line-height: 1;
}
.parcours-etape + .parcours-etape::before { left: clamp(18px, 2.4vw, 34px); padding-left: 0; }

.section-tint .parcours-etape::before { background: var(--parchemin); }
.section-dark .parcours-etape::before { background: #100d0b; color: var(--or-clair); }
.section-dark .parcours-etape { border-top-color: rgba(195,166,119,.3); }

.parcours-etape h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}
.parcours-etape p { font-size: .95rem; }

/* ---------- Formation détail (page formations) ---------- */
.formation-block {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--ligne);
  scroll-margin-top: 92px;
}
.formation-block:last-of-type { border-bottom: 0; }

.formation-head {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding-bottom: 34px;
  margin-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--ligne-or);
}

.formation-head > svg {
  width: 84px; height: 84px;
  stroke: var(--or);
  fill: none;
  stroke-width: 1.2;
}
.formation-head .eyebrow { margin-bottom: 10px; }

.formation-price { text-align: right; white-space: nowrap; }
.formation-price .amount {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--or);
  display: block;
  line-height: 1;
}
.formation-price .duration {
  display: block;
  margin-top: 10px;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gris-doux);
}

.chapter-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 4vw, 56px) clamp(40px, 5vw, 72px);
}

.chapter-section h4 {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ligne-fine);
}

.chapter-section p { max-width: 62ch; }

.chapter-section ul { list-style: none; }
.chapter-section li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 13px;
  color: var(--noir-doux);
  font-weight: 300;
  font-size: .98rem;
  line-height: 1.65;
}
.chapter-section li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--or);
}
.chapter-section.full { grid-column: 1 / -1; }
.chapter-section.full ul {
  columns: 2;
  column-gap: clamp(40px, 5vw, 72px);
}
.chapter-section.full li { break-inside: avoid; }

.formation-pied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 30px;
  border-top: 1px solid var(--ligne-or);
}
.formation-pied .rappel {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gris);
}
.formation-pied .rappel strong {
  font-style: normal;
  font-weight: 500;
  color: var(--noir);
}

/* ---------- Modalités bar ---------- */
.modalites-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modalite-tag {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid var(--ligne);
  color: var(--noir-doux);
  transition: border-color var(--transition-court), color var(--transition-court);
}
.modalite-tag:hover { border-color: var(--or); }
.section-dark .modalite-tag { border-color: rgba(247,244,238,.16); color: #c6c0b4; }
.section-dark .modalite-tag:hover { border-color: var(--or-clair); color: var(--or-pale); }

/* ---------- Philosophie / méthode ---------- */
.method-list { display: flex; flex-direction: column; }

.method-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding-block: clamp(38px, 4.6vw, 56px);
  border-top: 1px solid var(--ligne);
  align-items: start;
  transition: background var(--transition);
}
.method-row:last-child { border-bottom: 1px solid var(--ligne); }

.method-row .index {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 300;
  color: var(--or);
  line-height: 1;
}
.method-row h3 { margin-bottom: 14px; }
.method-row p { max-width: 64ch; }

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.faq-aside { position: sticky; top: 130px; }
.faq-aside .divider { margin: 24px 0; }
.faq-aside p { font-size: .98rem; margin-bottom: 26px; }

.faq-list { max-width: 900px; }

.faq-item { border-bottom: 1px solid var(--ligne); }
.faq-item:first-child { border-top: 1px solid var(--ligne); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.14rem, 1.7vw, 1.36rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--noir);
  transition: color var(--transition-court);
}
.faq-question:hover { color: var(--or); }

.faq-question .plus {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--or);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-question { color: var(--or); }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-answer-inner { padding-bottom: 32px; max-width: 68ch; }
.faq-answer-inner p { font-size: 1rem; }

/* Bloc levée d'objections */
.objections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}

.objection {
  padding: clamp(30px, 3vw, 40px) clamp(26px, 2.6vw, 36px);
  background: var(--blanc-pur);
  border: 1px solid var(--ligne-fine);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.objection:hover { border-color: var(--ligne-or); box-shadow: var(--ombre-douce); }

.objection .frein {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.16rem;
  color: var(--or);
  margin-bottom: 16px;
  line-height: 1.4;
}
.objection h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.objection p { font-size: .96rem; }

.section-dark .objection {
  background: rgba(247,244,238,.03);
  border-color: rgba(247,244,238,.1);
}
.section-dark .objection:hover { border-color: rgba(195,166,119,.4); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
}

.contact-aside { position: sticky; top: 130px; }

.contact-info-item {
  border-top: 1px solid var(--ligne-or);
  padding-top: 20px;
  margin-bottom: 34px;
}
.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item h4 {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
}
.contact-info-item p { font-size: .98rem; }

.tarifs-liste { list-style: none; }
.tarifs-liste li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dotted var(--ligne);
  font-size: .95rem;
  color: var(--gris);
}
.tarifs-liste li:last-child { border-bottom: 0; }
.tarifs-liste .prix {
  font-family: var(--serif);
  font-size: 1.28rem;
  color: var(--noir);
  white-space: nowrap;
}
.tarifs-liste .prix small {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gris-doux);
  margin-left: 8px;
}

.appointment-form {
  position: relative;
  background: var(--blanc-pur);
  border: 1px solid var(--ligne);
  padding: clamp(30px, 4vw, 56px);
  box-shadow: var(--ombre-douce);
}

.form-entete { margin-bottom: 38px; }
.form-entete h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.form-entete .divider { margin: 18px 0 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
}

.field { margin-bottom: 26px; }

.field label {
  display: block;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--noir-doux);
  margin-bottom: 11px;
}
.field label .opt {
  text-transform: none;
  letter-spacing: .04em;
  font-style: italic;
  font-family: var(--serif);
  font-size: .88rem;
  color: var(--gris-doux);
  margin-left: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--ligne);
  border-radius: 0;
  background: transparent;
  padding: 11px 2px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--noir);
  transition: border-color var(--transition-court), background var(--transition-court);
  -webkit-appearance: none;
  appearance: none;
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--or) 50%), linear-gradient(135deg, var(--or) 50%, transparent 50%);
  background-position: calc(100% - 11px) calc(50% + 1px), calc(100% - 6px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder { color: #b3ada2; font-style: italic; font-family: var(--serif); font-size: 1.02rem; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--or);
  background: rgba(156,124,74,.035);
}

.field textarea { resize: vertical; min-height: 108px; line-height: 1.6; }

.field.error input,
.field.error select,
.field.error textarea { border-color: #96453c; }

.field.valid input,
.field.valid select { border-color: rgba(156,124,74,.55); }

.field .err-msg {
  display: none;
  font-size: .78rem;
  color: #96453c;
  margin-top: 9px;
  font-style: italic;
  font-family: var(--serif);
}
.field.error .err-msg { display: block; }

.form-bouton { margin-top: 8px; }

.form-note {
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--gris-doux);
  margin-top: 18px;
  text-align: center;
}
.form-note .sep { color: var(--or); margin-inline: 8px; }

.form-mentions {
  font-size: .78rem;
  color: var(--gris-doux);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ligne-fine);
  line-height: 1.6;
}

/* État de succès — élégant, remplace le formulaire */
/* Chapô de section */
.section-lede {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
  color: var(--gris);
}
.section-head.center .section-lede { margin-inline: auto; }

/* Deux colonnes de texte */
.deux-colonnes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: clamp(28px, 4vw, 54px);
}
.deux-colonnes p { margin-bottom: 1.1rem; }
.deux-colonnes p:last-child { margin-bottom: 0; }

/* Coordonnées du pied de page */
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { margin-bottom: 12px; }
.footer-contact .fc-label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #6d665c;
  margin-bottom: 2px;
}

/* Photographies — filet d'or, angles nets, aucun dégradé */
.figure-or {
  margin: 0;
  border: 1px solid var(--ligne-or);
  overflow: hidden;
  background: var(--parchemin);
}
.figure-or img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: clamp(200px, 24vw, 280px);
}
.figure-or figcaption {
  font-size: .85rem;
  color: var(--gris);
  padding: 14px 18px;
  border-top: 1px solid var(--ligne-or);
  background: var(--blanc-pur);
  line-height: 1.55;
}
.figure-or figcaption strong { color: var(--noir-encre); font-weight: 500; }

/* Figure des blocs formation — hauteur contrainte, jamais la taille native */
.figure-formation {
  margin: 0 0 clamp(36px, 4.5vw, 56px);
}
.figure-formation img {
  height: clamp(220px, 26vw, 320px);
}
.figure-formation figcaption { font-style: italic; }

.bande-or { border-block: 1px solid var(--ligne-or); overflow: hidden; }
.bande-or img {
  width: 100%;
  height: clamp(230px, 30vw, 380px);
  object-fit: cover;
  display: block;
}

.metier-photo { border-bottom: 1px solid var(--ligne-or); overflow: hidden; margin-bottom: 22px; }
.metier-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.04);
  transition: filter .5s var(--ease);
}
.pillar:hover .metier-photo img { filter: none; }

.pot-de-miel {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

#form-cible {
  position: absolute;
  width: 0; height: 0;
  border: 0;
  visibility: hidden;
}

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--blanc-pur);
  padding: clamp(34px, 5vw, 64px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}
.form-success.show { display: flex; animation: voile .8s var(--ease) both; }

@keyframes voile {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.form-success .sceau {
  width: 74px; height: 74px;
  margin-bottom: 28px;
}
.form-success .sceau circle { stroke: var(--or); fill: none; }
.form-success .sceau path {
  stroke: var(--or); fill: none; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: tracer 1s var(--ease) .25s forwards;
}
@keyframes tracer { to { stroke-dashoffset: 0; } }

.form-success h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 14px;
}
.form-success p {
  max-width: 40ch;
  margin-inline: auto;
  font-size: 1rem;
}
.form-success .divider { margin: 24px auto; }
.form-success .signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--or);
  margin-top: 6px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(156,124,74,.17), transparent 62%),
    linear-gradient(176deg, #0a0908, #16130f);
  color: var(--blanc);
  text-align: center;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,244,238,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,244,238,.022) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent 78%);
}
.cta-band .container { position: relative; z-index: 2; }

.cta-band .eyebrow { color: var(--or-clair); }
.cta-band h2 { color: var(--blanc-pur); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: #ada69a; max-width: 54ch; margin: 22px auto 0; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .divider { margin-inline: auto; }

.cta-band .cta-rappel {
  margin-top: 30px;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8d8679;
}
.cta-band .cta-rappel .sep { color: var(--or); margin-inline: 10px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #080706;
  color: #928b7f;
  padding: clamp(4rem, 7vw, 6rem) 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 62px);
  border-bottom: 1px solid var(--ligne-nuit);
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand svg { width: 34px; height: 34px; }
.footer-brand span { font-family: var(--serif); color: var(--blanc-pur); font-size: 1.16rem; letter-spacing: .08em; }

.footer-intro { max-width: 30ch; font-size: .93rem; color: #8b8478; }

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--or-clair);
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(195,166,119,.36);
  transition: border-color var(--transition-court), color var(--transition-court);
}
.footer-cta:hover { color: var(--or-pale); border-color: var(--or-pale); }

.footer-col h4 {
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--or-clair);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 13px; font-size: .92rem; }
.footer-col a { transition: color var(--transition-court); }
.footer-col a:hover { color: var(--or-pale); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: .74rem;
  letter-spacing: .05em;
  flex-wrap: wrap;
  gap: 12px;
  color: #6f695f;
}

/* ---------- Page hero secondaire ---------- */
.page-hero {
  padding: clamp(150px, 20vh, 200px) 0 clamp(70px, 9vw, 110px);
  background:
    radial-gradient(ellipse 60% 70% at 88% 20%, rgba(156,124,74,.16), transparent 60%),
    linear-gradient(170deg, #0a0908 0%, #16130f 100%);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,244,238,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,244,238,.024) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse 85% 90% at 40% 50%, #000 10%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 90% at 40% 50%, #000 10%, transparent 80%);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--or-clair); }
.page-hero h1 { color: var(--blanc-pur); max-width: 16ch; }
.page-hero h1 em { color: var(--or-clair); }
.page-hero .lede { color: #cec8bc; margin-top: 24px; }
.page-hero .hero-actions { margin-top: 40px; }

.fil-ariane {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a8377;
  flex-wrap: wrap;
}
.fil-ariane a { transition: color var(--transition-court); }
.fil-ariane a:hover { color: var(--or-clair); }
.fil-ariane .sep { color: var(--or); }
.fil-ariane [aria-current] { color: var(--or-pale); }

/* ---------- Sommaire ancres (formations) ---------- */
.sommaire {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 34px;
}
.sommaire a {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(247,244,238,.2);
  color: #cec8bc;
  transition: border-color var(--transition-court), color var(--transition-court), background var(--transition-court);
}
.sommaire a:hover { border-color: var(--or-clair); color: var(--or-pale); }

/* ---------- Barre d'action mobile (sobre) ---------- */
.barre-mobile {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  display: none;
  align-items: stretch;
  background: rgba(10, 9, 8, .96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(195,166,119,.3);
  transform: translateY(105%);
  transition: transform .55s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.barre-mobile.visible { transform: translateY(0); }

.barre-mobile a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 10px;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #cec8bc;
}
.barre-mobile a + a { border-left: 1px solid rgba(247,244,238,.12); }
.barre-mobile a.principal { background: var(--or); color: #100e0b; }
.barre-mobile a svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .offres { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .offre.offre-complete { order: -1; }
  .offre-mention { left: clamp(26px, 2.6vw, 38px); transform: translate(0, -50%); }

  .parcours { grid-template-columns: repeat(2, 1fr); }
  .parcours-etape:nth-child(3) { padding-left: 0; }
  .parcours-etape:nth-child(3)::before { left: 0; }
  .parcours-etape:nth-child(odd) { padding-left: 0; }
  .parcours-etape:nth-child(odd)::before { left: 0; }
  .parcours-etape:nth-child(even) { padding-left: clamp(18px, 2.4vw, 34px); }
  .parcours-etape:nth-child(even)::before { left: clamp(18px, 2.4vw, 34px); }

  .reassurance-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .reassurance-item:nth-child(odd) { border-left: 0; padding-left: 0; }
}

@media (max-width: 980px) {
  .manifesto-grid,
  .contact-grid,
  .faq-layout,
  .section-head-edito { grid-template-columns: 1fr; }

  .pillars, .objections { grid-template-columns: 1fr; gap: 34px; }
  .chapter-sections { grid-template-columns: 1fr; }
  .chapter-section.full ul { columns: 1; }

  .manifesto-mark,
  .contact-aside,
  .faq-aside { position: static; }
  .manifesto-mark { margin-bottom: 20px; }
  .manifesto-legende { max-width: 40ch; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .formation-head { grid-template-columns: 64px minmax(0, 1fr); }
  .formation-head > svg { width: 64px; height: 64px; }
  .formation-price { grid-column: 1 / -1; text-align: left; }

  .hero-monogramme { right: -22%; opacity: .07; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: linear-gradient(168deg, #0a0908, #16130f);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: 40px;
  }
  .main-nav.open { transform: none; }
  .main-nav a { color: var(--blanc-pur); font-size: .9rem; letter-spacing: .26em; }
  .main-nav a.active { color: var(--or-clair); }
  .nav-cta { border-color: var(--or); color: var(--or-clair) !important; margin-top: 10px; }
  .nav-cta:hover { background: var(--or); color: #100e0b !important; }

  .nav-toggle { display: flex; }

  body.nav-ouverte { overflow: hidden; }

  .parcours { grid-template-columns: 1fr; }
  .parcours-etape,
  .parcours-etape + .parcours-etape { padding-left: 0; padding-right: 0; }
  .parcours-etape::before,
  .parcours-etape + .parcours-etape::before { left: 0; }

  .reassurance-inner { grid-template-columns: 1fr; gap: 24px; }
  .reassurance-item { border-left: 0; padding-inline: 0; }

  .method-row { grid-template-columns: 1fr; gap: 14px; }

  .hero-figures { gap: 26px 34px; }
  .figure-item { min-width: 100px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }

  .formation-pied { flex-direction: column; align-items: flex-start; }
  .formation-pied .btn { width: 100%; }

  .barre-mobile { display: flex; }
  body { padding-bottom: 0; }
  main { padding-bottom: 62px; }

  .form-success { position: static; padding: 8px 0 0; }
  .appointment-form.envoye .form-champs { display: none; }

  .drop-cap::first-letter { font-size: 3.6rem; }
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .btn { width: 100%; padding-inline: 20px; }
  .hero-actions .btn { width: 100%; }
  .sommaire a { flex: 1 1 100%; text-align: center; }
}

@media print {
  .site-header, .barre-mobile, .cta-band, .hero-actions { display: none !important; }
  .reveal { opacity: 1; transform: none; }
}

.form-erreur {
  margin-top: 16px;
  padding: 12px 16px;
  border-left: 2px solid #a4442e;
  background: rgba(164, 68, 46, .05);
  color: #8c3a27;
  font-size: .9rem;
}
