:root {
    --sage: #9CAF88;
    --sage-light: #B8C9A9;
    --sage-dark: #7A9A6A;
    --eucalyptus: #6B8F71;
    --eucalyptus-dark: #4A7050;
    --terracotta: #C67B5C;
    --terracotta-light: #D99C82;
    --terracotta-dark: #A65D3F;
    --sand: #E8DFD0;
    --sand-light: #F5F1EA;
    --cream: #FDFBF7;
    --clay: #8B7355;
    --charcoal: #2D3029;
    --forest: #3D4A3A;
    --warm-white: #FFF9F0;
    --accent-gold: #D4A574;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--cream); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; }

/* Navigation */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(253, 251, 247, 0.95); backdrop-filter: blur(10px); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--sand); }
.logo { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--forest); letter-spacing: 0.02em; text-decoration: none; }
.logo span { color: var(--terracotta); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--terracotta); }

/* Footer */
footer { background: var(--forest); color: var(--sand-light); padding: 3rem 2rem 2rem; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 1.75rem; color: var(--cream); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--terracotta-light); }
.footer-text { font-size: 0.9rem; color: var(--sage-light); max-width: 400px; margin: 0 auto 1rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a { color: var(--sage-light); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--cream); }
.footer-divider { width: 80px; height: 1px; background: var(--eucalyptus); margin: 1rem auto; }
.footer-copyright { font-size: 0.8rem; color: var(--sage); }

/* Ad placeholder styles */
.ad-container { background: var(--sand-light); border: 1px dashed var(--sand); padding: 1rem; text-align: center; margin: 2rem auto; max-width: 728px; min-height: 90px; display: flex; align-items: center; justify-content: center; }
.ad-container.sidebar { max-width: 300px; min-height: 250px; }
.ad-container.in-article { max-width: 100%; min-height: 280px; margin: 2rem 0; }

/* Page content wrapper */
.page-content { max-width: 800px; margin: 0 auto; padding: 6rem 2rem 4rem; }
.page-content h1 { font-family: var(--font-display); font-size: 2.5rem; color: var(--forest); margin-bottom: 1.5rem; }
.page-content h2 { font-family: var(--font-display); font-size: 1.75rem; color: var(--forest); margin: 2rem 0 1rem; }
.page-content p { margin-bottom: 1rem; color: var(--charcoal); }
.page-content ul, .page-content ol { margin: 1rem 0 1rem 2rem; }
.page-content li { margin-bottom: 0.5rem; }
.page-content a { color: var(--terracotta); }

/* Story/Article styles */
.story-header { padding-top: 5rem; }
.story-hero { width: 100%; max-height: 500px; object-fit: cover; border-radius: 12px; margin-bottom: 2rem; }
.story-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.story-location { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: var(--sage-light); color: var(--forest); border-radius: 50px; font-size: 0.8rem; font-weight: 500; }
.story-date { font-size: 0.85rem; color: var(--clay); }
.story-content { font-size: 1.1rem; line-height: 1.9; }
.story-content p { margin-bottom: 1.5rem; }
.story-content .highlight { font-family: var(--font-display); font-size: 1.3rem; color: var(--forest); font-style: italic; line-height: 1.6; }
.story-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.story-gallery img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; object-position: top center; border-radius: 8px; }
.story-gallery.single img { grid-column: 1 / -1; aspect-ratio: 16/9; object-position: center; }

/* Responsive */
@media (max-width: 768px) {
    nav { padding: 1rem; }
    .nav-links { display: none; }
    .page-content { padding: 5rem 1rem 3rem; }
    .story-gallery { grid-template-columns: 1fr; }
    .story-gallery img { aspect-ratio: 4/3; }
}
