:root {
    --canvas: #141215;
    --surface: #1C1A1E;
    --border: #322E34;
    --text: #F6E9EC;
    --muted: #B8AEB2;
    --subtle: #8E8489;
    --brand: #C66B7C;
    --brand-strong: #D99FAD;
    --tag-bg: #2A1A20;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--canvas);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
a:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
header.site { padding: 28px 0; border-bottom: 1px solid var(--border); }
.wordmark {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--text);
    text-decoration: none;
}
.wordmark .dot { color: var(--brand); }
.site-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.site-row a.back { color: var(--brand); text-decoration: none; font-size: 14px; font-weight: 500; white-space: nowrap; }
.site-row a.back:hover { text-decoration: underline; }
.hero { padding: 56px 0 8px; }
.eyebrow { font-size: 13px; font-weight: 600; color: var(--brand); letter-spacing: 0.02em; margin-bottom: 12px; }
h1 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.lede { font-size: 18px; color: var(--muted); max-width: 640px; }
.dateline { font-size: 13px; color: var(--subtle); }
main { padding-bottom: 24px; }
article { padding: 26px 0 4px; }
article p { font-size: 17px; line-height: 1.75; color: var(--text); margin: 0 0 20px; }
article h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin: 38px 0 14px; }
article a { color: var(--brand); text-decoration: none; font-weight: 500; }
article a:hover { text-decoration: underline; }
.allessays { margin: 6px 0 20px; font-size: 14px; }
.allessays a { color: var(--brand); text-decoration: none; font-weight: 500; }
.allessays a:hover { text-decoration: underline; }
.related { margin: 26px 0 8px; font-size: 14px; color: var(--muted); }
.related a { color: var(--brand); text-decoration: none; font-weight: 500; }
.related a:hover { text-decoration: underline; }
footer.site {
    border-top: 1px solid var(--border);
    margin-top: 24px;
    padding: 32px 0 48px;
    font-size: 14px;
    color: var(--muted);
}
footer.site a { color: var(--brand); text-decoration: none; font-weight: 500; }
footer.site a:hover { text-decoration: underline; }
.foot-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: baseline; }
@media (max-width: 560px) {
    .hero { padding-top: 40px; }
}
