@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:wght@400;500;600;700&display=swap');

:root {
--color-forest: #1a3a2f;
--color-emerald: #2d5a47;
--color-sage: #5a8a6e;
--color-mint: #8cb89c;
--color-cream: #f8f7f4;
--color-warm-white: #fdfcfa;
--color-text: #2c2c2c;
--color-text-light: #5a5a5a;
--font-display: 'Fraunces', Georgia, serif;
--font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--color-text); background-color: var(--color-warm-white); }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; background: rgba(253, 252, 250, 0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.04); }
.nav-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--color-forest); text-decoration: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--color-text-light); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--color-forest); }
.nav-cta { background: var(--color-forest); color: white !important; padding: 0.5rem 1.25rem; border-radius: 6px; }

.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 2rem 4rem; background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 100%); }
.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-label { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-emerald); margin-bottom: 1.5rem; padding: 0.5rem 1rem; background: rgba(45, 90, 71, 0.08); border-radius: 4px; white-space: nowrap; }
.hero h1 { font-family: var(--font-display); font-size: 3.5rem; font-weight: 600; line-height: 1.15; color: var(--color-forest); margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; color: var(--color-text-light); margin-bottom: 2rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; }
.btn { display: inline-block; padding: 0.9rem 1.75rem; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.2s ease; }
.btn-primary { background: var(--color-forest); color: white; }
.btn-primary:hover { background: var(--color-emerald); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--color-forest); border: 2px solid var(--color-forest); }
.btn-secondary:hover { background: var(--color-forest); color: white; }
.hero-image-wrapper { width: 100%; max-width: 400px; aspect-ratio: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.section-container { max-width: 1100px; margin: 0 auto; padding: 6rem 2rem; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-emerald); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--color-forest); margin-bottom: 3rem; }

.about { background: white; }
.about-content { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.about-text p { margin-bottom: 1.5rem; color: var(--color-text); }
.about-text a { color: var(--color-emerald); }
.about-sidebar h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-emerald); margin-bottom: 0.75rem; }
.about-sidebar ul { list-style: none; }
.about-sidebar li { padding: 0.4rem 0; color: var(--color-text-light); font-size: 0.95rem; border-bottom: 1px solid var(--color-cream); }

.topics { background: var(--color-cream); }
.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.topic-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all 0.3s ease; }
.topic-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.topic-icon { font-size: 2rem; margin-bottom: 1rem; }
.topic-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--color-forest); margin-bottom: 0.75rem; }
.topic-card p { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.6; }
.topic-card a { color: var(--color-emerald); }

.media { background: white; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.media-card { background: var(--color-cream); padding: 1.75rem; border-radius: 10px; transition: all 0.2s ease; }
.media-card:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,0.06); }
.media-card a { text-decoration: none; color: inherit; }
.media-type { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-emerald); margin-bottom: 0.5rem; }
.media-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--color-forest); margin-bottom: 0.5rem; line-height: 1.4; }
.media-outlet { font-size: 0.9rem; color: var(--color-text-light); }

.newsletter { background: var(--color-forest); color: white; text-align: center; }
.newsletter .section-label { color: var(--color-mint); }
.newsletter .section-title { color: white; margin-bottom: 1.5rem; }
.newsletter p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2rem; }
.newsletter .btn-primary { background: white; color: var(--color-forest); }
.newsletter .btn-primary:hover { background: var(--color-cream); }

.contact { background: var(--color-cream); text-align: center; }
.contact p { color: var(--color-text-light); max-width: 500px; margin: 0 auto 2rem; }
.social-links { display: flex; justify-content: center; gap: 1rem; }
.social-links a { width: 48px; height: 48px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--color-forest); font-weight: 700; transition: all 0.2s ease; }
.social-links a:hover { background: var(--color-forest); color: white; }

footer { text-align: center; padding: 2rem; color: var(--color-text-light); font-size: 0.9rem; }

/* Now page */
.page { max-width: 720px; margin: 0 auto; padding: 8rem 2rem 4rem; }
.page .section-title { margin-bottom: 1.5rem; }
.page p { margin: 1rem 0; color: var(--color-text); }
.page a { color: var(--color-emerald); }
.page ul { padding-left: 1.2rem; margin-top: 1.5rem; }
.page li { margin-bottom: 0.75rem; color: var(--color-text); }

@media (max-width: 900px) {
.hero-container { grid-template-columns: 1fr; text-align: center; }
.hero h1 { font-size: 2.5rem; }
.hero p { margin: 0 auto 2rem; }
.hero-buttons { justify-content: center; }
.hero-image { order: -1; }
.hero-image-wrapper { max-width: 300px; margin: 0 auto; }
.about-content { grid-template-columns: 1fr; }
.topics-grid { grid-template-columns: 1fr; }
.nav-links { display: none; }
}
