@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;
  --green-dark: #163300;
  --green-light: #e2f6d5;
  --green-pastel: #cdffad;
  --green-mint: #d3f2c0;
  --gray: #868685;
  --gray-warm: #454745;
  --surface: #e8ebe6;
  --white: #ffffff;
  --font-display: 'Inter', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  font-feature-settings: "calt" 1;
  line-height: 1.44;
  letter-spacing: 0.18px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.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 rgba(14,15,12,0.12);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--black);
  letter-spacing: -0.5px;
  font-feature-settings: "calt" 1;
}
.nav-logo span { color: var(--green-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  padding: 6px 14px;
  border-radius: 9999px;
  transition: background 0.2s;
  font-feature-settings: "calt" 1;
}
.nav-links a:hover { background: rgba(211,242,192,0.4); }
.nav-links a.active { background: var(--green-light); }
.nav-cta {
  background: var(--green);
  color: var(--green-dark) !important;
  padding: 5px 16px !important;
  border-radius: 9999px;
  font-weight: 600;
  transition: transform 0.18s;
  display: inline-block;
}
.nav-cta:hover { transform: scale(1.05); background: var(--green) !important; }
.nav-cta:active { transform: scale(0.95); }

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

/* HERO */
.hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(14,15,12,0.08);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 20px;
  font-feature-settings: "calt" 1;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin-bottom: 24px;
}
.hero-headline em { color: var(--green-dark); font-style: normal; }
.hero-desc {
  font-size: 1.13rem;
  font-weight: 400;
  color: var(--gray-warm);
  line-height: 1.55;
  letter-spacing: 0.18px;
  margin-bottom: 32px;
  max-width: 480px;
}
.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: 420px;
  object-fit: cover;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  font-feature-settings: "calt" 1;
  transition: transform 0.18s;
  letter-spacing: -0.108px;
  line-height: 1.44;
  text-decoration: none;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.95); }
.btn-primary { background: var(--green); color: var(--green-dark); }
.btn-secondary { background: rgba(22,51,0,0.08); color: var(--black); }

/* SECTION */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
  font-feature-settings: "calt" 1;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.13rem;
  font-weight: 400;
  color: var(--gray-warm);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 48px;
}

/* CARD GRID */
.card-grid { display: grid; gap: 24px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: 30px;
  border: 1px solid rgba(14,15,12,0.12);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: rgba(14,15,12,0.12) 0 4px 24px;
  transform: translateY(-2px);
}
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-feature-settings: "calt" 1;
}
.card-title {
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.396px;
  color: var(--black);
  margin-bottom: 10px;
  font-feature-settings: "calt" 1;
}
.card-title a:hover { color: var(--green-dark); }
.card-excerpt {
  font-size: 0.95rem;
  color: var(--gray-warm);
  line-height: 1.55;
  margin-bottom: 16px;
}
.card-meta {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 400;
}
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  font-feature-settings: "calt" 1;
}
.card-link:hover { text-decoration: underline; }

/* FEATURE STRIP */
.features-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.feature-item { padding: 28px 24px; border-radius: 16px; border: 1px solid rgba(14,15,12,0.12); }
.feature-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "calt" 1;
}
.feature-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  font-feature-settings: "calt" 1;
}
.feature-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

/* CONTACT FORM */
.contact-form {
  background: var(--white);
  border-radius: 40px;
  border: 1px solid rgba(14,15,12,0.12);
  padding: 48px;
  max-width: 600px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  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: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  font-feature-settings: "calt" 1;
}
.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 { resize: vertical; min-height: 100px; }

/* ARTICLE PAGE */
.article-hero { padding: 60px 0 40px; border-bottom: 1px solid rgba(14,15,12,0.08); }
.article-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin-bottom: 20px;
  max-width: 800px;
}
.article-meta { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; }
.article-meta span { margin-right: 16px; }
.article-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-warm);
  line-height: 1.5;
  max-width: 720px;
  letter-spacing: -0.108px;
  font-feature-settings: "calt" 1;
}

.article-body { padding: 56px 0; }
.article-content { max-width: 760px; }
.article-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin: 48px 0 20px;
}
.article-content h3 {
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.396px;
  margin: 32px 0 14px;
  font-feature-settings: "calt" 1;
}
.article-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-warm);
  margin-bottom: 18px;
  letter-spacing: 0.1px;
}
.article-content ul, .article-content ol {
  margin: 16px 0 20px 20px;
  list-style: disc;
}
.article-content ol { list-style: decimal; }
.article-content li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-warm);
  margin-bottom: 6px;
}
.article-content a { color: var(--green-dark); text-decoration: underline; }
.article-content a:hover { color: var(--black); }
.article-content figure { margin: 32px 0; }
.article-content figure img { border-radius: 20px; width: 100%; object-fit: cover; max-height: 420px; }
.article-content figcaption {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 8px;
  text-align: center;
}

.article-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}
.sidebar-box {
  background: var(--surface);
  border-radius: 30px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-box h4 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 14px;
  font-feature-settings: "calt" 1;
}
.sidebar-box ul { list-style: none; }
.sidebar-box ul li { margin-bottom: 8px; }
.sidebar-box ul li a { font-size: 0.9rem; color: var(--gray-warm); font-weight: 600; }
.sidebar-box ul li a:hover { color: var(--green-dark); }

.article-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* PAGE LAYOUT */
.page-hero { padding: 60px 0 48px; border-bottom: 1px solid rgba(14,15,12,0.08); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--black);
  font-feature-settings: "calt" 1;
  margin-bottom: 16px;
}
.page-desc {
  font-size: 1.13rem;
  color: var(--gray-warm);
  max-width: 600px;
  line-height: 1.55;
}
.page-body { padding: 56px 0; }
.page-content { max-width: 800px; }
.page-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--black);
  margin: 40px 0 16px;
  font-feature-settings: "calt" 1;
}
.page-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin: 28px 0 12px;
  font-feature-settings: "calt" 1;
}
.page-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-warm);
  margin-bottom: 16px;
}
.page-content ul { list-style: disc; margin: 12px 0 16px 20px; }
.page-content li { font-size: 1rem; line-height: 1.65; color: var(--gray-warm); margin-bottom: 5px; }
.page-content a { color: var(--green-dark); text-decoration: underline; }

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); font-weight: 600; }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb-sep { color: var(--gray); }

/* COOKIE */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  border-radius: 20px;
  padding: 20px 28px;
  max-width: 600px;
  width: calc(100% - 48px);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(14,15,12,0.28);
}
#cookie-banner p { font-size: 0.85rem; line-height: 1.5; flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--green); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.18s;
  font-feature-settings: "calt" 1;
}
.cookie-actions button:hover { transform: scale(1.05); }
.cookie-actions button:active { transform: scale(0.95); }
#btn-accept { background: var(--green); color: var(--green-dark); }
#btn-reject { background: rgba(255,255,255,0.12); color: var(--white); }

/* FOOTER */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 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.4rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 260px; }
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-feature-settings: "calt" 1;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  transition: color 0.2s;
  font-feature-settings: "calt" 1;
}
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer-bottom a:hover { color: var(--green); }

/* CONTACT INFO */
.contact-info { margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-text { font-size: 0.9rem; color: var(--gray-warm); line-height: 1.5; }
.contact-info-text strong { display: block; font-weight: 600; color: var(--black); font-size: 0.85rem; }

/* DISCLAIMER */
.disclaimer {
  background: var(--surface);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 32px 0;
}
.disclaimer p { font-size: 0.85rem; color: var(--gray-warm); line-height: 1.55; }

/* TAGS */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
  background: var(--green-light);
  color: var(--green-dark);
  margin: 2px;
  font-feature-settings: "calt" 1;
}

/* DIVIDER */
.divider { height: 1px; background: rgba(14,15,12,0.08); margin: 0; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@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.12); padding: 16px 24px; z-index: 99; }
  .nav-burger { display: flex; }
  .hero-headline { font-size: 2.8rem; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .section-title { font-size: 2.2rem; }
}
