:root {
  --canvas: #f7f6f3;
  --surface: #ffffff;
  --ink: #1f211f;
  --muted: #6f706c;
  --line: #e3e2de;
  --accent-bg: #edf3ec;
  --accent: #346538;
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: inherit; text-underline-offset: 4px; }
a:hover { color: var(--accent); }

.site-header,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  min-height: 80px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

nav { display: flex; gap: 24px; }
nav a { color: var(--muted); text-decoration: none; font-size: 15px; }
nav a[aria-current="page"] { color: var(--ink); }

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero { max-width: 940px; padding: 120px 0 96px; }

.eyebrow,
.number {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: "SF Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1, h2 {
  margin-top: 0;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 500;
}

h2 { margin-bottom: 14px; font-size: 24px; }

.lede {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.5;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 96px;
}

.grid article {
  min-height: 290px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.grid article p:last-child,
.document section p { color: var(--muted); }

.statement {
  max-width: 840px;
  margin-bottom: 120px;
  padding: 28px 30px;
  background: var(--accent-bg);
  border: 1px solid #dce6da;
  border-radius: 8px;
  color: var(--accent);
  font-size: 20px;
}
.statement p { margin: 0; }

.document { max-width: 850px; padding: 104px 0 120px; }
.document h1 { font-size: clamp(52px, 7vw, 78px); }
.document > .lede { margin-bottom: 76px; }
.document section { padding: 34px 0; border-top: 1px solid var(--line); }
.document section p { margin-bottom: 0; }

footer {
  min-height: 100px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-header { min-height: 68px; }
  nav { gap: 16px; }
  .hero { padding: 84px 0 72px; }
  .grid { grid-template-columns: 1fr; padding-bottom: 72px; }
  .grid article { min-height: auto; }
  .document { padding: 76px 0 90px; }
  footer { min-height: 84px; }
}
