/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fafaf8;
  --fg: #1a1a1a;
  --muted: #666;
  --accent: #2d6a4f;
  --border: #e0e0da;
  --max-w: 720px;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.75;
  font-size: 1.05rem;
}

/* Layout */
header, main, footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / nav */
header {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.site-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.site-name:hover { text-decoration: underline; }

/* Main */
main { padding-top: 3rem; padding-bottom: 4rem; }

/* Hero */
.hero { margin-bottom: 3rem; }
.hero h1 { font-size: 2rem; margin-bottom: 0.75rem; }
.tagline { color: var(--muted); font-size: 1rem; max-width: 560px; }

/* Article list */
.articles h2 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

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

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

.article-list li:last-child { border-bottom: 1px solid var(--border); }

.article-list a {
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--fg);
  text-decoration: none;
}

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

.article-list .excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
}

.article-list .meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
  font-family: system-ui, sans-serif;
}

/* Article page */
.article-header { margin-bottom: 2.5rem; }
.article-header h1 { font-size: 1.8rem; line-height: 1.3; margin-bottom: 0.5rem; }
.article-header .meta {
  color: var(--muted);
  font-size: 0.85rem;
  font-family: system-ui, sans-serif;
}

.article-body h2 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.5rem; }
.article-body li { margin-bottom: 0.4rem; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted);
  margin: 1.5rem 0;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.article-footer a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
}

.article-footer a:hover { text-decoration: underline; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: system-ui, sans-serif;
}
