:root {
    --bg: #faf8f4;
    --fg: #26221c;
    --muted: #6b6357;
    --accent: #8a5a2b;
    --border: #e7e0d4;
    --code-bg: #f2ede3;
    --callout-bg: #f5efdf;
    --callout-border: #c2a35c;
}

* { box-sizing: border-box; }

body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
    font-size: 17px;
}

header.site {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--muted);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

header.site a {
    color: var(--muted);
    text-decoration: none;
}

header.site a:hover { color: var(--accent); }

h1 { font-size: 2rem; line-height: 1.25; margin-top: 0.5rem; }
h2 { font-size: 1.4rem; margin-top: 2.4rem; border-bottom: 1px solid var(--border); padding-bottom: 0.3rem; }
h3 { font-size: 1.1rem; margin-top: 1.8rem; }

p, li { font-size: 1rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

blockquote {
    border-left: 3px solid var(--accent);
    margin: 1.2rem 0;
    padding: 0.2rem 1rem;
    color: var(--muted);
    background: #fff;
    font-style: italic;
}

.callout {
    background: var(--callout-bg);
    border-left: 4px solid var(--callout-border);
    padding: 0.8rem 1rem;
    border-radius: 3px;
    margin: 1.2rem 0;
    font-size: 0.95rem;
}

.callout strong { color: #7a5d00; }

table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.2rem 0;
    font-size: 0.93rem;
}

th, td {
    border: 1px solid var(--border);
    padding: 0.5rem 0.75rem;
    text-align: left;
    vertical-align: top;
}

th { background: #f0eadd; }

nav.series {
    margin-top: 3rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    gap: 1rem;
}

nav.series a.spacer { visibility: hidden; }

ol.toc { padding-left: 1.2rem; }
ol.toc li { margin: 0.5rem 0; }

.subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.sources {
    font-size: 0.88rem;
    color: var(--muted);
}

.sources li { margin: 0.3rem 0; }

footer.site {
    margin-top: 4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--muted);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
