@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --black: #0e0f0c;
    --green: #9fe870;
    --dark-green: #163300;
    --mint: #e2f6d5;
    --pastel-green: #cdffad;
    --gray: #868685;
    --warm-dark: #454745;
    --light-surface: #e8ebe6;
    --white: #ffffff;
    --danger: #d03238;
    --border: rgba(14,15,12,0.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.44;
    letter-spacing: 0.18px;
    color: var(--black);
    background: var(--white);
    font-feature-settings: "calt";
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

/* NAV */
.site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
    font-feature-settings: "calt";
}

.nav-logo span {
    color: var(--dark-green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    transition: background 0.2s;
    font-feature-settings: "calt";
}

.nav-links a:hover {
    background: rgba(211,242,192,0.4);
    text-decoration: none;
}

.nav-cta {
    background: var(--green) !important;
    color: var(--dark-green) !important;
    padding: 8px 20px !important;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.15s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
    background: var(--green) !important;
    text-decoration: none !important;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.2s;
}

/* HERO */
.hero {
    background: var(--white);
    padding: 80px 24px 64px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    background: var(--mint);
    color: var(--dark-green);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 28px;
    letter-spacing: -0.084px;
    font-feature-settings: "calt";
}

.hero h1 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 28px;
    font-feature-settings: "calt";
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--warm-dark);
    max-width: 620px;
    margin: 0 auto 36px;
    letter-spacing: 0.18px;
}

.hero-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

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

/* SECTIONS */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1.5px;
    color: var(--black);
    margin-bottom: 40px;
    font-feature-settings: "calt";
}

.section-label {
    display: inline-block;
    background: var(--mint);
    color: var(--dark-green);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

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

.article-card {
    border-radius: 30px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--white);
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.article-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.article-card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--mint);
    padding: 3px 10px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

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

.article-card-excerpt {
    font-size: 1rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.5;
    flex: 1;
}

.article-card-meta {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 400;
}

/* INFO BLOCKS */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: var(--light-surface);
    border-radius: 30px;
    padding: 32px 28px;
    border: 1px solid var(--border);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.info-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.39px;
    color: var(--black);
    margin-bottom: 10px;
    font-feature-settings: "calt";
}

.info-card p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.5;
}

/* CONTACT FORM */
.contact-section {
    background: var(--light-surface);
    padding: 64px 24px;
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
}

.contact-inner h2 {
    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";
}

.contact-inner p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--warm-dark);
    margin-bottom: 32px;
    line-height: 1.55;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
    font-feature-settings: "calt";
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(14,15,12,0.25);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-feature-settings: "calt";
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--black);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-primary {
    display: inline-block;
    background: var(--green);
    color: var(--dark-green);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: transform 0.15s ease;
    font-feature-settings: "calt";
    letter-spacing: -0.108px;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-primary:active {
    transform: scale(0.95);
}

/* ARTICLE PAGE */
.article-header {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 24px 40px;
}

.article-header h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.article-header .article-meta {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 28px;
}

.article-header .article-meta strong {
    color: var(--black);
    font-weight: 600;
}

.article-hero-img {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.article-hero-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.article-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: var(--black);
    margin: 40px 0 16px;
    font-feature-settings: "calt";
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--black);
    margin: 30px 0 14px;
    font-feature-settings: "calt";
}

.article-body p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    padding-left: 28px;
    margin-bottom: 20px;
}

.article-body li {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 8px;
}

.article-body a {
    color: var(--dark-green);
    text-decoration: underline;
}

.article-breadcrumb {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 24px 0;
    font-size: 0.875rem;
    color: var(--gray);
}

.article-breadcrumb a {
    color: var(--dark-green);
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

/* PAGES */
.page-header {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 24px 32px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.page-header p {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.55;
}

.page-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.page-body h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: var(--black);
    margin: 36px 0 14px;
    font-feature-settings: "calt";
}

.page-body p, .page-body li {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 16px;
}

.page-body ul, .page-body ol {
    padding-left: 28px;
    margin-bottom: 20px;
}

/* FOOTER */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    padding: 56px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand .nav-logo {
    color: var(--white);
    margin-bottom: 12px;
    display: block;
    font-size: 1.375rem;
}

.footer-brand p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-feature-settings: "calt";
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

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

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    width: calc(100% - 48px);
    z-index: 9999;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

#cookie-banner p {
    flex: 1;
    margin: 0;
}

#cookie-banner a {
    color: var(--green);
    text-decoration: underline;
}

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

.btn-accept {
    background: var(--green);
    color: var(--dark-green);
    border: none;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: transform 0.15s;
}

.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: none;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

.btn-reject:hover { background: rgba(255,255,255,0.18); }

/* DIVIDER */
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 24px;
}

/* DISCLAIMER */
.disclaimer-bar {
    background: var(--mint);
    padding: 12px 24px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--dark-green);
    font-weight: 600;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 0.875rem;
    color: var(--gray);
    padding: 16px 0;
}

.breadcrumb a {
    color: var(--dark-green);
}

/* RELATED */
.related-section {
    background: var(--light-surface);
    padding: 56px 24px;
}

.related-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        gap: 4px;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-hamburger {
        display: flex;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-btns {
        width: 100%;
    }
}
