@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;
  --mint: #e2f6d5;
  --pastel: #cdffad;
  --gray: #868685;
  --warm-dark: #454745;
  --light-surface: #e8ebe6;
  --white: #ffffff;
  --radius-pill: 9999px;
  --radius-lg: 40px;
  --radius-md: 30px;
  --radius-sm: 16px;
  --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
  font-feature-settings: "calt" 1;
}

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

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

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--dark-green);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: -0.108px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
  font-feature-settings: "calt" 1;
  text-decoration: none;
}
.btn-primary:hover { transform: scale(1.05); text-decoration: none; }
.btn-primary:active { transform: scale(0.95); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(22,51,0,0.08);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
  font-feature-settings: "calt" 1;
  text-decoration: none;
}
.btn-secondary:hover { transform: scale(1.05); text-decoration: none; }
.btn-secondary:active { transform: scale(0.95); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-ring);
}

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

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--black);
  text-decoration: none;
}
.logo span { color: var(--dark-green); }

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

.main-nav > ul > li { position: relative; }

.main-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.main-nav a:hover { background: rgba(211,242,192,0.4); text-decoration: none; }

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow-ring), 0 8px 24px rgba(14,15,12,0.08);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  z-index: 200;
}

.dropdown li a {
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.dropdown li a:hover { background: var(--mint); }

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

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

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

.hero-text { max-width: 560px; }

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 24px;
  font-feature-settings: "calt" 1;
}

.hero h1 .accent { color: var(--dark-green); }

.hero-lead {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--warm-dark);
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-ring);
  aspect-ratio: 4/3;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section { padding: 72px 0; }
.section-alt { background: var(--light-surface); }

.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 12px;
  font-feature-settings: "calt" 1;
}

.section-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 48px;
  max-width: 600px;
}

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

.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ring);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-ring), 0 12px 32px rgba(14,15,12,0.1);
}

.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .card-img img { transform: scale(1.04); }

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--black);
  font-feature-settings: "calt" 1;
}

.card-excerpt {
  font-size: 0.95rem;
  color: var(--warm-dark);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 20px;
}

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

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

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

.topic-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ring);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.2s ease;
}

.topic-card:hover { transform: translateY(-3px); }

.topic-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.topic-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.topic-content p {
  font-size: 0.9rem;
  color: var(--warm-dark);
  line-height: 1.5;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-ring);
  overflow: hidden;
}

.featured-article .fa-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.featured-article .fa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fa-body {
  padding: 48px 48px 48px 0;
}

.fa-body .card-tag { margin-bottom: 16px; }

.fa-body h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-feature-settings: "calt" 1;
}

.fa-body p {
  color: var(--warm-dark);
  margin-bottom: 28px;
  font-size: 1rem;
}

.article-page { padding: 60px 0 80px; }

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

.article-main { min-width: 0; }

.article-hero-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-ring);
  aspect-ratio: 16/7;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.article-meta .card-tag { margin: 0; }

.article-meta time {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

.article-main h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  font-feature-settings: "calt" 1;
}

.article-main h2 {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 40px 0 16px;
  font-feature-settings: "calt" 1;
}

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

.article-main p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.article-main ul, .article-main ol {
  margin: 0 0 20px 28px;
  list-style: disc;
  line-height: 1.7;
}

.article-main ol { list-style: decimal; }

.article-main li { margin-bottom: 6px; }

.article-main a { color: var(--dark-green); font-weight: 600; }
.article-main a:hover { text-decoration: underline; }

.info-box {
  background: var(--mint);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.info-box p { margin: 0; font-weight: 600; font-size: 0.95rem; }

.article-sidebar { position: sticky; top: 80px; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ring);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
}

.sidebar-card ul { list-style: none; margin: 0; }
.sidebar-card ul li { margin-bottom: 10px; }
.sidebar-card ul li a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.4;
}
.sidebar-card ul li a:hover { text-decoration: underline; }

.toc-list { counter-reset: toc; }
.toc-list li { counter-increment: toc; display: flex; gap: 10px; align-items: flex-start; }
.toc-list li::before {
  content: counter(toc);
  background: var(--mint);
  color: var(--dark-green);
  font-weight: 600;
  font-size: 0.75rem;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.page-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--light-surface);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  font-feature-settings: "calt" 1;
}

.page-hero p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--warm-dark);
  max-width: 560px;
}

.page-content { padding: 56px 0 80px; }

.page-content h2 {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 40px 0 14px;
  font-feature-settings: "calt" 1;
}

.page-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 10px;
}

.page-content p { margin-bottom: 18px; line-height: 1.7; max-width: 740px; }
.page-content ul, .page-content ol { margin: 0 0 18px 28px; line-height: 1.7; list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 6px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ring);
  padding: 28px;
  text-align: center;
}

.team-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--dark-green);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--warm-dark); line-height: 1.5; }

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 0;
}

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

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

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact {
  font-size: 0.85rem !important;
  line-height: 1.8 !important;
}

.footer-contact a { color: var(--green); }
.footer-contact a:hover { text-decoration: underline; }

.footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.footer-nav ul a:hover { color: var(--green); text-decoration: none; }

.footer-contact-form h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.contact-form { display: flex; flex-direction: column; gap: 10px; }

.contact-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}

.contact-form input:focus { border-color: var(--green); }
.contact-form input::placeholder { color: rgba(255,255,255,0.35); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.disclaimer {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.3) !important;
  max-width: 700px;
  line-height: 1.5;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(14,15,12,0.35);
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 680px;
  width: calc(100% - 48px);
  z-index: 999;
  font-size: 0.875rem;
}

.cookie-banner.hidden { display: none; }

.cookie-banner p { flex: 1; line-height: 1.5; }
.cookie-banner a { color: var(--green); font-weight: 600; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--gray);
}

.breadcrumb a { color: var(--dark-green); font-weight: 600; }
.breadcrumb span { margin: 0 6px; }

.updated-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 32px;
  font-style: italic;
}

.inline-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 28px 0;
  box-shadow: var(--shadow-ring);
}

.inline-img img { width: 100%; height: auto; }
.inline-img figcaption {
  font-size: 0.8rem;
  color: var(--gray);
  padding: 8px 12px;
  background: var(--light-surface);
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .fa-body { padding: 32px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .section-heading { font-size: 2rem; }
  .nav-toggle { display: flex; }
  .main-nav { display: none; width: 100%; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 16px 0; }
  .main-nav > ul > li { width: 100%; }
  .dropdown { position: static; box-shadow: none; padding-left: 16px; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 576px) {
  .hero { padding: 48px 0 40px; }
  .section { padding: 48px 0; }
  .article-page { padding: 40px 0 60px; }
  .page-hero { padding: 40px 0 28px; }
  .page-content { padding: 40px 0 60px; }
}
