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

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

:root {
  --near-black: #0e0f0c;
  --wise-green: #9fe870;
  --dark-green: #163300;
  --light-mint: #e2f6d5;
  --pastel-green: #cdffad;
  --warm-dark: #454745;
  --gray: #868685;
  --light-surface: #e8ebe6;
  --bg: #ffffff;
  --ring: rgba(14,15,12,0.12);
  --font-display: 'Inter', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-feature-settings: "calt";
  background: var(--bg);
  color: var(--near-black);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.18px;
}

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

img { max-width: 100%; height: auto; display: block; }

address { font-style: normal; }

.btn-pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  font-feature-settings: "calt";
  letter-spacing: -0.108px;
  line-height: 1.44;
  cursor: pointer;
  border: none;
  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: var(--bg);
  border-bottom: 1px solid var(--ring);
}
.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-size: 1.25rem;
  font-weight: 900;
  color: var(--near-black);
  letter-spacing: -0.5px;
  text-decoration: none;
  font-feature-settings: "calt";
}
.nav-logo:hover { text-decoration: none; color: var(--dark-green); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links li a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--near-black);
  padding: 6px 14px;
  border-radius: 9999px;
  display: block;
  transition: background 0.15s ease;
  font-feature-settings: "calt";
}
.nav-links li a:hover {
  background: rgba(211,242,192,0.4);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--near-black);
}

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

.hero {
  background: var(--bg);
  padding: 80px 24px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  display: inline-block;
  background: var(--light-mint);
  color: var(--dark-green);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 24px;
  font-feature-settings: "calt";
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
  color: var(--near-black);
  max-width: 860px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--warm-dark);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-green);
  background: var(--light-mint);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
  font-feature-settings: "calt";
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.125rem;
  color: var(--warm-dark);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  border-radius: 30px;
  border: 1px solid var(--ring);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  background: var(--bg);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(14,15,12,0.10);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 28px;
}
.card-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-green);
  background: var(--light-mint);
  padding: 2px 10px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 12px;
  font-feature-settings: "calt";
}
.card-title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.23;
  letter-spacing: -0.39px;
  color: var(--near-black);
  margin-bottom: 12px;
  font-feature-settings: "calt";
}
.card-excerpt {
  font-size: 1rem;
  color: var(--warm-dark);
  line-height: 1.55;
  margin-bottom: 20px;
}
.card-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-green);
  font-feature-settings: "calt";
}
.card-link:hover { text-decoration: underline; }

.divider {
  border: none;
  border-top: 1px solid var(--ring);
  margin: 0;
}

.info-band {
  background: var(--light-surface);
  padding: 56px 24px;
}
.info-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}
.info-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--near-black);
  line-height: 1;
  font-feature-settings: "calt";
}
.info-stat-label {
  font-size: 1rem;
  color: var(--warm-dark);
  font-weight: 600;
}

.contact-section {
  padding: 72px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--bg);
  border: 1px solid var(--ring);
  border-radius: 30px;
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--near-black);
  font-feature-settings: "calt";
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--near-black);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(14,15,12,0.20);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--near-black);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s ease;
  font-feature-settings: "calt";
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--wise-green);
  box-shadow: rgb(134,134,133) 0 0 0 1px inset;
}
.form-group textarea { height: 120px; resize: vertical; }
.contact-info h3 {
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--near-black);
  font-feature-settings: "calt";
}
.contact-info p { margin-bottom: 12px; color: var(--warm-dark); line-height: 1.6; }
.contact-info a { color: var(--dark-green); }

.article-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}
.article-hero .breadcrumb {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.article-hero .breadcrumb a { color: var(--dark-green); }
.article-hero h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin-bottom: 20px;
  max-width: 880px;
}
.article-meta {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 32px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.article-meta-tag {
  background: var(--light-mint);
  color: var(--dark-green);
  padding: 2px 12px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8rem;
}
.article-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 30px;
  margin-bottom: 48px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.article-body h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.95;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin: 48px 0 18px;
}
.article-body h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.23;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin: 32px 0 12px;
}
.article-body p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--near-black);
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li { margin-bottom: 8px; line-height: 1.65; }
.article-body a { color: var(--dark-green); text-decoration: underline; }
.article-body blockquote {
  border-left: 4px solid var(--wise-green);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--light-mint);
  border-radius: 0 16px 16px 0;
  font-size: 1.05rem;
  color: var(--warm-dark);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ring);
}
.article-body th {
  background: var(--near-black);
  color: var(--wise-green);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
}
.article-body td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--ring);
  font-size: 0.95rem;
}
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:nth-child(even) td { background: var(--light-surface); }

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

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.page-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 0.9;
  font-feature-settings: "calt";
  margin-bottom: 32px;
}
.page-content h2 {
  font-size: 1.625rem;
  font-weight: 700;
  margin: 40px 0 14px;
  font-feature-settings: "calt";
}
.page-content p { margin-bottom: 18px; line-height: 1.7; color: var(--warm-dark); }
.page-content ul { padding-left: 22px; margin-bottom: 18px; }
.page-content li { margin-bottom: 8px; line-height: 1.6; color: var(--warm-dark); }
.page-meta { font-size: 0.875rem; color: var(--gray); margin-bottom: 40px; }

.site-footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.8);
  padding: 64px 24px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--wise-green);
  margin-bottom: 14px;
  font-feature-settings: "calt";
}
.footer-desc { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  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.75); font-size: 0.95rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--wise-green); text-decoration: none; }
.footer-col address p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 8px; line-height: 1.5; }
.footer-col address a { color: rgba(255,255,255,0.7); }
.footer-col address a:hover { color: var(--wise-green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.6; }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--near-black);
  color: rgba(255,255,255,0.9);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 40px rgba(14,15,12,0.3);
}
.cookie-inner {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.9rem; line-height: 1.5; flex: 1; min-width: 220px; }
.cookie-inner a { color: var(--wise-green); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  margin-top: 48px;
}

.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-mint);
  color: var(--dark-green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; width: 100%; background: var(--bg); border-bottom: 1px solid var(--ring); padding: 12px 0; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .site-nav { position: relative; }
  .nav-inner { position: relative; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 4rem); }
  .info-band-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 576px) {
  .cards-grid { grid-template-columns: 1fr; }
  .info-band-inner { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; }
  .article-featured-img { border-radius: 16px; }
}
