*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-chocolate); text-underline-offset: .22em; }
a:hover { color: var(--color-gold-dark); }
h1, h2, h3 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 9vw, 5.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 6vw, 3.6rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.35rem, 3vw, 1.8rem); }
p { margin: 0 0 var(--space-4); }
ul, ol { margin-top: 0; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 4px; }
::selection { color: var(--color-ink); background: var(--color-gold); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  color: var(--color-ink);
  background: var(--color-gold);
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

