body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  color: var(--color-text-muted);
  text-wrap: pretty;
}

p + p {
  margin-top: var(--space-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background-color: var(--color-accent);
}

.lede {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 42ch;
}

.text-center {
  text-align: center;
}

.text-align-balance {
  text-wrap: balance;
}

strong {
  color: var(--color-text);
  font-weight: 600;
}
