/* ── FILE: css/typography.css ─────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(32px, 6vw, 72px); letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 4vw, 48px); letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 3vw, 32px); }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.text-primary { color: var(--text-primary); }
.text-muted { color: var(--text-muted); }
.text-data { color: var(--text-data); font-family: var(--font-mono); }
.text-small { font-size: 0.875rem; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
