/* style.css - Le Fil Rose */
:root {
  /* Nouvelles couleurs exactes du Flyer */
  --fuchsia: #C70779;       /* Magenta vif (Titres, Boutons principaux) */
  --fuchsia-dark: #9E0561;  /* Version plus foncée pour le survol (calculé) */
  
  --blush: #FEC5E7;         /* Magenta plus clair (Fonds de sections alternées) */
  --blush-light: #FEAADD;   /* Magenta clair (Détails, survols) */
  
  --gold: #C5A059;          /* Doré (On garde le vôtre) */
  --gold-light: #E5C585;    /* Doré clair */
  
  --white: #FFFFFF;
  --ink: #4A4A4A;           
  --ink-soft: #666666;
  --line: #FEC5E7;          /* Lignes de séparation (utilise le magenta plus clair) */
  --focus: #1A5FB4;         
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-size: 19px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  margin: 0;
  color: var(--fuchsia);
  line-height: 1.12;
}

.eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--fuchsia);
}

a { color: var(--fuchsia); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--fuchsia-dark); }

img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* Accessibilité */
.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--fuchsia); color: #fff; padding: 14px 22px;
  border-radius: 0 0 10px 0; z-index: 200; font-weight: 700;
}
.skip-link:focus { left: 0; top: 0; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Décoration */
.thread-deco { position: absolute; pointer-events: none; opacity: 0.9; z-index: 0; }
.thread-deco img { width: 100%; height: auto; }
.hero .thread-deco { top: -40px; right: -60px; width: 380px; }
#tirage .thread-deco { bottom: -40px; left: -80px; width: 300px; transform: scaleX(-1) rotate(15deg); opacity: 0.5;}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--line);
}
header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo-mark { display: flex; align-items: center; gap: 12px; }
.logo-mark img { height: 52px; width: auto; }
.logo-mark .logo-text {
  font-family: 'League Spartan', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--fuchsia); line-height: 1.05;
}
.logo-mark .logo-text span {
  display: block; font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 0.62rem;
  color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px;
}

/* Boutons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 16px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  min-height: 48px;
  text-decoration: none;
}

.btn-primary { 
  background: var(--fuchsia); 
  color: #fff; 
  box-shadow: 0 8px 20px -6px rgba(214, 0, 110, 0.4); 
}
.btn-primary:hover {
  transform: translateY(-2px); 
  background: var(--fuchsia-dark);
}

.btn-ghost { 
  background: transparent; 
  color: var(--fuchsia); 
  border: 2px solid var(--fuchsia); 
}
.btn-ghost:hover {
  background: var(--blush);
  color: var(--fuchsia-dark);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(197, 160, 89, 0.4);
  border: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

header .btn { padding: 12px 22px; font-size: 0.9rem; min-height: auto; }

/* Hero */
.hero { padding: 72px 0 104px; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blush) 0%, #FFFFFF 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.4rem, 4.3vw, 3.6rem); color: var(--fuchsia); }
.hero h1 .accent { color: var(--ink); }
.hero p.lede { font-size: 1.22rem; color: var(--ink); margin-top: 22px; max-width: 48ch; }
.hero-ctas { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 24px;
  background: var(--blush-light); border: 2px solid var(--blush);
  display: flex; align-items: center; justify-content: center; overflow: hidden; z-index: 1;
}
.hero-visual .card-face { width: 64%; border-radius: 14px; box-shadow: 0 20px 40px -14px rgba(214, 0, 110, 0.2); }
.hero-tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px; background: #fff;
  border: 2px solid var(--gold);
  border-radius: 14px; padding: 14px 18px;
  font-family: 'League Spartan', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--fuchsia);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Sections */
.section { padding: 92px 0; }
.section-head { max-width: 660px; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-top: 8px; color: var(--fuchsia); }
.section-alt { background: var(--blush); border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); }
.section-alt .section-head h2, .section-alt h3 { color: var(--fuchsia); }

/* Situations */
.situations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.situation-card { background: #fff; border: 2px solid var(--line); border-radius: 18px; padding: 28px 26px; transition: 0.3s; }
.situation-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.situation-num {
  font-family: 'League Spartan', sans-serif; font-weight: 700;
  color: var(--fuchsia); font-size: 1.1rem; margin-bottom: 10px; display: block;
}
.situation-card p { font-size: 1.1rem; color: var(--ink); margin: 0; }
.closing-line { margin-top: 40px; font-family: 'League Spartan', sans-serif; font-size: 1.35rem; color: var(--fuchsia); text-align: center; }

/* Méthode */
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.method-col h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--fuchsia); }
.method-col p { color: var(--ink); }
.method-steps { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.method-step { display: flex; align-items: baseline; gap: 12px; font-size: 1.02rem; color: var(--ink); }
.method-step .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }

/* Parcours */
.path-track { position: relative; padding-left: 34px; border-left: 3px solid var(--blush); }
.path-step { position: relative; padding-bottom: 48px; }
.path-step:last-child { padding-bottom: 0; }
.path-step::before {
  content: ''; position: absolute; left: -42px; top: 2px; width: 16px; height: 16px;
  border-radius: 50%; background: #fff; border: 3px solid var(--fuchsia);
}
.path-step .eyebrow { margin-bottom: 6px; display: block; }
.path-step h3 { font-size: 1.42rem; margin-bottom: 8px; color: var(--fuchsia); }
.path-step p { color: var(--ink); max-width: 58ch; }
.path-list { margin: 10px 0 0; padding-left: 0; list-style: none; color: var(--ink); }
.path-list li { position: relative; padding-left: 20px; margin-bottom: 6px; max-width: 58ch; }
.path-list li::before { content: '—'; position: absolute; left: 0; color: var(--fuchsia); }

.path-tag { display: inline-block; margin-top: 12px; background: var(--blush-light); color: var(--fuchsia);
  font-size: 0.82rem; font-weight: 800; padding: 6px 14px; border-radius: 100px; border: 1px solid var(--line); }
.path-tag.gold { background: var(--gold); color: #fff; border: none; }

/* Tirage */
.draw-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.draw-stage { position: relative; max-width: 320px; margin: 0 auto; }
.draw-card-btn {
  all: unset; display: block; position: relative; aspect-ratio: 3/4; width: 100%;
  border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px -14px rgba(214, 0, 110, 0.3);
  cursor: pointer; border: 3px solid var(--fuchsia);
}
.draw-face { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; transition: opacity .3s ease; }
.draw-face.front { background: var(--fuchsia); }
.draw-face.front svg { width: 56px; height: 56px; stroke: #fff; }
.draw-face.front span { color: #fff; font-family: 'League Spartan', sans-serif; margin-top: 12px; font-size: 1.1rem; }
.draw-face.back { background: #fff; opacity: 0; pointer-events: none; flex-direction: column; padding: 10px; }
.draw-face.back.show { opacity: 1; pointer-events: auto; }
.draw-face.front.hide { opacity: 0; pointer-events: none; }
.draw-face.back img { width: 100%; height: auto; max-height: 70%; object-fit: contain; border-radius: 8px; }
.draw-message { 
  padding: 10px 14px; 
  font-family: 'League Spartan', sans-serif; 
  font-size: 1rem; 
  color: var(--fuchsia); 
  text-align: center; 
  line-height: 1.3;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.draw-live { margin-top: 14px; text-align: center; font-weight: 700; color: var(--fuchsia); min-height: 1.4em; }
.draw-copy .eyebrow { margin-bottom: 10px; display: block; }
.draw-copy h2 { margin-bottom: 16px; color: var(--fuchsia); }
.draw-copy p { color: var(--ink); margin-bottom: 24px; }

/* Fondatrice & Vidéo YT */
.founder-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.founder-video { 
  border-radius: 20px; 
  overflow: hidden; 
  border: 3px solid var(--blush); 
  max-width: 300px; 
  margin: 0 auto; 
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  background: #000;
}
.founder-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.founder-copy .eyebrow { display: block; margin-bottom: 10px; }
.founder-copy h2 { margin-bottom: 16px; color: var(--fuchsia); }
.founder-copy p { color: var(--ink); margin-bottom: 16px; }
.founder-quote {
  font-family: 'League Spartan', sans-serif; color: var(--fuchsia);
  font-size: 1.25rem; border-left: 4px solid var(--gold);
  padding-left: 18px; margin: 24px 0; font-style: italic;
}

/* Lancement */
.launch { background: var(--fuchsia); color: #fff; border-radius: 28px; padding: 60px; position: relative; overflow: hidden; }
.launch .eyebrow { color: #FCE4EC; }
.launch h2 { color: #fff; margin: 10px 0 16px; font-size: clamp(1.8rem, 3vw, 2.3rem); }
.launch p { color: rgba(255, 255, 255, 0.95); max-width: 54ch; margin-bottom: 28px; }
.launch .btn-primary { background: #fff; color: var(--fuchsia); }
.launch .btn-primary:hover { background: var(--blush); }
.launch-meta { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; border-top: 2px solid rgba(255, 255, 255, 0.35); padding-top: 26px; }
.launch-meta div strong { display: block; font-family: 'League Spartan', sans-serif; font-size: 1.35rem; color: var(--gold-light); }
.launch-meta div span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); }

/* Final CTA */
.final-cta { text-align: center; padding: 100px 0 84px; }
.final-cta h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); max-width: 16ch; margin: 14px auto 24px; color: var(--fuchsia); }
.final-cta p { color: var(--ink); max-width: 50ch; margin: 0 auto 34px; }

/* Footer */
footer { border-top: 2px solid var(--line); padding: 36px 0; font-size: 0.9rem; color: var(--ink); background: #fff; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer a { color: var(--fuchsia); }

/* Avis Google */
.stars { color: var(--gold); font-size: 1.5rem; margin: 1rem 0; letter-spacing: 5px; }

@media (max-width: 880px) {
  .hero-grid, .draw-wrap, .founder-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .situations { grid-template-columns: 1fr; }
  .launch { padding: 36px 24px; }
  .section { padding: 60px 0; }
  .thread-deco { display: none; }
  body { font-size: 18px; }
}