@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root {
  --near-black: #0e0f0c;
  --wise-green: #9fe870;
  --dark-green: #163300;
  --light-mint: #e2f6d5;
  --pastel-green: #cdffad;
  --positive-green: #054d28;
  --warm-dark: #454745;
  --gray: #868685;
  --light-surface: #e8ebe6;
  --bg: #ffffff;
  --ring-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.18px;
  color: var(--near-black);
  background: var(--bg);
  font-feature-settings: "calt";
  -webkit-font-smoothing: antialiased;
}

a { color: var(--dark-green); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; border-radius: 16px; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.108px;
  font-feature-settings: "calt";
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
  text-decoration: none;
}
.btn-pill:hover { transform: scale(1.05); text-decoration: none; }
.btn-pill:active { transform: scale(0.95); }

.btn-green {
  background: var(--wise-green);
  color: var(--dark-green);
}
.btn-secondary {
  background: rgba(22,51,0,0.08);
  color: var(--near-black);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--ring-shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--near-black);
  letter-spacing: -0.5px;
  font-feature-settings: "calt";
}
.nav-logo:hover { text-decoration: none; color: var(--dark-green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--near-black);
  transition: background 0.15s;
  font-feature-settings: "calt";
}
.nav-links > li > a:hover {
  background: rgba(211,242,192,0.4);
  text-decoration: none;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(14,15,12,0.12);
  list-style: none;
  padding: 8px;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--near-black);
  transition: background 0.15s;
}
.dropdown li a:hover { background: var(--light-mint); text-decoration: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: all 0.2s;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }

.hero {
  background: var(--bg);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--light-surface);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--light-mint);
  color: var(--positive-green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--near-black);
  font-feature-settings: "calt";
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--warm-dark);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--ring-shadow);
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -1.5px;
  color: var(--near-black);
  font-feature-settings: "calt";
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--warm-dark);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  border-radius: 30px;
  box-shadow: var(--ring-shadow);
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease;
}
.article-card:hover { transform: translateY(-4px); }
.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}
.article-card-body { padding: 24px; }
.article-card-tag {
  display: inline-block;
  background: var(--light-mint);
  color: var(--positive-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  font-feature-settings: "calt";
}
.article-card h3 a { color: var(--near-black); }
.article-card h3 a:hover { color: var(--dark-green); text-decoration: none; }
.article-card p {
  font-size: 0.9rem;
  color: var(--warm-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}
.article-meta {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

.info-band {
  background: var(--near-black);
  color: #fff;
  padding: 64px 0;
}
.info-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.info-band-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 0.95;
  color: var(--wise-green);
  font-feature-settings: "calt";
  margin-bottom: 8px;
}
.info-band-item p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--light-surface);
  border-radius: 40px;
  padding: 48px;
  box-shadow: var(--ring-shadow);
}
.featured-article img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
}
.featured-body .article-card-tag { margin-bottom: 16px; }
.featured-body h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.featured-body p { font-size: 1rem; color: var(--warm-dark); line-height: 1.65; margin-bottom: 24px; }

.site-footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.8);
  padding-top: 64px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.footer-logo span { color: var(--wise-green); }
.footer-logo:hover { text-decoration: none; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 360px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wise-green);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 600; transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; text-decoration: none; }
.footer-disclaimer { font-size: 0.78rem !important; font-style: italic; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--near-black);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}
.cookie-banner p { font-size: 0.9rem; margin: 0; }
.cookie-banner a { color: var(--wise-green); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.page-header {
  background: var(--near-black);
  color: #fff;
  padding: 72px 0 56px;
}
.page-header .container { max-width: 800px; }
.page-header .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-weight: 600;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb a:hover { color: var(--wise-green); text-decoration: none; }
.page-header h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -1.5px;
  font-feature-settings: "calt";
  margin-bottom: 20px;
}
.page-header .page-meta {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.page-header .page-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 640px;
  margin-top: 16px;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.article-body h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.8px;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin: 28px 0 12px;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2a2b28;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2a2b28;
}
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--dark-green); text-decoration: underline; }
.article-body a:hover { color: var(--positive-green); }
.article-body img {
  width: 100%;
  border-radius: 20px;
  margin: 32px 0;
  box-shadow: var(--ring-shadow);
}
.article-body .info-box {
  background: var(--light-mint);
  border-left: 4px solid var(--wise-green);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.article-body .info-box p { margin: 0; font-size: 0.95rem; color: var(--dark-green); }
.article-caption {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 32px;
  font-style: italic;
}
.article-sources {
  background: var(--light-surface);
  border-radius: 16px;
  padding: 24px;
  margin-top: 48px;
}
.article-sources h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--warm-dark);
}
.article-sources ul { list-style: none; margin: 0; padding: 0; }
.article-sources li { margin-bottom: 8px; }
.article-sources a { font-size: 0.88rem; color: var(--dark-green); }

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.page-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.6px;
  font-feature-settings: "calt";
  margin: 36px 0 14px;
  color: var(--near-black);
}
.page-content h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--near-black);
}
.page-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #2a2b28;
  margin-bottom: 16px;
}
.page-content ul { margin: 0 0 16px 24px; line-height: 1.75; color: #2a2b28; }
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--dark-green); text-decoration: underline; }

.contact-form-wrap {
  background: var(--light-surface);
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--ring-shadow);
  margin-top: 48px;
}
.contact-form-wrap h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.8px;
  font-feature-settings: "calt";
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(14,15,12,0.2);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--near-black);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--wise-green);
  box-shadow: 0 0 0 3px rgba(159,232,112,0.2);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-message { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; }
.form-message.success { background: var(--light-mint); color: var(--positive-green); }
.form-message.loading { background: var(--light-surface); color: var(--warm-dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-grid img {
  border-radius: 30px;
  box-shadow: var(--ring-shadow);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .info-band-inner { grid-template-columns: 1fr 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid img { height: 280px; }
}
@media (max-width: 576px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .articles-grid { grid-template-columns: 1fr; }
  .info-band-inner { grid-template-columns: 1fr; }
  .featured-article { padding: 28px 20px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 24px 20px; }
}
