*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-ink-muted);
  background: var(--color-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 2rem;
}

.column {
  width: 100%;
  max-width: var(--column-max);
  margin-inline: auto;
}

.section--paper {
  background: var(--color-paper);
}

.section--paper-warm {
  background: var(--color-paper-warm);
}

.eyebrow {
  margin: 0;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-subtle);
}

h1,
h2,
.h-display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-ink);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-ink);
}

.sub {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-ink-muted);
}

.sub--narrow {
  max-width: 50ch;
}

.body-copy p {
  margin: 0 0 1.5rem;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.caption {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-ink-subtle);
}

.caption--italic {
  font-style: italic;
}

.tnum {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.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;
}
