:root {
  --bg: #fbfaf7;
  --fg: #23201c;
  --muted: #6f6a62;
  --rule: #e3ded4;
  --accent: #7a5c3e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1917;
    --fg: #e6e2da;
    --muted: #9c968b;
    --rule: #33302b;
    --accent: #c9a578;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.65 Georgia, "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 38rem; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
header { border-bottom: 1px solid var(--rule); padding-bottom: 1.2rem; margin-bottom: 2rem; }
.site-name { font-size: 1.45rem; letter-spacing: .01em; margin: 0 0 .4rem; }
.site-name a { color: var(--fg); text-decoration: none; }
nav a { color: var(--muted); text-decoration: none; margin-right: 1.1rem; font-size: .95rem; }
nav a:hover, .site-name a:hover { color: var(--accent); text-decoration: underline; }
h1 { font-size: 1.6rem; line-height: 1.25; margin: 0 0 1.2rem; }
h2 { font-size: 1.15rem; margin: 2.2rem 0 .6rem; }
p { margin: 0 0 1.1rem; }
a { color: var(--accent); }
.lead { font-size: 1.1rem; color: var(--fg); }
.muted { color: var(--muted); font-size: .93rem; }
.note { border-top: 1px solid var(--rule); padding-top: 1.1rem; margin-top: 1.6rem; }
.note h2 { margin-top: 0; }
.date { display: block; color: var(--muted); font-size: .85rem; margin-bottom: .35rem; }
footer { border-top: 1px solid var(--rule); margin-top: 3rem; padding-top: 1.1rem; color: var(--muted); font-size: .88rem; }
