:root {
  --bg: #f5f1e8;
  --paper: #fffdf8;
  --ink: #1f1d1a;
  --muted: #6b6257;
  --line: #d9cfbf;
  --accent: #a44a1f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8ec 0%, var(--bg) 55%);
}
a { color: inherit; }
.wrap {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header, .site-footer {
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,248,0.86);
  backdrop-filter: blur(6px);
}
.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 48px;
  padding: 20px 0 48px;
  color: var(--muted);
}
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.brand {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
nav {
  display: flex;
  gap: 18px;
}
nav a {
  text-decoration: none;
  color: var(--muted);
}
.hero {
  padding: 72px 0 28px;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  margin: 0;
}
.lead, .content, .meta { color: var(--muted); }
.eyebrow {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(63, 40, 18, 0.08);
  margin-top: 20px;
}
.post-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.post-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.post-list li:first-child { border-top: 0; padding-top: 0; }
.post-list a { text-decoration: none; font-weight: 600; }
.article h1 { margin-bottom: 8px; }
.content p { line-height: 1.8; }
@media (max-width: 640px) {
  .site-header .wrap, .post-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  nav { gap: 12px; flex-wrap: wrap; }
}
