*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { text-decoration-color: var(--color-bronze); }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--color-bronze); outline-offset: 3px; }
::selection { background: var(--color-sand); color: var(--color-text); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
h1 { font-size: clamp(2.7rem, 5vw, 4rem); margin-bottom: 1.35rem; }
h2 { font-size: clamp(2.05rem, 3.8vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.25; }
p { margin-bottom: 1rem; }
ul { padding-left: 1.2rem; }
small { font-size: .82rem; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  padding: .7rem 1rem; background: var(--color-text); color: var(--color-white);
}
.skip-link:focus { top: 1rem; }

.container { width: min(100% - (2 * var(--gutter)), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.8rem, 5vw, 4.2rem); }
.section--sand { background: color-mix(in srgb, var(--color-sand) 55%, var(--color-bg)); }
.section--forest { background: var(--color-forest); color: var(--color-bg); }
.section-intro { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-bottom: .85rem; color: var(--color-bronze);
  font-size: .78rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.18rem); max-width: 720px; color: var(--color-muted); }
.section--forest .lead, .section--forest .muted { color: rgba(247,244,238,.8); }
.muted { color: var(--color-muted); }
.divider { border: 0; border-top: 1px solid var(--color-border); margin: 0; }
.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; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
