@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

: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);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.18px;
  color: var(--black);
  background: var(--white);
  font-feature-settings: "calt";
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ring);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--black);
  letter-spacing: -0.5px;
  font-feature-settings: "calt";
  text-decoration: none;
}
.nav-logo span { color: var(--dark-green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 9999px;
  transition: background 0.18s;
  font-feature-settings: "calt";
}
.nav-links a:hover { background: rgba(211,242,192,0.4); text-decoration: none; }
.nav-links a.active { background: var(--mint); }
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 12px;
  border-top: 1px solid var(--ring);
}
.nav-mobile a {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 12px;
  display: block;
  font-feature-settings: "calt";
}
.nav-mobile a:hover { background: rgba(211,242,192,0.4); text-decoration: none; }

/* HERO */
.hero {
  padding: 80px 0 64px;
  background: var(--white);
}
.hero-label {
  display: inline-block;
  background: var(--mint);
  color: var(--dark-green);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-feature-settings: "calt";
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 24px;
  font-feature-settings: "calt";
  max-width: 800px;
}
.hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--warm-dark);
  max-width: 600px;
  margin-bottom: 36px;
}
.hero-image {
  margin-top: 48px;
  border-radius: 30px;
  overflow: hidden;
  max-height: 480px;
  box-shadow: var(--ring) 0px 0px 0px 1px;
}
.hero-image img {
  width: 100%;
  object-fit: cover;
  height: 480px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s;
  font-feature-settings: "calt";
  text-decoration: none;
}
.btn:hover { transform: scale(1.05); text-decoration: none; }
.btn:active { transform: scale(0.95); }
.btn-primary { background: var(--green); color: var(--dark-green); }
.btn-secondary { background: rgba(22,51,0,0.08); color: var(--black); }

/* SECTIONS */
section { padding: 72px 0; }
.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 12px;
  font-feature-settings: "calt";
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.9;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.section-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--warm-dark);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* CARDS GRID */
.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;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(14,15,12,0.10); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  background: var(--mint);
  color: var(--dark-green);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.396px;
  color: var(--black);
  margin-bottom: 10px;
  font-feature-settings: "calt";
}
.card-excerpt {
  font-size: 15px;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.55;
  margin-bottom: 16px;
}
.card-meta {
  font-size: 13px;
  color: var(--gray);
  font-weight: 400;
}
.card-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  border-radius: 9999px;
  transition: background 0.15s;
  padding: 4px 0;
}
.card-link:hover { text-decoration: underline; }

/* INFO STRIP */
.info-strip {
  background: var(--surface);
  border-radius: 40px;
  padding: 48px 56px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.info-strip-item { flex: 1; min-width: 200px; }
.info-strip-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 6px;
  font-feature-settings: "calt";
}
.info-strip-label { font-size: 16px; font-weight: 400; color: var(--warm-dark); }

/* FEATURED IMAGE SECTION */
.featured-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.featured-section.reverse { direction: rtl; }
.featured-section.reverse > * { direction: ltr; }
.featured-img { border-radius: 30px; overflow: hidden; box-shadow: var(--ring) 0px 0px 0px 1px; }
.featured-img img { width: 100%; height: 360px; object-fit: cover; }
.featured-text h2 { margin-bottom: 16px; }
.featured-text p { color: var(--warm-dark); line-height: 1.7; margin-bottom: 20px; }

/* CONTACT FORM */
.contact-section { background: var(--surface); border-radius: 40px; padding: 56px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  font-feature-settings: "calt";
}
.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(14,15,12,0.2);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  color: var(--black);
  font-feature-settings: "calt";
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--dark-green);
  box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

/* ARTICLE PAGE */
.article-hero {
  padding: 48px 0 32px;
}
.article-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.92;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 20px;
  font-feature-settings: "calt";
  max-width: 800px;
}
.article-meta {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.article-meta span { display: flex; align-items: center; gap: 4px; }
.article-cover {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--ring) 0px 0px 0px 1px;
}
.article-cover img { width: 100%; height: 420px; object-fit: cover; }
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: var(--black);
  margin: 40px 0 16px;
  font-feature-settings: "calt";
}
.article-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--black);
  margin: 28px 0 12px;
  font-feature-settings: "calt";
}
.article-body p {
  font-size: 18px;
  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: 18px;
  line-height: 1.6;
  color: var(--warm-dark);
  margin-bottom: 8px;
}
.article-body a { color: var(--dark-green); font-weight: 600; }
.article-body a:hover { text-decoration: underline; }
.article-body .highlight-box {
  background: var(--mint);
  border-left: 4px solid var(--dark-green);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.article-body .highlight-box p { color: var(--dark-green); margin-bottom: 0; font-weight: 600; }

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  color: var(--gray);
  padding: 16px 0;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--dark-green); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray); }

/* RELATED ARTICLES */
.related-section { border-top: 1px solid var(--ring); padding-top: 48px; margin-top: 48px; }
.related-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--black);
  margin-bottom: 24px;
  font-feature-settings: "calt";
}

/* FOOTER */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  font-feature-settings: "calt";
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--green); text-decoration: none; }
.footer-contact p { font-size: 14px; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--green); text-decoration: none; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 700px;
  width: calc(100% - 48px);
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.cookie-banner p { font-size: 14px; flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-banner p a { color: var(--green); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--green);
  color: var(--dark-green);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 9999px;
  border: none;
  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);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s;
  font-feature-settings: "calt";
}
.cookie-reject:hover { transform: scale(1.05); }

/* PAGE (about/privacy/terms) */
.page-hero { padding: 64px 0 32px; }
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 16px;
  font-feature-settings: "calt";
}
.page-hero p { font-size: 18px; color: var(--warm-dark); max-width: 600px; line-height: 1.6; }
.page-body {
  max-width: 800px;
  padding-bottom: 80px;
}
.page-body h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--black);
  margin: 40px 0 14px;
  font-feature-settings: "calt";
}
.page-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  margin: 28px 0 10px;
  font-feature-settings: "calt";
}
.page-body p {
  font-size: 16px;
  color: var(--warm-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}
.page-body ul { padding-left: 20px; margin-bottom: 16px; }
.page-body ul li {
  font-size: 16px;
  color: var(--warm-dark);
  line-height: 1.6;
  margin-bottom: 6px;
}
.page-body a { color: var(--dark-green); font-weight: 600; }
.page-body .updated {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
  margin-bottom: 32px;
}
.disclaimer-box {
  background: var(--mint);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--dark-green);
  line-height: 1.6;
  font-weight: 600;
}

/* ABOUT team grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.team-card {
  border-radius: 20px;
  border: 1px solid var(--ring);
  padding: 24px;
  background: var(--white);
}
.team-card h4 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 4px; font-feature-settings: "calt"; }
.team-card p { font-size: 14px; color: var(--gray); }

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-section { grid-template-columns: 1fr; }
  .featured-section.reverse { direction: ltr; }
  .info-strip { padding: 36px 32px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: clamp(36px, 10vw, 64px); }
  .hero-image img { height: 280px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 36px 24px; }
  .info-strip { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .section-title { font-size: clamp(28px, 8vw, 42px); }
  .hero { padding: 48px 0 40px; }
  section { padding: 48px 0; }
}
