* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  color: inherit;
  font-family: var(--font-editorial);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(40px, 5.3vw, 62px);
  line-height: 1;
}

h2 {
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.06;
}

p,
li,
a,
button,
input,
textarea {
  font-family: var(--font-sans);
}

.lead {
  max-width: 650px;
  color: var(--muted-light);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
}

.dark-lead {
  color: var(--muted);
}

.eyebrow {
  color: var(--rose);
  font-size: 13px;
  font-weight: 450;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  left: var(--space-3);
  top: var(--space-3);
  z-index: 50;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--ink);
  padding: var(--space-2) var(--space-3);
}

.skip-link:focus {
  transform: translateY(0);
}
