:root {
  --ink: #2B2420;
  --paper: #FDFBF7;
  --accent: #C9622E;
  --muted: #7A6F65;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
}
.site-header {
  padding: 24px 20px;
  border-bottom: 1px solid #eee;
}
.site-logo {
  font-size: 20px;
  font-weight: bold;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.3px;
}
main {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}
h1 { font-size: 32px; line-height: 1.2; }
a { color: var(--accent); }
.post-list-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}
.post-list-item h2 { margin-bottom: 4px; }
.post-meta {
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.site-footer {
  padding: 24px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
