*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.dialog-open, body.lightbox-open { overflow: hidden; }
img, picture, svg, video { display: block; max-width: 100%; }
img { width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
main { min-height: 55vh; }
section { position: relative; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(34px, 4.5vw, 64px); }
h2 { font-size: clamp(28px, 3.2vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
p { margin-bottom: 1em; }
ul, ol { margin-top: 0; }
::selection { background: rgba(140, 109, 73, .22); }
:focus-visible { outline: 3px solid rgba(140, 109, 73, .48); outline-offset: 3px; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lead {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
  max-width: 66ch;
}
.muted { color: var(--muted); }
.small { color: var(--muted); font-size: 14px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
