:root {
  --bg: #0b0e17;
  --bg-panel: #11162326;
  --ink: #e7e6e1;
  --ink-soft: #9296a6;
  --accent: #7dd3fc;
  --line: #22283a;
  --serif: 'Iowan Old Style', 'Palatino Linotype', Georgia, 'Times New Roman', serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: radial-gradient(ellipse at top, #131a2b 0%, var(--bg) 55%);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.7;
  min-height: 100vh;
}
.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
header .brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}
header .tagline {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-style: italic;
}
h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 22px;
  color: var(--accent);
}
p.date, p.latest-label {
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 6px;
}
article.story p {
  margin: 0 0 1.15em;
  font-size: 1.08rem;
}
nav.story-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 0.9rem;
}
nav.story-nav a {
  color: var(--accent);
  text-decoration: none;
}
nav.story-nav a:hover { text-decoration: underline; }
footer {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}
footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }
ul.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.archive-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
ul.archive-list a {
  color: var(--ink);
  text-decoration: none;
}
ul.archive-list a:hover { color: var(--accent); }
.archive-date {
  color: var(--ink-soft);
  font-size: 0.85rem;
  white-space: nowrap;
}
