:root {
  --bg: #fffaf5; --text: #1a2332; --muted: #5c6b7a;
  --accent: #e85d4c; --accent2: #2a9d8f; --border: #e8ddd0;
  --radius: 14px; --container: 1140px;
  --font-head: 'Playfair Display', Georgia, serif; --font-body: 'Source Sans 3', 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--centered { text-align: center; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.site-header--centered .site-tagline { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.nav--underline { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
.nav--underline a { text-decoration: none; color: var(--text); border-bottom: 2px solid transparent; padding-bottom: 0.2rem; }
.nav--underline a.is-active, .nav--underline a:hover { border-color: var(--accent); }
.hero--fullbleed { position: relative; margin-bottom: 2rem; }
.hero--fullbleed img { width: 100%; max-height: 480px; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; background: linear-gradient(transparent, rgba(26,35,50,0.7)); color: #fff; }
.hero-overlay h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.feed--columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
.card img { border-radius: var(--radius); margin-bottom: 0.75rem; }
.card h2 { font-family: var(--font-head); font-size: 1.15rem; }
.site-footer--masthead { background: var(--text); color: #fff; padding: 2.5rem 0; margin-top: 3rem; }
.site-footer--masthead a { color: #fff; }
.cookie--corner { position: fixed; bottom: 1rem; right: 1rem; background: #fff; border: 1px solid var(--border); padding: 1rem; border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,0.1); max-width: 280px; z-index: 100; }
@media (max-width: 768px) { .menu-toggle { display: inline-block; } .nav--underline { display: none; } .nav--underline.is-open { display: flex; flex-direction: column; } .feed--columns { 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); }

.article-layout { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; }
.sidebar-toc { position: sticky; top: 1rem; font-size: 0.9rem; }
.sidebar-toc ul { list-style: none; }
@media (max-width: 768px) { .article-layout { grid-template-columns: 1fr; } .sidebar-toc { display: none; } }
