/* ==========================================================
   V4 — CORPORATE EDITORIAL
   Navy profond + terracotta + crème — McKinsey/HBR style
   ========================================================== */

:root {
  /* Schéma de couleur : ce site est conçu pour le mode clair.
     Empêche Safari iOS / Chrome Android d'inverser automatiquement les
     couleurs en mode sombre système. Les inputs/select gardent leurs styles. */
  color-scheme: light;

  --navy: #0a1a2e;
  --navy-soft: #14263d;
  --navy-light: #2a3f5f;
  --cream: #faf6ee;
  --cream-warm: #f2ebdc;
  --terracotta: #c9602c;
  --terracotta-dark: #a54a1d;
  --gold: #c9a76a;
  --line: rgba(10, 26, 46, 0.12);
  --line-light: rgba(250, 246, 238, 0.15);
  --text: #1a2e42;
  --text-mute: #52657a;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --max: 1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; color-scheme: light; }

/* Forçage explicite des champs de formulaire — Safari iOS continue parfois à
   les inverser même avec color-scheme: light, on prend les devants. */
input, select, textarea {
  color-scheme: light;
  background-color: var(--cream);
  color: var(--text);
}
/* Autofill Safari/Chrome : éviter le fond bleu/jaune par défaut */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px var(--cream) inset;
  caret-color: var(--text);
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--navy); color: var(--cream); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* SKIP NAV */
.skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 200;
  font-size: 0.85rem;
}
.skip-nav:focus { top: 0; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  /* Padding asymétrique : brand collé à gauche, espace standard à droite */
  padding: 1.2rem var(--gutter) 1.2rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: max-content;
  line-height: 1;
  text-decoration: none;
}
.brand__mark {
  width: 52px;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand__text {
  white-space: nowrap;
  display: inline-block;
}
.brand__text em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .brand { font-size: 1.4rem; gap: 0.6rem; }
  .brand__mark { width: 42px; }
}
@media (max-width: 640px) {
  .brand { font-size: 1.2rem; gap: 0.5rem; }
  .brand__mark { width: 36px; }
}
@media (max-width: 380px) {
  .brand { font-size: 1rem; }
  .brand__mark { width: 30px; }
}
.primary-nav ul {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: nowrap;
}
.primary-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.4s var(--ease);
}
.primary-nav a:hover { color: var(--terracotta); }
.primary-nav a:hover::after { width: 100%; }
.primary-nav a[aria-current="page"] { color: var(--terracotta); }
.primary-nav a[aria-current="page"]::after { width: 100%; }

/* Wrapper des 2 CTA du header (Diagnostic coaching + Cadrage formation) */
.header__ctas {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
}

.header__cta {
  padding: 0.7rem 1.1rem;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s;
  white-space: nowrap;
}
.header__cta:hover { background: var(--terracotta); }

/* Variantes : on peut différencier visuellement coaching (navy plein) et
   formation (navy en outline) pour aider l'utilisateur à les distinguer. */
.header__cta--coaching {
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
}
.header__cta--formation {
  background: var(--terracotta);
  color: var(--cream);
  border: 1px solid var(--terracotta);
}
.header__cta--formation:hover {
  background: var(--terracotta-dark);
  color: var(--cream);
  border-color: var(--terracotta-dark);
}

@media (max-width: 900px) {
  .header__ctas { gap: 0.35rem; }
  .header__cta { padding: 0.55rem 0.8rem; font-size: 0.72rem; }
}

/* ===== HERO ===== */
.hero {
  padding: 5rem var(--gutter) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 96, 44, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Parallax logo — scale & rotate on scroll */
.hero__parallax {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 650px;
  height: 650px;
  z-index: 0;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
}
.hero__parallax img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.18;
}
@media (max-width: 980px) {
  .hero__parallax { width: 450px; height: 450px; left: 55%; opacity: 0.5; }
}


.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--terracotta);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 2rem;
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.hero__lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-mute);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--navy);
  color: var(--cream);
}
.btn--primary:hover { background: var(--terracotta); gap: 0.9rem; }
.btn--secondary {
  background: var(--terracotta);
  color: var(--cream);
  border: 1.5px solid var(--terracotta);
}
.btn--secondary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); color: var(--cream); gap: 0.9rem; }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--cream); }

/* Variante pour boutons posés sur fond foncé (cartes .pillar--accent, sections navy) :
   reste blanc en permanence, contour cream constant. Hover : invert cream→navy. */
.btn--ghost.btn--on-dark {
  color: var(--cream);
  border-color: var(--cream);
  background: transparent;
}
.btn--ghost.btn--on-dark:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.btn--large { padding: 1.3rem 2.5rem; font-size: 1.05rem; }

/* Wrapper des 2 CTA finals (diagnostic coaching + cadrage formation) côte à côte */
.cta-final__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 640px) {
  .cta-final__buttons { flex-direction: column; align-items: stretch; }
}

/* Hero right aside */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 3rem;
  padding-left: 3rem;
  border-left: 1px solid var(--line);
}
.metric--hero {
  text-align: left;
}
.metric--hero .metric__count {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--navy);
  display: inline-block;
  letter-spacing: -0.04em;
}
.metric--hero .metric__plus {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-style: italic;
  color: var(--terracotta);
  vertical-align: top;
  margin-top: 0.3em;
}
.metric--hero .metric__label {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

.hero__quote {
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.hero__quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 1rem;
}
.hero__quote figcaption {
  font-size: 0.85rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.hero__quote cite { font-style: normal; font-weight: 500; }

/* Hero bar (logos) */
.hero__bar {
  max-width: var(--max);
  margin: 5rem auto 0;
  padding: 2rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-mute);
}
.hero__bar-label {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}
.hero__bar span:not(.hero__bar-label) {
  transition: color 0.3s;
}
.hero__bar span:not(.hero__bar-label):hover { color: var(--terracotta); }

/* BRAND LOGOS */
.brand-logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
}
.brand-logo-img {
  max-height: 44px;
  max-width: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}
.brand-logo-img[alt="Initiative Rouen"] {
  max-height: 75px;
  max-width: 170px;
}
.brand-logo-img[alt="Sparkseed"] {
  max-height: 56px;
  max-width: 140px;
}
.brand-logo-img[alt="Certification coaching RNCP6"] {
  max-height: 60px;
  max-width: 140px;
}
.brand-logo-img:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}

/* ===== SECTION HEADING ===== */
.section-head {
  margin-bottom: 4rem;
  max-width: 900px;
}
.section-head__num {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--terracotta);
  margin-bottom: 1.5rem;
}
.section-head__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-head__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.section-head__sub {
  font-size: 1.1rem;
  color: var(--text-mute);
  line-height: 1.65;
}
.section-head--light .section-head__title { color: var(--cream); }
.section-head--light .section-head__sub { color: rgba(250, 246, 238, 0.7); }
.section-head--light .section-head__num { color: var(--gold); border-color: var(--gold); }

/* ===== IMPACT METRICS ===== */
.impact {
  padding: 8rem 0;
  background: var(--cream);
}
.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metric {
  padding: 3rem 2rem;
  border-right: 1px solid var(--line);
  transition: background 0.4s;
}
.metric:last-child { border-right: none; }
.metric:hover { background: var(--cream-warm); }
.metric__count {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.metric--deg .metric__count::after {
  content: '°';
  display: inline-block;
}
.metric__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.metric p {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.55;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 8rem 0;
  background: var(--cream-warm);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar {
  background: var(--cream);
  padding: 3rem 2.5rem;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.5s var(--ease);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(10, 26, 46, 0.25); }
.pillar:hover::before { transform: scaleX(1); }
.pillar--accent { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.pillar--accent::before { background: var(--gold); }

.pillar__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--terracotta);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.pillar--accent .pillar__num { color: var(--gold); }

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}
.pillar--accent h3 { color: var(--cream); }

.pillar__question {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.pillar--accent .pillar__question { color: var(--gold); }

.pillar p {
  font-size: 0.95rem;
  color: var(--text-mute);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.pillar--accent p { color: rgba(250, 246, 238, 0.75); }

.pillar__kpis {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.pillar--accent .pillar__kpis { border-top-color: rgba(250, 246, 238, 0.15); }
.pillar__kpis li {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--cream-warm);
  color: var(--navy);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.pillar--accent .pillar__kpis li { background: var(--navy-light); color: var(--gold); }

/* ===== METHOD P²A ===== */
.method {
  padding: 8rem 0;
  background: var(--navy);
  color: var(--cream);
}
.method__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  counter-reset: step;
  position: relative;
}
.method__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.method-step {
  position: relative;
  padding-top: 0;
}
.method-step__marker {
  width: 80px;
  height: 80px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.method-step h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.method-step__role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.method-step p:not(.method-step__role) {
  color: rgba(250, 246, 238, 0.7);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq {
  padding: 8rem 0;
  background: var(--cream);
}
.faq__list {
  max-width: 900px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 2rem 2rem 2rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--terracotta); }
.faq-item summary:hover { color: var(--terracotta); }
.faq-item p {
  padding: 0 2rem 2rem 0;
  color: var(--text-mute);
  line-height: 1.75;
  max-width: 780px;
}
.faq-item strong { color: var(--navy); font-weight: 600; }
.faq-item a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 8rem 0;
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
}
.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.cta-final p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: rgba(250, 246, 238, 0.85);
}
.cta-final .btn--primary {
  background: var(--navy);
  color: var(--cream);
}
.cta-final .btn--primary:hover { background: var(--cream); color: var(--navy); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 6rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.footer__logo em {
  font-style: italic;
  color: var(--gold);
}
.site-footer address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 246, 238, 0.75);
}
.site-footer address a { color: var(--gold); transition: color 0.3s; }
.site-footer address a:hover { color: var(--cream); }

.footer__nav h3, .footer__legal h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer__nav li, .footer__legal li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(250, 246, 238, 0.75);
  transition: color 0.3s;
}
.footer__nav a:hover, .footer__legal a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.8rem;
  color: rgba(250, 246, 238, 0.5);
  letter-spacing: 0.02em;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 6rem 0 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 96, 44, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.breadcrumbs {
  display: flex;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-mute);
  margin-bottom: 2rem;
}
.breadcrumbs a { color: var(--text-mute); transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--terracotta); }
.breadcrumbs [aria-current="page"] { color: var(--terracotta); }
.page-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.page-header__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--terracotta);
}
.page-header__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 2rem;
}
.page-header__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.page-header__lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-mute);
  max-width: 720px;
}

/* ===== LAURE BIO (À propos) ===== */
.bio {
  padding: 8rem 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.bio__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}
.bio__visual {
  position: sticky;
  top: 100px;
  align-self: start;
}
.bio__photo {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--navy);
}
.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  transition: filter 1.2s var(--ease);
  filter: saturate(0.9) contrast(1.02) brightness(0.95);
  will-change: transform;
}
.bio__photo:hover img {
  filter: saturate(1.15) contrast(1.08) brightness(1.05);
}
.bio__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 26, 46, 0.35) 100%);
  pointer-events: none;
}
.bio__photo-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.5rem 1rem;
  background: rgba(10, 26, 46, 0.6);
  backdrop-filter: blur(6px);
  font-weight: 600;
}
.bio__specs {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
}
.bio__specs dt {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
.bio__specs dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
}

.bio__content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.bio__content h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.bio__content p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-mute);
  margin-bottom: 1.5rem;
}
.bio__content p strong {
  color: var(--navy);
  font-weight: 600;
}
.bio__content blockquote {
  margin: 3rem 0;
  padding-left: 2rem;
  border-left: 3px solid var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--navy);
}

/* ===== OFFERS (Accompagnement) ===== */
.offers {
  padding: 8rem 0;
  background: var(--cream-warm);
}
.offers__list {
  display: grid;
  gap: 2rem;
}
.offer {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 3rem;
  padding: 3rem;
  background: var(--cream);
  border: 1px solid var(--line);
  align-items: start;
  transition: all 0.5s var(--ease);
  text-decoration: none;
  color: inherit;
}
.offer:hover {
  transform: translateX(10px);
  border-color: var(--terracotta);
  box-shadow: 0 20px 50px -20px rgba(10, 26, 46, 0.2);
}
.offer__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
  line-height: 0.9;
}
.offer__body h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.offer__body p {
  font-size: 1.05rem;
  color: var(--text-mute);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 1.5rem;
}
.offer__list {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.offer__list li {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  background: var(--cream-warm);
  color: var(--navy);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.offer__arrow {
  font-size: 2rem;
  color: var(--terracotta);
  transition: transform 0.5s var(--ease);
  align-self: center;
}
.offer:hover .offer__arrow { transform: translateX(8px); }

/* ===== FORMATIONS TABLE ===== */
.catalog {
  padding: 8rem 0;
  background: var(--cream);
}
.catalog__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.catalog__head .section-head { margin-bottom: 0; }
.catalog__head p {
  font-size: 1.1rem;
  color: var(--text-mute);
  line-height: 1.7;
  justify-self: end;
  max-width: 500px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.catalog-chip {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.catalog-chip:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.catalog-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.catalog-chip:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.catalog-count {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 1.5rem;
  font-variant-numeric: tabular-nums;
}

.catalog-empty {
  padding: 2.5rem 0 1rem;
  text-align: center;
  color: var(--text-mute);
  font-style: italic;
}
.catalog-empty a {
  color: var(--terracotta);
  font-weight: 500;
}

.catalog-row.is-hidden { display: none !important; }

.catalog__table {
  border-top: 2px solid var(--navy);
}
.catalog-row {
  display: grid;
  grid-template-columns: 60px 1.8fr 1fr 120px 60px;
  gap: 2rem;
  padding: 1.8rem 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  font-family: var(--sans);
  color: inherit;
  text-decoration: none;
}
.catalog-row:hover {
  padding-left: 1rem;
  padding-right: 1rem;
  background: var(--cream-warm);
}
.catalog-row__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--terracotta);
  font-variant-numeric: tabular-nums;
}
.catalog-row__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s;
}
.catalog-row:hover .catalog-row__title { color: var(--terracotta); }
.catalog-row__cat {
  font-size: 0.8rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.catalog-row__duration {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
}
.catalog-row__arrow {
  font-size: 1.5rem;
  color: var(--terracotta);
  text-align: right;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s var(--ease);
}
.catalog-row:hover .catalog-row__arrow { opacity: 1; transform: translateX(0); }

.catalog-row--head {
  padding: 1rem 0;
}
.catalog-row--head span {
  font-size: 0.72rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute) !important;
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact {
  padding: 8rem 0;
  background: var(--cream);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.contact__info h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2rem;
}
.contact__info p {
  font-size: 1.05rem;
  color: var(--text-mute);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 450px;
}
.contact__details {
  display: grid;
  gap: 1.5rem;
}
.contact__detail {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.contact__detail-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact__detail-value,
.contact__detail a {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  font-style: italic;
  transition: color 0.3s;
}
.contact__detail a:hover { color: var(--terracotta); }

.contact__form {
  background: var(--navy);
  color: var(--cream);
  padding: 3.5rem;
}
.contact__form h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2rem;
}
.field {
  margin-bottom: 1.8rem;
}
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 246, 238, 0.3);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(250, 246, 238, 0.3); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field select option { background: var(--navy); }
.field textarea { resize: vertical; min-height: 100px; font-family: var(--sans); font-size: 1rem; line-height: 1.6; }
.contact__form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  background: var(--terracotta);
  color: var(--cream);
}
.contact__form .btn:hover { background: var(--gold); color: var(--navy); }
.form__feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gold);
  min-height: 1em;
  text-align: center;
}

/* ===== LEGAL PAGES ===== */
.legal {
  padding: 6rem 0 8rem;
  background: var(--cream);
}
.legal__content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.legal__content h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--navy);
  margin: 3.5rem 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  line-height: 1.2;
}
.legal__content h2:first-of-type { margin-top: 0; }
.legal__content p { margin-bottom: 1.2rem; color: var(--text-mute); }
.legal__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.legal__content ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-mute);
}
.legal__content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.legal__content strong { color: var(--navy); font-weight: 600; }
.legal__content em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
}
.legal__content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.legal__content a:hover { color: var(--terracotta-dark); }
.legal__update {
  margin-top: 4rem !important;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: right;
  font-size: 0.85rem;
  font-style: italic;
}

/* ===== NEXT EVENT TEASER (Accueil) ===== */
.next-event {
  padding: 4rem 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.next-event__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}
.next-event__label {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 3rem;
  border-right: 1px solid var(--line);
}
.next-event__label span:first-child {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.next-event__label span:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-mute);
}
.next-event__main {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.next-event__date {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}
.next-event__date em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.next-event__details {
  font-size: 0.95rem;
  color: var(--text-mute);
}
.next-event__details strong { color: var(--navy); font-weight: 600; }
.next-event__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 0.8rem 1.5rem;
  border: 1.5px solid var(--navy);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.next-event__cta:hover { background: var(--navy); color: var(--cream); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 8rem 0;
  background: var(--cream);
}
.testimonials--alt { background: var(--cream-warm); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  background: var(--cream);
  padding: 3rem 2.5rem;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.5s var(--ease);
}
.testimonials--alt .testimonial { background: var(--cream); }
.testimonial::before {
  content: '“';
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--terracotta);
  font-weight: 500;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(10, 26, 46, 0.25);
  border-color: var(--terracotta);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--navy);
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}
.testimonial footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.testimonial footer strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--sans);
}
.testimonial footer span {
  font-size: 0.8rem;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}
.testimonial__role {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream-warm);
  color: var(--terracotta);
  font-weight: 600;
  align-self: flex-start;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-carousel {
  --spv: 3;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 3.5rem;
}
.testimonials-carousel__viewport {
  overflow: hidden;
}
.testimonials-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.testimonials-carousel__slide {
  flex: 0 0 calc(100% / var(--spv));
  min-width: 0;
  padding: 1rem 0.75rem;
  box-sizing: border-box;
}
.testimonials-carousel__slide .testimonial {
  margin: 0;
  height: 100%;
}
.testimonials-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonials-carousel__btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}
.testimonials-carousel__btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
.testimonials-carousel__btn--prev { left: 0; }
.testimonials-carousel__btn--next { right: 0; }
.testimonials-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.testimonials-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonials-carousel__dot[aria-selected="true"] {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: scale(1.25);
}
.testimonials-carousel__dot:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
@media (max-width: 960px) {
  .testimonials-carousel { --spv: 2; }
}
@media (max-width: 640px) {
  .testimonials-carousel {
    --spv: 1;
    padding: 0 0.5rem;
  }
  .testimonials-carousel__btn {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: -3.5rem;
    transform: none;
  }
  .testimonials-carousel__btn--prev { left: calc(50% - 5rem); }
  .testimonials-carousel__btn--next { right: calc(50% - 5rem); }
  .testimonials-carousel__dots { margin-top: 5rem; }
}

/* ===== MEDIA GRID (Dans les médias) ===== */
.media-grid {
  padding: 6rem 0 8rem;
  background: var(--cream);
}
.media-grid__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 5rem;
}
.media-grid__logo {
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-mute);
  border-right: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.media-grid__logo:nth-child(6n) { border-right: none; }
.media-grid__logo:hover { background: var(--cream-warm); color: var(--terracotta); }

.media-grid__articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.media-article {
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s var(--ease);
}
.media-article:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(10, 26, 46, 0.2);
}
.media-article__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
.media-article__source { color: var(--terracotta); }
.media-article h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}
.media-article p {
  font-size: 0.95rem;
  color: var(--text-mute);
  line-height: 1.65;
  margin: 0;
}
.media-article__link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

/* ===== Variante vidéo (carte avec vignette YouTube + overlay play) ===== */
.media-grid__articles:has(.media-article--video:only-child) {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}
.media-article--video {
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.media-article__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  overflow: hidden;
}
.media-article__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.media-article--video:hover .media-article__thumb img {
  transform: scale(1.04);
}
.media-article__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(201, 96, 44, 0.92);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  padding-left: 7px; /* recentre le triangle ▶ optiquement */
  box-shadow: 0 10px 30px rgba(10, 26, 46, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.media-article--video:hover .media-article__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(201, 96, 44, 1);
}
.media-article__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===== JOURNAL (LinkedIn / publications) ===== */
.journal {
  padding: 6rem 0 8rem;
  background: var(--cream-warm);
}
.journal__list {
  display: flex;
  flex-direction: column;
}
.journal-post {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--ease);
}
.journal-post:hover { padding-left: 1.5rem; background: rgba(250, 246, 238, 0.5); }
.journal-post:last-child { border-bottom: 1px solid var(--line); }
.journal-post__date {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  padding-top: 0.6rem;
}
.journal-post__date span {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--terracotta);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.journal-post__body h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.journal-post__body p {
  font-size: 1rem;
  color: var(--text-mute);
  line-height: 1.65;
  max-width: 680px;
}
.journal-post__badge {
  align-self: start;
  padding: 0.3rem 0.8rem;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.journal__socials {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--navy);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}
.journal__socials-label {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
}
.journal__socials-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.journal__socials-list a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.8rem 1.5rem;
  border: 1.5px solid var(--navy);
  transition: all 0.3s;
}
.journal__socials-list a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}

/* ===== AGENDA ===== */
.agenda {
  padding: 6rem 0 8rem;
  background: var(--cream);
}
.agenda__list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--navy);
}
.event {
  display: grid;
  grid-template-columns: 120px 1fr 220px auto;
  gap: 3rem;
  padding: 2.5rem 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.event:hover { padding-left: 1.5rem; background: var(--cream-warm); }
.event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}
.event__day {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.event__month {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-top: 0.3rem;
}
.event__year {
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
.event__body h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.event__type {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.event__body p {
  font-size: 0.95rem;
  color: var(--text-mute);
  line-height: 1.5;
  max-width: 520px;
}
.event__location {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: var(--text-mute);
}
.event__location strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}
.event__cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding: 0.7rem 1.2rem;
  border: 1.5px solid var(--terracotta);
  transition: all 0.3s;
  white-space: nowrap;
}
.event__cta:hover { background: var(--terracotta); color: var(--cream); }
.event--past { opacity: 0.55; }
.event--past .event__cta { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .next-event__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .next-event__label { padding-right: 0; border-right: none; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
  .testimonials__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .media-grid__logos { grid-template-columns: repeat(3, 1fr); }
  .media-grid__logo:nth-child(6n) { border-right: 1px solid var(--line); }
  .media-grid__logo:nth-child(3n) { border-right: none; }
  .media-grid__articles { grid-template-columns: 1fr; }
  .journal-post { grid-template-columns: 100px 1fr; gap: 1.5rem; }
  .journal-post__badge { display: none; }
  .journal__socials { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .event { grid-template-columns: 100px 1fr; gap: 1.5rem; }
  .event__location, .event__cta { grid-column: 2; }
  .bio__grid { grid-template-columns: 1fr; gap: 3rem; }
  .bio__visual { position: static; }
  .offer { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .offer__arrow { display: none; }
  .catalog__head { grid-template-columns: 1fr; gap: 2rem; }
  .catalog__head p { justify-self: start; }
  .catalog-row { grid-template-columns: 40px 1fr 100px; gap: 1rem; }
  .catalog-row__cat, .catalog-row__arrow { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__right { padding-left: 0; border-left: none; padding-top: 2rem; border-top: 1px solid var(--line); }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pillars__grid, .method__steps { grid-template-columns: 1fr; }
  .method__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .header__inner { grid-template-columns: auto auto; gap: 1rem; }
  .primary-nav { display: none; }
}
@media (max-width: 640px) {
  .hero { padding-top: 3rem; }
  .hero__bar { gap: 1.5rem; font-size: 0.95rem; }
  .impact__grid { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: none; }
  .impact, .pillars, .method, .faq, .cta-final, .bio, .offers, .catalog, .contact, .legal { padding: 5rem 0; }
  .page-header { padding: 4rem 0 3rem; }
  .contact__form { padding: 2rem 1.5rem; }
  .offer { padding: 2rem 1.5rem; }
}

/* =========================================================
   MODALE générique (utilisée pour Profilaxions sur coaching.html)
   ========================================================= */
.modal {
  /* Centrage natif via `dialog:modal { position:fixed; inset:0; margin:auto }`
     + dimensions bornées. Plus fiable que top/left/transform. */
  width: min(1100px, calc(100vw - 4rem));
  max-height: min(85vh, 900px);
  margin: auto;
  border: none;
  padding: 0;
  background: var(--cream);
  color: var(--navy);
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(10, 26, 46, 0.6);
  overflow: hidden;
}
.modal::backdrop {
  background: rgba(10, 26, 46, 0.7);
  backdrop-filter: blur(4px);
}
.modal__container {
  padding: 2.5rem 2.5rem 1.75rem;
  max-height: inherit;
  overflow-y: auto;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
  border-radius: 50%;
  transition: background 0.2s var(--ease);
}
.modal__close:hover {
  background: rgba(10, 26, 46, 0.08);
}
.modal__header {
  text-align: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.modal__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 0.75rem;
}
.modal__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--navy);
}
.modal__lead {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 1rem;
  font-weight: 500;
}
.modal__def {
  font-size: 1rem;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.55;
}
.modal__section {
  margin-bottom: 2.5rem;
}
.modal__section h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 1.25rem;
}
.modal__section--dark {
  background: var(--navy);
  color: var(--cream);
  padding: 2rem;
  margin: 0 -3rem 2.5rem;
}
.modal__section--dark h3 {
  color: var(--cream);
}
.modal__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.modal__grid li {
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.45;
}
.modal__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.modal__steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem;
  background: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(250, 246, 238, 0.15);
}
.modal__step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}
.modal__steps strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}
.modal__steps p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(250, 246, 238, 0.8);
}
.modal__exp {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.modal__exp li {
  padding: 1.25rem;
  background: var(--cream-warm);
  border-left: 3px solid var(--terracotta);
  font-size: 1rem;
  line-height: 1.5;
}
.modal__list {
  margin: 1rem 0 0;
  padding-left: 1.5rem;
  line-height: 1.7;
  color: var(--text-mute);
}
.modal__list li {
  margin-bottom: 0.5rem;
}
.modal__footer {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  text-align: center;
}
.modal__tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 1.5rem;
}
.modal__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .modal__container { padding: 2rem 1.25rem 1.5rem; }
  .modal__section--dark { margin: 0 -1.25rem 2rem; padding: 1.5rem 1.25rem; }
  .modal__grid, .modal__exp { grid-template-columns: 1fr; }
  .modal__steps li { grid-template-columns: 44px 1fr; padding: 1rem; }
  .modal__step-num { font-size: 2rem; }
}
