:root {
  --ink: #262522;
  --muted: #777168;
  --paper: #f7f4ed;
  --accent: #9b4c35;
  --line: #d8d1c5;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Georgia, "Times New Roman", serif; line-height: 1.65; }
a { color: inherit; }
header, main, footer { width: min(940px, calc(100% - 40px)); margin: 0 auto; }
header { min-height: 88px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { font-weight: 700; letter-spacing: .02em; text-decoration: none; }
nav { display: flex; gap: 24px; font-family: Arial, sans-serif; font-size: .85rem; }
nav a { color: var(--muted); text-decoration: none; }
nav a.active, nav a:hover { color: var(--accent); }
.intro, .about { padding: 105px 0 90px; }
.kicker, .date { margin: 0 0 15px; color: var(--accent); font-family: Arial, sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0; font-size: clamp(3.2rem, 8vw, 6.2rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.summary, .about > p:last-child { max-width: 620px; margin: 32px 0 0; color: #5d5952; font-size: 1.16rem; }
.entries { border-top: 1px solid var(--line); }
article { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 48px 0; border-bottom: 1px solid var(--line); }
article h2 { margin: 0; font-size: 2rem; font-weight: 500; line-height: 1.2; }
article p:last-child { grid-column: 2; max-width: 610px; margin: -8px 0 0; color: var(--muted); }
footer { min-height: 110px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-family: Arial, sans-serif; font-size: .78rem; }
@media (max-width: 680px) { article { grid-template-columns: 1fr; gap: 4px; } article p:last-child { grid-column: 1; margin-top: 10px; } footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; } }
