:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #20332e;
  background: #f7f8f4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 280px; }
a { color: #17634d; text-underline-offset: 0.18em; }
a:hover { color: #0d4535; }
a:focus-visible { outline: 3px solid #bb8229; outline-offset: 4px; border-radius: 2px; }

.site-header {
  background: #fff;
  border-bottom: 1px solid #dce4dc;
}
.header-inner, .site-footer-inner, .container {
  width: min(100% - 40px, 1060px);
  margin-inline: auto;
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
  color: #1b342c;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: #1c634f;
  color: #fff;
  border-radius: 7px;
  font-size: 0.95rem;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-nav a {
  text-decoration: none;
  color: #385248;
  font-size: 0.91rem;
  font-weight: 600;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #17634d; text-decoration: underline; }

.hero { padding: clamp(58px, 8vw, 110px) 0 64px; }
.eyebrow {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: #e6f0e9;
  color: #205944;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1, h2, h3 { color: #183329; line-height: 1.18; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.35rem, 6vw, 4.5rem); max-width: 830px; margin: 22px 0 24px; }
.lede { max-width: 740px; font-size: clamp(1.08rem, 2vw, 1.25rem); line-height: 1.65; color: #40584e; }
.hero-note { max-width: 720px; padding: 17px 20px; margin-top: 32px; border-left: 3px solid #358265; background: #ecf3ec; }
.hero-note p { margin: 0; }
.section { padding: 0 0 70px; }
.section h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin: 0 0 23px; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid #dce4dc; border-radius: 14px; padding: 24px; min-width: 0; }
.card h3 { margin: 0 0 10px; font-size: 1.23rem; }
.card p { margin: 0; color: #44594d; }
.closing { background: #e9f0e9; padding: 38px 0; }
.closing p { max-width: 750px; margin: 0 0 12px; }

.document { max-width: 800px; padding: 58px 0 85px; }
.document h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 12px; }
.document .subtitle { color: #53685d; margin: 0 0 40px; }
.document section { margin-top: 38px; }
.document h2 { font-size: 1.55rem; margin: 0 0 14px; }
.document h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.document p, .document li { color: #30493c; }
.document p { margin: 0 0 14px; }
.document ul { padding-left: 1.3rem; margin: 10px 0 18px; }
.document li { padding-left: 0.15rem; margin: 0 0 9px; }
.document strong { color: #1c3b2d; }
.callout { border: 1px solid #c9ded0; border-radius: 12px; background: #edf4ec; padding: 17px 20px; }
.callout p:last-child { margin-bottom: 0; }

.site-footer { background: #19372d; color: #e1ece3; }
.site-footer-inner { padding: 30px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 28px; font-size: 0.88rem; }
.site-footer a { color: #e1ece3; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }

@media (max-width: 680px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; gap: 13px; }
  .site-nav { gap: 8px 18px; }
  .hero { padding-top: 55px; padding-bottom: 54px; }
  .cards { grid-template-columns: 1fr; }
  .card { padding: 21px; }
  .document { padding-top: 42px; padding-bottom: 60px; }
  .document section { margin-top: 32px; }
}