@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0e0f0c;
  --green: #9fe870;
  --dark-green: #163300;
  --mint: #e2f6d5;
  --pastel: #cdffad;
  --gray: #868685;
  --warm-dark: #454745;
  --surface: #e8ebe6;
  --white: #ffffff;
  --ring: rgba(14,15,12,0.12);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: -0.108px;
  color: var(--black);
  background: var(--white);
  font-feature-settings: "calt" 1;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--black); text-decoration: none; }
a:hover { color: var(--dark-green); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ring);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--black);
  font-feature-settings: "calt" 1;
}

.logo span { color: var(--dark-green); }

/* ─── NAV ─── */
.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  transition: background 0.15s;
  font-feature-settings: "calt" 1;
}

.site-nav a:hover { background: rgba(211,242,192,0.4); color: var(--black); }
.site-nav a.active { background: var(--mint); color: var(--dark-green); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--dark-green);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-feature-settings: "calt" 1;
  transition: transform 0.15s;
  letter-spacing: -0.108px;
  text-decoration: none;
}
.btn-primary:hover { transform: scale(1.05); color: var(--dark-green); }
.btn-primary:active { transform: scale(0.95); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; }

/* ─── HERO ─── */
.hero {
  padding: 80px 0 72px;
  background: var(--white);
}

.hero-label {
  display: inline-block;
  background: var(--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" 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -2px;
  color: var(--black);
  font-feature-settings: "calt" 1;
  max-width: 900px;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--warm-dark);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-img {
  margin-top: 56px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--ring) 0 0 0 1px;
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}

/* ─── SECTION HEADINGS ─── */
.section-label {
  display: inline-block;
  background: var(--mint);
  color: var(--dark-green);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
  font-feature-settings: "calt" 1;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -1.5px;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 48px;
}

/* ─── CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  border-radius: 30px;
  border: 1px solid var(--ring);
  padding: 32px;
  background: var(--white);
  transition: box-shadow 0.15s;
}
.card:hover { box-shadow: 0 8px 32px rgba(14,15,12,0.08); }

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--mint);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.396px;
  margin-bottom: 10px;
  font-feature-settings: "calt" 1;
}

.card p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.55;
}

/* ─── ARTICLE CARDS ─── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.article-card {
  border-radius: 30px;
  border: 1px solid var(--ring);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}
.article-card:hover { box-shadow: 0 8px 32px rgba(14,15,12,0.08); }

.article-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.article-tag {
  display: inline-block;
  background: var(--mint);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 12px;
  font-feature-settings: "calt" 1;
}

.article-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.39px;
  margin-bottom: 10px;
  font-feature-settings: "calt" 1;
}

.article-card p {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.55;
  flex: 1;
}

.article-card-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--gray);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-green);
  font-feature-settings: "calt" 1;
  transition: gap 0.15s;
}
.read-more:hover { gap: 8px; color: var(--dark-green); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--green);
  font-feature-settings: "calt" 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ─── INFO TABLE ─── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid var(--ring);
}

.info-table th {
  background: var(--surface);
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  color: var(--warm-dark);
  border-bottom: 1px solid var(--ring);
}

.info-table td {
  padding: 14px 20px;
  font-size: 0.9375rem;
  font-weight: 400;
  border-bottom: 1px solid var(--ring);
  color: var(--black);
}

.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(159,232,112,0.06); }

/* ─── CONTACT FORM ─── */
.contact-section { padding: 80px 0; background: var(--surface); }

.form-wrap {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 40px;
  border: 1px solid var(--ring);
  padding: 48px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black);
  font-feature-settings: "calt" 1;
}

.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', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-feature-settings: "calt" 1;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: rgb(134,134,133) 0 0 0 1px inset;
}

.form-group textarea { min-height: 100px; resize: vertical; }

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-alt { padding: 80px 0; background: var(--surface); }

/* ─── ARTICLE PAGE ─── */
.article-header { padding: 60px 0 40px; }

.article-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -1.5px;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.article-body { max-width: 760px; }

.article-body h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.8px;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin: 48px 0 16px;
}

.article-body h3 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.396px;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin: 32px 0 12px;
}

.article-body p {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--warm-dark);
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-body li {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--warm-dark);
  margin-bottom: 8px;
}

.article-body a {
  color: var(--dark-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover { color: var(--black); }

.article-img {
  border-radius: 20px;
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--ring) 0 0 0 1px;
}

.article-img img { width: 100%; height: 400px; object-fit: cover; }

.article-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-card {
  border-radius: 20px;
  border: 1px solid var(--ring);
  padding: 24px;
  margin-bottom: 20px;
  background: var(--white);
}

.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--black);
  font-feature-settings: "calt" 1;
}

.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li { margin-bottom: 10px; }
.sidebar-card ul li a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark-green);
}
.sidebar-card ul li a:hover { color: var(--black); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
  padding: 0 0 80px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray);
  padding: 20px 0 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--dark-green); font-weight: 600; }
.breadcrumb span { color: var(--gray); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo span { color: var(--green); }

.footer-brand p {
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  font-feature-settings: "calt" 1;
  letter-spacing: -0.1px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--green); }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(14,15,12,0.3);
  max-width: 680px;
  width: calc(100% - 48px);
  font-size: 0.9rem;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.1);
}

#cookie-banner p { flex: 1; line-height: 1.5; }
#cookie-banner a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.btn-accept {
  background: var(--green);
  color: var(--dark-green);
  border: none;
  padding: 9px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-feature-settings: "calt" 1;
  transition: transform 0.15s;
}
.btn-accept:hover { transform: scale(1.05); }
.btn-accept:active { transform: scale(0.95); }

.btn-reject {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-feature-settings: "calt" 1;
  transition: background 0.15s;
}
.btn-reject:hover { background: rgba(255,255,255,0.18); }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--ring);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -1.5px;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin-bottom: 16px;
  max-width: 720px;
}

.page-hero p {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.6;
  max-width: 560px;
}

/* ─── PROSE ─── */
.prose h2 {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.6px;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin: 40px 0 14px;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin: 28px 0 10px;
  font-feature-settings: "calt" 1;
}

.prose p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.7;
  margin-bottom: 18px;
}

.prose ul, .prose ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.prose li {
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.7;
  margin-bottom: 6px;
}

.prose a { color: var(--dark-green); text-decoration: underline; text-underline-offset: 3px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); padding: 16px; border-bottom: 1px solid var(--ring); gap: 4px; }
  .site-nav.open { display: flex; }
  .hamburger { display: flex; }
  .header-btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
  .form-wrap { padding: 28px 20px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .cards-grid, .articles-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; }
  .section, .section-alt { padding: 56px 0; }
}
