:root {
  --paper: #f4f1e8;
  --ink: #202520;
  --muted: #6b7169;
  --line: #d4d0c5;
  --accent: #315c4b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.65 Georgia, "Times New Roman", serif;
}
header, main, footer {
  width: min(92%, 760px);
  margin-inline: auto;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.brand { color: var(--ink); font-weight: bold; }
nav { display: flex; gap: 20px; font: 14px/1.4 system-ui, sans-serif; }
.hero { padding: 78px 0 54px; border-bottom: 1px solid var(--line); }
.eyebrow, time {
  color: var(--muted);
  font: 12px/1.4 system-ui, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 { max-width: 680px; margin: 10px 0 20px; font-size: clamp(38px, 7vw, 62px); line-height: 1.05; }
.lead { max-width: 620px; color: var(--muted); font-size: 20px; }
.entries article { padding: 38px 0; border-bottom: 1px solid var(--line); }
h2 { margin: 7px 0 8px; font-size: 27px; line-height: 1.2; }
p { margin: 0; }
.page { padding: 70px 0; min-height: 60vh; }
.page h1 { font-size: 44px; }
.page p { max-width: 650px; margin: 0 0 18px; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0 48px;
  color: var(--muted);
  font: 13px/1.5 system-ui, sans-serif;
}
@media (max-width: 560px) {
  header, footer { align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 50px; }
}
