:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --muted: #888;
  --accent: #c9a96e;
  --link: #a8c4d4;
  --font-body: 'Georgia', serif;
  --font-mono: 'Courier New', monospace;
  --max-width: 680px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  padding: 0 1.5rem;
}

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
a:hover { border-bottom-color: var(--link); }

header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

header .site-name {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-mono);
}

nav {
  margin-top: 0.75rem;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
nav a:hover, nav a.active { color: var(--text); }

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

h1 {
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--text);
}

h2 {
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--accent);
  margin: 2.5rem 0 0.75rem;
}

p { margin-bottom: 1.25rem; }

.meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.post-list {
  list-style: none;
}

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

.post-list li:first-child { border-top: 1px solid var(--border); }

.post-list .post-title {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.post-list .post-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}

blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  color: var(--muted);
  margin: 1.5rem 0;
  font-style: italic;
}

footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}
