* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Skip-to-content link — hidden offscreen until keyboard-focused */
.sr-only-focusable {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  background: var(--c-text);
  color: var(--c-bg-light);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: top 0.2s ease;
}
.sr-only-focusable:focus {
  top: 16px;
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

h1, h2, h3, .display {
  font-family: var(--f-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.014em;
  line-height: 0.98;
  margin: 0;
}
h1 {
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.018em;
}
h2 {
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.006em;
}
p { margin: 0 0 1em; }
.lede {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--c-text);
}
.eyebrow {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin: 0 0 18px;
}
