@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

: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;
    --danger-red: #d03238;
    --font-feature: "calt";
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: 0.18px;
    color: var(--near-black);
    background: var(--white);
    font-feature-settings: var(--font-feature);
}

a {
    color: var(--near-black);
    text-decoration: none;
}

a:hover {
    color: var(--dark-green);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid rgba(14,15,12,0.10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--near-black);
    font-feature-settings: var(--font-feature);
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo span {
    display: inline-block;
    background: var(--wise-green);
    color: var(--dark-green);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 13px;
    font-weight: 900;
}

.site-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.site-nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--near-black);
    padding: 8px 14px;
    border-radius: 9999px;
    transition: background 0.15s;
    font-feature-settings: var(--font-feature);
}

.site-nav a:hover {
    background: rgba(211,242,192,0.4);
    color: var(--near-black);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--near-black);
    border-radius: 2px;
    transition: all 0.2s;
}

/* HERO */
.hero {
    padding: 80px 24px 72px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid {
    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-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 0.92;
    letter-spacing: -2px;
    color: var(--near-black);
    font-feature-settings: var(--font-feature);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--warm-dark);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-img {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    aspect-ratio: 4/3;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* ARTICLES SECTION */
.section {
    padding: 64px 0;
}

.section-label {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 0.9;
    letter-spacing: -1.5px;
    color: var(--near-black);
    font-feature-settings: var(--font-feature);
    margin-bottom: 48px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--white);
    border: 1px solid rgba(14,15,12,0.12);
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(14,15,12,0.12) 0px 8px 32px;
}

.card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .card-img img {
    transform: scale(1.04);
}

.card-body {
    padding: 24px;
}

.card-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 3px 10px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: var(--near-black);
    margin-bottom: 10px;
    font-feature-settings: var(--font-feature);
}

.card-excerpt {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--warm-dark);
    margin-bottom: 20px;
}

.card-meta {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-green);
    margin-top: 16px;
    border-bottom: 1px solid var(--wise-green);
    padding-bottom: 2px;
    transition: border-color 0.15s;
}

.card-link:hover {
    border-color: var(--dark-green);
    color: var(--dark-green);
}

/* INFO STRIP */
.info-strip {
    background: var(--near-black);
    color: var(--white);
    padding: 56px 0;
}

.info-strip .section-title {
    color: var(--wise-green);
}

.info-strip p {
    color: rgba(255,255,255,0.75);
    font-weight: 400;
}

.info-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.info-col h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    font-feature-settings: var(--font-feature);
    line-height: 1.15;
}

.info-col p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
}

/* CONTACT FORM */
.contact-section {
    background: var(--light-surface);
    padding: 72px 0;
}

.contact-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrap .section-title {
    font-size: 40px;
    margin-bottom: 8px;
}

.contact-intro {
    font-size: 16px;
    font-weight: 400;
    color: var(--warm-dark);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--near-black);
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid rgba(14,15,12,0.20);
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--near-black);
    background: var(--white);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-feature-settings: var(--font-feature);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--wise-green);
    box-shadow: 0 0 0 3px rgba(159,232,112,0.2);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.btn-submit {
    background: var(--wise-green);
    color: var(--dark-green);
    border: none;
    border-radius: 9999px;
    padding: 16px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s;
    align-self: flex-start;
    font-feature-settings: var(--font-feature);
}

.btn-submit:hover {
    transform: scale(1.05);
}

.btn-submit:active {
    transform: scale(0.95);
}

.form-status {
    display: none;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
}

.form-status.success {
    display: block;
    background: var(--light-mint);
    color: var(--dark-green);
    border: 1px solid var(--wise-green);
}

/* FOOTER */
.site-footer {
    background: var(--near-black);
    color: var(--white);
    padding: 48px 0 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .site-logo {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: var(--wise-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
}

/* ARTICLE PAGE */
.article-hero {
    padding: 56px 0 40px;
}

.article-hero img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-tag {
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.5px;
}

.article-date {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
}

.article-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--near-black);
    font-feature-settings: var(--font-feature);
    margin-bottom: 24px;
}

.article-lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--warm-dark);
    margin-bottom: 40px;
    border-left: 3px solid var(--wise-green);
    padding-left: 20px;
}

.article-content {
    max-width: 760px;
}

.article-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.6px;
    color: var(--near-black);
    font-feature-settings: var(--font-feature);
    margin: 40px 0 16px;
}

.article-content h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--near-black);
    margin: 28px 0 12px;
}

.article-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--warm-dark);
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 20px 24px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-dark);
}

.article-content li {
    margin-bottom: 8px;
}

.article-content a {
    color: var(--dark-green);
    border-bottom: 1px solid var(--wise-green);
}

.article-content a:hover {
    border-color: var(--dark-green);
}

.article-content .info-box {
    background: var(--light-mint);
    border-radius: 20px;
    padding: 24px 28px;
    margin: 28px 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-green);
    line-height: 1.6;
}

.article-content .info-box strong {
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(14,15,12,0.10) 0px 0px 0px 1px;
}

.article-content th {
    background: var(--near-black);
    color: var(--white);
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.4px;
}

.article-content td {
    padding: 12px 16px;
    border-top: 1px solid rgba(14,15,12,0.08);
    font-weight: 400;
    color: var(--warm-dark);
}

.article-content tr:nth-child(even) td {
    background: var(--light-surface);
}

.related-articles {
    padding: 64px 0;
    background: var(--light-surface);
}

/* PAGE */
.page-header {
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(14,15,12,0.08);
    margin-bottom: 48px;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--near-black);
    font-feature-settings: var(--font-feature);
    margin-bottom: 16px;
}

.page-updated {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
}

.page-content {
    max-width: 760px;
    margin: 0 auto 72px;
    padding: 0 24px;
}

.page-content h2 {
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.5px;
    margin: 36px 0 14px;
    color: var(--near-black);
    font-feature-settings: var(--font-feature);
}

.page-content h3 {
    font-weight: 700;
    font-size: 19px;
    margin: 24px 0 10px;
    color: var(--near-black);
}

.page-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--warm-dark);
    margin-bottom: 18px;
}

.page-content ul {
    margin: 0 0 18px 22px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--warm-dark);
}

.page-content li {
    margin-bottom: 6px;
}

.page-content a {
    color: var(--dark-green);
    border-bottom: 1px solid var(--wise-green);
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--near-black);
    color: var(--white);
    border-radius: 20px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    width: calc(100% - 48px);
    box-shadow: 0 8px 40px rgba(14,15,12,0.3);
}

#cookie-banner p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    flex: 1;
}

#cookie-banner p a {
    color: var(--wise-green);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-accept {
    background: var(--wise-green);
    color: var(--dark-green);
    border: none;
    border-radius: 9999px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s;
    font-feature-settings: var(--font-feature);
}

.btn-accept:hover { transform: scale(1.05); }
.btn-accept:active { transform: scale(0.95); }

.btn-reject {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-reject:hover { background: rgba(255,255,255,0.15); }

/* BREADCRUMB */
.breadcrumb {
    padding: 16px 0 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
    transition: color 0.15s;
}

.breadcrumb a:hover {
    color: var(--dark-green);
}

.breadcrumb span {
    margin: 0 6px;
}

/* DISCLAIMER */
.disclaimer {
    background: var(--light-mint);
    border-radius: 16px;
    padding: 16px 22px;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-green);
    line-height: 1.6;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-img {
        order: -1;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 16px 48px;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .info-cols {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .site-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid rgba(14,15,12,0.10);
        padding: 12px 16px 20px;
        gap: 4px;
    }

    .site-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    #cookie-banner {
        flex-direction: column;
        bottom: 16px;
        gap: 16px;
    }

    .cookie-btns {
        width: 100%;
    }

    .btn-accept, .btn-reject {
        flex: 1;
        text-align: center;
    }
}
