:root {
  --navy: #1A1F3A;
  --navy-dark: #111526;
  --gold: #C9A84C;
  --gold-soft: #D4B660;
  --cream: #FAF6EE;
  --cream-alt: #F2EDE0;
  --text: #3A3530;
  --muted: #7A7268;
  --border: #E0D9CF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

.topbar { padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; background: var(--cream); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.brand a { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.2rem; color: var(--navy); }
.topnav { display: flex; gap: 1.6rem; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.topnav a { color: var(--muted); transition: color 0.2s; }
.topnav a:hover { color: var(--navy); }
@media (max-width: 720px) { .topnav { display: none; } }

.blog-hero { padding: 4rem 2rem 2.5rem; max-width: 900px; margin: 0 auto; }
.blog-hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--navy); font-weight: 900; margin-bottom: 0.8rem; line-height: 1.05; }
.blog-hero p { font-size: 1.05rem; color: var(--muted); max-width: 600px; }

.blog-section { padding: 2rem 2rem 2.5rem; max-width: 900px; margin: 0 auto; }
.blog-section h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); font-weight: 900; margin-bottom: 1.5rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--gold); }
.post-list { list-style: none; }
.post-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.post-list li:last-child { border-bottom: none; }
.post-list a { display: block; color: var(--text); transition: color 0.2s; }
.post-list a:hover { color: var(--navy); }
.post-list strong { color: var(--navy); font-weight: 700; font-size: 1rem; }
.post-list a::after { content: ' →'; color: var(--gold); font-weight: 700; }

.post { max-width: 720px; margin: 0 auto; padding: 4rem 2rem 5rem; }
.post-eyebrow { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.post-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 2.8rem); color: var(--navy); font-weight: 900; line-height: 1.15; margin-bottom: 1rem; }
.post-description { font-size: 1.1rem; color: var(--muted); margin-bottom: 2.5rem; font-style: italic; }
.post-body { font-size: 1rem; line-height: 1.75; margin-bottom: 2.5rem; }
.post-body p { margin-bottom: 1.2rem; }
.post-body strong { color: var(--navy); font-weight: 700; }
.post-body em { font-style: italic; }
.post-body code { background: var(--cream-alt); padding: 0.1rem 0.4rem; border-radius: 3px; font-size: 0.9em; font-family: 'Menlo', 'Monaco', monospace; }
.post-body ul, .post-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body a { color: var(--navy); border-bottom: 1px solid var(--gold); transition: color 0.2s; }
.post-body a:hover { color: var(--gold); }

.post-links { display: flex; gap: 1.5rem; flex-wrap: wrap; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.post-links a { color: var(--navy); font-weight: 700; font-size: 0.9rem; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

.post-hashtags { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.05em; font-weight: 600; }

footer { background: var(--navy-dark); color: rgba(250, 246, 238, 0.5); padding: 1.5rem 2rem; text-align: center; font-size: 0.78rem; border-top: 1px solid rgba(201, 168, 76, 0.1); margin-top: 4rem; }
footer a { color: var(--gold); }
footer a:hover { color: var(--gold-soft); }
