/* ════════════════════════════════════════
   SECTIONS — Scaffolding partagé (eyebrow,
   titres, leçons) utilisé sur toutes les pages
   ════════════════════════════════════════ */

section {
  padding: var(--section-pad);
  position: relative;
}

/* Eyebrow */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 400;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Titres de section */
.section-h {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 900px;
}

.section-h .italic {
  font-style: italic;
  color: var(--gold);
}

/* Lede */
.section-lede {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 580px;
}
