/*
  MDC Website v2.0 — Build 2.2
  File: 02-typography.css
  Purpose: Typography system and readable text defaults.
*/
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  line-height: 1.7;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-navy-950);
  line-height: 1.15;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.55rem, 7vw, 5.7rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -0.04em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.02em; }
p { margin: 0 0 1.1rem; color: var(--color-gray-600); }
a { color: inherit; text-decoration: none; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-emerald-600);
  margin-bottom: 1rem;
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p { color: var(--color-white); }
.section-dark p { opacity: .84; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 62ch; }
