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

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-feature-settings: "calt" 1;
}

:root {
    --near-black: #0e0f0c;
    --wise-green: #9fe870;
    --dark-green: #163300;
    --light-mint: #e2f6d5;
    --pastel-green: #cdffad;
    --warm-dark: #454745;
    --gray: #868685;
    --light-surface: #e8ebe6;
    --bg: #ffffff;
    --danger: #d03238;
    --warning: #ffd11a;
    --positive: #054d28;
}

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

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.44;
    letter-spacing: 0.18px;
    color: var(--near-black);
    background: var(--bg);
}

a {
    color: var(--dark-green);
    text-decoration: none;
    border-radius: 2px;
    transition: color 0.2s;
}

a:hover {
    color: var(--positive);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid rgba(14,15,12,0.12);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 1.38rem;
    line-height: 0.85;
    letter-spacing: -0.396px;
    color: var(--near-black);
    text-decoration: none;
}

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

/* NAV */
.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.44;
    letter-spacing: -0.108px;
    color: var(--near-black);
    padding: 8px 12px;
    border-radius: 20px;
    transition: background 0.2s;
}

.site-nav a:hover {
    background: rgba(211,242,192,0.4);
    color: var(--near-black);
}

.nav-cta {
    background: var(--wise-green);
    color: var(--dark-green) !important;
    padding: 5px 16px !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    transition: transform 0.2s !important;
}

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

.nav-cta:active {
    transform: scale(0.95);
}

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

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

/* HERO */
.hero {
    padding: 80px 0 64px;
    background: var(--bg);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 0.85;
    letter-spacing: normal;
    color: var(--near-black);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: normal;
    color: var(--dark-green);
}

.hero-desc {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.44;
    letter-spacing: -0.108px;
    color: var(--warm-dark);
    margin-bottom: 32px;
}

.hero-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    aspect-ratio: 4/3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.btn-primary {
    display: inline-block;
    background: var(--wise-green);
    color: var(--dark-green);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.44;
    letter-spacing: -0.108px;
    padding: 5px 16px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: var(--dark-green);
}

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

.btn-secondary {
    display: inline-block;
    background: rgba(22,51,0,0.08);
    color: var(--near-black);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.44;
    letter-spacing: -0.108px;
    padding: 8px 16px 8px 12px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.btn-secondary:hover {
    transform: scale(1.05);
    color: var(--near-black);
}

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

/* SECTIONS */
.section {
    padding: 64px 0;
}

.section-alt {
    padding: 64px 0;
    background: var(--light-mint);
}

.section-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 0.85;
    color: var(--near-black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.44;
    letter-spacing: 0.18px;
    color: var(--warm-dark);
    margin-bottom: 48px;
    max-width: 600px;
}

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

.article-card {
    background: var(--bg);
    border-radius: 30px;
    border: 1px solid rgba(14,15,12,0.12);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: var(--near-black);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: scale(1.02);
    box-shadow: rgba(14,15,12,0.12) 0px 8px 24px;
    color: var(--near-black);
}

.article-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

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

.article-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.084px;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 4px 10px;
    border-radius: 9999px;
    margin-bottom: 12px;
}

.article-card-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.13rem;
    line-height: 1.25;
    letter-spacing: -0.396px;
    color: var(--near-black);
    margin-bottom: 10px;
}

.article-card-excerpt {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--warm-dark);
    flex: 1;
    margin-bottom: 16px;
}

.article-card-meta {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: -0.084px;
}

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

.info-card {
    background: var(--bg);
    border-radius: 30px;
    border: 1px solid rgba(14,15,12,0.12);
    padding: 32px;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-card-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.13rem;
    line-height: 1.25;
    letter-spacing: -0.396px;
    color: var(--near-black);
    margin-bottom: 10px;
}

.info-card-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--warm-dark);
}

/* ARTICLE PAGE */
.article-hero {
    padding: 48px 0 0;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.article-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 20px;
}

.article-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 0.85;
    color: var(--near-black);
    margin-bottom: 20px;
}

.article-meta-bar {
    font-size: 0.88rem;
    color: var(--gray);
    letter-spacing: -0.084px;
}

.article-featured-image {
    max-width: 900px;
    margin: 0 auto 48px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    object-fit: cover;
    max-height: 480px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0 80px;
}

.article-content h2 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 1.62rem;
    line-height: 1.23;
    letter-spacing: -0.39px;
    color: var(--near-black);
    margin: 40px 0 16px;
}

.article-content h3 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.13rem;
    line-height: 1.44;
    letter-spacing: -0.108px;
    color: var(--near-black);
    margin: 28px 0 12px;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--near-black);
}

.article-content ul,
.article-content ol {
    margin: 0 0 20px 24px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.article-content a {
    color: var(--dark-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--positive);
}

.article-content blockquote {
    border-left: 4px solid var(--wise-green);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--light-mint);
    border-radius: 0 16px 16px 0;
    font-weight: 600;
    color: var(--dark-green);
}

/* INLINE IMAGE IN ARTICLE */
.article-image-inline {
    margin: 32px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.article-image-inline img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    max-height: 400px;
}

.article-image-caption {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: center;
    margin-top: 8px;
    letter-spacing: -0.084px;
}

/* RELATED ARTICLES */
.related-articles {
    background: var(--light-surface);
    padding: 64px 0;
    margin-top: 48px;
}

/* CONTACT / FORM */
.contact-section {
    padding: 64px 0;
    background: var(--bg);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 0.85;
    color: var(--near-black);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--warm-dark);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: -0.084px;
    margin-bottom: 2px;
}

.contact-detail-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--near-black);
    letter-spacing: -0.108px;
}

/* FORM */
.contact-form {
    background: var(--bg);
    border-radius: 30px;
    border: 1px solid rgba(14,15,12,0.12);
    padding: 40px;
}

.form-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.13rem;
    line-height: 1.25;
    color: var(--near-black);
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: -0.108px;
    color: var(--near-black);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(14,15,12,0.24);
    border-radius: 10px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--near-black);
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

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

.form-submit {
    width: 100%;
    background: var(--wise-green);
    color: var(--dark-green);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.108px;
    padding: 12px 24px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 8px;
}

.form-submit:hover {
    transform: scale(1.05);
}

.form-submit:active {
    transform: scale(0.95);
}

/* FOOTER */
.site-footer {
    background: var(--near-black);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

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

.footer-brand-name {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 1.38rem;
    line-height: 0.85;
    color: #ffffff;
    margin-bottom: 16px;
    display: block;
}

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

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--wise-green);
}

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

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: rgba(255,255,255,0.8);
}

/* PAGE HEADER (about, privacy, terms) */
.page-header {
    padding: 64px 0 40px;
    background: var(--light-mint);
    text-align: center;
}

.page-header-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 0.85;
    color: var(--near-black);
    margin-bottom: 16px;
}

.page-header-sub {
    font-size: 1rem;
    color: var(--warm-dark);
    font-weight: 600;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.page-content h2 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 1.62rem;
    line-height: 1.23;
    letter-spacing: -0.39px;
    color: var(--near-black);
    margin: 40px 0 16px;
}

.page-content h3 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 1.13rem;
    line-height: 1.44;
    color: var(--near-black);
    margin: 28px 0 12px;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--near-black);
}

.page-content ul {
    margin: 0 0 20px 24px;
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--near-black);
    color: rgba(255,255,255,0.9);
    padding: 20px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-text {
    font-size: 0.88rem;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-text a {
    color: var(--wise-green);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept {
    background: var(--wise-green);
    color: var(--dark-green);
    border: none;
    padding: 8px 20px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
}

.cookie-accept:hover { transform: scale(1.05); }
.cookie-accept:active { transform: scale(0.95); }

.cookie-reject {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
}

.cookie-reject:hover { transform: scale(1.05); }
.cookie-reject:active { transform: scale(0.95); }

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

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

.breadcrumb a:hover {
    color: var(--positive);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--gray);
}

/* DISCLAIMER */
.disclaimer-bar {
    background: var(--light-mint);
    border: 1px solid rgba(14,15,12,0.12);
    border-radius: 16px;
    padding: 16px 24px;
    margin: 32px 0;
    font-size: 0.88rem;
    color: var(--warm-dark);
    line-height: 1.5;
}

/* SOURCES */
.sources-block {
    background: var(--light-surface);
    border-radius: 16px;
    padding: 24px;
    margin-top: 40px;
}

.sources-block h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.sources-block ul {
    list-style: none;
    margin: 0;
}

.sources-block li {
    margin-bottom: 8px;
}

.sources-block a {
    font-size: 0.88rem;
    color: var(--dark-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* UPDATED DATE */
.updated-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--gray);
    background: var(--light-surface);
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-inner {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .site-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid rgba(14,15,12,0.12);
        box-shadow: 0 8px 24px rgba(14,15,12,0.08);
    }

    .site-nav.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.62rem;
    }

    .article-title {
        font-size: 1.62rem;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-tag {
    display: inline-block;
    background: #e2f6d5;
    color: #163300;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.article-card-tag {
    display: inline-block;
    background: #e2f6d5;
    color: #163300;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #0e0f0c;
    color: #fff;
    border-radius: 16px;
    padding: 20px 28px;
    max-width: 680px;
    width: calc(100% - 48px);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: rgba(14,15,12,0.3) 0px 8px 40px;
    z-index: 999;
    flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.8); flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-banner a { color: #9fe870; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: #9fe870; color: #163300; border: none; border-radius: 9999px; padding: 8px 20px; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: transform 0.18s; }
.btn-cookie-accept:hover { transform: scale(1.05); }
.btn-cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); border-radius: 9999px; padding: 8px 20px; font-size: 0.875rem; font-weight: 600; cursor: pointer; }
.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.info-strip { background: #0e0f0c; color: #fff; padding: 64px 0; }
.info-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.info-stat strong { display: block; font-weight: 900; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 0.9; color: #9fe870; margin-bottom: 8px; }
.info-stat span { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

.article-body { max-width: 760px; margin: 0 auto; padding: 0 24px 80px; }
.article-body h2 { font-weight: 900; font-size: 1.8rem; line-height: 1; color: #0e0f0c; margin: 40px 0 16px; }
.article-body h3 { font-weight: 700; font-size: 1.25rem; line-height: 1.2; color: #0e0f0c; margin: 28px 0 12px; }
.article-body p { font-size: 1.05rem; color: #454745; line-height: 1.7; margin-bottom: 20px; }
.article-body ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.article-body ul li { font-size: 1.05rem; color: #454745; line-height: 1.6; margin-bottom: 6px; }
.article-body a { color: #163300; text-decoration: underline; }
.article-inline-img { border-radius: 20px; overflow: hidden; box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px; margin: 32px 0; }
.article-inline-img img { width: 100%; height: 360px; object-fit: cover; }
.article-inline-img figcaption { font-size: 0.8rem; color: #868685; padding: 10px 16px; background: #e8ebe6; }

.article-hero { padding: 64px 24px 48px; max-width: 1200px; margin: 0 auto; }
.article-meta { font-size: 0.875rem; color: #868685; margin-bottom: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-cover { border-radius: 30px; overflow: hidden; box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px; margin-bottom: 56px; }
.article-cover img { width: 100%; height: 460px; object-fit: cover; }

.related-section { background: #e8ebe6; padding: 64px 0; }
.related-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }

.disclaimer { background: #e8ebe6; border-left: 3px solid #9fe870; border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 32px 0; font-size: 0.875rem; color: #868685; line-height: 1.6; }

.page-hero { padding: 64px 24px 48px; max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-weight: 900; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 0.9; color: #0e0f0c; margin-bottom: 16px; }
.page-hero p { font-size: 1rem; color: #454745; line-height: 1.6; }
.page-body { max-width: 800px; margin: 0 auto; padding: 0 24px 80px; }
.page-body h2 { font-weight: 900; font-size: 1.5rem; line-height: 1; color: #0e0f0c; margin: 36px 0 12px; }
.page-body p { font-size: 1rem; color: #454745; line-height: 1.65; margin-bottom: 16px; }
.page-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.page-body ul li { font-size: 1rem; color: #454745; line-height: 1.6; margin-bottom: 6px; }
.page-body a { color: #163300; text-decoration: underline; }

.hero-desc { font-size: 1.125rem; font-weight: 400; color: #454745; max-width: 600px; margin-bottom: 40px; line-height: 1.6; }
.hero-image-wrap { border-radius: 30px; overflow: hidden; box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px; margin-top: 48px; }
.hero-image-wrap img { width: 100%; height: 480px; object-fit: cover; }

.visual-section { padding: 80px 0; background: #e8ebe6; }
.visual-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.visual-img { border-radius: 30px; overflow: hidden; box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px; }
.visual-img img { width: 100%; height: 400px; object-fit: cover; }
.visual-content p { font-size: 1rem; color: #454745; line-height: 1.65; margin-bottom: 16px; }

.contact-section { padding: 80px 0; }
.contact-inner { max-width: 700px; margin: 0 auto; padding: 0 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: #0e0f0c; }
.form-group input, .form-group textarea { font-family: 'Inter', sans-serif; font-size: 1rem; color: #0e0f0c; background: #fff; border: 1px solid rgba(14,15,12,0.2); border-radius: 10px; padding: 12px 16px; outline: none; transition: border-color 0.18s; }
.form-group input:focus, .form-group textarea:focus { border-color: #163300; }
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 992px) {
    .info-strip-inner { grid-template-columns: repeat(2,1fr); }
    .visual-inner { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .info-strip-inner { grid-template-columns: 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ARTICLE LAYOUT */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
    padding: 48px 0 80px;
}

.article-hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    margin-bottom: 32px;
    box-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

.article-intro {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--warm-dark);
    margin-bottom: 0;
    font-weight: 400;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: -0.084px;
}

.date {
    font-size: 0.82rem;
    color: var(--gray);
}

/* SIDEBAR */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 88px;
}

.sidebar-widget {
    background: var(--light-surface);
    border-radius: 20px;
    padding: 24px;
}

.sidebar-widget h4 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gray);
    margin-bottom: 16px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-green);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}

.sidebar-links a:hover {
    color: var(--positive);
    text-decoration: underline;
}

/* PAGE HERO & CONTENT */
.page-title {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 0.9;
    color: var(--near-black);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--warm-dark);
    line-height: 1.6;
}

/* CONTACT INFO ON PAGES */
.contact-info h2 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    line-height: 0.9;
    color: var(--near-black);
    margin-bottom: 8px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.contact-detail .icon {
    width: 40px;
    height: 40px;
    background: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail .text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail .text strong {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-detail .text span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--near-black);
}

.contact-detail .text a {
    color: var(--dark-green);
}

/* ARTICLE NAV LINKS */
.article-nav-links {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(14,15,12,0.1);
}

.sep {
    color: var(--gray);
    margin: 0 6px;
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 576px) {
    .article-hero-img {
        height: 220px;
        border-radius: 16px;
    }
}