@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root {
    --color-near-black: #0e0f0c;
    --color-wise-green: #9fe870;
    --color-dark-green: #163300;
    --color-light-mint: #e2f6d5;
    --color-pastel-green: #cdffad;
    --color-warm-dark: #454745;
    --color-gray: #868685;
    --color-light-surface: #e8ebe6;
    --color-bg: #ffffff;
    --color-bg-alt: #f8faf6;
    --radius-pill: 9999px;
    --radius-card: 30px;
    --radius-card-sm: 16px;
    --radius-card-lg: 40px;
    --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
    letter-spacing: 0.18px;
    color: var(--color-near-black);
    background: var(--color-bg);
    font-feature-settings: "calt";
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-dark-green);
    text-decoration: none;
    border-radius: 2px;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-pill);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(14,15,12,0.12);
    padding: 16px 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    color: var(--color-near-black);
    letter-spacing: -0.5px;
    font-feature-settings: "calt";
    text-decoration: none;
}

.site-logo span {
    color: var(--color-dark-green);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-near-black);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: background 0.15s;
    text-decoration: none;
    font-feature-settings: "calt";
}

.site-nav a:hover {
    background: rgba(211,242,192,0.4);
    text-decoration: none;
}

.nav-cta {
    background: var(--color-wise-green);
    color: var(--color-dark-green) !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: transform 0.15s !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    background: var(--color-pastel-green) !important;
}

.nav-cta:active {
    transform: scale(0.95);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-near-black);
    border-radius: 2px;
    display: block;
    transition: all 0.2s;
}

/* HERO */
.hero {
    padding: 80px 0 64px;
    background: var(--color-bg);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-dark-green);
    background: var(--color-light-mint);
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 24px;
}

.hero-title em {
    font-style: normal;
    color: var(--color-dark-green);
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-warm-dark);
    margin-bottom: 32px;
    font-feature-settings: "calt";
}

.hero-img {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
    aspect-ratio: 4/3;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform 0.15s;
    text-decoration: none;
    font-feature-settings: "calt";
    letter-spacing: -0.108px;
}

.btn:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--color-wise-green);
    color: var(--color-dark-green);
}

.btn-secondary {
    background: rgba(22,51,0,0.08);
    color: var(--color-near-black);
}

/* SECTION TITLES */
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-dark-green);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 64px);
    line-height: 0.9;
    letter-spacing: -1.5px;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-warm-dark);
    line-height: 1.6;
    max-width: 600px;
}

/* ARTICLES SECTION */
.articles-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.articles-section .section-header {
    margin-bottom: 48px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--color-bg);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(14,15,12,0.18) 0px 8px 32px;
}

.article-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s;
}

.article-card:hover .article-card-img img {
    transform: scale(1.04);
}

.article-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-dark-green);
    background: var(--color-light-mint);
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.article-card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.396px;
    color: var(--color-near-black);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
}

.article-card-title a:hover {
    color: var(--color-dark-green);
    text-decoration: none;
}

.article-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-warm-dark);
    flex: 1;
    margin-bottom: 20px;
}

.article-card-meta {
    font-size: 13px;
    color: var(--color-gray);
    font-weight: 400;
}

/* FEATURES STRIP */
.features-section {
    padding: 80px 0;
    background: var(--color-near-black);
    color: #fff;
}

.features-section .section-title {
    color: #fff;
}

.features-section .section-desc {
    color: rgba(255,255,255,0.65);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-card-sm);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-wise-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    font-feature-settings: "calt";
}

.feature-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* CONTACT FORM */
.contact-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 0.9;
    letter-spacing: -1.5px;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    color: var(--color-warm-dark);
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--color-warm-dark);
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    background: var(--color-light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-detail strong {
    display: block;
    font-weight: 600;
    color: var(--color-near-black);
    margin-bottom: 2px;
    font-size: 14px;
}

.contact-form-wrap {
    background: var(--color-bg-alt);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-ring);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-near-black);
    margin-bottom: 8px;
    font-feature-settings: "calt";
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-near-black);
    background: var(--color-bg);
    border: 1px solid rgba(14,15,12,0.2);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-feature-settings: "calt";
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-dark-green);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ARTICLE PAGE */
.article-header {
    padding: 60px 0 40px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid rgba(14,15,12,0.08);
}

.article-breadcrumb {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.article-breadcrumb a {
    color: var(--color-dark-green);
    font-weight: 600;
    text-decoration: none;
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 20px;
    max-width: 900px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-gray);
    flex-wrap: wrap;
}

.article-tag {
    background: var(--color-light-mint);
    color: var(--color-dark-green);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-body {
    padding: 60px 0 80px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.article-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -1px;
    color: var(--color-near-black);
    margin: 40px 0 16px;
    font-feature-settings: "calt";
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-near-black);
    margin: 28px 0 12px;
    font-feature-settings: "calt";
}

.article-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c2e2b;
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.article-content li {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2e2b;
    margin-bottom: 6px;
}

.article-content a {
    color: var(--color-dark-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-img-full {
    border-radius: var(--radius-card);
    overflow: hidden;
    margin: 32px 0;
    box-shadow: var(--shadow-ring);
}

.article-img-full img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-card);
}

.article-img-caption {
    font-size: 13px;
    color: var(--color-gray);
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

.article-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--color-bg-alt);
    border-radius: var(--radius-card-sm);
    padding: 24px;
    box-shadow: var(--shadow-ring);
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-near-black);
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-green);
    text-decoration: none;
    line-height: 1.4;
}

.sidebar-links a:hover {
    text-decoration: underline;
}

.source-tag {
    font-size: 12px;
    color: var(--color-gray);
    display: block;
    font-weight: 400;
    margin-top: 2px;
}

/* ABOUT / PAGES */
.page-header {
    padding: 60px 0 48px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid rgba(14,15,12,0.08);
}

.page-header h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--color-near-black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--color-warm-dark);
    max-width: 600px;
    line-height: 1.6;
}

.page-content {
    padding: 60px 0 80px;
    max-width: 780px;
}

.page-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.5px;
    color: var(--color-near-black);
    margin: 40px 0 14px;
    font-feature-settings: "calt";
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-near-black);
    margin: 24px 0 10px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2e2b;
    margin-bottom: 18px;
}

.page-content ul {
    padding-left: 22px;
    margin-bottom: 18px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2e2b;
    margin-bottom: 6px;
}

/* FOOTER */
.site-footer {
    background: var(--color-near-black);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .site-logo {
    color: #fff;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    font-feature-settings: "calt";
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: var(--color-wise-green);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--color-wise-green);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 900px;
    background: var(--color-near-black);
    color: #fff;
    border-radius: var(--radius-card-sm);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 9999;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 240px;
}

.cookie-text a {
    color: var(--color-wise-green);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept {
    background: var(--color-wise-green);
    color: var(--color-dark-green);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s;
    font-feature-settings: "calt";
}

.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: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s;
    font-feature-settings: "calt";
}

.cookie-reject:hover { transform: scale(1.05); }
.cookie-reject:active { transform: scale(0.95); }

/* DISCLAIMER */
.disclaimer-bar {
    background: var(--color-light-surface);
    border-top: 1px solid rgba(14,15,12,0.08);
    padding: 12px 0;
    font-size: 12px;
    color: var(--color-gray);
    text-align: center;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-img { order: -1; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .site-nav { display: none; }
    .site-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        padding: 16px 24px;
        border-bottom: 1px solid rgba(14,15,12,0.12);
        gap: 4px;
        z-index: 200;
    }
    .hamburger { display: flex; }
    .site-header { position: relative; }
    .articles-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-title { font-size: 40px; }
    .section-title { font-size: 32px; }
}
