:root {
  --bg: #fdf9f7;
  --card: #ffffff;
  --text: #2c2530;
  --muted: #6b5f68;
  --accent: #a6446e;
  --accent-dark: #7d2f52;
  --accent-light: #f3d9e3;
  --border: #eadfe3;
  --max-width: 780px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

header.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent-dark);
  letter-spacing: -0.01em;
}

.site-title span { color: var(--text); font-weight: 400; }

nav.site-nav a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  margin-left: 1.25rem;
  color: var(--text);
}

nav.site-nav a:hover { color: var(--accent-dark); }

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.hero {
  padding: 1rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  line-height: 1.2;
}

.hero p { color: var(--muted); font-size: 1.05rem; max-width: 60ch; }

.tag {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

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

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

.post-card:last-child { border-bottom: none; }

.post-card h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  margin: 0.3rem 0 0.5rem;
}

.post-card .meta {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

.post-card p.excerpt { color: var(--text); margin: 0.5rem 0 0; }

article.post h1 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.9rem;
  color: var(--accent-dark);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

article.post .meta {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

article.post h2 { font-family: "Helvetica Neue", Arial, sans-serif; color: var(--accent-dark); margin-top: 2rem; }
article.post h3 { font-family: "Helvetica Neue", Arial, sans-serif; color: var(--text); }
article.post p { margin: 1rem 0; }
article.post ul, article.post ol { padding-left: 1.4rem; }
article.post li { margin: 0.4rem 0; }
article.post blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0;
  padding: 0.25rem 0 0.25rem 1rem;
  color: var(--muted);
  font-style: italic;
}

.video-wrap {
  margin: 1.5rem 0 2rem;
}

.video-wrap video {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 2px 14px rgba(0,0,0,0.12);
}

.disclaimer {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--accent-dark);
  margin: 2.5rem 0;
}

.sources {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.sources h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); }
.sources ul { padding-left: 1.2rem; }

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.topic-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.topic-card h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 0.5rem;
  color: var(--accent-dark);
  font-size: 1.05rem;
}

.topic-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  nav.site-nav a { margin-left: 0.8rem; }
}
