:root {
  color-scheme: light;
  --ink: #13211b;
  --muted: #607068;
  --paper: #f4f3ed;
  --surface: #fffef9;
  --line: #d9ddd7;
  --accent: #176b4b;
  --accent-soft: #d9eee4;
  --shadow: 0 18px 60px rgba(19, 33, 27, 0.08);
}

* { box-sizing: border-box; }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--paper); color: var(--ink); }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 80% 0%, #e1efe8 0, transparent 34rem), var(--paper); }
a { color: inherit; text-underline-offset: .2em; }

.site-header, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 750; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { width: 34px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 10px; color: white; background: var(--ink); font-family: Georgia, serif; }
nav { display: flex; gap: 22px; }
nav a { color: var(--muted); font-size: .94rem; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }

.hero { padding: 120px 0 88px; max-width: 900px; }
.eyebrow { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 18px 0 26px; max-width: 900px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 500; letter-spacing: -.055em; line-height: .95; }
.lede { max-width: 760px; color: var(--muted); font-size: clamp(1.12rem, 2vw, 1.4rem); line-height: 1.65; }
.status { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 10px 14px; border: 1px solid #b9d8c9; border-radius: 999px; color: var(--accent); background: rgba(255,255,255,.65); font-size: .88rem; font-weight: 700; }
.status span { width: 8px; height: 8px; border-radius: 50%; background: #2e9b69; box-shadow: 0 0 0 5px var(--accent-soft); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 72px; }
.card { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,254,249,.82); box-shadow: var(--shadow); }
.number { margin: 0 0 56px; color: var(--accent); font: 700 .82rem/1 ui-monospace, monospace; }
h2 { margin: 0 0 14px; font-size: 1.28rem; letter-spacing: -.025em; }
.card p:last-child, .policy section p { color: var(--muted); line-height: 1.68; }

.plain-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; padding: 76px 0 96px; border-top: 1px solid var(--line); }
.plain-section h2 { font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; }
.principles { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.principles li { padding: 18px 0; border-bottom: 1px solid var(--line); }

.policy { max-width: 840px; padding: 96px 0 110px; }
.policy h1 { font-size: clamp(3.4rem, 7vw, 6rem); }
.policy section { margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--line); }
.policy section h2 { font-size: 1.35rem; }
.policy section p { font-size: 1.04rem; }

footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
footer p { margin: 0; }

@media (max-width: 760px) {
  .site-header { min-height: 76px; align-items: flex-start; padding: 18px 0; }
  .brand span:last-child { max-width: 150px; }
  nav { gap: 12px; padding-top: 8px; }
  .hero { padding: 82px 0 64px; }
  .grid, .plain-section { grid-template-columns: 1fr; }
  .grid { gap: 14px; }
  .card { min-height: 0; }
  .number { margin-bottom: 36px; }
  .plain-section { gap: 30px; }
  footer { flex-direction: column; }
}
