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

*, *::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;
    --white: #ffffff;
    --radius-pill: 9999px;
    --radius-card: 30px;
    --radius-card-sm: 16px;
    --radius-section: 40px;
    --shadow-ring: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    --font-body: 'Inter', Helvetica, Arial, sans-serif;
    --transition: 0.18s ease;
}

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

body {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.44;
    letter-spacing: -0.108px;
    color: var(--near-black);
    background: var(--white);
    font-feature-settings: "calt";
    -webkit-font-smoothing: antialiased;
}

a { color: var(--dark-green); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--near-black); }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-card-sm); }

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.108px;
    font-feature-settings: "calt";
    border: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: transform var(--transition);
    text-decoration: none;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.95); }
.btn-primary { background: var(--wise-green); color: var(--dark-green); padding: 12px 24px; }
.btn-secondary { background: rgba(22,51,0,0.08); color: var(--near-black); padding: 10px 20px; }
.btn-sm { font-size: 0.875rem; padding: 8px 16px; }

.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;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--near-black);
    font-weight: 900;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.site-logo span { font-feature-settings: "calt"; }
.site-logo:hover { color: var(--dark-green); }

.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
.site-nav a {
    display: block;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--near-black);
    transition: background var(--transition);
}
.site-nav a:hover { background: rgba(211,242,192,0.4); color: var(--dark-green); }
.site-nav a[aria-current="page"] { background: var(--light-mint); color: var(--dark-green); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--near-black);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.hero {
    padding: 80px 0 64px;
    background: var(--white);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    font-feature-settings: "calt";
    color: var(--near-black);
    margin-bottom: 24px;
}
.hero-desc {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--warm-dark);
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-ring); }
.hero-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 0; }

.section { padding: 72px 0; }
.section-alt { background: var(--light-surface); }
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.5px;
    font-feature-settings: "calt";
    color: var(--near-black);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--warm-dark);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: rgba(14,15,12,0.16) 0px 8px 32px; }
.card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 0; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-tag {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-green);
}
.card-title {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.3px;
    font-feature-settings: "calt";
    color: var(--near-black);
    text-decoration: none;
}
.card-title:hover { color: var(--dark-green); }
.card-excerpt {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.55;
    flex: 1;
}
.card-footer { margin-top: auto; padding-top: 12px; }
.card-footer a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.card-footer a:hover { text-decoration: underline; }

.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.topic-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-card-sm);
    padding: 24px;
    box-shadow: var(--shadow-ring);
}
.topic-icon {
    width: 48px;
    height: 48px;
    background: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}
.topic-title {
    font-size: 1.1rem;
    font-weight: 900;
    font-feature-settings: "calt";
    color: var(--near-black);
    margin-bottom: 6px;
}
.topic-desc { font-size: 0.9rem; font-weight: 400; color: var(--warm-dark); line-height: 1.55; }

.contact-section { background: var(--near-black); color: var(--white); }
.contact-section .section-title { color: var(--wise-green); }
.contact-section .section-sub { color: rgba(255,255,255,0.7); }
.contact-form {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-section);
    border: 1px solid rgba(159,232,112,0.2);
    padding: 40px;
    max-width: 560px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.form-row input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(159,232,112,0.25);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition);
}
.form-row input:focus { border-color: var(--wise-green); box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset; }
.form-row input::placeholder { color: rgba(255,255,255,0.35); }
.form-submit { margin-top: 8px; }

.article-header { padding: 64px 0 40px; border-bottom: 1px solid rgba(14,15,12,0.10); }
.article-header .breadcrumb {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 16px;
}
.article-header .breadcrumb a { color: var(--dark-green); text-decoration: none; }
.article-header .breadcrumb a:hover { text-decoration: underline; }
.article-meta { display: flex; gap: 16px; align-items: center; margin-top: 16px; font-size: 0.9rem; color: var(--gray); }
.article-meta .tag {
    background: var(--light-mint);
    color: var(--dark-green);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.8rem;
}
.article-h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -1px;
    font-feature-settings: "calt";
    color: var(--near-black);
    margin: 16px 0;
}
.article-lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    max-width: 680px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 48px 0 72px;
}
.article-body { min-width: 0; }
.article-body h2 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.4px;
    font-feature-settings: "calt";
    margin: 40px 0 16px;
    color: var(--near-black);
}
.article-body h3 {
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.1;
    font-feature-settings: "calt";
    margin: 28px 0 10px;
    color: var(--near-black);
}
.article-body p { margin-bottom: 20px; font-weight: 400; line-height: 1.7; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 8px; font-weight: 400; line-height: 1.65; }
.article-body a { color: var(--dark-green); }
.article-body figure { margin: 32px 0; }
.article-body figcaption { font-size: 0.82rem; color: var(--gray); margin-top: 8px; font-weight: 400; }
.article-body .callout {
    background: var(--light-mint);
    border-left: 4px solid var(--wise-green);
    border-radius: 0 var(--radius-card-sm) var(--radius-card-sm) 0;
    padding: 18px 22px;
    margin: 28px 0;
}
.article-body .callout p { margin: 0; color: var(--dark-green); font-weight: 600; }

.article-sidebar { position: sticky; top: 80px; align-self: start; display: flex; flex-direction: column; gap: 24px; }
.sidebar-box {
    background: var(--light-surface);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-ring);
}
.sidebar-box h3 { font-size: 1rem; font-weight: 900; margin-bottom: 14px; font-feature-settings: "calt"; }
.sidebar-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-box ul a { font-size: 0.9rem; font-weight: 600; color: var(--dark-green); text-decoration: none; }
.sidebar-box ul a:hover { text-decoration: underline; }

.page-hero { padding: 64px 0 40px; }
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -1px;
    font-feature-settings: "calt";
    margin-bottom: 16px;
}
.page-hero p { font-size: 1.1rem; font-weight: 400; color: var(--warm-dark); max-width: 600px; line-height: 1.6; }

.prose { max-width: 720px; }
.prose h2 { font-size: 1.6rem; font-weight: 900; font-feature-settings: "calt"; margin: 36px 0 12px; }
.prose h3 { font-size: 1.2rem; font-weight: 900; font-feature-settings: "calt"; margin: 24px 0 8px; }
.prose p { font-weight: 400; line-height: 1.7; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { font-weight: 400; line-height: 1.65; margin-bottom: 6px; }
.prose a { color: var(--dark-green); }

.site-footer {
    background: var(--near-black);
    color: rgba(255,255,255,0.75);
    padding: 56px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { color: var(--white); }
.footer-logo span { font-size: 1rem; }
.footer-tagline { font-size: 0.9rem; font-weight: 400; margin: 12px 0 16px; line-height: 1.55; }
.footer-contact { font-style: normal; font-size: 0.88rem; line-height: 1.8; font-weight: 400; }
.footer-contact a { color: var(--wise-green); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.site-footer h3 { color: var(--white); font-size: 0.9rem; font-weight: 900; margin-bottom: 14px; font-feature-settings: "calt"; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer ul a { color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 400; text-decoration: none; }
.site-footer ul a:hover { color: var(--wise-green); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.4); line-height: 1.6; }
.disclaimer { margin-top: 4px; }

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--near-black);
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-pill);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(14,15,12,0.35);
    z-index: 200;
    max-width: 680px;
    width: calc(100% - 48px);
    font-size: 0.9rem;
    font-weight: 400;
}
.cookie-banner a { color: var(--wise-green); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-img { order: -1; }
    .hero-img img { height: 280px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .topics-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-col:first-child { grid-column: 1 / -1; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 576px) {
    .site-nav { display: none; }
    .nav-toggle { display: flex; }
    .site-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(14,15,12,0.10); padding: 12px 24px; }
    .site-nav.open ul { flex-direction: column; gap: 4px; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .cookie-banner { flex-direction: column; border-radius: var(--radius-card-sm); text-align: center; bottom: 16px; }
}

.schema-org { display: none; }
