:root {
  --bg: #0b0d10;
  --bg-raised: #12151a;
  --text: #eceae6;
  --text-muted: #9ea1a8;
  --accent: #c9a24b;
  --border: #23262c;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

header.site {
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

header.site a.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}

header.site a.brand span { color: var(--accent); }

.site-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.site-link:hover { color: var(--accent); }

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

.post-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.post-list a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.post-list a:hover { color: var(--accent); }

.post-excerpt {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.post-date, .post-meta {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: block;
  margin-top: 0.4rem;
}

article h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

article h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
  margin: 2.25rem 0 0.75rem;
}

article p {
  color: var(--text);
}

.back-link {
  display: inline-block;
  margin-top: 2.5rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
}
