:root {
  --ink: #1c1914;
  --paper: #f4efe4;
  --rule: #c9bfa8;
  --accent: #7a4a28;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}
.bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 8vw;
  border-bottom: 1px solid var(--rule);
}
.mark {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
}
nav a {
  margin-left: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}
nav a:hover { text-decoration: underline; }
main { padding: 3rem 8vw 4rem; max-width: 58rem; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent);
}
h1 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.15; font-weight: 600; }
.lead { font-size: 1.2rem; max-width: 40rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.grid article {
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.prose { max-width: 40rem; }
.editions { padding-left: 1.1rem; }
footer {
  border-top: 1px solid var(--rule);
  padding: 1.25rem 8vw 2rem;
  font-size: 0.9rem;
  color: #5a5348;
}
a { color: var(--accent); }
