*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
figure { margin: 0; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--charcoal-950);
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
h1 { font-size: clamp(3rem, 6vw, 6.2rem); }
h2 { font-size: clamp(2.15rem, 4.1vw, 4.2rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.5rem); }
p { color: var(--muted); }
.container { width: min(calc(100% - 2.2rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.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;
}
.skip-link {
  position: fixed; top: .75rem; left: .75rem; z-index: 9999;
  transform: translateY(-160%); padding: .75rem 1rem; border-radius: .65rem;
  background: var(--charcoal-950); color: var(--white); text-decoration: none;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--leaf-500); outline-offset: 4px; }
[data-reveal] { opacity: 1; transform: none; }
html.reveal-ready [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 720ms var(--ease), transform 720ms var(--ease); }
html.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html.reveal-ready [data-reveal] { opacity: 1; transform: none; }
}
