:root {
    --paper: #f3eee6;
    --ink: #241f1b;
    --clay: #8d3b2e;
    --line: #d9cfc3;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Palatino, "Palatino Linotype", "Iowan Old Style", Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clay); }
.mast {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    padding: 1rem 6vw;
    border-bottom: 1px solid var(--line);
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 0.92rem;
}
.word { color: var(--ink); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; }
nav { display: flex; gap: 1.1rem; }
nav a { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; }
nav a:hover { border-bottom-color: var(--clay); }
main { padding: 2.2rem 6vw 3rem; max-width: 68rem; }
.kicker {
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clay);
    margin: 0 0 0.6rem;
}
h1 {
    font-weight: 500;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    max-width: 16ch;
}
figure { margin: 1.5rem 0 1.8rem; }
.prose { max-width: 38rem; }
.prose p { margin: 0 0 1rem; }
.now { border-left: 3px solid var(--clay); padding-left: 0.9rem; }
.colophon {
    border-top: 1px solid var(--line);
    padding: 1.2rem 6vw 2rem;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 0.92rem;
}
.colophon p { margin: 0.2rem 0; }
@media (max-width: 640px) {
    .mast { flex-direction: column; align-items: flex-start; }
    h1 { font-size: 2.3rem; }
}
