:root {
  --paper: #f4f1e9;
  --paper-strong: #e9e4d8;
  --ink: #17211c;
  --muted: #58645e;
  --line: #c9c5ba;
  --accent: #176b4d;
  --accent-dark: #0e4c36;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--accent-dark); }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; border-radius: 2px; }

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

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

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--accent);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

nav { display: flex; gap: 24px; }
nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}
nav a[aria-current="page"] { color: var(--ink); text-decoration: underline; }

main {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.intro {
  max-width: 850px;
  padding: clamp(72px, 11vw, 144px) 0 clamp(64px, 9vw, 112px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.99;
}

.lede {
  max-width: 730px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  text-wrap: pretty;
}

.facts {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.6fr);
  gap: clamp(32px, 7vw, 100px);
  padding: 76px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.1; }
dl { margin: 0; }
dl > div {
  display: grid;
  grid-template-columns: minmax(110px, .35fr) 1fr;
  gap: 28px;
  padding: 0 0 30px;
}
dl > div + div { padding-top: 30px; border-top: 1px solid var(--line); }
dt { color: var(--accent-dark); font-weight: 750; }
dd { margin: 0; color: var(--muted); }

.statement { max-width: 760px; padding: clamp(72px, 10vw, 128px) 0; }
.statement p { color: var(--muted); font-size: 20px; }
.text-link { color: var(--accent-dark); font-weight: 700; }

.legal { max-width: 790px; padding: clamp(64px, 9vw, 110px) 0; }
.legal h1 { font-size: clamp(48px, 7vw, 78px); }
.legal .lede { margin-bottom: 70px; }
.legal h2 { margin: 54px 0 14px; font-size: clamp(27px, 3vw, 36px); }
.legal p { color: #39453f; }

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

@media (max-width: 700px) {
  .site-header { align-items: flex-start; padding: 20px 0; }
  .brand { max-width: 230px; line-height: 1.25; }
  nav { gap: 14px; }
  .facts { grid-template-columns: 1fr; }
  dl > div { grid-template-columns: 1fr; gap: 8px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
}

@media (prefers-reduced-motion: no-preference) {
  a { transition: color 140ms ease; }
}
