@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --near-black: #0e0f0c;
    --wise-green: #9fe870;
    --dark-green: #163300;
    --light-mint: #e2f6d5;
    --pastel-green: #cdffad;
    --warm-dark: #454745;
    --gray: #868685;
    --light-surface: #e8ebe6;
    --white: #ffffff;
    --off-white: #fafbf8;
    --nav-hover: rgba(211,242,192,0.4);
    --card-border: rgba(14,15,12,0.12);
    --ring-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

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(--near-black);
    background: var(--off-white);
    font-feature-settings: "calt";
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--dark-green);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--wise-green);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAV === */
.site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--near-black);
    letter-spacing: -0.5px;
    font-feature-settings: "calt";
}

.nav-logo span {
    color: var(--dark-green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--near-black);
    transition: background 0.2s, transform 0.15s;
    font-feature-settings: "calt";
}

.nav-links a:hover {
    background: var(--nav-hover);
    color: var(--near-black);
    transform: none;
}

.nav-cta {
    background: var(--wise-green) !important;
    color: var(--dark-green) !important;
    transition: transform 0.2s !important;
}

.nav-cta:hover {
    transform: scale(1.05) !important;
    background: var(--wise-green) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--near-black);
    transition: 0.3s;
}

/* === HERO === */
.hero {
    padding: 80px 24px;
    background: var(--white);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -1px;
    color: var(--near-black);
    margin-bottom: 24px;
    font-feature-settings: "calt";
}

.hero-desc {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-meta {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
    font-feature-settings: "calt";
}

.hero-img {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ring-shadow);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    font-feature-settings: "calt";
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
    text-align: center;
    letter-spacing: -0.108px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--wise-green);
    color: var(--dark-green);
}

.btn-primary:hover {
    transform: scale(1.05);
    color: var(--dark-green);
}

.btn-secondary {
    background: rgba(22,51,0,0.08);
    color: var(--near-black);
}

.btn-secondary:hover {
    transform: scale(1.05);
    color: var(--near-black);
}

/* === SECTION === */
.section {
    padding: 72px 24px;
}

.section-alt {
    background: var(--white);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.95;
    color: var(--near-black);
    margin-bottom: 48px;
    font-feature-settings: "calt";
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

/* === CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--ring-shadow);
    overflow: hidden;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-4px);
}

.card-img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 24px;
}

.card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--near-black);
    margin-bottom: 12px;
    font-feature-settings: "calt";
    letter-spacing: -0.39px;
}

.card-excerpt {
    font-size: 0.9375rem;
    color: var(--warm-dark);
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-date {
    font-size: 0.8125rem;
    color: var(--gray);
    font-weight: 600;
    font-feature-settings: "calt";
}

/* === FEATURED STRIP === */
.featured-strip {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.featured-card {
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--ring-shadow);
    overflow: hidden;
    transition: transform 0.2s;
}

.featured-card:hover {
    transform: translateY(-4px);
}

.featured-img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

.featured-body {
    padding: 32px;
}

.featured-title {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.23;
    letter-spacing: -0.39px;
    color: var(--near-black);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.featured-excerpt {
    font-size: 1rem;
    color: var(--warm-dark);
    line-height: 1.55;
    margin-bottom: 20px;
}

/* === INFOBOX === */
.infobox {
    background: var(--light-mint);
    border-radius: 30px;
    padding: 40px;
    margin: 48px 0;
}

.infobox-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-green);
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.infobox p {
    color: var(--dark-green);
    font-weight: 600;
    line-height: 1.6;
}

/* === CONTACT FORM === */
.contact-section {
    padding: 72px 24px;
    background: var(--white);
}

.form-wrap {
    max-width: 560px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--near-black);
    margin-bottom: 6px;
    font-feature-settings: "calt";
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--near-black);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.2s;
    font-feature-settings: "calt";
}

.form-group input:focus {
    border-color: var(--dark-green);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-submit {
    margin-top: 24px;
}

/* === ARTICLE PAGE === */
.article-hero {
    padding: 48px 24px 0;
    background: var(--white);
}

.article-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.article-breadcrumb {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 20px;
    font-weight: 600;
}

.article-breadcrumb a {
    color: var(--gray);
}

.article-breadcrumb a:hover {
    color: var(--dark-green);
}

.article-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.95;
    color: var(--near-black);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.article-meta {
    display: flex;
    gap: 24px;
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 32px;
    font-feature-settings: "calt";
}

.article-cover {
    width: 100%;
    border-radius: 30px;
    aspect-ratio: 16/7;
    object-fit: cover;
    margin-bottom: 0;
}

.article-body {
    padding: 48px 24px 72px;
    background: var(--white);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--near-black);
    margin: 40px 0 16px;
    line-height: 1.1;
    font-feature-settings: "calt";
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--near-black);
    margin: 28px 0 12px;
    font-feature-settings: "calt";
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--near-black);
}

.article-content ul, .article-content ol {
    margin: 0 0 20px 24px;
    font-size: 1.125rem;
    line-height: 1.7;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content a {
    border-bottom: 1px solid var(--wise-green);
}

.article-content a:hover {
    color: var(--dark-green);
}

.article-img {
    width: 100%;
    border-radius: 20px;
    margin: 32px 0;
    box-shadow: var(--ring-shadow);
}

/* === FOOTER === */
.site-footer {
    background: var(--near-black);
    color: rgba(255,255,255,0.7);
    padding: 56px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
}

.footer-brand-name {
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-contact {
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--wise-green);
    font-weight: 600;
}

.footer-col-title {
    font-weight: 900;
    color: var(--white);
    font-size: 0.9375rem;
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--wise-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--wise-green);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 560px;
    background: var(--near-black);
    color: var(--white);
    border-radius: 30px;
    padding: 24px 28px;
    box-shadow: 0 8px 40px rgba(14,15,12,0.25);
    z-index: 9999;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.85);
}

.cookie-text a {
    color: var(--wise-green);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-accept {
    background: var(--wise-green);
    color: var(--dark-green);
    border: none;
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    font-feature-settings: "calt";
    transition: transform 0.2s;
}

.cookie-accept:hover { transform: scale(1.05); }
.cookie-accept:active { transform: scale(0.95); }

.cookie-reject {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    font-feature-settings: "calt";
    transition: transform 0.2s;
}

.cookie-reject:hover { transform: scale(1.05); }
.cookie-reject:active { transform: scale(0.95); }

/* === STATIC PAGE === */
.static-page {
    padding: 64px 24px 80px;
}

.static-inner {
    max-width: 800px;
    margin: 0 auto;
}

.static-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--near-black);
    margin-bottom: 32px;
    line-height: 1;
    font-feature-settings: "calt";
}

.static-inner h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--near-black);
    margin: 36px 0 14px;
    font-feature-settings: "calt";
}

.static-inner p, .static-inner li {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 14px;
}

.static-inner ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.static-inner a {
    color: var(--dark-green);
    border-bottom: 1px solid var(--wise-green);
}

.page-updated {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 32px;
    font-feature-settings: "calt";
}

/* === DISCLAIMER === */
.disclaimer {
    background: var(--light-surface);
    border-radius: 16px;
    padding: 20px 24px;
    margin: 32px 0;
    font-size: 0.9375rem;
    color: var(--warm-dark);
    line-height: 1.6;
}

/* === ABOUT PAGE === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 40px;
}

.about-img {
    border-radius: 30px;
    box-shadow: var(--ring-shadow);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-strip {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--card-border);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: relative;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .article-title {
        font-size: 2rem;
    }

    .static-title {
        font-size: 2rem;
    }

    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 24px 24px 0 0;
    }

    .about-img {
        display: none;
    }
}
