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

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

*, *::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-feature-settings: "calt";
    background: var(--white);
    color: var(--near-black);
    font-weight: 400;
    line-height: 1.44;
    letter-spacing: 0.18px;
}

a { color: var(--dark-green); text-decoration: none; font-feature-settings: "calt"; }
a:hover { color: var(--near-black); }

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

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

/* ── HEADER ── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(14,15,12,0.10);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}
.site-logo {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--near-black);
    letter-spacing: -0.5px;
    font-feature-settings: "calt";
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-logo span.accent {
    display: inline-block;
    background: var(--wise-green);
    color: var(--dark-green);
    border-radius: 9999px;
    padding: 2px 10px;
    font-size: 0.85rem;
    font-weight: 700;
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--near-black);
    padding: 6px 12px;
    border-radius: 9999px;
    font-feature-settings: "calt";
    transition: background 0.2s;
}
.site-nav a:hover { background: rgba(211,242,192,0.4); color: var(--near-black); }
.site-nav a.active { background: rgba(211,242,192,0.4); }

.nav-cta {
    background: var(--wise-green);
    color: var(--dark-green) !important;
    padding: 6px 18px !important;
    border-radius: 9999px;
    font-weight: 700 !important;
    transition: transform 0.2s !important;
}
.nav-cta:hover { background: var(--wise-green) !important; transform: scale(1.05); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--near-black);
    border-radius: 2px;
    transition: 0.3s;
}

/* ── HERO ── */
.hero {
    background: var(--white);
    padding: 80px 0 64px;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-label {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 9999px;
    padding: 4px 14px;
    margin-bottom: 20px;
    font-feature-settings: "calt";
}
.hero h1 {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 0.92;
    letter-spacing: -2px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: normal;
    color: var(--dark-green);
    background: var(--wise-green);
    border-radius: 8px;
    padding: 0 6px;
}
.hero-desc {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn-primary {
    display: inline-block;
    background: var(--wise-green);
    color: var(--dark-green);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 9999px;
    font-feature-settings: "calt";
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}
.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-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 9999px;
    font-feature-settings: "calt";
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn-secondary:hover { transform: scale(1.05); color: var(--near-black); }
.btn-secondary:active { transform: scale(0.95); }

.hero-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ring-shadow);
    aspect-ratio: 4/3;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--near-black);
    padding: 20px 0;
}
.stats-bar .container {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--wise-green);
    line-height: 1;
    font-feature-settings: "calt";
}
.stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-top: 4px;
}

/* ── SECTION HEADINGS ── */
.section-label {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 9999px;
    padding: 3px 12px;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}
.section-heading {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.9;
    letter-spacing: -1.5px;
    color: var(--near-black);
    font-feature-settings: "calt";
    margin-bottom: 16px;
}
.section-subtext {
    font-size: 1.05rem;
    color: var(--warm-dark);
    max-width: 560px;
    line-height: 1.6;
}

/* ── ARTICLES GRID ── */
.articles-section { padding: 80px 0; }
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.article-card {
    border-radius: 30px;
    box-shadow: var(--ring-shadow);
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(14,15,12,0.16) 0px 4px 24px;
}
.article-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-tag {
    display: inline-block;
    background: var(--light-mint);
    color: var(--dark-green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 9999px;
    padding: 3px 10px;
    margin-bottom: 12px;
    font-feature-settings: "calt";
}
.article-card h3 {
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.25;
    letter-spacing: -0.39px;
    color: var(--near-black);
    margin-bottom: 10px;
    font-feature-settings: "calt";
}
.article-card p {
    font-size: 0.9rem;
    color: var(--warm-dark);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 20px;
}
.article-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--light-surface);
    padding-top: 16px;
    margin-top: auto;
}
.article-date { font-size: 0.8rem; color: var(--gray); font-weight: 400; }
.read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 4px;
    font-feature-settings: "calt";
}
.read-more::after { content: "→"; }
.read-more:hover { color: var(--near-black); }

/* ── TOPICS SECTION ── */
.topics-section { padding: 80px 0; background: var(--light-mint); }
.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.topic-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--ring-shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.2s;
}
.topic-card:hover { transform: scale(1.02); }
.topic-icon {
    width: 48px;
    height: 48px;
    background: var(--wise-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.topic-card h3 {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    font-feature-settings: "calt";
}
.topic-card p { font-size: 0.88rem; color: var(--warm-dark); line-height: 1.55; }

/* ── FEATURED IMAGE BAND ── */
.image-band { padding: 0; overflow: hidden; background: var(--near-black); }
.image-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.image-band-item { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.image-band-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.3s, transform 0.4s; }
.image-band-item:hover img { opacity: 1; transform: scale(1.04); }

/* ── CONTACT FORM ── */
.contact-section { padding: 80px 0; }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 {
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 0.92;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
    font-feature-settings: "calt";
}
.contact-info p { font-size: 0.95rem; color: var(--warm-dark); line-height: 1.6; margin-bottom: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.contact-detail a, .contact-detail span {
    font-size: 0.9rem;
    color: var(--warm-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-detail a:hover { color: var(--dark-green); }
.contact-detail .ci { font-size: 1rem; }

.contact-form { background: var(--white); border-radius: 30px; box-shadow: var(--ring-shadow); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: var(--near-black); }
.form-group input, .form-group textarea {
    width: 100%;
    background: var(--light-surface);
    border: 1px solid rgba(14,15,12,0.10);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--near-black);
    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(--wise-green);
    box-shadow: 0 0 0 3px rgba(159,232,112,0.25);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; font-size: 1rem; padding: 14px; margin-top: 8px; }

/* ── ARTICLE PAGE ── */
.article-hero { background: var(--near-black); padding: 64px 0 0; color: var(--white); }
.article-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; padding-bottom: 0; }
.article-hero-content { padding-bottom: 48px; }
.article-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.article-breadcrumb a { color: var(--wise-green); font-weight: 600; }
.article-breadcrumb span { color: rgba(255,255,255,0.3); }
.article-hero h1 {
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.92;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 20px;
    font-feature-settings: "calt";
}
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.article-meta span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.article-meta .am-tag {
    background: var(--wise-green);
    color: var(--dark-green);
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
}
.article-hero-img {
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.article-content { padding: 60px 0 80px; }
.article-content-inner { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }

.article-body { font-size: 1.05rem; line-height: 1.7; color: var(--near-black); }
.article-body h2 {
    font-weight: 900;
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: -0.8px;
    margin: 48px 0 16px;
    font-feature-settings: "calt";
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.3px;
    margin: 32px 0 12px;
    font-feature-settings: "calt";
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--dark-green); font-weight: 600; text-decoration: underline; }
.article-body a:hover { color: var(--near-black); }
.article-body figure { margin: 32px 0; }
.article-body figure img { border-radius: 20px; width: 100%; object-fit: cover; max-height: 420px; box-shadow: var(--ring-shadow); }
.article-body figcaption { font-size: 0.82rem; color: var(--gray); margin-top: 8px; text-align: center; }
.article-body .callout {
    background: var(--light-mint);
    border-left: 4px solid var(--wise-green);
    border-radius: 0 16px 16px 0;
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 0.97rem;
}
.article-body table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.9rem; }
.article-body table th { background: var(--near-black); color: var(--wise-green); padding: 12px 16px; text-align: left; font-weight: 700; }
.article-body table td { padding: 11px 16px; border-bottom: 1px solid var(--light-surface); }
.article-body table tr:nth-child(even) td { background: rgba(226,246,213,0.3); }

.article-sidebar { position: sticky; top: 84px; }
.sidebar-widget {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--ring-shadow);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-widget h4 {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.2px;
    margin-bottom: 14px;
    font-feature-settings: "calt";
    color: var(--near-black);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.toc-list li a {
    font-size: 0.85rem;
    color: var(--warm-dark);
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 8px;
    display: block;
    transition: background 0.15s;
}
.toc-list li a:hover { background: rgba(211,242,192,0.4); color: var(--near-black); }
.related-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.related-list li a { font-size: 0.88rem; font-weight: 600; color: var(--dark-green); line-height: 1.4; }
.related-list li a:hover { color: var(--near-black); }

/* ── PAGES (about/privacy/terms) ── */
.page-hero { background: var(--light-mint); padding: 64px 0; }
.page-hero h1 {
    font-weight: 900;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 0.9;
    letter-spacing: -1.5px;
    font-feature-settings: "calt";
    margin-bottom: 16px;
}
.page-hero p { font-size: 1rem; color: var(--warm-dark); max-width: 560px; }
.page-content { padding: 60px 0 80px; }
.page-body { max-width: 780px; }
.page-body h2 {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.6px;
    margin: 40px 0 14px;
    font-feature-settings: "calt";
}
.page-body h2:first-child { margin-top: 0; }
.page-body p { margin-bottom: 18px; font-size: 0.97rem; line-height: 1.7; color: var(--warm-dark); }
.page-body ul { margin: 0 0 18px 22px; }
.page-body li { margin-bottom: 8px; font-size: 0.95rem; color: var(--warm-dark); line-height: 1.6; }
.page-body a { color: var(--dark-green); font-weight: 600; }
.page-body a:hover { color: var(--near-black); }
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 40px;
}
.team-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--ring-shadow);
    padding: 24px;
    text-align: center;
}
.team-avatar {
    width: 64px;
    height: 64px;
    background: var(--wise-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 14px;
}
.team-card h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--gray); }

/* ── FOOTER ── */
.site-footer {
    background: var(--near-black);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand .site-logo, .footer-brand .site-logo span.accent { color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-col h5 {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wise-green);
    margin-bottom: 14px;
    font-feature-settings: "calt";
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    font-feature-settings: "calt";
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--wise-green); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── COOKIE BANNER ── */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--near-black);
    color: rgba(255,255,255,0.85);
    padding: 18px 24px;
    z-index: 9999;
    display: none;
    border-top: 2px solid var(--wise-green);
}
#cookie-banner.show { display: flex; }
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}
.cookie-inner p { font-size: 0.85rem; flex: 1; line-height: 1.5; min-width: 200px; }
.cookie-inner p a { color: var(--wise-green); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
    background: var(--wise-green);
    color: var(--dark-green);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-cookie-accept:hover { transform: scale(1.05); }
.btn-cookie-reject {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s;
}
.btn-cookie-reject:hover { background: rgba(255,255,255,0.15); }

/* ── DISCLAIMER ── */
.disclaimer-bar {
    background: rgba(14,15,12,0.04);
    border-top: 1px solid var(--light-surface);
    padding: 14px 0;
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
    background: var(--light-surface);
    padding: 10px 0;
    font-size: 0.8rem;
    color: var(--gray);
}
.breadcrumb-bar a { color: var(--dark-green); font-weight: 600; }
.breadcrumb-bar span { margin: 0 6px; color: var(--gray); }

/* ── MOBILE NAV ── */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--light-surface);
    padding: 16px;
    gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--near-black);
    padding: 10px 16px;
    border-radius: 12px;
    font-feature-settings: "calt";
}
.mobile-nav a:hover { background: rgba(211,242,192,0.4); }

/* ── UTILITY ── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hero-inner, .contact-inner, .footer-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .topics-grid { grid-template-columns: 1fr; }
    .article-hero-inner, .article-content-inner { grid-template-columns: 1fr; }
    .article-hero-img { display: none; }
    .image-band-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-team-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 48px 0 40px; }
    .site-nav { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 576px) {
    .articles-grid, .about-team-grid { grid-template-columns: 1fr; }
    .image-band-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-bar .container { gap: 24px; }
    .hero h1 { font-size: 2.4rem; }
}
