:root {
  --ink: #17241f;
  --muted: #52645c;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --sage: #dfece5;
  --green: #275d49;
  --green-dark: #174332;
  --line: #d9e2dc;
  --warning: #fff6dc;
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--green-dark); text-underline-offset: 3px; }
a:hover { color: var(--green); }
a[href^="mailto:"] {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 20; background: white; padding: .75rem 1rem; border-radius: .5rem; }
header { background: rgba(251,248,241,.96); border-bottom: 1px solid var(--line); }
.nav, .footer-inner, main { width: min(100% - 2rem, 960px); margin-inline: auto; }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--ink); text-decoration: none; font-weight: 750; }
.mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--green); color: white; font-weight: 800; }
nav ul, .footer-links { display: flex; flex-wrap: wrap; gap: .45rem 1rem; margin: 0; padding: 0; list-style: none; }
nav a { text-decoration: none; font-weight: 650; }
main { padding-block: clamp(2.5rem, 7vw, 5rem); }
.eyebrow { margin: 0 0 .5rem; color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0 0 1rem; font-size: clamp(2.15rem, 6vw, 4rem); line-height: 1.08; letter-spacing: -.035em; }
h2 { margin-top: 2.25rem; font-size: 1.35rem; line-height: 1.25; }
h3 { margin-top: 1.6rem; }
p, li { max-width: 760px; }
.lede { color: var(--muted); font-size: 1.15rem; }
.updated { color: var(--muted); font-size: .92rem; }
.card { margin: 2rem 0; padding: clamp(1.2rem, 4vw, 2rem); background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 14px 35px rgba(23,67,50,.06); }
.notice { background: var(--warning); border-color: #ead59a; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; margin: .5rem .5rem .5rem 0; padding: .7rem 1rem; border-radius: 999px; background: var(--green); color: white; font-weight: 750; text-decoration: none; }
.button:hover { background: var(--green-dark); color: white; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.grid .card { margin: 0; }
footer { padding-block: 2rem; background: #eef3ef; border-top: 1px solid var(--line); }
.footer-inner { display: grid; gap: 1rem; }
.footer-inner p { margin: 0; color: var(--muted); font-size: .92rem; }
@media (max-width: 720px) {
  .nav { align-items: flex-start; flex-direction: column; padding-block: 1rem; }
  .grid { grid-template-columns: 1fr; }
  nav ul { gap: .35rem .85rem; }
  a[href^="mailto:"] { font-size: .96em; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
