@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;
  --font-display: 'Inter', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
  --radius-pill: 9999px;
  --radius-card: 30px;
  --radius-card-sm: 16px;
  --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  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: inherit; text-decoration: none; }
a:hover { color: var(--dark-green); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(14,15,12,0.10);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--near-black);
  white-space: nowrap;
  font-feature-settings: "calt";
}
.nav-logo-dot { color: var(--dark-green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background 0.15s;
  font-feature-settings: "calt";
}
.nav-links > li > a:hover { background: rgba(211,242,192,0.4); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg);
  border-radius: 16px;
  box-shadow: var(--shadow-ring), 0 8px 32px rgba(14,15,12,0.10);
  min-width: 240px;
  padding: 8px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.12s;
  font-feature-settings: "calt";
}
.nav-dropdown-menu li a:hover { background: var(--light-mint); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s;
  font-feature-settings: "calt";
  text-decoration: none;
}
.btn-pill:hover { transform: scale(1.05); }
.btn-pill:active { transform: scale(0.95); }
.btn-green { background: var(--wise-green); color: var(--dark-green); }
.btn-ghost {
  background: rgba(22,51,0,0.08);
  color: var(--near-black);
}

.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: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  font-feature-settings: "calt";
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -1px;
  color: var(--near-black);
  max-width: 800px;
  margin-bottom: 32px;
  font-feature-settings: "calt";
}
.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--warm-dark);
  max-width: 600px;
  margin-bottom: 40px;
}
.hero-img {
  margin-top: 56px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
}
.hero-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.section { padding: 64px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark-green);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.90;
  letter-spacing: -0.5px;
  color: var(--near-black);
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.section-subtitle {
  font-size: 18px;
  color: var(--warm-dark);
  max-width: 560px;
  margin-bottom: 48px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(14,15,12,0.12);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--bg);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(14,15,12,0.12);
  transform: translateY(-2px);
}
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  background: var(--light-mint);
  color: var(--dark-green);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  font-feature-settings: "calt";
}
.card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--near-black);
  margin-bottom: 12px;
  font-feature-settings: "calt";
}
.card-excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--warm-dark);
  margin-bottom: 20px;
}
.card-meta {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-green);
  margin-top: 16px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.card-link:hover { border-color: var(--dark-green); }

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.topic-item {
  background: var(--light-surface);
  border-radius: var(--radius-card-sm);
  padding: 24px;
  border: 1px solid rgba(14,15,12,0.08);
  transition: background 0.15s;
}
.topic-item:hover { background: var(--light-mint); }
.topic-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--near-black);
  font-feature-settings: "calt";
}
.topic-item p { font-size: 14px; color: var(--warm-dark); line-height: 1.5; }

.info-band {
  background: var(--near-black);
  padding: 64px 24px;
}
.info-band .section-inner { display: flex; align-items: center; gap: 64px; flex-wrap: wrap; }
.info-band-text { flex: 1 1 380px; }
.info-band .section-title { color: var(--wise-green); margin-bottom: 16px; }
.info-band p { color: rgba(255,255,255,0.72); font-size: 18px; }
.info-band-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--wise-green);
  line-height: 1;
  font-feature-settings: "calt";
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }

.contact-section { background: var(--light-surface); padding: 64px 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form { background: var(--bg); padding: 40px; border-radius: var(--radius-card); box-shadow: var(--shadow-ring); }
.contact-form h2 {
  font-size: 32px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 8px;
  font-feature-settings: "calt";
}
.contact-form p { color: var(--warm-dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 6px;
  font-feature-settings: "calt";
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(14,15,12,0.20);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--near-black);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  font-feature-settings: "calt";
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--wise-green);
  box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.contact-info h3 {
  font-size: 28px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 24px;
  font-feature-settings: "calt";
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--light-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-text span { display: block; font-size: 12px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.8px; }
.contact-info-text p { font-size: 16px; font-weight: 600; color: var(--near-black); margin-top: 2px; }

.article-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.article-main {}
.article-header { margin-bottom: 40px; }
.article-tag {
  display: inline-block;
  background: var(--light-mint);
  color: var(--dark-green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.article-title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 0.90;
  letter-spacing: -1px;
  color: var(--near-black);
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.article-meta { font-size: 14px; color: var(--gray); font-weight: 600; }
.article-hero-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 40px;
}
.article-hero-img img { width: 100%; max-height: 440px; object-fit: cover; }
.article-body { font-size: 18px; line-height: 1.7; color: var(--near-black); }
.article-body h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 0.9;
  margin: 40px 0 16px;
  font-feature-settings: "calt";
}
.article-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 12px;
  font-feature-settings: "calt";
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  list-style: disc;
}
.article-body li { margin-bottom: 8px; }
.article-body ol { list-style: decimal; }
.article-body a { color: var(--dark-green); border-bottom: 1px solid rgba(22,51,0,0.3); }
.article-body a:hover { border-color: var(--dark-green); }
.article-body .note-box {
  background: var(--light-mint);
  border-left: 4px solid var(--wise-green);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.article-body .note-box p { margin: 0; font-size: 16px; }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}
.article-body th {
  background: var(--near-black);
  color: var(--wise-green);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-feature-settings: "calt";
}
.article-body td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(14,15,12,0.10);
}
.article-body tr:nth-child(even) td { background: var(--light-surface); }

.article-sidebar { position: sticky; top: 80px; }
.sidebar-widget {
  background: var(--light-surface);
  border-radius: var(--radius-card-sm);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(14,15,12,0.08);
}
.sidebar-widget h4 {
  font-size: 16px;
  font-weight: 900;
  color: var(--near-black);
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.sidebar-widget ul li { margin-bottom: 10px; }
.sidebar-widget ul li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-green);
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.12s;
}
.sidebar-widget ul li a:hover { border-color: var(--dark-green); }

.breadcrumb { padding: 20px 24px 0; max-width: 1200px; margin: 0 auto; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; list-style: none; }
.breadcrumb li { font-size: 13px; color: var(--gray); font-weight: 600; }
.breadcrumb li a { color: var(--dark-green); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; }

.page-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.page-layout h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 24px;
  font-feature-settings: "calt";
}
.page-layout h2 {
  font-size: 26px;
  font-weight: 900;
  margin: 36px 0 12px;
  font-feature-settings: "calt";
}
.page-layout h3 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; }
.page-layout p { font-size: 17px; line-height: 1.7; color: var(--warm-dark); margin-bottom: 18px; }
.page-layout ul { padding-left: 20px; list-style: disc; margin-bottom: 18px; }
.page-layout li { font-size: 17px; line-height: 1.6; color: var(--warm-dark); margin-bottom: 6px; }
.page-meta { font-size: 13px; color: var(--gray); font-weight: 600; margin-bottom: 32px; }

.site-footer {
  background: var(--near-black);
  color: #fff;
  padding: 64px 24px 0;
  margin-top: 80px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-logo { font-size: 20px; font-weight: 900; display: block; margin-bottom: 12px; font-feature-settings: "calt"; }
.footer-logo-dot { color: var(--wise-green); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.40); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.70); transition: color 0.12s; }
.footer-col ul li a:hover { color: var(--wise-green); }
.footer-col address { font-style: normal; }
.footer-col address p { font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.7; }
.footer-col address a { color: rgba(255,255,255,0.70); }
.footer-col address a:hover { color: var(--wise-green); }
.footer-bottom { padding: 24px 0 32px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.40); }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.28); }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, calc(100vw - 48px));
  background: var(--near-black);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 40px rgba(14,15,12,0.25);
  z-index: 9999;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-inner { padding: 24px 28px; display: flex; flex-direction: column; gap: 16px; }
.cookie-inner p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.6; }
.cookie-inner p a { color: var(--wise-green); border-bottom: 1px solid rgba(159,232,112,0.3); }
.cookie-actions { display: flex; gap: 12px; }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .info-band .section-inner { flex-direction: column; gap: 40px; }
}
@media (max-width: 576px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; width: 100%; background: var(--bg); padding: 16px; border-bottom: 1px solid rgba(14,15,12,0.10); gap: 4px; }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-dropdown-menu { position: static; box-shadow: none; border-radius: 10px; padding: 0 0 0 12px; }
  .hero-headline { line-height: 0.92; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .article-layout { padding: 32px 16px 60px; }
  .section { padding: 40px 16px; }
}
