:root {
  color-scheme: light dark;
  --page: #FBF7F1;
  --text: #2B2420;
  --muted: #6F6157;
  --accent: #A05C0A;
}
@media (prefers-color-scheme: dark) {
  :root { --page: #1E1A16; --text: #EFE7DC; --muted: #B5A898; --accent: #E0A24A; }
}
html { background: var(--page); color: var(--text); font: 17px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { max-width: 40rem; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
header { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 2.5rem; }
.brand { font-family: "New York", Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 600; margin: 0; }
nav a { margin-right: 1rem; }
nav a[aria-current="page"] { font-weight: 600; text-decoration: none; }
h1 { font-family: "New York", Georgia, "Times New Roman", serif; font-size: 2.25rem; line-height: 1.15; margin: 0 0 1rem; }
h2 { font-size: 1.25rem; margin: 2rem 0 0.5rem; }
h3 { font-size: 1.05rem; margin: 1.25rem 0 0.25rem; }
a { color: var(--accent); text-underline-offset: 0.15em; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
ul { padding-left: 1.25rem; }
li { margin: 0.35rem 0; }
.updated, footer { color: var(--muted); font-size: 0.9rem; }
footer { margin-top: 3rem; border-top: 1px solid color-mix(in srgb, var(--muted) 35%, transparent); padding-top: 1rem; }
