:root { color-scheme: light; --paper:#f7f7f4; --ink:#111; --muted:#686868; --line:#d8d8d2; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; background:var(--paper); color:var(--ink); font-family: Georgia, "Times New Roman", serif; font-size:18px; line-height:1.58; }
a { color:inherit; text-decoration-thickness:1px; text-underline-offset:.18em; overflow-wrap:anywhere; }
a:hover, a:focus-visible { text-decoration-style:dotted; }
.page { display:flex; flex-direction:column; width:min(100% - 40px, 1040px); margin:0 auto; min-height:100vh; }
header { display:flex; align-items:baseline; justify-content:space-between; gap:30px; padding:38px 0 22px; border-bottom:1px solid var(--line); }
.name { font-size:1rem; font-weight:normal; letter-spacing:.01em; margin:0; }
.name a { text-decoration:none; }
nav { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:10px 22px; font-size:.9rem; }
nav a { text-decoration:none; }
nav a[aria-current="page"], nav a:hover, nav a:focus-visible, .name a:focus-visible { text-decoration-line:underline; }
main { flex:1; padding:clamp(74px, 13vw, 150px) 0 100px; }
.intro { max-width:720px; }
h1 { font-size:clamp(2.35rem, 7vw, 5.6rem); line-height:.96; font-weight:normal; letter-spacing:-.045em; margin:0 0 36px; }
.lead { font-size:clamp(1.18rem, 2.3vw, 1.55rem); line-height:1.5; margin:0; max-width:660px; }
section { display:grid; grid-template-columns:minmax(120px, 1fr) minmax(0, 3fr); gap:32px; max-width:850px; padding-top:120px; }
h2 { font-size:.82rem; line-height:1.4; font-family:Arial, sans-serif; font-weight:normal; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); margin:.38rem 0 0; }
.content > :first-child { margin-top:0; }
.content p { max-width:650px; }
ul { list-style:none; padding:0; margin:0; }
li { border-top:1px solid var(--line); padding:13px 0; }
li:last-child { border-bottom:1px solid var(--line); }
.meta { display:block; color:var(--muted); font-family:Arial, sans-serif; font-size:.78rem; margin-top:2px; }
footer { display:flex; justify-content:space-between; gap:24px; padding:30px 0 44px; border-top:1px solid var(--line); color:var(--muted); font-family:Arial, sans-serif; font-size:.74rem; }
.page-copy { max-width:660px; }
.page-copy > :first-child { margin-top:0; }
.empty-note { color:var(--muted); max-width:660px; margin:0; }
@media (max-width:650px) {
  header { align-items:flex-start; flex-direction:column; gap:16px; }
  nav { justify-content:flex-start; gap:8px 18px; }
  main { padding-top:72px; }
  section { display:block; padding-top:84px; }
  h2 { margin-bottom:24px; }
  footer { flex-direction:column; }
}
@media (prefers-reduced-motion:reduce) { html { scroll-behavior:auto; } }
