:root {
  --ink: #14130f;
  --muted: #5f5a52;
  --paper: #f6f2ec;
  --accent: #2b5d3b;
  --shadow: rgba(20, 19, 15, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Charter", "Georgia", serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffffff 0%, var(--paper) 50%, #efe9df 100%);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  border-bottom: 1px solid #ded6c9;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-tagline {
  margin: 4px 0 0;
  color: var(--muted);
}

.page h1,
.post h1 {
  margin-top: 0;
  font-size: 2.1rem;
}

.prose p {
  margin: 0 0 1rem;
}

.posts {
  margin-top: 2.5rem;
}

.posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.posts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed #d7cfbf;
}

.date {
  color: var(--muted);
  font-size: 0.9rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.back-link {
  margin-top: 2rem;
}

.site-footer {
  border-top: 1px solid #ded6c9;
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .posts li {
    flex-direction: column;
    align-items: flex-start;
  }
}
