:root {
  --ink: #17231f;
  --muted: #63706b;
  --line: #dfe6e2;
  --paper: #f5f7f4;
  --surface: #fff;
  --accent: #2d6a52;
}

* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 84% 4%, #88bba32e, transparent 28rem), var(--paper);
  font-family: system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
main {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.site-header { padding: 32px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--accent);
}
.hero { margin: auto 0; padding: 80px 0 120px; }
.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1 {
  max-width: 900px;
  margin: 20px 0 24px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .98;
  letter-spacing: -.065em;
}
.lead { max-width: 620px; margin: 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 64px; }
.link-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 132px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffffc7;
}
.link-card:hover { transform: translateY(-3px); border-color: #a9bcb3; }
.card-number, .link-card small { color: var(--muted); font-size: 13px; }
.link-card strong, .link-card small { display: block; }
.link-card strong { margin-bottom: 7px; font-size: 18px; }
.legal-shell { width: min(760px, 100%); margin: 56px auto 120px; }
.back-link { display: inline-block; margin-bottom: 52px; color: var(--muted); font-size: 14px; }
.legal-shell h1 { margin-bottom: 18px; font-size: clamp(42px, 7vw, 72px); }
.updated { margin: 0 0 56px; color: var(--muted); font-size: 14px; }
.legal-section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 12px; font-size: 19px; }
.legal-section p, .legal-section li { color: #44514c; font-size: 16px; line-height: 1.8; }
.legal-section p { margin: 0; }
.contact-card { margin-top: 40px; padding: 28px; border-radius: 20px; color: white; background: var(--ink); }
.contact-card p { color: #cbd5d0; }
.contact-card a { display: inline-block; margin-top: 18px; font-weight: 800; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
footer nav { display: flex; gap: 24px; }
@media (max-width: 640px) {
  .link-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
