:root {
  color-scheme: light;
  --paper: #f8f6f0;
  --ink: #222e28;
  --green: #24483d;
  --muted: #56625b;
  --line: #d8ddd2;
  --note: #e9eee2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-padding-top: 2rem; }
body { margin: 0; font-size: 1rem; line-height: 1.7; }
.page { max-width: 1120px; margin: 0 auto; padding: 0 48px; }
header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 31px 0; border-bottom: 1px solid var(--line); }
a { color: var(--green); text-underline-offset: 4px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid var(--green); outline-offset: 6px; }
.wordmark { font-size: 1.65rem; font-weight: 750; letter-spacing: -.065em; text-decoration: none; }
.wordmark span { color: var(--muted); }
.privacy-link { font-size: .9rem; }
.intro { display: grid; grid-template-columns: minmax(0, 1fr) 238px; gap: 78px; align-items: center; padding: 78px 0 70px; }
.context { color: var(--green); margin: 0 0 22px; font-size: .95rem; font-weight: 600; }
h1 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: clamp(2.6rem, 5.4vw, 4rem); line-height: 1.08; letter-spacing: -.04em; margin: 0 0 27px; }
.lead { font-size: 1.125rem; line-height: 1.75; max-width: 540px; margin: 0; color: var(--muted); }
.note { background: var(--note); border-top: 3px solid var(--green); padding: 27px 26px; }
.note-mark { font: italic 3rem/1 Georgia, serif; color: var(--green); display: block; margin-bottom: 30px; }
h2 { font-size: 1.05rem; line-height: 1.45; font-weight: 650; margin: 0; }
.note p { font-size: .95rem; line-height: 1.7; color: var(--muted); margin: 12px 0 0; }
.section { display: grid; grid-template-columns: 238px minmax(0, 1fr); gap: 46px; padding: 38px 0; border-top: 1px solid var(--line); }
.section h2 { padding-top: 3px; color: var(--green); }
.section-content p { margin: 0 0 16px; }
.section-content p:last-child { margin-bottom: 0; }
ul { padding-left: 21px; margin: 0 0 18px; }
li { margin: 5px 0; padding-left: 5px; }
li::marker { color: var(--green); }
.status { font-size: .9rem; color: var(--muted); }
footer { border-top: 1px solid var(--line); padding: 30px 0 38px; color: var(--muted); font-size: .875rem; }
footer p { margin: 0 0 12px; max-width: 760px; }
.footer-name { color: var(--green); font-weight: 600; }
@media (max-width: 760px) {
  .page { padding: 0 24px; }
  header { padding: 23px 0; }
  .intro { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 36px; }
  .note { padding: 22px 24px; }
  .note-mark { display: none; }
  .section { grid-template-columns: 1fr; gap: 18px; padding: 28px 0; }
  h1 { font-size: clamp(2.5rem, 9vw, 3.6rem); }
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
