:root {
  color-scheme: light;
  --ink: #18201c;
  --muted: #536058;
  --paper: #f5f2ea;
  --card: #fffdf8;
  --line: #d9d4c8;
  --green: #245947;
  --mint: #bfe7d3;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); }
body { margin: 0; }
a { color: var(--green); text-underline-offset: 3px; }
.site-header, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header { display: flex; justify-content: space-between; align-items: center; min-height: 76px; border-bottom: 1px solid var(--line); }
.brand { color: var(--ink); font-weight: 800; letter-spacing: -.02em; text-decoration: none; }
.status { padding: 8px 12px; border: 1px solid #89aa9c; border-radius: 999px; color: var(--green); font-size: 13px; font-weight: 700; }
.back { font-size: 14px; font-weight: 650; }
.hero { padding: clamp(72px, 10vw, 136px) 0 72px; max-width: 900px; }
.eyebrow { margin: 0 0 16px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
h1 { max-width: 900px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 8vw, 96px); font-weight: 500; letter-spacing: -.055em; line-height: .96; }
.lede { max-width: 720px; margin: 34px 0; color: var(--muted); font-size: clamp(20px, 2.6vw, 28px); line-height: 1.45; }
.notice { max-width: 700px; padding: 18px 20px; border-left: 4px solid var(--green); background: var(--mint); }
.notice p { margin: 6px 0 0; line-height: 1.5; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 96px; }
.grid article { min-height: 270px; padding: 24px; border: 1px solid var(--line); background: var(--card); }
.number { color: var(--green); font-size: 13px; font-weight: 800; }
h2 { margin: 48px 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 500; letter-spacing: -.025em; }
.grid p, .detail p, .contact p, .policy p { color: var(--muted); line-height: 1.65; }
.detail { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; padding: 80px 0; border-top: 1px solid var(--line); }
.detail h2, .contact h2, .policy h2 { margin-top: 0; }
.contact { margin-bottom: 96px; padding: 36px; background: var(--green); color: white; }
.contact .eyebrow, .contact p, .contact a { color: white; }
.policy { max-width: 760px; padding: 80px 0 110px; }
.policy h1 { max-width: 720px; font-size: clamp(46px, 7vw, 76px); }
.policy section { padding-top: 44px; }
.policy .updated { margin-bottom: 56px; }
footer { padding: 32px 0 56px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.5; }

@media (max-width: 760px) {
  .site-header, main, footer { width: min(100% - 28px, 1120px); }
  .status { font-size: 11px; }
  .hero { padding-top: 64px; }
  .grid, .detail { grid-template-columns: 1fr; }
  .grid { gap: 12px; }
  .grid article { min-height: 0; }
  .detail { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
