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

:root {
  --black: #0e0f0c;
  --green: #9fe870;
  --green-dark: #163300;
  --green-light: #e2f6d5;
  --green-mint: #cdffad;
  --gray: #868685;
  --gray-warm: #454745;
  --surface: #e8ebe6;
  --white: #ffffff;
  --radius-pill: 9999px;
  --radius-card: 30px;
  --radius-card-sm: 16px;
  --radius-section: 40px;
  --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-feature-settings: "calt";
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.18px;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* TYPOGRAPHY */
.display-hero {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
  letter-spacing: normal;
}

.section-heading {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
}

.sub-heading {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.396px;
  font-feature-settings: "calt";
}

.body-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.18px;
}

.caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.084px;
  color: var(--gray);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 600;
  font-feature-settings: "calt";
  letter-spacing: -0.108px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
  text-decoration: none;
}
.btn-primary:hover { transform: scale(1.05); color: var(--green-dark); }
.btn-primary:active { transform: scale(0.95); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,51,0,0.08);
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  font-feature-settings: "calt";
  letter-spacing: -0.108px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
  text-decoration: none;
}
.btn-secondary:hover { transform: scale(1.05); color: var(--black); }
.btn-secondary:active { transform: scale(0.95); }

/* NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(14,15,12,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  font-feature-settings: "calt";
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--green-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background 0.15s;
  font-feature-settings: "calt";
  color: var(--black);
}
.nav-links a:hover { background: rgba(211,242,192,0.4); color: var(--black); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.2s;
}

/* HERO */
.hero {
  padding: 80px 0 64px;
  background: var(--white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-warm);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-img {
  border-radius: var(--radius-section);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-ring);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-4px); }

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-title {
  margin-bottom: 12px;
}

.card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-warm);
  margin-bottom: 16px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-feature-settings: "calt";
}
.card-link:hover { color: var(--black); }

/* ARTICLE */
.article-hero {
  padding: 60px 0 40px;
}

.article-hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-section);
  margin-top: 32px;
}

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
}

.article-tag {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 80px;
}

.article-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 0.9;
  margin: 48px 0 16px;
  font-feature-settings: "calt";
}

.article-content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin: 32px 0 12px;
  font-feature-settings: "calt";
}

.article-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-warm);
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-content li { font-size: 18px; line-height: 1.7; color: var(--gray-warm); margin-bottom: 8px; list-style: disc; }
.article-content ol li { list-style: decimal; }

.article-content a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content blockquote {
  border-left: 3px solid var(--green);
  padding: 16px 24px;
  background: var(--green-light);
  border-radius: 0 var(--radius-card-sm) var(--radius-card-sm) 0;
  margin: 32px 0;
}
.article-content blockquote p { color: var(--black); font-weight: 600; margin: 0; }

.article-content figure {
  margin: 32px 0;
}
.article-content figure img {
  border-radius: var(--radius-card);
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}
.article-content figcaption {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
  text-align: center;
}

/* CONTACT FORM */
.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  font-feature-settings: "calt";
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  font-feature-settings: "calt";
  border: 1px solid rgba(14,15,12,0.2);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-success {
  display: none;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 16px 20px;
  border-radius: var(--radius-card-sm);
  font-weight: 600;
  margin-top: 16px;
}

/* STATS STRIP */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(14,15,12,0.1);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 48px 0;
}
.stat-item {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
  font-feature-settings: "calt";
}
.stat-label {
  font-size: 14px;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 600;
}

/* INFO BLOCKS */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.info-block.reverse { direction: rtl; }
.info-block.reverse > * { direction: ltr; }

.info-img {
  border-radius: var(--radius-section);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* FOOTER */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.footer-brand .nav-logo span { color: var(--green); }

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  flex-wrap: wrap;
}
#cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
}
#cookie-banner a { color: var(--green); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
#cookie-accept {
  background: var(--green);
  color: var(--green-dark);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s;
  font-feature-settings: "calt";
}
#cookie-accept:hover { transform: scale(1.05); }
#cookie-reject {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s;
  font-feature-settings: "calt";
}
#cookie-reject:hover { transform: scale(1.05); }

/* PAGE HERO (static pages) */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(14,15,12,0.08);
  margin-bottom: 64px;
}

.page-content {
  max-width: 760px;
  padding-bottom: 80px;
}
.page-content h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 0.9;
  margin: 40px 0 12px;
  font-feature-settings: "calt";
}
.page-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 10px;
}
.page-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-warm);
  margin-bottom: 18px;
}
.page-content ul { padding-left: 22px; margin-bottom: 18px; }
.page-content li { font-size: 17px; line-height: 1.7; color: var(--gray-warm); margin-bottom: 6px; list-style: disc; }
.page-content a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb span { color: rgba(14,15,12,0.3); }

/* DISCLAIMER */
.disclaimer {
  background: rgba(14,15,12,0.04);
  border-radius: var(--radius-card-sm);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 32px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { max-height: 340px; aspect-ratio: auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .info-block { grid-template-columns: 1fr; gap: 32px; }
  .info-block.reverse { direction: ltr; }
}

@media (max-width: 576px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(14,15,12,0.08); padding: 16px; gap: 4px; z-index: 99; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 40px; }
}