:root {
    --bg: #f6f4ef;
    --paper: #fffefa;
    --text: #171717;
    --muted: #6d6a65;
    --line: #d9d5cd;
    --accent: #2457ff;
    --max: 850px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
.wrap { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); }
.header-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 1rem;
}
nav { display: flex; gap: 22px; font-size: .94rem; }
.hero {
    padding: 60px 0 44px;
    border-bottom: 1px solid var(--line);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 600;
    max-width: 780px;
    margin: 8px 0 20px;
}
.eyebrow,
.topic {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
}
.lead {
    color: var(--muted);
    max-width: 620px;
    font-size: 1rem;
}
.section { padding: 54px 0; border-bottom: 1px solid var(--line); }
.section.compact { padding-bottom: 70px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 12px; }
.section h2, .page-head h1 { letter-spacing: -.04em; }
.page-head { padding: 76px 0 42px; }
.page-head h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    font-weight: 600;
    margin: 8px 0 18px;
}
.page-head p { color: var(--muted); max-width: 620px; }
.post-list { border-top: 1px solid var(--line); }
.post-row { display: grid; grid-template-columns: 1fr auto; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.post-row h2, .post-row h3 { margin: 5px 0 6px; letter-spacing: -.025em; }
.post-row p { margin: 0; color: var(--muted); max-width: 600px; }
.post-row time, .article-head time { color: var(--muted); font-size: .83rem; white-space: nowrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chips a { border: 1px solid var(--line); background: rgba(255,255,255,.35); border-radius: 999px; padding: 6px 12px; font-size: .88rem; }
.page-chips { margin-bottom: 32px; }
.article { padding: 74px 0 100px; }
.article-head { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.article-head h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin: 10px 0 20px;
}
.prose {
    max-width: 720px;
    margin: 40px auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.85;
}
.prose p { margin: 0 0 1.55em; }
.attachments { max-width: 720px; margin: 46px auto 0; display: grid; gap: 34px; }
.attachment img, .attachment video { max-width: 100%; display: block; border-radius: 4px; }
.attachment audio { width: 100%; }
.attachment h3 { font-size: .96rem; margin-bottom: 10px; }
.file-link, .button { display: inline-flex; padding: 10px 14px; border: 1px solid var(--text); border-radius: 4px; }
.about-copy { margin-left: 0; margin-right: 0; }
.contact-list { border-top: 1px solid var(--line); margin-bottom: 80px; }
.contact-list a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
.contact-list span { color: var(--muted); }
.footer { min-height: 110px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: .86rem; }
@media (max-width: 640px) {
    .header-inner { align-items: flex-start; padding: 18px 0; flex-direction: column; gap: 10px; }
    nav { gap: 16px; }
    .hero { padding-top: 66px; }
    .post-row { grid-template-columns: 1fr; gap: 10px; }
    .article { padding-top: 52px; }
}


.post-main {
    min-width: 0;
}

.post-cover {
    display: block;
    width: min(100%, 520px);
    margin: 0 0 18px;
}

.post-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .post-cover {
        width: 100%;
    }
}
