body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--color-charcoal);
  background: var(--color-bg);
}

h1,
h2,
h3,
h4 {
  color: var(--color-ink);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-tight);
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-4xl);
  font-weight: 800;
}

h2 {
  font-size: var(--fs-3xl);
}

h3 {
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
}

p {
  text-wrap: pretty;
}

p + p {
  margin-top: var(--space-4);
}

strong {
  font-weight: 700;
  color: var(--color-ink);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100%;
  z-index: 999;
  padding: var(--space-3) var(--space-4);
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
}

.skip-link:focus {
  top: var(--space-4);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-title {
  max-width: 18ch;
  margin-bottom: var(--space-5);
}

.section-lead {
  max-width: 38rem;
  font-size: var(--fs-md);
  color: var(--color-muted);
  line-height: var(--lh-normal);
}

.section-header {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-header--center .section-title {
  margin-inline: auto;
}

.section-header--center .section-lead {
  margin-inline: auto;
}

.text-accent {
  color: var(--color-accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is-hidden {
  display: none !important;
}
