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

:root {
  --black: #0e0f0c;
  --green: #9fe870;
  --dark-green: #163300;
  --mint: #e2f6d5;
  --pastel: #cdffad;
  --gray: #868685;
  --warm-dark: #454745;
  --surface: #e8ebe6;
  --white: #ffffff;
  --radius-pill: 9999px;
  --radius-card: 30px;
  --radius-card-sm: 16px;
  --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-weight: 600;
  font-feature-settings: "calt";
  color: var(--black);
  background: var(--white);
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -0.108px;
}

a {
  color: inherit;
  text-decoration: none;
}

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);
  box-shadow: var(--shadow-ring);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 0.85;
  font-feature-settings: "calt";
}

.nav-logo span {
  color: var(--dark-green);
  background: var(--green);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-links a:hover {
  background: rgba(211,242,192,0.4);
}

.nav-links a.active {
  background: var(--mint);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

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

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
  max-width: 900px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--dark-green);
  background: var(--green);
  padding: 0 8px;
  border-radius: 8px;
}

.hero p {
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-dark);
  max-width: 620px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.hero-meta {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

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

.btn:hover {
  transform: scale(1.05);
}

.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);
}

/* SECTION */
.section {
  padding: 64px 0;
}

.section-title {
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 40px;
  max-width: 600px;
}

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

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(14,15,12,0.18) 0px 8px 24px;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: var(--mint);
  color: var(--dark-green);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.396px;
  margin-bottom: 12px;
}

.card-excerpt {
  font-size: 16px;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.55;
  margin-bottom: 20px;
}

.card-date {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
}

.card-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  text-decoration: underline;
}

/* FEATURED */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.featured-img {
  border-radius: var(--radius-card);
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.featured-content {
  padding: 16px 0;
}

.featured-content h2 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900;
  line-height: 0.9;
  font-feature-settings: "calt";
  margin-bottom: 20px;
}

.featured-content p {
  font-size: 17px;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* FACTS STRIP */
.facts-strip {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.fact-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 0.85;
  font-feature-settings: "calt";
  color: var(--green);
}

.fact-label {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* CONTACT FORM */
.form-section {
  background: var(--surface);
  padding: 64px 0;
}

.form-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-ring);
  padding: 40px;
}

.form-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 0.9;
  font-feature-settings: "calt";
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(14,15,12,0.2);
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.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: 100px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ARTICLE PAGE */
.article-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid rgba(14,15,12,0.1);
  margin-bottom: 40px;
}

.article-header h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.88;
  font-feature-settings: "calt";
  max-width: 800px;
  margin-bottom: 20px;
}

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

.article-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-content {
  max-width: 740px;
}

.article-content h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 0.9;
  font-feature-settings: "calt";
  margin: 40px 0 16px;
}

.article-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 28px 0 12px;
}

.article-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #2a2b28;
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #2a2b28;
  margin-bottom: 8px;
}

.article-img {
  width: 100%;
  border-radius: var(--radius-card);
  margin: 32px 0;
  height: 400px;
  object-fit: cover;
}

.article-tip {
  background: var(--mint);
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  border-radius: 0 16px 16px 0;
  margin: 28px 0;
  font-size: 17px;
  color: var(--dark-green);
  font-weight: 400;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  padding: 16px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--dark-green);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* FOOTER */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 900;
  font-feature-settings: "calt";
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--green);
}

.footer-desc {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--green);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-col ul 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: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.footer-bottom a:hover {
  color: var(--green);
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-card-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  width: calc(100% - 48px);
}

#cookie-banner p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  flex: 1;
}

#cookie-banner a {
  color: var(--green);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btns button {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s;
}

.cookie-btns button:hover {
  transform: scale(1.05);
}

.cookie-btns button:active {
  transform: scale(0.95);
}

.btn-accept {
  background: var(--green);
  color: var(--dark-green);
}

.btn-reject {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* STATIC PAGES */
.page-content {
  max-width: 740px;
  padding: 64px 0 80px;
}

.page-content h1 {
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 900;
  line-height: 0.88;
  font-feature-settings: "calt";
  margin-bottom: 32px;
}

.page-content h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 0.9;
  font-feature-settings: "calt";
  margin: 36px 0 14px;
}

.page-content p,
.page-content li {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #2a2b28;
  margin-bottom: 14px;
}

.page-content ul,
.page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.page-content a {
  color: var(--dark-green);
  text-decoration: underline;
}

/* DISCLAIMER */
.disclaimer-bar {
  background: rgba(159,232,112,0.15);
  border-bottom: 1px solid rgba(159,232,112,0.3);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--warm-dark);
  text-align: center;
}

/* RELATED ARTICLES */
.related-section {
  padding: 48px 0;
  border-top: 1px solid rgba(14,15,12,0.1);
  margin-top: 40px;
}

.related-section h3 {
  font-size: 28px;
  font-weight: 900;
  font-feature-settings: "calt";
  line-height: 0.9;
  margin-bottom: 28px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-img {
    height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 4px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero h1 {
    font-size: 42px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
