:root {
  --ink: #111;
  --muted: #666;
  --line: #e0ddd6;
  --paper: #faf8f3;
  --accent: #a32626;
  --accent-dark: #7a1c1c;
  --kicker: #888;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Masthead ─── */
.masthead {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.masthead-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 3px double var(--ink);
}
.masthead-date {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.masthead-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 3.75rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-block;
  line-height: 1;
}
.masthead-title:hover { color: var(--ink); text-decoration: none; }
.masthead-tagline {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-style: italic;
}

.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-inner { flex-wrap: wrap; }
.nav-inner a { color: var(--ink); padding: 0.25rem 0.1rem; border-bottom: 2px solid transparent; }
.nav-inner a:hover { color: var(--accent); text-decoration: none; }
.nav-inner a.active { color: var(--accent); border-bottom-color: var(--accent); }

.kicker-cat {
  color: var(--accent);
  font-weight: 700;
}
a.kicker-cat:hover { color: var(--accent-dark); text-decoration: underline; }

.category-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px double var(--ink);
}

/* ─── Container ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.kicker {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--kicker);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ink);
}

.source {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ─── Featured ─── */
.featured { margin-bottom: 2rem; }
.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.featured-card:hover {
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  color: var(--ink);
}
.featured-image {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}
.featured-body { padding: 2rem; }
.featured-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0.25rem 0 1rem;
  color: var(--ink);
}
.featured-excerpt {
  font-size: 1.05rem;
  color: #333;
  margin: 0 0 0.75rem;
}

/* ─── Grid ─── */
.grid-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}
.card-image-blank {
  background: linear-gradient(135deg, #eee 0%, #ddd 100%);
}
.card-body { padding: 1.25rem; }
.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0.25rem 0 0.75rem;
  color: var(--ink);
}
.card-excerpt {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}

/* ─── Article page ─── */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.breadcrumb {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.article-hero {
  margin: 0 0 2rem;
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.article-header { margin-bottom: 2rem; }
.article-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0.25rem 0 1rem;
}
.article-source {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-body {
  font-size: 1.1rem;
  line-height: 1.75;
}
.article-body p { margin: 0 0 1.25rem; }
.article-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}
.article-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
}
.article-body blockquote {
  border-left: 4px solid var(--accent);
  margin: 1.5rem 0;
  padding: 0.5rem 1.25rem;
  color: #333;
  font-style: italic;
}
.article-body ul, .article-body ol { padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }

.original-cta {
  margin: 3rem 0 2rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
}
.original-cta-text {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn:hover {
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
}

.related { margin-top: 3rem; }

/* ─── Empty state ─── */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
}
.empty-state h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
}

/* ─── Footer ─── */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  margin-top: 4rem;
  padding: 3rem 1.5rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-meta { color: #888; font-size: 0.85rem; margin-top: 1rem; }
.footer-copy { color: #666; font-size: 0.8rem; margin-top: 2rem; }
.site-footer a { color: #e8a4a4; }

/* ─── Responsive ─── */
@media (max-width: 800px) {
  .nav-inner { gap: 1rem; font-size: 0.8rem; }
  .category-heading { font-size: 1.75rem; }
  .masthead-title { font-size: 2.5rem; }
  .featured-card { grid-template-columns: 1fr; gap: 0; }
  .featured-image { min-height: 220px; }
  .featured-body { padding: 1.5rem; }
  .featured-title { font-size: 1.75rem; }
  .grid-items { grid-template-columns: 1fr; }
  .article-title { font-size: 2rem; }
  .article-body { font-size: 1.05rem; }
  .container { padding: 1.5rem 1rem; }
}
