:root {
  --ink: #1b2420;
  --paper: #faf8f4;
  --line: #dedad0;
  --steel: #3c4a45;
  --rust: #b5502f;
  --muted: #6b7268;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

header.site {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  height: 30px;
  width: 30px;
  display: block;
}

.brand span { color: var(--rust); }

nav.site a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 26px;
}

nav.site a:hover, nav.site a:focus-visible { color: var(--rust); }

main { padding: 64px 0 40px; }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  max-width: 20ch;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  margin: 44px 0 12px;
  letter-spacing: -0.005em;
}

p { color: var(--steel); max-width: 66ch; margin: 0 0 16px; }

.lede {
  font-size: 1.15rem;
  color: var(--steel);
  max-width: 55ch;
  margin-bottom: 30px;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 8px; }

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 3px;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: #9c4326; }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--steel); }

.fine { color: var(--muted); font-size: 0.88rem; margin-top: 10px; }

.divider { border: none; border-top: 1px solid var(--line); margin: 46px 0; }

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 26px 0 10px;
}

.card {
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}

.card h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
  font-weight: 600;
}

.card p { font-size: 0.95rem; margin: 0; }

.stat-line {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  gap: 20px;
}

.stat-line strong { color: var(--ink); font-weight: 600; white-space: nowrap; }
.stat-line span { color: var(--steel); text-align: right; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 30px 0 50px;
  margin-top: 60px;
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site a { color: var(--steel); text-decoration: none; margin-left: 20px; font-size: 0.9rem; }
footer.site a:first-child { margin-left: 0; }
footer.site a:hover { color: var(--rust); }
footer.site .copy { color: var(--muted); font-size: 0.88rem; }

.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--steel); font-size: 0.98rem; }
.legal ul { padding-left: 22px; }
.legal .updated { color: var(--muted); font-size: 0.88rem; margin-bottom: 40px; }

@media (max-width: 640px) {
  h1 { font-size: 1.8rem; }
  .grid3 { grid-template-columns: 1fr; gap: 20px; }
  nav.site a { margin-left: 16px; font-size: 0.88rem; }
  main { padding: 40px 0 30px; }
}
