:root {
  --ink: #17231d;
  --paper: #f3f0e7;
  --leaf: #2d6349;
  --lime: #d8ef93;
  --line: rgba(23, 35, 29, .18);
  --muted: #59645e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(216, 239, 147, .62), transparent 27rem),
    var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-underline-offset: .22em; }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
header {
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 231, .88);
}
nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -.02em;
}
.mark {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 46% 54%;
  background: var(--ink);
  color: var(--lime);
  font-size: 13px;
  transform: rotate(-7deg);
}
.nav-links { display: flex; gap: 22px; font-size: 14px; }
.nav-links a { text-decoration: none; }
main { min-height: 70vh; }
.hero {
  padding: clamp(76px, 12vw, 150px) 0 clamp(72px, 10vw, 128px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 { max-width: 820px; font-size: clamp(52px, 8vw, 104px); }
h2 { margin-top: 56px; font-size: clamp(32px, 5vw, 56px); }
.lead { margin: 28px 0 0; max-width: 62ch; font-size: clamp(18px, 2vw, 22px); }
.aside {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
}
.aside strong { color: var(--ink); display: block; margin-bottom: 8px; }
.band {
  background: var(--ink);
  color: #edf3e6;
  padding: clamp(56px, 8vw, 96px) 0;
}
.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.band h3 { margin: 0 0 10px; color: var(--lime); font-size: 16px; }
.band p { margin: 0; color: #bfc9c1; }
.legal {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(72px, 10vw, 120px) 0;
}
.legal h1 { font-size: clamp(48px, 7vw, 82px); }
.legal h2 { line-height: 1.05; }
.legal p, .legal li { color: #39463f; }
.legal .updated {
  margin: 20px 0 54px;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 700;
}
footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footer-grid { display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; gap: 20px; }
@media (max-width: 760px) {
  .hero, .band-grid { grid-template-columns: 1fr; }
  .hero { align-items: start; }
  .nav-links { gap: 12px; font-size: 13px; }
  .brand span:last-child { display: none; }
  .footer-grid { flex-direction: column; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero > * { animation: enter .7s cubic-bezier(.22, 1, .36, 1) both; }
  .hero > :last-child { animation-delay: .12s; }
  @keyframes enter { from { opacity: 0; transform: translateY(20px); } }
}

