/* Portable brand tokens and native HTML foundations; no runtime required. */
:root {
  color-scheme: light;
  --forest: #1a362a;
  --green: #2f6b57;
  --yellow: #d0ff00;
  --sage: #eff5f1;
  --mint: #e0efea;
  --line: #dce6e0;
  --ink: #213c30;
  --muted: #53665a;
  --white: #fff;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-synthesis: none;
  color: var(--ink);
  background: var(--white);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
}
a {
  color: inherit;
  text-underline-offset: 0.22em;
}
button,
input {
  font: inherit;
}
svg {
  display: block;
  max-width: 100%;
}
::selection {
  color: var(--forest);
  background: var(--yellow);
}
:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}
[id] {
  scroll-margin-top: 2rem;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.muted {
  color: var(--muted);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -0.9px;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 9px;
  background: var(--forest);
  color: var(--yellow);
  font-size: 21px;
  line-height: 1;
  letter-spacing: -1px;
}
.masthead {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.masthead nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.masthead nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}
.masthead nav a:hover {
  text-decoration: underline;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.button:hover {
  background: var(--forest);
}
.button--yellow {
  color: var(--forest);
  background: var(--yellow);
}
.button--yellow:hover {
  color: var(--forest);
  background: #e1ff61;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 12px 20px;
  background: var(--yellow);
  color: var(--forest);
  z-index: 10;
  transform: translateY(-160%);
  font-weight: 700;
}
.skip-link:focus {
  transform: none;
}
.draft-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.footer {
  padding-block: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  min-height: 58px;
  padding: 20px 28px 20px 0;
  cursor: pointer;
  font-weight: 650;
}
details p {
  padding: 0 24px 22px 0;
  max-width: 62ch;
}
.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 (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .masthead {
    min-height: 84px;
    gap: 12px;
  }
  .masthead nav {
    gap: 16px;
    font-size: 13px;
  }
  .brand {
    font-size: 21px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 10px 24px;
  }
}
@media (max-width: 520px) {
  .masthead {
    flex-wrap: wrap;
    padding-block: 18px 12px;
  }
  .masthead nav {
    width: 100%;
    justify-content: space-between;
  }
  .actions {
    gap: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
