:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 100%;
  color: #17211a;
  background: #f4f7f3;
  --surface: #ffffff;
  --ink-soft: #4b5b50;
  --green: #17643b;
  --green-dark: #0e4829;
  --green-pale: #e5f3e9;
  --border: #cdd8d0;
  --notice: #fff5cf;
  --notice-border: #8a6810;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 18rem;
  background: linear-gradient(180deg, #e7f2e9 0, #f4f7f3 16rem);
  line-height: 1.65;
}

a {
  color: var(--green-dark);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

a:focus-visible {
  outline: 0.2rem solid #c98b00;
  outline-offset: 0.2rem;
}

.site-header {
  border-bottom: 1px solid rgba(23, 100, 59, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner,
.page,
.footer-inner {
  width: min(100% - 2rem, 48rem);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-block: 1rem;
}

.brand {
  color: var(--green-dark);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 650;
}

.page {
  padding-block: clamp(2rem, 7vw, 4.5rem);
}

.document {
  padding: clamp(1.25rem, 5vw, 3.25rem);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--surface);
  box-shadow: 0 1rem 3rem rgba(19, 53, 31, 0.08);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2 {
  color: #102a1b;
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.25rem);
  letter-spacing: -0.045em;
}

h2 {
  margin: 2rem 0 0.55rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

p,
ul {
  max-width: 68ch;
}

.lede {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.draft-notice {
  margin: 1.75rem 0;
  padding: 1rem 1.1rem;
  border-left: 0.3rem solid var(--notice-border);
  border-radius: 0.35rem;
  background: var(--notice);
}

.site-footer {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-inner {
  padding-block: 0 2.5rem;
}

@media (max-width: 42rem) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav ul {
    gap-inline: 0.8rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  a {
    transition: color 120ms ease, text-decoration-thickness 120ms ease;
  }
}
