/* =========================================================
   PR Coaching Trail & Running — Patrick Renard
   Design system : montagne / trail / terrain
   ========================================================= */

:root {
  /* Palette terre & forêt */
  --forest-deep: #132419;
  --forest: #1e3a29;
  --pine: #2c5540;
  --moss: #4a7a5a;
  --earth: #4a3826;
  --earth-light: #6f5638;
  --sand: #f5f0e6;
  --sand-2: #ece4d4;
  --cream: #fbf8f2;
  --ink: #1b1a16;
  --ink-soft: #45423a;
  --line: #d9cfba;

  /* Accent énergie */
  --flame: #9b51e0;
  --flame-bright: #b06fe6;
  --flame-soft: #f1e7fb;

  /* Typo */
  --font-display: "Anton", "Oswald", Impact, sans-serif;
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Rythme */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(19, 36, 25, 0.08);
  --shadow: 0 14px 40px rgba(19, 36, 25, 0.16);
  --shadow-lg: 0 30px 70px rgba(19, 36, 25, 0.26);
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset léger ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.05; letter-spacing: 0.2px; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--flame);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--flame);
  display: inline-block;
}
.eyebrow--no-line::before { display: none; }
.eyebrow--no-line { gap: 0; }
.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  color: var(--forest-deep);
  margin: 14px 0 18px;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--ink-soft); max-width: 60ch; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 130px); }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest-deep); color: var(--cream); }
.section--forest .section-title { color: var(--cream); }
.section--forest .lead { color: rgba(251, 248, 242, 0.78); }
#methode { scroll-margin-top: 90px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.stack-sm > * + * { margin-top: 12px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  cursor: pointer;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--flame { background: var(--flame); color: #fff; box-shadow: 0 10px 24px rgba(155, 81, 224, 0.32); }
.btn--flame:hover { background: var(--flame-bright); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(155, 81, 224, 0.42); }
.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--pine); transform: translateY(-3px); }
.btn--ghost { border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.btn--ghost-dark { border: 2px solid var(--forest); color: var(--forest); }
.btn--ghost-dark:hover { background: var(--forest); color: var(--cream); transform: translateY(-3px); }
.btn--lg { padding: 18px 38px; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--forest-deep);
  display: grid; place-items: center;
  font-family: var(--font-display);
  color: var(--flame-bright);
  font-size: 1.35rem;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(155,81,224,0.35) 56%, transparent 58%);
}
.brand-mark-img {
  width: 46px; height: 46px;
  border-radius: 11px;
  object-fit: cover;
  display: block;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 1.02rem; letter-spacing: 0.5px; color: var(--forest-deep); }
.brand-sub { font-size: 0.66rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--flame); font-weight: 600; margin-top: 3px; }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 13px;
  border-radius: 7px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--forest-deep); }
.main-nav a.active { color: var(--flame); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--flame); border-radius: 2px;
}
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-mobile-only { display: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--forest-deep);
  place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 80% 10%, rgba(155,81,224,0.14), transparent 55%),
              linear-gradient(180deg, rgba(19,36,25,0.2), rgba(19,36,25,0.55));
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(60px, 9vw, 110px);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.5px;
}
.hero h1 .flame { color: var(--flame-bright); }
.hero-eyebrow { color: var(--flame-bright); }
.hero-eyebrow::before { background: var(--flame-bright); }
.hero p.lead { color: rgba(251,248,242,0.82); margin-top: 22px; font-size: clamp(1.08rem, 2vw, 1.25rem); }
.hero .btn-row { margin-top: 34px; }

.hero-media { position: relative; }
.hero-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid rgba(251,248,242,0.9);
  transform: rotate(1.4deg);
  aspect-ratio: 3/4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-badge {
  position: absolute;
  bottom: -22px; left: -20px;
  background: var(--flame);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
  max-width: 210px;
}
.hero-badge strong { font-family: var(--font-head); text-transform: uppercase; font-size: 1.05rem; display: block; line-height: 1.1; }
.hero-badge span { font-size: 0.78rem; opacity: 0.92; }

/* =========================================================
   STATS / PALMARÈS BAND
   ========================================================= */
.stats-band {
  background: var(--forest);
  color: var(--cream);
  border-top: 3px solid var(--flame);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  padding: clamp(34px, 5vw, 54px) clamp(20px, 3vw, 40px);
  text-align: center;
  position: relative;
}
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }
.stat-icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  color: var(--flame-bright);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
  line-height: 1;
  letter-spacing: 1px;
}
.stat-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.92rem; margin-top: 8px; color: var(--flame-bright); }
.stat-sub { font-size: 0.86rem; color: rgba(251,248,242,0.66); margin-top: 6px; }
.stat-headline {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.12;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.adidas-mark { display: block; }

/* =========================================================
   PILIERS / PHILOSOPHIE
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.pillar {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-num { font-family: var(--font-display); color: var(--flame); font-size: 1.4rem; }
.pillar-icon { width: 42px; height: 42px; color: var(--pine); margin-bottom: 16px; }
.pillar h3 { font-size: 1.4rem; text-transform: uppercase; color: var(--forest-deep); margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; }
.section--forest .pillar { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.section--forest .pillar h3 { color: var(--cream); }
.section--forest .pillar p { color: rgba(251,248,242,0.75); }
.section--forest .pillar-icon { color: var(--flame-bright); }

/* ---------- Split content ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split-media { position: relative; }
.media-tag {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(19,36,25,0.86);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
}
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-top: 14px; color: var(--ink-soft); }
.check-list svg { flex: none; width: 22px; height: 22px; color: var(--flame); margin-top: 2px; }
.section--forest .check-list li { color: rgba(251,248,242,0.82); }

/* =========================================================
   OFFRES / CARTES TARIFAIRES
   ========================================================= */
/* Groupes d'offres : plan préfait vs coaching sur mesure */
.plan-group { margin-top: 50px; }
.plan-group + .plan-group { margin-top: 80px; }
.plan-group-head { text-align: center; max-width: 660px; margin: 0 auto 34px; }
.group-chip {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  background: var(--flame);
  padding: 7px 18px;
  border-radius: 30px;
}
.group-chip--neutral { background: var(--pine); }
.plan-group-head h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
  color: var(--forest-deep);
  margin: 16px 0 8px;
}
.plan-group-head p { color: var(--ink-soft); font-size: 0.98rem; }
.plan-group .plans { margin-top: 0; }

/* Carte large (plan Débutant) */
.plan--wide {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}
.plan--wide .plan-features { flex: none; margin: 0; }
.plan--wide .plan-tagline { min-height: 0; }
.plan--wide .btn { width: 100%; justify-content: center; margin-top: 6px; }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
  align-items: stretch;
}
.plan {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan--featured {
  background: var(--forest-deep);
  color: var(--cream);
  border-color: var(--flame);
  box-shadow: var(--shadow);
}
.plan-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--flame); color: #fff;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: 0.74rem; font-weight: 600;
  padding: 6px 18px; border-radius: 30px;
  white-space: nowrap;
}
.plan-name { font-family: var(--font-head); text-transform: uppercase; font-size: 1.5rem; letter-spacing: 1px; color: var(--forest-deep); }
.plan--featured .plan-name { color: var(--cream); }
.plan-tagline { font-size: 0.92rem; color: var(--ink-soft); margin-top: 4px; min-height: 42px; }
.plan--featured .plan-tagline { color: rgba(251,248,242,0.7); }
.plan-price { margin: 22px 0; display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-family: var(--font-display); font-size: 3.1rem; color: var(--flame); line-height: 1; }
.plan--featured .plan-price .amount { color: var(--flame-bright); }
.plan-price .per { font-size: 0.95rem; color: var(--ink-soft); }
.plan--featured .plan-price .per { color: rgba(251,248,242,0.7); }
.plan-features { flex: 1; margin: 6px 0 26px; }
.plan-features li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; font-size: 0.96rem; border-bottom: 1px dashed var(--line); }
.plan--featured .plan-features li { border-color: rgba(255,255,255,0.12); }
.plan-features li:last-child { border-bottom: none; }
.plan-features svg { flex: none; width: 19px; height: 19px; color: var(--flame); margin-top: 3px; }
.plan-features .muted { color: #a99e88; }
.plan-features .muted svg { color: #c9bda3; }
.plan .btn { width: 100%; justify-content: center; }

/* =========================================================
   TÉMOIGNAGES
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 50px;
}
.testimonial {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial .quote-mark { font-family: var(--font-display); color: var(--flame-soft); font-size: 4rem; line-height: 0.6; position: absolute; top: 20px; right: 22px; }
.testimonial .stars { color: var(--flame); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 12px; }
.testimonial p { font-size: 1rem; color: var(--ink-soft); position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--pine); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  flex: none;
}
.avatar.a2 { background: var(--flame); }
.avatar.a3 { background: var(--earth-light); }
.avatar.a4 { background: var(--forest); }
.avatar.a5 { background: var(--moss); }
.avatar.a6 { background: var(--earth); }
.testimonial-author strong { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.98rem; color: var(--forest-deep); }
.testimonial-author span { display: block; font-size: 0.82rem; color: var(--ink-soft); }

/* Avis en défilement continu sur 2 lignes (accueil) */
.marquee {
  margin-top: 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-row {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-block: 8px;
  will-change: transform;
}
.marquee-row + .marquee-row { margin-top: 18px; }
.marquee-row .testimonial { width: min(84vw, 380px); flex: none; }

/* Bande défilante des logos partenaires */
.logo-band {
  margin-top: 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track { gap: clamp(48px, 9vw, 110px); align-items: center; padding-block: 14px; }
.logo-item {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  color: var(--forest);
  white-space: nowrap;
  opacity: 0.9;
}
.logo-img { height: clamp(34px, 4.5vw, 52px); width: auto; display: block; flex: none; }
.logo-img--tall { height: clamp(56px, 7.5vw, 88px); }

/* =========================================================
   ÉTAPES DE LA MÉTHODE (accueil)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--flame-bright);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.35rem; text-transform: uppercase; color: var(--cream); margin-bottom: 10px; }
.step p { color: rgba(251,248,242,0.75); font-size: 0.98rem; }
/* Apparition décalée des étapes */
html.js .steps .step:nth-child(2) { transition-delay: 0.12s; }
html.js .steps .step:nth-child(3) { transition-delay: 0.24s; }
html.js .steps .step:nth-child(4) { transition-delay: 0.36s; }
html.js .steps .step:hover { transition-delay: 0s; }

/* =========================================================
   PRESSE & MÉDIAS (accueil)
   ========================================================= */
.press-grid {
  display: flex;
  gap: 24px;
  margin-top: 50px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.press-card {
  position: relative;
  flex: 0 0 clamp(320px, 36vw, 460px);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 30px 28px;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
  transition: transform 0.3s var(--ease);
}
.press-card:hover { transform: translateY(-6px); }
.press-bg {
  position: absolute;
  inset: -16px;
  z-index: -1;
  background-size: cover;
  background-position: center;
  filter: blur(7px) brightness(0.42) saturate(1.05);
  transform: scale(1.06);
  transition: filter 0.45s var(--ease), transform 0.45s var(--ease);
}
.press-card:hover .press-bg { filter: blur(2px) brightness(0.52) saturate(1.05); transform: scale(1.12); }
.press-type {
  align-self: flex-start;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: var(--flame);
  padding: 5px 12px;
  border-radius: 30px;
}
.press-card h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.12;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.press-card .press-type { position: absolute; top: 24px; left: 28px; }
.press-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--flame-bright);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  font-weight: 600;
}
.press-go svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.press-card:hover .press-go svg { transform: translateX(4px); }
.press-grid::-webkit-scrollbar { height: 8px; }
.press-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 8px; }
.press-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.28); border-radius: 8px; }
.press-grid::-webkit-scrollbar-thumb:hover { background: var(--flame); }
.press-nav { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
.press-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--cream);
  display: grid; place-items: center;
  transition: 0.2s;
}
.press-nav button:hover { background: var(--flame); border-color: var(--flame); }
.press-nav svg { width: 20px; height: 20px; }

/* =========================================================
   HISTOIRES DE COUREURS (accueil)
   ========================================================= */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.story {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.story:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.story-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.avatar--lg { width: 64px; height: 64px; font-size: 1.35rem; }
.story-id { flex: 1; min-width: 0; }
.story-id strong { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; font-size: 1.05rem; color: var(--forest-deep); display: block; }
.story-id span { font-size: 0.85rem; color: var(--ink-soft); }
.story-chip {
  background: var(--flame);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.92rem;
  white-space: nowrap;
}
.story-quote { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.story-meta { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); font-size: 0.86rem; color: var(--ink-soft); }
.story-meta span { color: var(--flame); font-weight: 600; }

/* =========================================================
   PARTENAIRES
   ========================================================= */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.partner {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  padding: 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  text-align: center;
}
.partner:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.partner-logo { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; color: var(--forest); font-size: 1.15rem; line-height: 1.1; }
.partner-logo small { display: block; font-size: 0.6rem; letter-spacing: 2px; color: var(--flame); margin-top: 4px; }
.partner svg { width: 100%; height: auto; max-height: 60px; }
.partner-img { max-width: 78%; max-height: 74px; width: auto; height: auto; object-fit: contain; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--flame), var(--flame-bright));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band .section-title { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,0.92); margin-inline: auto; }
.cta-band .btn--forest { background: var(--forest-deep); }
.cta-band .btn--forest:hover { background: #000; }

/* =========================================================
   CONTACT / FORMULAIRES
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.form-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 0.82rem; color: var(--forest-deep); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgba(155,81,224,0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.95rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e5f1e8; color: #1e5a34; border: 1px solid #b7d9c1; }
.form-status.err { background: #fbe4da; color: #a5391a; border: 1px solid #f0c2b0; }

.contact-info { display: flex; flex-direction: column; gap: 6px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-item:last-of-type { border-bottom: none; }
.info-icon { flex: none; width: 46px; height: 46px; border-radius: 11px; background: var(--forest-deep); color: var(--flame-bright); display: grid; place-items: center; }
.info-icon svg { width: 22px; height: 22px; }
.info-item h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 0.86rem; color: var(--forest-deep); margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--ink-soft); font-size: 0.98rem; }
.info-item a:hover { color: var(--flame); }
.map-embed { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; filter: saturate(1.05); }

/* Plan selector highlight */
.plan-select-card { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 8px; }
.plan-radio { position: relative; }
.plan-radio input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.plan-radio label {
  display: block; text-align: center; padding: 18px 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer; transition: 0.2s; background: #fff;
  text-transform: none; letter-spacing: 0; margin: 0;
}
.plan-radio label b { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; color: var(--forest-deep); font-size: 1.05rem; }
.plan-radio label span { font-size: 0.9rem; color: var(--flame); font-weight: 600; }
.plan-radio input:checked + label { border-color: var(--flame); background: var(--flame-soft); box-shadow: 0 0 0 3px rgba(155,81,224,0.12); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--forest-deep); color: rgba(251,248,242,0.8); padding-block: clamp(50px, 7vw, 80px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { font-size: 0.92rem; margin-top: 16px; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.88rem; color: var(--flame-bright); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.92rem; }
.footer-contact svg { flex: none; width: 18px; height: 18px; color: var(--flame-bright); margin-top: 3px; }
.footer-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; color: rgba(251,248,242,0.55); }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.07); display: grid; place-items: center; transition: 0.2s; }
.socials a:hover { background: var(--flame); }
.socials svg { width: 18px; height: 18px; color: var(--cream); }

/* =========================================================
   PAGE HERO (sous-pages)
   ========================================================= */
.page-hero {
  background: var(--forest-deep);
  color: var(--cream);
  padding-block: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: -2; opacity: 0.5; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(19,36,25,0.5), rgba(19,36,25,0.8)); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.2rem); text-transform: uppercase; }
.page-hero .lead { color: rgba(251,248,242,0.82); margin-top: 16px; }
.breadcrumb { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem; color: var(--flame-bright); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--cream); }

/* Timeline (à propos) */
.timeline { margin-top: 44px; border-left: 2px solid var(--line); padding-left: 34px; display: flex; flex-direction: column; gap: 34px; }
.tl-item { position: relative; }
.tl-item::before { content: ""; position: absolute; left: -43px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--flame); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--flame); }
.tl-year { font-family: var(--font-display); color: var(--flame); font-size: 1.3rem; }
.tl-item h3 { font-size: 1.3rem; text-transform: uppercase; color: var(--forest-deep); margin: 4px 0 8px; }
.tl-item p { color: var(--ink-soft); font-size: 0.98rem; }

/* Reveal on scroll — masqué uniquement si JS actif (sinon tout reste visible) */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 380px; margin: 10px auto 0; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: -1; }
  .pillars, .plans { grid-template-columns: 1fr; }
  .steps, .story-grid { grid-template-columns: 1fr; }
  .plan--wide { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--forest-deep);
    padding: 20px var(--gutter) 34px;
    transform: translateY(-140%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow);
    z-index: 90;
  }
  body.nav-open .main-nav { transform: translateY(0); }
  .main-nav .nav-mobile-only { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { color: var(--cream); font-size: 1.1rem; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .main-nav a.active { color: var(--flame-bright); }
  .main-nav a.active::after { display: none; }
  .nav-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .plan-select-card { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 50%; transform: translateX(-50%) rotate(-3deg); bottom: -26px; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
