/* ==========================================================================
   ARNAUD HURSIN — PRÉPARATION MENTALE & PERFORMANCE
   Design system. Premium, high-contrast, no AI slop.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Tokens ---------- */
:root {
  /* Color — Palette signature : Bleu nuit / Bleu pierre / Ivoire / Gris perle / Ocre doré */
  --ink:        #1E2A30;   /* Bleu nuit — texte principal & CTA fort */
  --ink-deep:   #141C20;   /* variante plus sombre — footer */
  --ink-soft:   #4A6670;   /* Bleu pierre — couleur secondaire / titres alternatifs */
  --stone:      #4A6670;   /* alias bleu pierre */
  --accent:     #C9A961;   /* Ocre doré — accent ~10 % */
  --accent-2:   #A8893E;   /* ocre profond — hover */
  --accent-soft:#E0C589;   /* ocre clair — sur fond sombre */
  --bg:         #F5F2EC;   /* Ivoire — fond principal */
  --paper:      #FFFFFF;   /* blanc cassé pour les cartes */
  --pearl:      #D4D0C8;   /* Gris perle — séparateurs / blocs neutres */
  --text:       #1E2A30;
  --muted:      #5C6B6F;   /* gris chaud aligné sur la palette */
  --border:     #D4D0C8;   /* gris perle */
  --border-dark:#2A3A42;   /* variante claire pour bordures sur fond sombre */
  --success:    #2D7A4F;

  /* Type */
  --font-display: 'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body:    'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono:    'Space Grotesk', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-script:  'Caveat', 'Patrick Hand', cursive;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 24px;

  /* Shadows — diffused, never neon */
  --shadow-1: 0 1px 2px rgba(10,22,40,.04), 0 4px 12px -4px rgba(10,22,40,.06);
  --shadow-2: 0 10px 30px -12px rgba(10,22,40,.18);
  --shadow-hard: 6px 6px 0 0 var(--ink);
  --shadow-hard-accent: 6px 6px 0 0 var(--accent);
}

/* ---------- Base ---------- */
html, body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.55; }
body { overflow-x: hidden; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6.2vw, 5rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1.15rem; font-weight: 700; }

p { color: var(--text); max-width: 65ch; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: #2A2D33; line-height: 1.55; max-width: 60ch; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section--ink { background: var(--ink); color: #EAEEF5; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--paper { background: var(--paper); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 5rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transform: rotate(-1.2deg);
  margin-bottom: 1.5rem;
}
.section--ink .eyebrow { color: var(--accent-soft); border-color: rgba(224,197,137,0.5); background: rgba(201,169,97,0.08); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--accent);
  font-size: 1.6em;
  line-height: 1;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), background-color .2s, color .2s, box-shadow .25s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ink); color: var(--bg); box-shadow: 6px 6px 0 0 var(--accent); }
.btn--primary:hover { background: var(--ink-deep); box-shadow: 8px 8px 0 0 var(--accent); transform: translate(-2px, -2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--white { background: var(--paper); color: var(--ink); box-shadow: 6px 6px 0 0 var(--accent); }
.btn--white:hover { background: var(--accent); color: var(--ink); box-shadow: 8px 8px 0 0 var(--paper); transform: translate(-2px, -2px); }
.btn--lg { padding: 1.15rem 2rem; font-size: 1rem; }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,238,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-ink { background: rgba(10,22,40,0.85); border-bottom-color: var(--border-dark); }
.site-header.is-ink .nav__link { color: #EAEEF5; }
.site-header.is-ink .brand { color: #fff; }
.site-header.is-ink .nav__toggle { color: #fff; }
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.brand__mark { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; color: var(--accent); font-weight: 900; font-size: 0.95rem; letter-spacing: 0; }
.brand__name { font-size: 1.05rem; line-height: 1; }
.brand__tag { display: block; font-size: 0.7rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 2px; font-family: var(--font-mono); }

.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-size: 0.95rem; font-weight: 500; color: var(--ink); position: relative; }
.nav__link:hover { color: var(--accent); }
.nav__link[aria-current="page"]::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); }

.nav__cta { display: inline-flex; }
.nav__toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 22px; height: 2px; background: currentColor; transition: transform .25s, opacity .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__menu { position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; padding: 1.5rem var(--gutter) 2rem; background: var(--bg); border-bottom: 1px solid var(--border); transform: translateY(-100%); top: -200px; transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), top 0s linear .35s; visibility: hidden; opacity: 0; }
  .site-header.is-ink .nav__menu { background: var(--ink); border-bottom-color: var(--border-dark); }
  .nav__menu.is-open { transform: translateY(0); top: 64px; transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), top 0s linear, opacity .25s, visibility 0s; visibility: visible; opacity: 1; }
  .nav__menu .nav__link { display: block; width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 1.1rem; }
  .site-header.is-ink .nav__menu .nav__link { border-bottom-color: var(--border-dark); }
  .nav__menu .nav__cta { width: 100%; justify-content: center; margin-top: 1rem; }
  .nav__toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: -10% -5% auto auto;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(closest-side, rgba(201,169,97,0.10), transparent 70%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__title { margin-bottom: 1.5rem; }
.hero__title .accent-bar {
  background: var(--accent);
  color: #fff;
  padding: 0.05em 0.35em;
  display: inline-block;
  transform: skew(-6deg) rotate(-1deg);
  margin-inline: 0.05em;
}
.hero__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.25;
  margin-block: -0.5rem 1.5rem;
  max-width: 26ch;
}
.hero__h2-em {
  font-style: normal;
  color: var(--accent-2);
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}
.hero__h2-em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px; height: 6px;
  background: var(--accent);
  opacity: 0.35;
  z-index: -1;
}
.hero__subtitle { font-size: clamp(1.05rem, 1.4vw, 1.15rem); color: #2A2D33; margin-bottom: 2rem; max-width: 56ch; }
.hero__cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero__signal { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); margin-top: 1.5rem; }
.hero__signal .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(45,122,79,0.18); }

.hero__visual { position: relative; }
.hero__photo {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  transform: rotate(1.5deg);
  border: 1px solid var(--border);
}
.hero__badge {
  position: absolute; bottom: -1.5rem; left: -2rem;
  background: var(--ink); color: #fff;
  padding: 1rem 1.25rem; border-radius: var(--radius);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-2);
  max-width: 230px;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.05; color: var(--accent-soft); }
.hero__badge span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-family: var(--font-mono); }
.hero__badge--quote {
  max-width: 280px;
  padding: 1.1rem 1.4rem;
}
.hero__badge--quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  margin: 0;
  letter-spacing: -0.005em;
}
.hero__badge--quote em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}

.hero__sticker {
  position: absolute; top: -1rem; right: -1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(6deg);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-sm);
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 380px; margin-inline: auto; order: -1; }
  .hero__badge { left: -1rem; max-width: 180px; padding: 0.85rem 1rem; }
  .hero__badge strong { font-size: 1.2rem; }
  .hero__sticker { right: 0.5rem; top: 0; }
}

/* ---------- Stats strip ---------- */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 760px;
  margin-inline: auto;
}
.stats__item {
  padding: 2rem clamp(1rem, 2vw, 1.5rem);
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: 0; }
.stats__num { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 900; color: var(--ink); letter-spacing: -0.03em; }
.stats__num sup { font-size: 0.55em; color: var(--accent); margin-left: 2px; }
.stats__label { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: 0; border-bottom: 1px solid var(--border); }
  .stats__item:last-child { border-bottom: 0; }
}

/* ---------- Pillar strip (bandeau fixe 5 piliers, version sombre) ---------- */
.pillar-strip {
  background: var(--ink);
  color: #fff;
  border-block: 1px solid var(--border-dark);
  padding-block: 2.2rem;
}
.pillar-strip__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}
.pillar-strip__list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.88rem, 1.18vw, 1.08rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding-inline: 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem; justify-content: center;
}
.pillar-strip__list li:last-child { border-right: 0; }
.pillar-strip__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-soft);
  letter-spacing: 0.2em;
}
@media (max-width: 880px) {
  .pillar-strip__list { grid-template-columns: repeat(2, 1fr); }
  .pillar-strip__list li {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  .pillar-strip__list li:nth-child(odd) { border-right: 1px solid var(--border); }
  .pillar-strip__list li:nth-child(even) { border-right: 0; }
  .pillar-strip__list li:last-child {
    grid-column: span 2;
    border-right: 0;
    border-bottom: 0;
  }
  .pillar-strip__list li:nth-last-child(2) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .pillar-strip__list { grid-template-columns: 1fr; }
  .pillar-strip__list li,
  .pillar-strip__list li:nth-child(odd) { border-right: 0; border-bottom: 1px solid var(--border); }
  .pillar-strip__list li:last-child { border-bottom: 0; grid-column: span 1; }
  .pillar-strip__list li:nth-last-child(2) { border-bottom: 1px solid var(--border); }
}

/* ---------- Pain points (Le constat) ---------- */
.pain { background: var(--ink); color: #EAEEF5; }
.pain h2 { color: #fff; max-width: 22ch; }
.pain__hook { font-family: var(--font-script); color: var(--accent-soft); font-size: clamp(2rem, 4vw, 3rem); transform: rotate(-2deg); display: inline-block; line-height: 1; margin-bottom: 1rem; }
.pain__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: #fff;
  max-width: 28ch;
  margin: 2rem 0;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}
.pain__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 3rem; }
.pain__list li {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-top: 1px solid var(--border-dark);
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 1rem;
  color: #C8CFDB;
}
.pain__list li::before {
  content: '—'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 0;
}
@media (max-width: 720px) { .pain__list { grid-template-columns: 1fr; } }

/* ---------- Athletes Page — Custom layouts ---------- */
.sport-hero {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8rem) clamp(2.5rem, 4vw, 3.5rem);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.sport-hero__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.95rem;
  margin-top: 1.5rem;
  background: rgba(201,169,97,0.08);
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.sport-hero__credit a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(201,169,97,0.5); text-underline-offset: 3px; }
.sport-hero__credit a:hover { color: #fff; }
.sport-hero::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto auto;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(closest-side, rgba(201,169,97,0.15), transparent 70%);
  pointer-events: none;
}
.sport-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.sport-hero__photo {
  border-radius: var(--radius);
  filter: contrast(1.05);
  border: 1px solid rgba(201,169,97,0.25);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  box-shadow: 12px 12px 0 0 var(--accent);
  transform: rotate(-1.5deg);
}
@media (max-width: 880px) {
  .sport-hero__inner { grid-template-columns: 1fr; }
  .sport-hero__visual { max-width: 380px; margin-inline: auto; }
}

/* Le constat — bloc citation */
.sport-constat {
  background: var(--bg);
  padding-block: clamp(4rem, 8vw, 7rem);
  border-block: 1px solid var(--border);
}
.sport-constat__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.sport-constat__quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
}
.sport-constat__quote em { font-style: normal; color: var(--accent-2); }
.sport-constat__list { display: flex; flex-direction: column; gap: 0; }
.sport-constat__list-item {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.sport-constat__list-item:last-child { border-bottom: 1px solid var(--border); }
.sport-constat__list-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-2);
  padding-top: 0.3rem;
}
.sport-constat__list-text { color: var(--text); font-size: 1rem; line-height: 1.55; }
@media (max-width: 880px) {
  .sport-constat__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* 5 piliers en rangées verticales alternées */
.sport-pillars-rows { display: flex; flex-direction: column; }
.sport-pillar-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border-dark);
}
.sport-pillar-row:first-child { border-top: 0; padding-top: clamp(2rem, 4vw, 3rem); }
.sport-pillar-row:nth-child(even) .sport-pillar-row__number { order: 2; text-align: right; }
.sport-pillar-row:nth-child(even) .sport-pillar-row__body { order: 1; }
.sport-pillar-row__number {
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 0.82;
  color: var(--accent);
  letter-spacing: -0.06em;
  position: relative;
  user-select: none;
}
.sport-pillar-row__number::after {
  content: attr(data-label);
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  letter-spacing: 0.2em;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 1rem;
  line-height: 1;
}
.sport-pillar-row__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 22ch;
}
.sport-pillar-row__body h3 em { font-style: normal; color: var(--accent); }
.sport-pillar-row__body > p {
  color: #C8CFDB;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch;
  margin-block: 1.25rem 1.5rem;
}
.sport-pillar-row__bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; }
.sport-pillar-row__bullets li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  display: flex;
  gap: 0.65rem;
  color: #C8CFDB;
  font-size: 0.95rem;
  line-height: 1.4;
}
.sport-pillar-row__bullets li::before { content: '+'; color: var(--accent); font-weight: 800; flex-shrink: 0; }
@media (max-width: 880px) {
  .sport-pillar-row { grid-template-columns: 1fr; gap: 1rem; padding-block: 2.5rem; }
  .sport-pillar-row:nth-child(even) .sport-pillar-row__number,
  .sport-pillar-row:nth-child(even) .sport-pillar-row__body { order: unset; text-align: left; }
  .sport-pillar-row__number { font-size: clamp(4.5rem, 18vw, 7rem); }
  .sport-pillar-row__bullets { grid-template-columns: 1fr; }
}

/* Timeline 3 chapitres — horizontale */
.sport-timeline { position: relative; padding-block: 2rem; }
.sport-timeline__line {
  position: absolute;
  top: 80px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,0.5) 15%, rgba(201,169,97,0.5) 85%, transparent);
  z-index: 0;
}
.sport-timeline__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.sport-timeline__item { text-align: center; padding: 0 1rem; }
.sport-timeline__dot {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--accent);
  margin-inline: auto;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 8px var(--ink);
}
.sport-timeline__phase {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-soft);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.sport-timeline__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin-top: 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 22ch;
  margin-inline: auto;
}
.sport-timeline__body {
  color: #C8CFDB;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 1rem;
  max-width: 34ch;
  margin-inline: auto;
}
@media (max-width: 880px) {
  .sport-timeline__items { grid-template-columns: 1fr; gap: 2.5rem; }
  .sport-timeline__line { display: none; }
}

/* Audience comparison table */
.sport-audience-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 2.5rem;
}
.sport-audience-table thead th {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  padding: 1.1rem 1.5rem;
  color: var(--ink);
  background: var(--bg);
  border-bottom: 2px solid var(--border);
}
.sport-audience-table thead th:nth-child(2) { background: var(--ink); color: var(--accent-soft); border-bottom-color: var(--ink); }
.sport-audience-table thead th:nth-child(3) { background: var(--paper); color: var(--muted); border-bottom-color: var(--border); }
.sport-audience-table tbody td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.96rem;
  vertical-align: top;
  line-height: 1.5;
  color: var(--text);
}
.sport-audience-table tbody td:first-child { font-weight: 600; color: var(--ink); background: var(--bg); width: 26%; }
.sport-audience-table tbody td:nth-child(2) { background: rgba(201,169,97,0.08); border-left: 3px solid var(--accent); }
.sport-audience-table tbody td:nth-child(3) { color: var(--muted); border-left: 1px solid var(--border); }
@media (max-width: 720px) {
  .sport-audience-table { display: block; }
  .sport-audience-table thead { display: none; }
  .sport-audience-table tbody, .sport-audience-table tr { display: block; }
  .sport-audience-table tr { background: var(--paper); margin-bottom: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
  .sport-audience-table td { display: block; border-bottom: 1px dashed var(--border); padding: 0.85rem 1.25rem !important; width: auto !important; }
  .sport-audience-table td:first-child { background: var(--ink) !important; color: #fff !important; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
  .sport-audience-table td:nth-child(2)::before { content: '✓ '; color: var(--accent); font-weight: 800; }
  .sport-audience-table td:nth-child(3)::before { content: '✗ '; color: var(--muted); font-weight: 800; }
  .sport-audience-table td:last-child { border-bottom: 0; }
}

/* ---------- Athletes Banner (titre voyant) ---------- */
.athletes-banner {
  background: var(--ink);
  color: #EAEEF5;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-block: 1px solid var(--border-dark);
}
.athletes-banner::before {
  content: 'ATHLÈTES';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(7rem, 26vw, 26rem);
  font-weight: 900;
  color: rgba(201, 169, 97, 0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.athletes-banner__inner { position: relative; z-index: 1; }
.athletes-banner .eyebrow { color: var(--accent-soft); border-color: rgba(201,169,97,0.45); background: rgba(201,169,97,0.08); }
.athletes-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 auto;
  max-width: 18ch;
}
.athletes-banner__title em {
  font-style: normal;
  color: var(--accent);
}
.athletes-banner__title .underline-stroke {
  background-image: linear-gradient(transparent 70%, rgba(201,169,97,0.4) 70%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-inline: 0.15em;
}
.athletes-banner__text {
  max-width: 56ch;
  margin: 2rem auto 0;
  color: #C8CFDB;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}
.athletes-banner__rule {
  width: 60px; height: 3px; background: var(--accent);
  margin: 2.5rem auto 0; border-radius: 2px;
}

/* ---------- Method (5 piliers) ---------- */
.method__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: end; margin-bottom: 4rem; }
.method__head p { font-size: 1.1rem; color: var(--muted); }
@media (max-width: 880px) { .method__head { grid-template-columns: 1fr; } }

.pillars {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
/* ≥600px : 2+2+1, dernière carte centrée pleine largeur */
@media (min-width: 600px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillars > :last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.625rem);
    justify-self: center;
  }
}
/* ≥980px : 3+2, deux dernières centrées */
@media (min-width: 980px) {
  .pillars { grid-template-columns: repeat(6, 1fr); }
  .pillars > * { grid-column: span 2; }
  .pillars > :nth-child(4) { grid-column: 2 / span 2; }
  .pillars > :last-child { grid-column: 4 / span 2; max-width: none; justify-self: stretch; }
}
/* ≥1400px : 5 d'affilée */
@media (min-width: 1400px) {
  .pillars { grid-template-columns: repeat(5, 1fr); }
  .pillars > *,
  .pillars > :nth-child(4),
  .pillars > :last-child { grid-column: auto; }
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 2.1rem 1.75rem 2rem;
  border-radius: var(--radius);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 22px -10px rgba(0,0,0,0.28);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform-origin: left;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 14px 38px -14px rgba(0,0,0,0.45); }
.pillar__num { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; color: var(--accent); }
.pillar__title {
  margin: 0.75rem 0 1rem;
  color: var(--ink);
  text-align: center;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.pillar h3 { color: var(--ink); }
.pillar p { color: var(--text); }
.pillar__title .ampersand { color: var(--accent); }
.pillar__list { margin-top: 1.5rem; }
.pillar__list li { padding: 0.6rem 0; border-bottom: 1px dashed var(--border); font-size: 0.95rem; display: flex; gap: 0.6rem; color: var(--text); }
.pillar__list li:last-child { border-bottom: 0; }
.pillar__list li::before { content: '+'; color: var(--accent); font-weight: 800; }

/* ---------- Programme / Phases ---------- */
.phases__grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.phases__list { display: flex; flex-direction: column; gap: 0; }
.phase {
  border-top: 1px solid var(--border-dark);
  padding: 2rem 0;
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start;
}
.phase:last-child { border-bottom: 1px solid var(--border-dark); }
.phase__num { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; color: var(--accent); letter-spacing: 0.15em; min-width: 60px; padding-top: 0.4rem; }
.phase__head { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.phase__body p { color: #C8CFDB; max-width: 56ch; }
.phase__tag { display: inline-block; font-size: 0.7rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.6rem; background: rgba(201,169,97,0.15); color: var(--accent-soft); border: 1px solid rgba(201,169,97,0.3); border-radius: 999px; margin-top: 0.85rem; }
@media (max-width: 880px) { .phases__grid { grid-template-columns: 1fr; } }

/* ---------- Chapters (3 chapitres narratifs) ---------- */
.chapters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.chapters::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  top: 1.85rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,0.35) 15%, rgba(201,169,97,0.35) 85%, transparent);
  z-index: 0;
}
.chapter {
  position: relative;
  padding: 0;
  background: transparent;
  z-index: 1;
}
.chapter__head {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-top: 0;
}
.chapter__num {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 0 0 4px var(--ink);
}
.chapter__when {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.chapter__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.1vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin: 0 0 1.1rem;
  max-width: 22ch;
}
.chapter__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}
.chapter__body {
  color: #C8CFDB;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 38ch;
}
@media (max-width: 880px) {
  .chapters { grid-template-columns: 1fr; gap: 2.5rem; }
  .chapters::before { display: none; }
}

/* ---------- For Whom (zigzag) ---------- */
.audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.audience__col {
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  background: var(--paper);
}
.audience__col--bad { border-style: dashed; opacity: 0.92; }
.audience__col--good { background: var(--ink); color: #EAEEF5; border-color: var(--ink); }
.audience__col--good h3 { color: #fff; }
.audience__col h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.audience__col h3::before { content: ''; width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; }
.audience__col--bad h3::before { background: #C8CFDB; }
.audience__col--good h3::before { background: var(--accent); }
.audience__col ul li { padding: 0.85rem 0; border-bottom: 1px dashed var(--border); display: flex; gap: 0.75rem; }
.audience__col--good ul li { border-bottom-color: rgba(255,255,255,0.12); color: #C8CFDB; }
.audience__col ul li:last-child { border-bottom: 0; }
.audience__col ul li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px;
  background-position: center; background-repeat: no-repeat; background-size: contain;
}
.audience__col--bad li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none' stroke='%23999' stroke-width='2.2'%3E%3Cpath d='M4 4l10 10M14 4L4 14'/%3E%3C/svg%3E");
}
.audience__col--good li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none' stroke='%23C9A961' stroke-width='2.4'%3E%3Cpath d='M3.5 9l4 4 7-8'/%3E%3C/svg%3E");
}
@media (max-width: 720px) { .audience__grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.tm__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.tm {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 240px;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s;
}
.tm:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.tm--big { grid-column: span 7; }
.tm--small { grid-column: span 5; }
.tm--ink { background: var(--ink); color: #EAEEF5; border-color: var(--ink); }
.tm--ink .tm__author { color: #fff; }
.tm--ink .tm__role { color: rgba(255,255,255,0.6); }
.tm__quote { font-family: var(--font-display); font-size: clamp(1.05rem, 1.4vw, 1.2rem); font-weight: 500; line-height: 1.45; color: var(--ink); max-width: none; }
.tm--ink .tm__quote { color: #fff; }
.tm__quote::before { content: '“'; font-family: Georgia, serif; font-size: 3rem; color: var(--accent); line-height: 0.6; vertical-align: -0.3em; margin-right: 0.15em; }
.tm__meta { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.tm--ink .tm__meta { border-top-color: rgba(255,255,255,0.12); }
.tm__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--accent-soft); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; flex-shrink: 0; }
.tm--ink .tm__avatar { background: var(--accent); color: #fff; }
.tm__author { font-weight: 700; color: var(--ink); }
.tm__role { font-size: 0.85rem; color: var(--muted); }
@media (max-width: 880px) {
  .tm__grid { grid-template-columns: 1fr; }
  .tm--big, .tm--small { grid-column: span 1; }
}

/* ---------- Choice (either / or) ---------- */
.choice { background: var(--ink); }
.choice__h { color: #fff; max-width: 24ch; margin-bottom: 2.5rem; }
.choice__h .accent-bar { background: var(--accent); padding: 0 0.3em; transform: skew(-6deg); display: inline-block; }
.choice__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border-dark); border-radius: var(--radius); overflow: hidden; }
.choice__col { padding: 2.5rem 2rem; }
.choice__col + .choice__col { border-left: 1px solid var(--border-dark); }
.choice__col--win { background: linear-gradient(180deg, rgba(201,169,97,0.12), transparent 70%); }
.choice__tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-soft); }
.choice__col--lose .choice__tag { color: rgba(255,255,255,0.5); }
.choice__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0.75rem 0 1rem; }
.choice__col--lose .choice__title { color: rgba(255,255,255,0.6); text-decoration: line-through; text-decoration-thickness: 1px; }
.choice__body { color: #C8CFDB; }
@media (max-width: 720px) {
  .choice__grid { grid-template-columns: 1fr; }
  .choice__col + .choice__col { border-left: 0; border-top: 1px solid var(--border-dark); }
}

/* ---------- Pricing ---------- */
.pricing__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; max-width: 1000px; margin-inline: auto; }
.pricing__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1240px; align-items: stretch; }
@media (max-width: 1100px) { .pricing__grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; } }
@media (max-width: 720px) { .pricing__grid--3 { grid-template-columns: minmax(0, 1fr); } }
.price-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
  display: flex; flex-direction: column;
  min-width: 0;
}
.price-card--feature {
  background: var(--ink);
  color: #EAEEF5;
  border-color: var(--ink);
  transform: rotate(0.5deg);
}
.price-card--feature::before {
  content: 'Le plus choisi';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--accent); color: #fff; padding: 0.4rem 0.9rem; border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-1);
}
.price-card h3 { color: var(--ink); margin-bottom: 0.5rem; }
.price-card--feature h3 { color: #fff; }
.price-card__sub { color: var(--muted); margin-bottom: 1.75rem; }
.price-card--feature .price-card__sub { color: rgba(255,255,255,0.7); }
.price-card__amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--ink); letter-spacing: -0.03em; }
.price-card--feature .price-card__amount { color: var(--accent-soft); }
.price-card__amount-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.price-card--feature .price-card__amount-note { color: rgba(255,255,255,0.6); }
.price-card__features { margin: 1.5rem 0 2rem; flex: 1; }
.price-card__features li { padding: 0.7rem 0; border-bottom: 1px dashed var(--border); display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.price-card--feature .price-card__features li { border-bottom-color: rgba(255,255,255,0.12); color: #C8CFDB; }
.price-card__features li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23C9A961' stroke-width='2.5'%3E%3Cpath d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-card .btn { width: 100%; justify-content: center; }
@media (max-width: 720px) {
  .pricing__grid { grid-template-columns: minmax(0, 1fr); }
  .price-card--feature { transform: none; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: var(--ink);
  transition: color .2s;
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: background-color .25s, border-color .25s, transform .35s;
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--ink); transition: background-color .25s, transform .25s;
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item[open] .faq__icon { background: var(--accent); border-color: var(--accent); transform: rotate(180deg); }
.faq__item[open] .faq__icon::before, .faq__item[open] .faq__icon::after { background: #fff; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__a {
  padding: 0 0 1.75rem;
  color: #2A2D33;
  max-width: 70ch;
  font-size: 1rem;
  line-height: 1.65;
}
.faq__a p + p { margin-top: 0.85rem; }

/* ---------- Lead Magnet (capture email + PDF gratuit) ---------- */
.lead-magnet {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border-dark);
}
.lead-magnet::before {
  content: 'PDF';
  position: absolute;
  top: -2rem; right: -2rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(201,169,97,0.06);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.lead-magnet__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.lead-magnet__pdf-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,169,97,0.12);
  border: 1px solid rgba(201,169,97,0.4);
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.lead-magnet h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.lead-magnet h2 em { font-style: normal; color: var(--accent); }
.lead-magnet__lede { color: #C8CFDB; font-size: 1.05rem; line-height: 1.6; max-width: 50ch; }
.lead-magnet__bullets { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 0.6rem; }
.lead-magnet__bullets li { display: flex; gap: 0.7rem; color: #EAEEF5; font-size: 0.98rem; }
.lead-magnet__bullets li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}
.lead-magnet__form-wrap {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
  transform: rotate(0.5deg);
}
.lead-magnet__form-wrap > h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.lead-magnet__form-wrap > p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.lead-magnet__form { display: grid; gap: 1rem; }
.lead-magnet__form .form__input,
.lead-magnet__form .form__select {
  padding: 0.85rem 1rem;
  font-size: 0.98rem;
}
.lead-magnet__form .btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 1.5rem;
}
.lead-magnet__trust {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lead-magnet__trust::before { content: '🔒'; font-size: 0.85em; }
.lead-magnet__feedback {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.lead-magnet__feedback.is-success {
  display: block;
  background: rgba(45,122,79,0.12);
  border: 1px solid var(--success);
  color: var(--success);
}
.lead-magnet__feedback.is-error {
  display: block;
  background: rgba(216,90,42,0.12);
  border: 1px solid var(--accent);
  color: var(--accent-2);
}
@media (max-width: 880px) {
  .lead-magnet__inner { grid-template-columns: 1fr; }
  .lead-magnet__form-wrap { transform: none; }
}

/* ---------- Final CTA ---------- */
.cta-final {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-final::after {
  content: ''; position: absolute; inset: auto -10% -50% auto;
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(closest-side, rgba(201,169,97,0.18), transparent 70%);
  pointer-events: none;
}
.cta-final__inner { position: relative; z-index: 1; max-width: 720px; }
.cta-final h2 { color: #fff; margin-bottom: 1.5rem; }
.cta-final p { color: #C8CFDB; font-size: 1.1rem; margin-bottom: 2rem; }
.cta-final .btn { font-size: 1.05rem; padding: 1.2rem 2.2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: #C8CFDB; padding: 4rem 0 2rem; }
.footer__top { display: grid; grid-template-columns: 1.7fr 1.1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand .brand { color: #fff; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .footer__desc { color: #8A93A4; font-size: 0.92rem; margin-top: 1rem; max-width: 42ch; line-height: 1.6; }
.footer__brand .footer__desc strong { color: #DCE3F0; font-weight: 600; }
.footer__since {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__map {
  margin-top: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  filter: grayscale(0.2) brightness(0.92);
  height: 180px;
  position: relative;
}
.footer__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer__map-cap {
  position: absolute; top: 8px; left: 8px;
  background: var(--ink-deep);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer__col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; font-family: var(--font-mono); font-weight: 600; }
.footer__col h4 + h4 { margin-top: 2rem; }
.footer__col ul li { padding: 0.35rem 0; }
.footer__col a { color: #C8CFDB; font-size: 0.92rem; transition: color .2s; }
.footer__col a:hover { color: var(--accent-soft); }
.footer__contact-list { display: grid; gap: 0.4rem; font-size: 0.92rem; }
.footer__contact-list strong { color: #fff; font-weight: 600; }
.footer__contact-list .footer__highlight { color: var(--accent-soft); }
.footer__zones { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px dashed rgba(255,255,255,0.1); }
.footer__zones ul li { display: flex; gap: 0.5rem; padding: 0.3rem 0; font-size: 0.88rem; line-height: 1.45; align-items: flex-start; }
.footer__zones ul li::before {
  content: '·'; color: var(--accent); font-weight: 800; font-size: 1.4rem; line-height: 1; flex-shrink: 0;
}
.footer__zones strong { color: #fff; font-weight: 600; }
.footer__also {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.5;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(255,255,255,0.1);
}
.footer__also strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.footer__also a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-decoration-color: rgba(224,197,137,0.4);
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s;
}
.footer__also a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: 0.85rem; color: #8A93A4; }
.footer__bottom a { color: #8A93A4; }
.footer__bottom a:hover { color: #fff; }
.footer__seo-line {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: #6F7888;
  line-height: 1.6;
}
.footer__seo-line a { color: #8A93A4; text-decoration: underline; text-decoration-color: rgba(138,147,164,0.3); text-underline-offset: 3px; }
.footer__seo-line a:hover { color: #fff; }
@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__label { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.form__hint { font-size: 0.8rem; color: var(--muted); }
.form__input, .form__textarea, .form__select {
  width: 100%; padding: 0.95rem 1rem;
  border: 1px solid var(--border); background: var(--paper);
  font-family: var(--font-body); font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
}
.form__textarea { resize: vertical; min-height: 140px; }
.form__input:focus, .form__textarea:focus, .form__select:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px rgba(201,169,97,0.15); }
.form__check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.form__check input { margin-top: 4px; accent-color: var(--accent); }
.form__submit-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: 0.5rem; }
.form__feedback { display: none; padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.95rem; }
.form__feedback.is-success { display: block; background: rgba(45,122,79,0.12); border: 1px solid var(--success); color: var(--success); }
.form__feedback.is-error { display: block; background: rgba(201,169,97,0.12); border: 1px solid var(--accent); color: var(--accent-2); }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.about-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-hero__photo { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-2); }
@media (max-width: 880px) { .about-hero__grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; } }

.timeline { display: grid; gap: 0; max-width: 920px; margin-inline: auto; }
.timeline__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.timeline__item:last-child { border-bottom: 1px solid var(--border); }
.timeline__year { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; padding-top: 0.3rem; }
.timeline__body h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.timeline__body p { color: var(--muted); }
@media (max-width: 600px) { .timeline__item { grid-template-columns: 1fr; gap: 0.5rem; } }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.value {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--paper);
  border-radius: var(--radius);
}
.value__num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); letter-spacing: 0.18em; font-weight: 600; }
.value h4 { margin: 0.75rem 0 0.85rem; font-size: 1.15rem; }
.value p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 720px) { .values { grid-template-columns: 1fr; } }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s, border-color .3s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--ink); }
.post-card__cover { aspect-ratio: 16/10; background: var(--ink); position: relative; overflow: hidden; }
.post-card__cover svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.post-card__body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.post-card__cat { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.post-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; line-height: 1.25; margin: 0.5rem 0 0.75rem; color: var(--ink); }
.post-card__excerpt { font-size: 0.95rem; color: var(--muted); flex: 1; }
.post-card__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--muted); }
.post-card__read { color: var(--ink); font-weight: 600; display: inline-flex; gap: 0.4rem; align-items: center; }
.post-card:hover .post-card__read { color: var(--accent); }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Article body */
.article-hero {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(4rem, 7vw, 6rem) clamp(3rem, 5vw, 4rem);
}
.article-hero h1 { color: #fff; max-width: 22ch; }
.article-hero__meta { display: flex; gap: 1.5rem; flex-wrap: wrap; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 1.5rem; }
.article-body { max-width: 720px; margin-inline: auto; }
.article-body p, .article-body li { font-size: 1.08rem; line-height: 1.7; color: #1a1a1a; }
.article-body p { margin-bottom: 1.25rem; max-width: 100%; }
.article-body h2 { margin: 3rem 0 1rem; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.article-body h3 { margin: 2rem 0 0.75rem; font-size: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body ul li { list-style: disc; padding-left: 0.4rem; margin-bottom: 0.4rem; }
.article-body ol li { list-style: decimal; padding-left: 0.4rem; margin-bottom: 0.4rem; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body a:not(.btn) {
  color: var(--ink);
  font-weight: 600;
  background-image: linear-gradient(to right, var(--accent) 0%, var(--accent) 100%);
  background-position: 0 92%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  padding-bottom: 1px;
  transition: background-size .2s;
}
.article-body a:not(.btn):hover { background-size: 100% 100%; color: #fff; padding: 0 2px; border-radius: 2px; }

/* Article — Résumé / TL;DR */
.article-summary {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 0 0 3rem;
  position: relative;
  box-shadow: var(--shadow-2);
}
.article-summary__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.article-summary h2 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  text-transform: none;
}
.article-summary ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.article-summary ul li {
  list-style: none !important;
  padding: 0.55rem 0 0.55rem 1.6rem !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.98rem !important;
  color: rgba(255,255,255,0.92) !important;
  line-height: 1.5 !important;
  position: relative;
}
.article-summary ul li:last-child { border-bottom: 0; }
.article-summary ul li::before {
  content: "→";
  color: var(--accent-soft);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0.55rem;
}
.article-summary ul li strong { color: #fff; }

/* Article — Encadrés (callouts) */
.callout {
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  position: relative;
}
.callout__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-2);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}
.callout__label::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.callout p, .callout li { font-size: 1rem; line-height: 1.6; }
.callout p:last-child, .callout ul:last-child, .callout ol:last-child { margin-bottom: 0; }

.callout--retenir { background: #FAF6EE; border-left-color: var(--accent); }
.callout--retenir .callout__label { color: var(--accent-2); }

.callout--savoir { background: #EEF2F4; border-left-color: var(--ink-soft); }
.callout--savoir .callout__label { color: var(--ink-soft); }
.callout--savoir .callout__label::before { background: var(--ink-soft); }

.callout--coach { background: var(--ink); color: rgba(255,255,255,0.92); border: 0; border-left: 4px solid var(--accent); }
.callout--coach .callout__label { color: var(--accent-soft); }
.callout--coach .callout__label::before { background: var(--accent-soft); }
.callout--coach p, .callout--coach li { color: rgba(255,255,255,0.92); }
.callout--coach strong { color: #fff; }
.callout--coach a:not(.btn) { color: var(--accent-soft); background-image: none; padding-bottom: 1px; border-bottom: 1px solid var(--accent-soft); }

.callout--alerte { background: #FBF1EC; border-left-color: #B8553A; }
.callout--alerte .callout__label { color: #B8553A; }
.callout--alerte .callout__label::before { background: #B8553A; }

/* Article — Chiffres clés */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--accent);
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  display: block;
}
.stat-card__label {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Article — Tableau stylé */
.article-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  font-size: 0.98rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.article-table thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.article-table tbody td {
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.article-table tbody tr:nth-child(odd) td { background: #FAF8F2; }
.article-table tbody td strong { color: var(--ink); }
.article-table--compare td:first-child { font-weight: 600; color: var(--ink); width: 30%; }

/* Article — Ressources externes */
.article-resources {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 3rem 0 2rem;
}
.article-resources h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.article-resources h3::before {
  content: "↗";
  color: var(--accent);
  font-weight: 800;
}
.article-resources ul { list-style: none !important; padding: 0 !important; margin: 0.5rem 0 0 !important; }
.article-resources ul li {
  list-style: none !important;
  padding: 0.7rem 0 !important;
  margin: 0 !important;
  border-bottom: 1px dashed var(--border);
  font-size: 0.96rem !important;
}
.article-resources ul li:last-child { border-bottom: 0; }
.article-resources ul li a { color: var(--ink); font-weight: 600; background: none !important; padding: 0 !important; }
.article-resources ul li a:hover { color: var(--accent-2); background: none !important; }
.article-resources ul li small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* Article — Navigation suivant/précédent */
.article-nav {
  margin: 4rem auto 0;
  max-width: 720px;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.article-nav__item {
  display: block;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s ease;
  background-image: none !important;
}
.article-nav__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--ink);
  padding: 1.25rem 1.5rem !important;
  border-radius: var(--radius) !important;
}
.article-nav__item--next { text-align: right; }
.article-nav__dir {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.article-nav__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.article-nav__item:hover .article-nav__title { color: var(--accent-2); }
@media (max-width: 640px) {
  .article-nav { grid-template-columns: 1fr; }
  .article-nav__item--next { text-align: left; }
}

/* Article — Temps de lecture badge */
.article-hero__readtime {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(201,169,97,0.18);
  color: var(--accent-soft);
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: 99px;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.article-hero__readtime::before {
  content: "⏱";
  font-size: 0.9rem;
}

/* ---------- Mobile fixes (≤ 600 px) ---------- */
@media (max-width: 600px) {
  /* Boutons : autoriser le wrap pour ne pas déborder */
  .btn {
    white-space: normal;
    max-width: 100%;
    text-align: center;
    line-height: 1.3;
    word-break: normal;
  }
  .btn--lg { padding: 1rem 1.4rem; font-size: 0.95rem; }
  .cta-final .btn { padding: 1.1rem 1.4rem; font-size: 0.95rem; }

  /* H1 hero index : éviter le débordement de "Préparation mentale" */
  .hero__title { font-size: clamp(2rem, 9vw, 2.75rem); }

  /* Tous les H1 : protection anti-overflow */
  h1 { word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }

  /* Tableaux article : scroll horizontal au lieu de débordement */
  .article-body table,
  .article-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .article-body table thead,
  .article-table thead {
    display: table-header-group;
  }
  .article-body table tbody,
  .article-table tbody {
    display: table-row-group;
  }
  .article-body table tr,
  .article-table tr {
    display: table-row;
  }
  .article-body table th,
  .article-body table td,
  .article-table th,
  .article-table td {
    display: table-cell;
    min-width: 110px;
    font-size: 0.92rem;
    padding: 0.7rem 0.85rem;
  }

  /* Stats grid : passer en 1 colonne pour éviter compression */
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-card { padding: 1.1rem 1rem; }
  .stat-card__value { font-size: 1.65rem; }

  /* Article body : padding interne réduit */
  .article-body p, .article-body li { font-size: 1rem; line-height: 1.65; }
  .article-body h2 { font-size: clamp(1.35rem, 5vw, 1.6rem); margin: 2.5rem 0 0.85rem; }
  .article-body h3 { font-size: 1.1rem; margin: 1.6rem 0 0.6rem; }

  /* Callouts : padding réduit */
  .callout { padding: 1.15rem 1.25rem; }
  .article-summary { padding: 1.4rem 1.4rem; }

  /* Navigation suivant/précédent */
  .article-nav { gap: 1rem; padding-top: 2rem; margin-top: 3rem; }
  .article-nav__item { padding: 1rem 1.15rem; }
  .article-nav__title { font-size: 0.95rem; }

  /* Footer : padding et espacement */
  .footer__map iframe { max-width: 100%; }
}

/* Très petits écrans (≤ 380 px) — encore plus de marge */
@media (max-width: 380px) {
  .hero__title { font-size: clamp(1.75rem, 8.5vw, 2.4rem); }
  .article-hero h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .stat-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Marquee (optional accent) ---------- */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--paper);
  overflow: hidden;
  padding-block: 1.25rem;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 480s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { display: inline-flex; align-items: center; gap: 1.5rem; }
.marquee__track span::after { content: '★'; color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
