/* ═══════════════════════════════════════════════════
   Atomi — Section Header Component
   Canonical .section-head / .section-label /
   .section-title / .section-note definitions.
   Section-specific overrides win via cascade.
   ═══════════════════════════════════════════════════ */

.section-head {
  max-width: 1480px;
  margin: 0 auto var(--space-48);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-24);
  flex-wrap: wrap;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--violet);
  margin-bottom: var(--space-8);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-note {
  max-width: 430px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
