*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-graphite);
  background: var(--color-offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
  min-height: 100%;
}
/* Never let hidden drawers/overlays reserve layout or paint */
[hidden] {
  display: none !important;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-navy); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--color-orange); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3, h4, h5, h6 { margin: 0; }
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display { font-family: var(--font-heading); font-size: 64px; font-weight: 800; line-height: 1.04; letter-spacing: -0.028em; }
h1, .h1 { font-size: 48px; font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h2, .h2 { font-size: 34px; font-weight: 700; line-height: 1.18; }
h3, .h3 { font-size: 24px; font-weight: 700; line-height: 1.3; letter-spacing: -0.012em; }
h4, .h4 { font-size: 19px; font-weight: 700; line-height: 1.35; letter-spacing: 0; }
.lead { font-size: 20px; line-height: 1.62; color: var(--color-graphite); }
.small, small { font-size: 14px; line-height: 1.6; color: var(--color-steel); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
}
.num { font-variant-numeric: tabular-nums; }
::selection { background: var(--color-orange); color: var(--color-navy); }
:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 2px; }
.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: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--color-orange); color: var(--color-navy);
  padding: 12px 16px; font-weight: 700;
}
.skip-link:focus { left: 16px; top: 16px; }
.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.main { min-height: 50vh; }
.hp-field {
  position: absolute !important; left: -10000px !important; top: auto !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}
