:root {
    --cream:   #FAF7F2;
    --ink:     #1C1917;
    --sepia:   #7C5C2E;
    --gold:    #B8943F;
    --muted:   #6B6560;
    --border:  #E2DBD0;
    --white:   #FFFFFF;
    --hover:   #F5F0E8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); }

header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 48px; background: rgba(250,247,242,0.93);
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { height: clamp(34px, 5.2vw, 46px); width: auto; display: block; }
nav a {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: #4A4642; text-decoration: none;
    margin-left: 32px; transition: color 0.2s;
}
nav a:hover { color: var(--ink); }

main { max-width: 720px; margin: 0 auto; padding: 140px 24px 100px; }

.page-eyebrow {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.page-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300; margin-bottom: 12px;
}
.page-desc {
    font-size: 0.95rem; color: var(--muted); font-weight: 300;
    line-height: 1.7; margin-bottom: 56px; max-width: 560px;
}

.entry { display: flex; gap: 28px; padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--border); }
.entry:last-child { border-bottom: none; margin-bottom: 0; }
.entry-date {
    flex-shrink: 0; width: 110px; font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.04em; color: var(--gold); padding-top: 4px;
}
.entry-body { flex: 1; }
.entry-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
    font-weight: 600; color: var(--ink); margin-bottom: 8px;
}
.entry-desc { font-size: 0.9rem; color: var(--muted); font-weight: 300; line-height: 1.75; }

.loading, .empty { color: var(--muted); font-size: 0.9rem; font-style: italic; }

footer {
    border-top: 1px solid var(--border); padding: 32px 80px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--muted);
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--ink); }
.footer-brand span { color: var(--gold); }
.footer-note a { color: var(--muted); }
.footer-note { text-align: right; line-height: 1.6; }

@media (max-width: 640px) {
    header { padding: 16px 20px; }
    main { padding: 120px 20px 60px; }
    .entry { flex-direction: column; gap: 8px; }
    .entry-date { width: auto; }
    footer { padding: 28px 20px; flex-direction: column; text-align: center; gap: 12px; }
    .footer-note { text-align: center; }
}
