/* ============================================================
   L'EFFET CLIQUET — Page « Parcours » (/parcours)
   Structure / tracé / étapes / fondus TRANSPLANTÉS du parcours
   du site dirigeants (davy.css) — réplique fidèle de la FORME.
   Seule la DA change : recoloration en clair rosé (variables theme.css).
   Le tracé SVG (ex-ivoire sur fond noir) + son halo deviennent framboise
   sur fond clair ; labels cyan → accent ; textes → encres sombres ;
   CTA pilule blanche+glow → framboise + ombre douce.
   ============================================================ */

.hero{min-height:70vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:48px 24px 30px}
.hero .eyebrow{color:var(--ink-muted);font-size:13px;letter-spacing:.2em;text-transform:uppercase;margin-bottom:16px}
.hero h1{font-size:clamp(40px,6vw,64px);font-weight:800;line-height:1.05;letter-spacing:-.02em;color:var(--ink)}
.hero .scroll-hint{margin-top:34px;color:var(--ink-muted);font-size:13px;letter-spacing:.15em;text-transform:uppercase;animation:pulse 2.4s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:.3}50%{opacity:.85}}

.journey{position:relative;width:100%;margin:0 auto;padding:0}
.journey svg{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:1}

.trace,.trace-glow{fill:none;stroke-linecap:round;stroke-linejoin:round}
.trace-glow{stroke:var(--accent);stroke-width:16;opacity:.12;filter:blur(8px)}
.trace{stroke:var(--accent);stroke-width:2.2;opacity:.85}

.steps{position:relative;z-index:2}
.step{position:relative;display:grid;grid-template-columns:1fr 1fr;align-items:center;min-height:62vh}

/* placeholder (sans image) : cartouche claire translucide au lieu du voile clair sur noir */
.step-photo{
  position:relative;z-index:2;
  height:42vh;width:84%;
  background:linear-gradient(135deg,rgba(255,255,255,.5),rgba(255,255,255,.22));
  border:1px solid var(--line);border-radius:12px;
  display:flex;align-items:center;justify-content:center;color:var(--ink-muted);font-size:13px;letter-spacing:.1em;text-transform:uppercase;
}
/* Photo réelle : aucun habillage (l'image se fond dans le fond) — INCHANGÉ */
.step-photo.has-img{
  background:none;border:none;border-radius:0;
  width:clamp(416px, 39vw, 560px);
  height:auto;
  aspect-ratio:1 / 1;
}
.step-photo.has-img img{
  display:block;width:100%;height:auto;
}
.step.right .step-photo.has-img,
.step.left  .step-photo.has-img{ justify-self:center; }
.step.right .step-photo{grid-column:2;grid-row:1;justify-self:start}
.step.right .step-text {grid-column:1;grid-row:1;text-align:left;justify-self:end;max-width:74%;padding-right:4%}
.step.left  .step-photo{grid-column:1;grid-row:1;justify-self:end}
.step.left  .step-text {grid-column:2;grid-row:1;text-align:left;justify-self:start;max-width:74%;padding-left:4%}

.step-text .yr{color:var(--accent);font-size:14px;font-weight:600;letter-spacing:.15em;text-transform:uppercase;margin-bottom:12px}
.step-text h2{font-size:28px;font-weight:800;line-height:1.12;margin-bottom:14px;color:var(--ink);letter-spacing:-.01em}
.step-text p{color:var(--ink-body);font-size:16px;line-height:1.65}
.step-text p + p{margin-top:16px}
.step-text .ph{display:block}
.step-text .ph + .ph{margin-top:7px}

.pair-fx{opacity:0;transform:translateY(26px);transition:opacity .4s ease,transform .4s ease}

.closing{min-height:46vh;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;text-align:center;padding:6vh 24px 90px}
.closing h1{font-size:38px;font-weight:800;margin-bottom:30px;color:var(--ink);line-height:1.1}

/* Pilule CTA — ex blanche + glow blanc → framboise + ombre douce sombre */
.parcours-cta{display:inline-block;padding:15px 36px;border-radius:100px;font-family:inherit;font-size:15px;font-weight:700;letter-spacing:.01em;text-decoration:none;background:var(--accent);color:#fff;box-shadow:0 10px 40px -8px rgba(214,51,108,.35);transition:transform .15s,box-shadow .2s,background .2s}
.parcours-cta:hover{transform:translateY(-2px);box-shadow:0 16px 50px -8px rgba(214,51,108,.5);background:var(--accent-hover)}

@media(max-width:760px){
  .journey svg{display:none}
  .hero{min-height:46vh}
  .step{grid-template-columns:1fr;min-height:auto;margin-bottom:72px;gap:22px}
  .step.right .step-photo,
  .step.left  .step-photo{grid-column:1;grid-row:1;justify-self:center;margin-bottom:4px}
  .step.right .step-text,
  .step.left  .step-text{grid-column:1;grid-row:2;text-align:left;justify-self:stretch;max-width:100%;padding:0 22px}
  .step-photo.has-img{width:100%;max-width:480px;height:auto;margin:0 auto}
}
