body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p {
  max-width: 65ch;
}

a {
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-yellow-dark);
}

a:focus-visible {
  outline: 2px solid var(--color-yellow-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background-color: var(--color-yellow);
  color: var(--color-charcoal);
}

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