/* ─────────────────────────────────────────
   design.css — Éléments décoratifs & aération
───────────────────────────────────────── */

/* ══════════════════════════════════════
   SÉPARATEURS VAGUE entre sections
══════════════════════════════════════ */

.wave-sep {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.wave-sep svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ══════════════════════════════════════
   NUMÉROS DE PARAGRAPHES
   dans "Qui suis-je" et "Parcours"
══════════════════════════════════════ */

.quisuisje-body p,
.parcours-body p {
  position: relative;
}

.para-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-style: italic;
  color: var(--teal-soft);
  opacity: 0.6;
  margin-right: 0.4rem;
  vertical-align: super;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   INTRO "Qui je suis ?" — accroche centrée
══════════════════════════════════════ */

.quisuisje-intro {
  max-width: 620px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.quisuisje-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 300;
  color: var(--teal-mid);
  line-height: 1.6;
}

/* Petite étoile décorative avant et après */
.quisuisje-intro::before,
.quisuisje-intro::after {
  content: '✦';
  display: block;
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
  letter-spacing: 0.3em;
}

.quisuisje-intro::after {
  margin-bottom: 0;
  margin-top: 1rem;
}

/* ══════════════════════════════════════
   BLOC STATS / CHIFFRES CLÉS
   (avant les prestations)
══════════════════════════════════════ */

.stats-band {
  background: var(--white);
  padding: 3rem 4rem;
  border-top: 1px solid var(--foam);
  border-bottom: 1px solid var(--foam);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--teal-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.stat-divider {
  width: 1px;
  background: var(--foam);
  align-self: stretch;
  margin: auto 0;
}

/* ══════════════════════════════════════
   ORBES DÉCORATIVES dans "Qui suis-je"
   et "Parcours" (mobile surtout)
══════════════════════════════════════ */

.deco-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

#aboutme .deco-orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--foam), transparent 70%);
  top: -60px; left: -80px;
  opacity: 0.6;
}

#aboutme .deco-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--mist), transparent 70%);
  bottom: 0; right: -40px;
  opacity: 0.5;
}

#parcours .deco-orb-1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--aqua), transparent 70%);
  top: -40px; right: -60px;
  opacity: 0.25;
}

/* S'assurer que le contenu passe au-dessus des orbes */
#aboutme .quisuisje-intro,
#aboutme .quisuisje-grid,
#parcours .parcours-grid {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   LIGNE DÉCORATIVE entre titre et texte
   dans les sections "Qui suis-je" / "Parcours"
══════════════════════════════════════ */

.section-deco-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-deco-line::before,
.section-deco-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-soft), transparent);
}

.section-deco-line span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 900px) {
  .stats-band { padding: 2.5rem 2rem; }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-divider { display: none; }

  .stat-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--foam);
  }

  .stat-item:last-child { border-bottom: none; }

  .wave-sep svg { height: 40px; }

  .quisuisje-intro { margin-bottom: 2.5rem; }
}