@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;
    --dkgreen: #163300;
    --mint:    #e2f6d5;
    --pastel:  #cdffad;
    --gray:    #868685;
    --warm:    #454745;
    --surface: #e8ebe6;
    --white:   #ffffff;
    --ring:    rgba(14,15,12,0.12);
    --r-pill:  9999px;
    --r-lg:    40px;
    --r-md:    30px;
    --r-sm:    16px;
}

html { scroll-behavior: smooth; font-size: 18px; }

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.44;
    letter-spacing: -0.108px;
    color: var(--black);
    background: var(--white);
    font-feature-settings: "calt" 1;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--ring);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-logo {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--black);
    white-space: nowrap;
    font-feature-settings: "calt" 1;
}
.nav-logo span { color: var(--green); }
.nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
}
.nav-list a {
    padding: 6px 14px;
    border-radius: var(--r-pill);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.15s;
}
.nav-list a:hover, .nav-list a.active {
    background: rgba(211,242,192,0.4);
    text-decoration: none;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.2s;
}

.btn-green {
    display: inline-block;
    background: var(--green);
    color: var(--dkgreen);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 22px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
    font-feature-settings: "calt" 1;
    text-decoration: none;
}
.btn-green:hover { transform: scale(1.05); text-decoration: none; }
.btn-green:active { transform: scale(0.95); }

.btn-secondary {
    display: inline-block;
    background: rgba(22,51,0,0.08);
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 22px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
    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); }

.hero {
    background: var(--white);
    padding: 80px 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-label {
    display: inline-block;
    background: var(--mint);
    color: var(--dkgreen);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 0.85;
    color: var(--black);
    max-width: 860px;
    margin-bottom: 28px;
    font-feature-settings: "calt" 1;
}
.hero-sub {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--warm);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--r-lg);
    margin-top: 48px;
    box-shadow: var(--ring) 0px 0px 0px 1px;
}

.section { padding: 64px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 0.85;
    color: var(--black);
    margin-bottom: 40px;
    font-feature-settings: "calt" 1;
}
.section-title span { color: var(--green); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.card {
    border-radius: var(--r-md);
    border: 1px solid var(--ring);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(14,15,12,0.10); }
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.card-body { padding: 24px; }
.card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dkgreen);
    background: var(--mint);
    padding: 3px 10px;
    border-radius: var(--r-pill);
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.card-title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.23;
    letter-spacing: -0.39px;
    margin-bottom: 10px;
    font-feature-settings: "calt" 1;
}
.card-title a:hover { text-decoration: underline; }
.card-excerpt {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--warm);
    line-height: 1.5;
    margin-bottom: 16px;
}
.card-meta {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 400;
}

.info-strip {
    background: var(--black);
    color: var(--white);
    padding: 56px 24px;
}
.info-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 32px;
}
.info-item {}
.info-item .num {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--green);
    line-height: 0.9;
    margin-bottom: 8px;
    font-feature-settings: "calt" 1;
}
.info-item p { font-size: 0.95rem; color: rgba(255,255,255,0.72); font-weight: 400; }

.contact-section { padding: 64px 24px; background: var(--surface); }
.contact-inner {
    max-width: 720px;
    margin: 0 auto;
}
.contact-inner .section-title { margin-bottom: 8px; }
.contact-inner .section-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--warm);
    margin-bottom: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input {
    border: 1px solid rgba(14,15,12,0.18);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color 0.15s;
    font-feature-settings: "calt" 1;
}
.contact-form input:focus {
    border-color: var(--black);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}
.contact-form button { align-self: flex-start; }

.article-hero {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 24px 32px;
}
.article-hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    color: var(--black);
    margin-bottom: 20px;
    font-feature-settings: "calt" 1;
}
.article-meta {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 32px;
}
.article-lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--warm);
    line-height: 1.6;
    margin-bottom: 36px;
}
.article-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--r-md);
    margin-bottom: 48px;
    box-shadow: var(--ring) 0px 0px 0px 1px;
}
.article-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.article-body h2 {
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 48px 0 16px;
    font-feature-settings: "calt" 1;
}
.article-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 32px 0 12px;
}
.article-body p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 18px;
}
.article-body ul {
    margin: 0 0 18px 20px;
    list-style: disc;
}
.article-body ul li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 8px;
    color: var(--black);
}
.article-body a { color: var(--dkgreen); text-decoration: underline; }
.article-body .img-caption {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--r-sm);
    margin: 28px 0 8px;
}
.article-body figcaption {
    font-size: 0.78rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 24px;
}
.article-sources {
    border-top: 1px solid var(--ring);
    margin-top: 48px;
    padding-top: 24px;
}
.article-sources h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 10px; color: var(--warm); }
.article-sources ul { margin-left: 0; }
.article-sources li { font-size: 0.82rem; color: var(--gray); font-weight: 400; line-height: 1.6; }
.article-sources a { color: var(--dkgreen); }

.related-section { padding: 48px 24px 64px; background: var(--surface); }
.related-inner { max-width: 1200px; margin: 0 auto; }

.page-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}
.page-inner h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 24px;
    font-feature-settings: "calt" 1;
}
.page-inner h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 36px 0 12px;
    font-feature-settings: "calt" 1;
}
.page-inner p, .page-inner li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 16px;
}
.page-inner ul { margin-left: 20px; list-style: disc; }
.page-inner .meta { font-size: 0.82rem; color: var(--gray); margin-bottom: 36px; }

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 56px 24px 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 12px;
    font-feature-settings: "calt" 1;
}
.footer-logo span { color: var(--green); }
.footer-desc {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-contact a {
    font-size: 0.9rem;
    color: var(--green);
    display: block;
    margin-bottom: 4px;
}
.footer-address {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 12px;
}
.footer-heading {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--green); text-decoration: none; }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 28px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 400; line-height: 1.6; }
.footer-disclaimer { margin-top: 6px; }

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 680px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 20px 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    z-index: 999;
    display: none;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: 0.88rem; font-weight: 400; color: rgba(255,255,255,0.85); flex: 1; min-width: 200px; }
.cookie-banner p a { color: var(--green); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }

@media (max-width: 991px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--ring);
        gap: 4px;
    }
    .nav-list.open { display: flex; }
    .nav-list a { padding: 10px 16px; }
    .hero { padding: 48px 16px 40px; }
    .section { padding: 48px 16px; }
    .cards-grid { grid-template-columns: 1fr; }
    .info-strip-inner { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 575px) {
    .hero h1 { line-height: 0.9; }
    .info-strip-inner { grid-template-columns: 1fr; }
    .cookie-banner { bottom: 0; border-radius: var(--r-md) var(--r-md) 0 0; }
}
