:root {
    --bg: #fbfaf7;
    --ink: #23201b;
    --muted: #7a7267;
    --accent: #9a6f3f;
    --line: #e7e2d8;
    --max: 720px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
    line-height: 1.65;
    font-size: 18px;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

.brand {
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 18px;
    font-size: 16px;
}

nav a:hover { color: var(--accent); }

.hero {
    padding: 56px 0 28px;
    border-bottom: 1px solid var(--line);
}

.hero h1 {
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.lede {
    color: var(--muted);
    font-size: 20px;
    margin: 0;
}

.posts { padding: 8px 0 40px; }

.post-card {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.post-card .meta {
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
}

.post-card h2 { margin: 0 0 10px; font-size: 24px; }
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover { color: var(--accent); }
.post-card p { margin: 0 0 12px; }

.more {
    color: var(--accent);
    text-decoration: none;
    font-size: 16px;
}

.more:hover { text-decoration: underline; }

article.full h1 { font-size: 30px; margin-bottom: 6px; }
article.full .meta { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
article.full p { margin: 0 0 18px; }

.site-footer {
    border-top: 1px solid var(--line);
    background: #fff;
    margin-top: 24px;
}

.site-footer .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 22px;
    padding-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer a { color: var(--muted); }

.backlink { display: inline-block; margin: 28px 0 0; color: var(--accent); text-decoration: none; }
.backlink:hover { text-decoration: underline; }
