*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

: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;
    --font-display: 'Inter', Helvetica, Arial, sans-serif;
    --font-body: 'Inter', Helvetica, Arial, sans-serif;
    --radius-pill: 9999px;
    --radius-large: 40px;
    --radius-card: 30px;
    --radius-small: 16px;
    --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--near-black);
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: 0.18px;
    font-feature-settings: "calt";
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--near-black);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* NAV */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid rgba(14,15,12,0.10);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 32px;
}

.nav-logo {
    font-weight: 900;
    font-size: 22px;
    color: var(--near-black);
    letter-spacing: -0.5px;
    font-feature-settings: "calt";
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links > li > a,
.nav-dropdown-toggle {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    color: var(--near-black);
    transition: background 0.18s;
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-feature-settings: "calt";
}

.nav-links > li > a:hover,
.nav-dropdown-toggle:hover {
    background: rgba(211,242,192,0.4);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-ring), 0 8px 24px rgba(14,15,12,0.10);
    min-width: 220px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--near-black);
    transition: background 0.15s;
}

.nav-dropdown-menu li a:hover {
    background: var(--light-mint);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--near-black);
    border-radius: 2px;
    transition: all 0.2s;
}

/* HERO */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -1px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    font-weight: 600;
    color: var(--warm-dark);
    max-width: 420px;
    line-height: 1.5;
    margin-bottom: 32px;
}

.hero-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
    aspect-ratio: 4/3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ARTICLES GRID */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 0.85;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 48px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    background: var(--bg);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-ring), 0 12px 32px rgba(14,15,12,0.10);
}

.article-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-card-image img {
    transform: scale(1.04);
}

.article-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-tag {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-card-body h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.4px;
    color: var(--near-black);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.article-card-body p {
    font-size: 15px;
    color: var(--warm-dark);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 20px;
}

.article-card-meta {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
}

/* ARTICLE PAGE */
.article-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px;
}

.article-header {
    margin-bottom: 40px;
}

.article-header .tag {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-header h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 20px;
}

.article-header .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--warm-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.article-meta {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 32px;
}

.article-featured-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
    margin-bottom: 48px;
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin: 48px 0 16px;
}

.article-body h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--near-black);
    margin: 32px 0 12px;
}

.article-body p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--near-black);
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-body ul {
    list-style: disc;
}

.article-body ol {
    list-style: decimal;
}

.article-body li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--near-black);
}

.article-body strong {
    font-weight: 600;
}

.article-tip {
    background: var(--light-mint);
    border-left: 4px solid var(--wise-green);
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
    padding: 20px 24px;
    margin: 32px 0;
}

.article-tip p {
    margin: 0;
    font-weight: 600;
    color: var(--dark-green);
}

.article-sources {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(14,15,12,0.10);
}

.article-sources h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.article-sources ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.article-sources li a {
    font-size: 14px;
    color: var(--warm-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.article-sources li a:hover {
    color: var(--near-black);
}

.article-nav-links {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(14,15,12,0.10);
    flex-wrap: wrap;
}

.article-nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    transition: background 0.15s, transform 0.15s;
}

.article-nav-links a:hover {
    background: var(--pastel-green);
    transform: scale(1.05);
}

/* INFO STRIP */
.info-strip {
    background: var(--light-surface);
    padding: 64px 24px;
}

.info-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.info-block {
    background: var(--bg);
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-ring);
}

.info-block h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.info-block p {
    font-size: 15px;
    color: var(--warm-dark);
    line-height: 1.6;
}

/* CONTACT FORM */
.contact-section {
    background: var(--light-surface);
    padding: 64px 24px;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

.contact-inner h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 8px;
}

.contact-inner > p {
    font-size: 16px;
    color: var(--warm-dark);
    font-weight: 600;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--near-black);
    font-feature-settings: "calt";
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(14,15,12,0.20);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--near-black);
    background: var(--bg);
    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(--wise-green);
    box-shadow: 0 0 0 3px rgba(159,232,112,0.25);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--wise-green);
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-feature-settings: "calt";
    transition: transform 0.15s, background 0.15s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: var(--pastel-green);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: var(--radius-small);
    font-size: 15px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: var(--light-mint);
    color: var(--dark-green);
    display: block;
}

.form-message.error {
    background: #ffeaea;
    color: #d03238;
    display: block;
}

/* PAGE CONTENT */
.page-wrap {
    max-width: 840px;
    margin: 0 auto;
    padding: 64px 24px;
}

.page-wrap h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 0.85;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 32px;
}

.page-wrap h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--near-black);
    margin: 40px 0 12px;
}

.page-wrap p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--near-black);
    margin-bottom: 16px;
}

.page-wrap ul {
    list-style: disc;
    margin: 12px 0 20px 24px;
}

.page-wrap li {
    font-size: 16px;
    line-height: 1.65;
    color: var(--near-black);
    margin-bottom: 6px;
}

.page-updated {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 40px;
}

/* FOOTER */
.site-footer {
    background: var(--near-black);
    color: rgba(255,255,255,0.85);
    padding: 56px 24px 0;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--wise-green);
    display: block;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.70);
    transition: color 0.15s;
}

.footer-col a:hover {
    color: var(--wise-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.40);
}

.footer-disclaimer {
    font-size: 12px !important;
    color: rgba(255,255,255,0.30) !important;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 540px;
    background: var(--near-black);
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-card);
    padding: 24px 28px;
    box-shadow: 0 8px 40px rgba(14,15,12,0.25);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.80);
}

.cookie-banner p a {
    color: var(--wise-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept {
    background: var(--wise-green);
    color: var(--dark-green);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.15s;
}

.btn-cookie-accept:hover {
    transform: scale(1.05);
}

.btn-cookie-reject {
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.80);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.15s;
}

.btn-cookie-reject:hover {
    background: rgba(255,255,255,0.18);
}

/* BREADCRUMB */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
    transition: color 0.15s;
}

.breadcrumb a:hover {
    color: var(--near-black);
}

.breadcrumb span {
    color: var(--near-black);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 48px 20px 40px;
        gap: 32px;
    }

    .hero-image {
        display: none;
    }

    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-strip-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid rgba(14,15,12,0.10);
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 2px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 10px;
        background: var(--light-surface);
        margin-top: 4px;
        padding: 4px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .article-nav-links {
        flex-direction: column;
    }
}
