@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;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;
    --surface:     #e8ebe6;
    --white:       #ffffff;
    --card-radius: 30px;
    --btn-radius:  9999px;
    font-feature-settings: "calt" 1;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.44;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--dark-green); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; border-radius: 16px; }

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

.btn-primary {
    display: inline-block;
    background: var(--green);
    color: var(--dark-green);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease;
    text-decoration: none;
    font-feature-settings: "calt" 1;
}
.btn-primary:hover { transform: scale(1.05); text-decoration: none; }
.btn-primary:active { transform: scale(0.95); }

.btn-secondary {
    display: inline-block;
    background: rgba(22,51,0,0.08);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease;
    text-decoration: none;
    font-feature-settings: "calt" 1;
}
.btn-secondary:hover { transform: scale(1.05); text-decoration: none; }
.btn-secondary:active { transform: scale(0.95); }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid rgba(14,15,12,0.12);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--black);
    letter-spacing: -0.5px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; color: var(--dark-green); }
.nav-links {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-links li a {
    display: block;
    padding: 8px 14px;
    border-radius: var(--btn-radius);
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.15s, transform 0.15s;
}
.nav-links li a:hover { background: rgba(211,242,192,0.4); text-decoration: none; }
.nav-links li a.active { background: var(--mint); color: var(--dark-green); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: 0.3s; }

.hero {
    padding: 80px 24px 72px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.92;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 24px;
    font-feature-settings: "calt" 1;
}
.hero-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--warm-dark);
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-img { border-radius: 40px; overflow: hidden; aspect-ratio: 4/3; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

.section-heading {
    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: 40px;
    font-feature-settings: "calt" 1;
}

section { padding: 64px 24px; }
section.alt-bg { background: var(--surface); }

.articles-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.article-card {
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.article-card:hover { transform: translateY(-4px); }
.article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 0; }
.article-card-body { padding: 24px; }
.article-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.article-card-body p { font-size: 15px; font-weight: 400; color: var(--warm-dark); line-height: 1.5; margin-bottom: 16px; }
.article-card-body a { font-size: 14px; font-weight: 600; color: var(--dark-green); border-bottom: 1px solid var(--green); }
.article-card-body a:hover { text-decoration: none; color: var(--dark-green); border-color: var(--dark-green); }

.facts-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}
.fact-card .fact-num {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}
.fact-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.fact-card p { font-size: 15px; font-weight: 400; color: var(--warm-dark); }

.contact-section { max-width: 700px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--warm-dark); }
.form-group input, .form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 16px;
    border: 1px solid rgba(14,15,12,0.20);
    border-radius: 10px;
    background: var(--white);
    color: var(--black);
    outline: none;
    transition: box-shadow 0.15s;
}
.form-group input:focus, .form-group textarea:focus { box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset; }
.form-group textarea { resize: vertical; min-height: 100px; }

.article-page { max-width: 780px; margin: 0 auto; padding: 48px 24px 80px; }
.article-page h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    font-feature-settings: "calt" 1;
}
.article-meta { font-size: 14px; font-weight: 400; color: var(--gray); margin-bottom: 32px; }
.article-page h2 { font-size: 28px; font-weight: 800; margin: 36px 0 14px; letter-spacing: -0.5px; }
.article-page h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.article-page p { font-size: 17px; font-weight: 400; line-height: 1.7; margin-bottom: 18px; color: var(--warm-dark); }
.article-page ul, .article-page ol { padding-left: 24px; margin-bottom: 18px; }
.article-page li { font-size: 17px; font-weight: 400; line-height: 1.6; color: var(--warm-dark); margin-bottom: 6px; }
.article-page img { border-radius: 20px; margin: 24px 0; width: 100%; }
.article-page a { color: var(--dark-green); border-bottom: 1px solid var(--green); }
.article-page a:hover { text-decoration: none; border-color: var(--dark-green); }
.article-related { margin-top: 56px; border-top: 1px solid rgba(14,15,12,0.12); padding-top: 40px; }
.article-related h2 { font-size: 24px; font-weight: 800; margin-bottom: 20px; }
.article-related ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.article-related li a { font-size: 16px; font-weight: 600; color: var(--dark-green); border-bottom: 1px solid var(--green); }

.page-content { max-width: 780px; margin: 0 auto; padding: 48px 24px 80px; }
.page-content h1 { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(36px, 5vw, 64px); line-height: 0.95; letter-spacing: -1.5px; margin-bottom: 28px; }
.page-content h2 { font-size: 24px; font-weight: 800; margin: 32px 0 12px; }
.page-content p { font-size: 17px; font-weight: 400; line-height: 1.7; margin-bottom: 16px; color: var(--warm-dark); }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 16px; }
.page-content li { font-size: 17px; font-weight: 400; line-height: 1.6; color: var(--warm-dark); margin-bottom: 6px; }
.page-content a { color: var(--dark-green); border-bottom: 1px solid var(--green); }
.page-content a:hover { text-decoration: none; border-color: var(--dark-green); }
.page-meta { font-size: 13px; color: var(--gray); margin-bottom: 32px; }

.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    padding: 56px 24px 32px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand { font-weight: 900; font-size: 20px; color: var(--white); display: block; margin-bottom: 12px; }
.footer-col p { font-size: 14px; font-weight: 400; line-height: 1.6; }
.footer-col strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 400; }
.footer-col ul li a:hover { color: var(--green); text-decoration: none; }
.footer-col address { font-style: normal; font-size: 14px; font-weight: 400; line-height: 1.8; }
.footer-col address a { color: rgba(255,255,255,0.65); }
.footer-col address a:hover { color: var(--green); text-decoration: none; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: rgba(255,255,255,0.85);
    padding: 20px 28px;
    border-radius: 20px;
    max-width: 600px;
    width: calc(100% - 48px);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.cookie-banner p { font-size: 14px; font-weight: 400; line-height: 1.5; flex: 1; }
.cookie-banner p a { color: var(--green); border-bottom: 1px solid transparent; }
.cookie-banner p a:hover { border-color: var(--green); text-decoration: none; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

.disclaimer {
    background: var(--mint);
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-green);
    margin-bottom: 32px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; }
    .hero-img { order: -1; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .facts-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .articles-grid { grid-template-columns: 1fr; }
    .facts-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .nav-links { display: none; 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; gap: 4px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .cookie-btns { width: 100%; justify-content: flex-start; }
    .hero-text h1 { font-size: 42px; }
    .section-heading { font-size: 32px; }
}
