*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--g-color-warm-white);
  color: var(--g-color-charcoal);
  font-family: var(--g-font-body);
  font-size: var(--g-type-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, dl { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--g-color-deep-black);
  font-family: var(--g-font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
}
h1 { font-size: var(--g-type-h1); line-height: .98; }
h2 { font-size: var(--g-type-h2); line-height: 1.02; }
h3 { font-size: var(--g-type-h3); line-height: 1.12; }
p { margin-bottom: 1.3em; }
::selection { background: var(--g-color-stone); color: var(--g-color-deep-black); }
:focus-visible { outline: 2px solid var(--g-color-charcoal); outline-offset: 4px; }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark a { color: var(--g-color-white-on-dark); }
.on-dark :focus-visible { outline-color: var(--g-color-white-on-dark); }
.g-eyebrow {
  margin: 0 0 var(--g-space-2);
  font-family: var(--g-font-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.45;
  text-transform: uppercase;
}
.g-prose { max-width: 760px; }
.g-prose > * + * { margin-top: 1.25em; }
.g-prose a, .g-contact a, .g-form-privacy a { text-decoration: underline; text-underline-offset: .2em; text-decoration-thickness: 1px; }
.g-prose blockquote { margin: var(--g-space-5) 0; padding-left: var(--g-space-3); border-left: 1px solid var(--g-color-stone); font-family: var(--g-font-display); font-size: 1.5em; }
.g-skip-link { position: fixed; left: 16px; top: -100px; z-index: 10000; padding: 12px 16px; background: var(--g-color-deep-black); color: var(--g-color-warm-white); }
.g-skip-link:focus { top: 16px; }
.g-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.g-reveal { opacity: 0; transform: translateY(20px); transition: opacity 650ms var(--g-ease-out), transform 650ms var(--g-ease-out); }
.g-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; scroll-behavior: auto !important; }
  .g-reveal { opacity: 1; transform: none; }
}
