html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-background);
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
.display-text {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h1 {
  font-size: var(--font-size-h1);
  line-height: 0.98;
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

.display-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--font-size-display);
  line-height: 0.85;
}

p {
  max-width: 70ch;
}

strong {
  font-weight: 600;
}

a {
  text-underline-offset: 0.15em;
}

a:not([class]) {
  text-decoration: underline;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--color-blue);
  color: var(--color-cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius);
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
