* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --paper: #f5efe2;
    --paper-deep: #efe4d1;
    --ink: #2f2418;
    --muted: #6d5b49;
    --line: #d8c8b1;
    --link: #7a2f19;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.7;
    color: var(--ink);
    background-color: var(--paper);
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    padding: 1.25rem 0 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.logo a {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.98rem;
    padding: 0.2rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--link);
}

.hero {
    padding: 2.5rem 0 1.25rem;
    margin: 0;
    border-bottom: 1px solid var(--line);
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    max-width: 12ch;
}

.hero-index {
    text-align: left;
}

.hero-kicker {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.9rem;
}

.hero-lede,
.hero-note,
.hero p {
    font-size: 1.08rem;
    max-width: 42rem;
    color: var(--muted);
}

.hero-lede {
    margin-bottom: 0.9rem;
}

.hero-note a {
    color: var(--link);
}

.blog-posts {
    padding: 1.5rem 0 3rem;
}

.blog-posts h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.posts-grid {
    display: block;
}

.post-card {
    padding: 1.2rem 0 1.35rem;
    border-top: 1px solid var(--line);
}

.post-card:first-child {
    border-top: 0;
    padding-top: 0.1rem;
}

.post-meta-line,
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.45rem;
}

.meta-divider {
    color: #a58d73;
}

.post-category {
    color: var(--muted);
}

.post-card h3,
.post-content h3 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.post-card h3 a,
.post-content h3 a,
a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.post-excerpt {
    color: var(--ink);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.75;
}

footer {
    margin-top: 2rem;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid var(--line);
}

.footer-content {
    display: block;
}

.footer-section h3 {
    margin-bottom: 0.4rem;
    font-size: 1rem;
    color: var(--ink);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.footer-section ul li {
    margin-bottom: 0;
}

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

.footer-bottom {
    text-align: left;
    padding-top: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .nav-links {
        gap: 1rem;
        padding-bottom: 0.2rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }
}
