@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;
  --light-mint: #e2f6d5;
  --pastel-green: #cdffad;
  --gray: #868685;
  --warm-dark: #454745;
  --light-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-feature-settings: "calt";
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: -0.108px;
}

a { color: inherit; 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; }

/* NAV */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--ring);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--black);
  font-feature-settings: "calt";
}
.nav-logo span { color: var(--dark-green); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-links a:hover { background: rgba(211,242,192,0.4); }
.nav-cta {
  background: var(--green);
  color: var(--dark-green) !important;
  padding: 8px 20px;
  border-radius: 9999px;
  font-weight: 600;
  transition: transform 0.15s;
  display: inline-block;
}
.nav-cta:hover { transform: scale(1.05); background: var(--green) !important; color: var(--dark-green) !important; }
.nav-cta:active { transform: scale(0.95); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--black); margin: 5px 0; transition: 0.3s;
}

/* HERO */
.hero {
  padding: 80px 0 64px;
  background: var(--white);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-heading {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
  color: var(--black);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-img { border-radius: 30px; overflow: hidden; box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px; }
.hero-img img { width: 100%; height: 380px; object-fit: cover; }

/* SECTION TITLES */
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
  color: var(--black);
  margin-bottom: 8px;
}
.section-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 40px;
}

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  border: 1px solid var(--ring);
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: rgba(14,15,12,0.12) 0px 8px 24px; }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  background: var(--light-mint);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.39px;
  font-feature-settings: "calt";
  margin-bottom: 10px;
}
.card-excerpt { font-size: 0.9rem; font-weight: 400; color: var(--warm-dark); line-height: 1.5; margin-bottom: 16px; }
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.card-link:hover { color: var(--black); }

/* TOPICS STRIP */
.topics-strip { background: var(--light-surface); padding: 56px 0; margin: 56px 0; }
.topics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.topic-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--ring);
  transition: transform 0.2s;
}
.topic-card:hover { transform: scale(1.02); }
.topic-icon { font-size: 2rem; margin-bottom: 12px; }
.topic-name { font-size: 1rem; font-weight: 600; color: var(--black); }
.topic-desc { font-size: 0.85rem; font-weight: 400; color: var(--gray); margin-top: 4px; }

/* FEATURED STRIP */
.featured-strip { padding: 56px 0; }
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.featured-img { border-radius: 30px; overflow: hidden; box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px; }
.featured-img img { width: 100%; height: 340px; object-fit: cover; }
.featured-label {
  display: inline-block;
  background: var(--green);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
.featured-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.9;
  font-feature-settings: "calt";
  margin-bottom: 16px;
}
.featured-text { font-size: 1rem; font-weight: 400; color: var(--warm-dark); line-height: 1.6; margin-bottom: 24px; }
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--dark-green);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: transform 0.15s;
  font-feature-settings: "calt";
}
.btn-primary:hover { transform: scale(1.05); color: var(--dark-green); }
.btn-primary:active { transform: scale(0.95); }

/* CONTACT FORM */
.contact-section { padding: 72px 0; background: var(--light-surface); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-box {
  background: var(--white);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid var(--ring);
}
.form-box h2 { font-size: 2rem; font-weight: 900; line-height: 0.9; font-feature-settings: "calt"; margin-bottom: 8px; }
.form-box p { font-size: 1rem; color: var(--gray); margin-bottom: 28px; font-weight: 400; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(14,15,12,0.2);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 400;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--green); box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset; }
.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--dark-green);
  border: none;
  padding: 14px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-feature-settings: "calt";
  transition: transform 0.15s;
  margin-top: 8px;
}
.btn-submit:hover { transform: scale(1.05); }
.btn-submit:active { transform: scale(0.95); }
.contact-info h3 { font-size: 1.5rem; font-weight: 900; line-height: 1; margin-bottom: 24px; font-feature-settings: "calt"; }
.contact-item { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.contact-item-icon { font-size: 1.25rem; margin-top: 2px; }
.contact-item-text { font-size: 0.95rem; font-weight: 400; color: var(--warm-dark); line-height: 1.5; }
.contact-item-text strong { display: block; font-weight: 600; color: var(--black); margin-bottom: 2px; }

/* ARTICLE PAGE */
.article-hero { padding: 56px 0 32px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.article-tag {
  background: var(--light-mint);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
}
.article-date { font-size: 0.875rem; color: var(--gray); font-weight: 400; }
.article-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.9;
  font-feature-settings: "calt";
  color: var(--black);
  margin-bottom: 20px;
  max-width: 800px;
}
.article-intro { font-size: 1.125rem; color: var(--warm-dark); font-weight: 400; max-width: 720px; margin-bottom: 32px; line-height: 1.6; }
.article-cover { border-radius: 30px; overflow: hidden; margin-bottom: 48px; }
.article-cover img { width: 100%; max-height: 480px; object-fit: cover; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: 1.75rem; font-weight: 900; line-height: 0.95; font-feature-settings: "calt"; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.25rem; font-weight: 900; margin: 28px 0 12px; font-feature-settings: "calt"; }
.article-body p { font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--warm-dark); margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { font-size: 1rem; font-weight: 400; line-height: 1.6; color: var(--warm-dark); margin-bottom: 8px; }
.article-body a { color: var(--dark-green); border-bottom: 1px solid var(--green); }
.article-body a:hover { color: var(--black); }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-sidebar { position: sticky; top: 80px; }
.sidebar-box {
  background: var(--light-surface);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-box h4 { font-size: 1rem; font-weight: 900; margin-bottom: 16px; font-feature-settings: "calt"; }
.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 10px; }
.sidebar-links a { font-size: 0.9rem; font-weight: 600; color: var(--dark-green); }
.sidebar-links a:hover { color: var(--black); }

/* INNER PAGES */
.page-hero { padding: 64px 0 40px; }
.page-title { font-size: 3.5rem; font-weight: 900; line-height: 0.85; font-feature-settings: "calt"; margin-bottom: 16px; }
.page-sub { font-size: 1.125rem; font-weight: 400; color: var(--warm-dark); max-width: 600px; }
.page-body { padding: 40px 0 80px; max-width: 760px; }
.page-body h2 { font-size: 1.5rem; font-weight: 900; margin: 32px 0 12px; font-feature-settings: "calt"; }
.page-body h3 { font-size: 1.125rem; font-weight: 900; margin: 24px 0 8px; }
.page-body p { font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--warm-dark); margin-bottom: 16px; }
.page-body ul { margin: 0 0 16px 24px; }
.page-body li { font-size: 1rem; font-weight: 400; color: var(--warm-dark); margin-bottom: 6px; line-height: 1.6; }
.page-body a { color: var(--dark-green); }

/* FOOTER */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: var(--white); font-size: 1.25rem; }
.footer-brand .nav-logo span { color: var(--green); }
.footer-brand p { font-size: 0.875rem; font-weight: 400; margin-top: 12px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.footer-col h4 { font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col 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: 16px;
}
.footer-bottom p { font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--green); }

/* DISCLAIMER */
.disclaimer {
  background: var(--light-surface);
  border-top: 1px solid var(--ring);
  padding: 16px 24px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 999;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.875rem; font-weight: 400; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--green); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.btn-cookie-accept {
  background: var(--green);
  color: var(--dark-green);
  border: none;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s;
}
.btn-cookie-accept:hover { transform: scale(1.05); }
.btn-cookie-reject {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s;
}
.btn-cookie-reject:hover { transform: scale(1.05); }

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; font-size: 0.875rem; font-weight: 400; color: var(--gray); }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--dark-green); }
.breadcrumb span { margin: 0 6px; }

/* UPDATED DATE */
.updated-date { font-size: 0.8rem; color: var(--gray); font-weight: 400; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-heading { font-size: 3rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 576px) {
  .hero-heading { font-size: 2.25rem; }
  .section-title { font-size: 1.75rem; }
  .card-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--ring); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .page-title { font-size: 2.5rem; }
  .article-title { font-size: 2rem; }
}
