:root {
  --bg: #fdf8f4; --text: #2c1810; --muted: #7a5c4a;
  --accent: #c45c3e; --accent2: #8b6914; --border: #e5d4c8;
  --radius: 8px; --container: 1140px;
  --font-head: 'Lora', Georgia, serif; --font-body: 'Nunito Sans', system-ui, sans-serif; --font-mono: monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.site-logo { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; text-decoration: none; color: var(--text); }
.menu-toggle { display: none; background: none; border: 1px solid var(--border); padding: 0.4rem 0.6rem; cursor: pointer; }

.site-header--split .container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.nav--pill a { text-decoration: none; color: var(--muted); padding: 0.35rem 0.9rem; border-radius: 999px; margin-left: 0.25rem; }
.nav--pill a.is-active { background: var(--accent); color: #fff; }
.hero--carousel { position: relative; margin-bottom: 2rem; }
.carousel-slide { display: none; position: relative; }
.carousel-slide.is-active { display: block; }
.carousel-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(transparent, rgba(44,24,16,0.8)); color: #fff; }
.feed--vertical .card { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.feed--vertical .card a { display: grid; grid-template-columns: 200px 1fr; gap: 1rem; text-decoration: none; color: inherit; }
.site-footer--three .footer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; padding: 2rem 0; }
.cookie--bottom { position: fixed; bottom: 0; left: 0; right: 0; background: var(--text); color: #fff; padding: 0.75rem; text-align: center; z-index: 100; }
@media (max-width: 768px) { .feed--vertical .card a { grid-template-columns: 1fr; } .site-footer--three .footer-grid { grid-template-columns: 1fr; } }

.page-content { padding: 2rem 0 3rem; }
.page-content h1 { font-family: var(--font-head); margin-bottom: 1rem; }
.page-content h2 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.article-page h1 { font-family: var(--font-head); font-size: 2rem; margin: 0.5rem 0; }
.byline { display: flex; gap: 0.75rem; align-items: center; margin: 1rem 0; }
.byline span { display: block; font-size: 0.85rem; color: var(--muted); }
.article-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.related { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.section-title { font-family: var(--font-head); margin-bottom: 1rem; }
.picks { padding: 2rem 0; }
.picks ul { list-style: none; }
.picks li { padding: 0.35rem 0; }
.card-cat { font-size: 0.75rem; text-transform: uppercase; color: var(--muted); }
.card-meta { font-size: 0.8rem; color: var(--muted); }

.index-with-rail main { display: grid; grid-template-columns: 1fr 260px; gap: 2rem; }
.sidebar-right { border-left: 1px solid var(--border); padding-left: 1.5rem; }
@media (max-width: 900px) { .index-with-rail main { grid-template-columns: 1fr; } .sidebar-right { border-left: none; padding: 1rem 0; } }
