@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --forest: #2D5016;
    --forest-light: #4A7C2E;
    --stone: #8B7355;
    --stone-light: #B8A88A;
    --cream: #FAF6F0;
    --warm: #D4A574;
    --dark: #1a1108;
    --text: #3D3425;
    --border: #e8dfd2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
}

/* NAV */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 16px 40px;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s;
    background: rgba(26,17,8,0.95);
    backdrop-filter: blur(10px);
}
nav.transparent { background: transparent; backdrop-filter: none; }
nav.scrolled {
    background: rgba(26,17,8,0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 12px 40px;
}
nav .logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: white; text-decoration: none;
}
nav .nav-right { display: flex; gap: 24px; list-style: none; align-items: center; }
nav .links { display: flex; gap: 20px; list-style: none; align-items: center; }
nav .links a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 13px; font-weight: 500; transition: color 0.2s;
}
nav .links a:hover { color: white; }
nav .links a.active { color: white; border-bottom: 2px solid var(--warm); padding-bottom: 2px; }
.nav-btn {
    padding: 8px 20px; border-radius: 6px;
    background: rgba(212,165,116,0.3); border: 1px solid rgba(212,165,116,0.4);
    color: var(--warm) !important; font-weight: 600 !important;
}
.hamburger {
    display: none; background: none; border: none; color: white;
    font-size: 24px; cursor: pointer; padding: 4px;
}

/* LANG SWITCHER */
.lang-switch { display: flex; gap: 4px; margin-left: 16px; }
.lang-switch button {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 4px; cursor: pointer;
    font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.lang-switch button:hover { background: rgba(255,255,255,0.2); color: white; }
.lang-switch button.active {
    background: var(--warm); color: var(--dark); border-color: var(--warm);
}

/* BUTTONS */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 8px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: all 0.3s; cursor: pointer; border: none;
    font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--forest); color: white; }
.btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-warm { background: var(--warm); color: var(--dark); }
.btn-warm:hover { background: #c4955e; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* HERO */
.hero {
    height: 100vh; min-height: 700px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; position: relative;
    color: white; padding: 0 20px; overflow: hidden;
    background: #0d0a04;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-bg img {
    display: block; width: 100%; height: 100%; object-fit: cover;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,6,2,0.55) 0%, rgba(26,17,8,0.7) 50%, rgba(10,6,2,0.8) 100%);
}
.hero > *:not(.hero-bg) { position: relative; z-index: 1; }
.hero-badge {
    display: inline-block; padding: 6px 18px; border-radius: 20px;
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
    background: rgba(212,165,116,0.15); color: var(--warm);
    border: 1px solid rgba(212,165,116,0.3); margin-bottom: 24px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 9vw, 110px); font-weight: 800;
    line-height: 1.0; margin-bottom: 20px;
}
.hero .subtitle {
    font-size: 20px; font-weight: 300; max-width: 650px;
    opacity: 0.85; margin-bottom: 36px; line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; }
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    animation: bounce 2s infinite; opacity: 0.4; font-size: 24px; color: white;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* SECTIONS */
section { padding: 50px 40px; max-width: 1200px; margin: 0 auto; }
.section-label {
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: var(--forest); margin-bottom: 8px;
}
.section-title {
    font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700;
    color: var(--dark); margin-bottom: 20px; line-height: 1.2;
}
.section-text {
    font-size: 17px; max-width: 700px; color: var(--stone); line-height: 1.8;
    margin-left: auto; margin-right: auto; text-align: center;
}

/* STATS BAR */
.stats-bar { background: var(--dark); color: white; padding: 50px 40px; }
.stats-bar .inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center;
}
.stat .number {
    font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--warm);
}
.stat .label { font-size: 12px; opacity: 0.6; margin-top: 4px; }

/* GRID LAYOUTS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }

/* PHOTO GALLERY */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 40px; }
.gallery img {
    width: 100%; height: 200px; object-fit: cover; border-radius: 8px;
    cursor: pointer; transition: transform 0.3s, opacity 0.3s;
}
.gallery img:hover { transform: scale(1.03); opacity: 0.9; }
.gallery img.wide { grid-column: span 2; height: 250px; }

/* FEATURE CARDS */
.feature {
    background: white; border: 1px solid var(--border); border-radius: 16px;
    padding: 32px; transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 16px;
}
.feature h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.feature p { font-size: 14px; color: var(--stone); line-height: 1.6; }

/* TIMELINE */
.timeline { margin-top: 50px; }
.timeline-item {
    display: grid; grid-template-columns: 140px 1fr; gap: 30px;
    padding: 30px 0; border-bottom: 1px solid var(--border);
}
.timeline-item .date {
    font-weight: 600; color: var(--forest); font-size: 14px; padding-top: 4px;
}
.timeline-item h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.timeline-item p { font-size: 14px; color: var(--stone); }

/* FINANCE BARS */
.finance-row {
    display: flex; align-items: center; gap: 16px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
}
.finance-row .label { width: 200px; font-size: 14px; font-weight: 500; }
.finance-bar {
    flex: 1; height: 28px; background: #f0ebe3; border-radius: 6px; overflow: hidden;
}
.finance-bar .fill {
    height: 100%; border-radius: 6px;
    display: flex; align-items: center; padding-left: 12px;
    font-size: 12px; font-weight: 600; color: white;
}
.finance-row .amount { width: 100px; text-align: right; font-weight: 600; font-size: 14px; }

/* CLIMATE */
.climate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.climate-card {
    background: white; border: 1px solid var(--border); border-radius: 12px;
    padding: 24px; text-align: center;
}
.climate-card .value {
    font-family: 'Playfair Display', serif; font-size: 32px;
    font-weight: 700; color: var(--forest);
}
.climate-card .clabel { font-size: 13px; color: var(--stone); margin-top: 4px; }

/* MEDIA CARDS */
.media-card {
    background: white; border: 1px solid var(--border); border-radius: 12px;
    padding: 24px; display: flex; flex-direction: column; align-items: center;
    text-align: center;
}
.media-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.media-card h3 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.media-card h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.media-card p { font-size: 13px; color: var(--stone); line-height: 1.5; }
.media-card a { color: var(--forest); text-decoration: none; font-weight: 500; font-size: 13px; }
.media-card a:hover { text-decoration: underline; }
.media-card a.btn-primary { color: white; text-decoration: none; font-size: 14px; }
.media-card a.btn-primary:hover { color: white; text-decoration: none; }

/* FULL-WIDTH SECTIONS */
.fw-section { background: white; margin: 0; max-width: none; padding: 80px 40px; }
.fw-dark { background: var(--dark); color: white; margin: 0; max-width: none; padding: 80px 40px; }
.fw-forest {
    background: linear-gradient(135deg, #1a2e0a, #2D5016); color: white;
    margin: 0; max-width: none; padding: 80px 40px;
}
.fw-inner { max-width: 1200px; margin: 0 auto; }

/* FUNDING TIERS */
.funding-tier {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 24px;
}
.funding-tier h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.funding-tier .amount-range {
    font-family: 'Playfair Display', serif; font-size: 24px;
    color: var(--warm); margin-bottom: 8px;
}
.funding-tier ul { list-style: none; font-size: 13px; opacity: 0.7; }
.funding-tier ul li::before { content: '- '; }

/* SUBPAGE CARDS */
.subpage-card {
    background: white; border: 1px solid var(--border); border-radius: 12px;
    padding: 28px; text-decoration: none; color: var(--text);
    transition: transform 0.3s, box-shadow 0.3s; display: block;
}
.subpage-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.subpage-card .icon { font-size: 28px; margin-bottom: 12px; }
.subpage-card h3 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.subpage-card p { font-size: 13px; color: var(--stone); }

/* LIGHTBOX */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
    cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }

/* CTA */
.cta-section { text-align: center; }
.cta-section .section-title { color: white; }
.cta-section .section-text { color: rgba(255,255,255,0.7); margin: 0 auto 30px; }

/* FOOTER */
footer {
    background: var(--dark); color: rgba(255,255,255,0.5);
    padding: 40px; text-align: center; font-size: 13px;
}
footer a { color: var(--warm); text-decoration: none; }

/* FLOATING DONATE BUTTON */
.floating-donate {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    background: linear-gradient(135deg, #f59e0b, #d4a574);
    color: var(--dark); font-weight: 700; font-size: 15px;
    padding: 16px 28px; border-radius: 50px; border: none;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 6px 24px rgba(212,165,116,0.4);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s; display: flex; align-items: center; gap: 8px;
    animation: pulse-glow 2.5s ease-in-out infinite;
}
.floating-donate:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 32px rgba(212,165,116,0.5);
}
.floating-donate.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 24px rgba(212,165,116,0.4); }
    50% { box-shadow: 0 6px 32px rgba(245,158,11,0.6); }
}

/* MINI CROWDFUNDING BAR */
.mini-crowd {
    background: var(--dark); color: white; padding: 20px 40px;
    margin: 0; max-width: none;
}
.mini-crowd .inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 24px;
}
.mini-crowd .raised {
    font-family: 'Playfair Display', serif; font-size: 24px;
    font-weight: 700; color: var(--warm); white-space: nowrap;
}
.mini-crowd .bar-wrap {
    flex: 1; height: 10px; background: rgba(255,255,255,0.1);
    border-radius: 6px; overflow: hidden;
}
.mini-crowd .bar-fill {
    height: 100%; background: linear-gradient(90deg, #f59e0b, #d4a574);
    border-radius: 6px; transition: width 1s ease;
}
.mini-crowd .goal { font-size: 13px; opacity: 0.6; white-space: nowrap; }
.mini-crowd .btn { white-space: nowrap; padding: 10px 20px; }

/* HERO COUNTDOWN */
.hero-countdown {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.cd-block {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px; padding: 14px 18px; min-width: 80px;
    backdrop-filter: blur(8px);
}
.cd-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 52px); font-weight: 800;
    color: #f59e0b; line-height: 1;
}
.cd-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.5); margin-top: 6px;
}
.cd-sep {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 44px); font-weight: 700;
    color: rgba(255,255,255,0.25); margin-top: -16px;
}

/* STICKY COUNTDOWN BAR */
.sticky-countdown {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    display: flex; justify-content: center; align-items: center; gap: 16px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #1a0a00, #2D1810, #1a0a00);
    border-bottom: 2px solid rgba(245,158,11,0.4);
    color: white; font-size: 14px;
    transform: translateY(-100%); transition: transform 0.3s ease;
}
.sticky-countdown.visible { transform: translateY(0); }
.sticky-countdown strong { color: #f59e0b; font-size: 18px; font-family: 'Playfair Display', serif; }
.sticky-countdown .btn { padding: 6px 16px; font-size: 12px; }

/* FADE-IN SCROLL ANIMATIONS */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* SOCIAL PROOF */
.social-proof {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-top: 30px; padding: 16px 24px;
    background: rgba(255,255,255,0.06); border-radius: 10px;
    font-size: 14px; opacity: 0.8;
}
.social-proof .avatars { display: flex; }
.social-proof .avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, var(--forest), var(--forest-light));
    border: 2px solid rgba(255,255,255,0.2);
    margin-left: -8px; display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600;
}
.social-proof .avatar:first-child { margin-left: 0; }

/* AGRICULTURE */
.terrain-map {
    background: var(--dark); color: #a8d080; border-radius: 12px;
    padding: 28px 20px; font-family: 'Courier New', monospace;
    font-size: 11px; line-height: 1.5; overflow-x: auto;
    white-space: pre; margin-top: 30px; position: relative;
}
.terrain-map .map-title {
    color: var(--warm); font-family: 'Inter', sans-serif;
    font-size: 13px; font-weight: 600; margin-bottom: 12px;
    display: block; white-space: normal;
}
.parcel-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.parcel-table th {
    background: var(--forest); color: white; padding: 10px 14px;
    font-size: 12px; font-weight: 600; text-align: left;
}
.parcel-table td {
    padding: 10px 14px; font-size: 13px; border-bottom: 1px solid var(--border);
}
.parcel-table tr:hover { background: rgba(45,80,22,0.05); }
.parcel-table .highlight { background: rgba(45,80,22,0.08); font-weight: 500; }
.agri-card {
    background: white; border: 1px solid var(--border); border-radius: 12px;
    padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.agri-icon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.agri-card h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.agri-card p { font-size: 13px; color: var(--stone); line-height: 1.5; }
.agri-card .tag {
    display: inline-block; padding: 2px 8px; border-radius: 4px;
    font-size: 11px; font-weight: 600; margin-top: 6px;
}
.tag-dop { background: #e8f5e9; color: var(--forest); }
.tag-innovation { background: #fff3e0; color: #b87333; }
.tag-quick { background: #e3f2fd; color: #1565c0; }
.tag-existing { background: #fce4ec; color: #c62828; }
.phase-badge {
    display: inline-block; padding: 3px 10px; border-radius: 4px;
    font-size: 11px; font-weight: 600; margin-right: 6px;
}
.phase-1 { background: #e8f5e9; color: var(--forest); }
.phase-2 { background: #fff3e0; color: #b87333; }
.phase-3 { background: #f3e5f5; color: #7b1fa2; }
.revenue-est {
    font-family: 'Playfair Display', serif; font-size: 20px;
    color: var(--forest); font-weight: 700;
}

/* SUBPAGE HERO (smaller than landing) */
.subpage-hero {
    padding: 120px 40px 50px;
    background: var(--dark); color: white; text-align: center;
}
.subpage-hero .section-label { color: var(--warm); }
.subpage-hero .section-title { color: white; }
.subpage-hero .section-text { color: rgba(255,255,255,0.7); margin: 0 auto; }

/* CTA BANNER (before footer on subpages) */
.cta-banner {
    background: linear-gradient(135deg, #0d2b06, #2D5016);
    color: white; text-align: center; padding: 60px 40px;
}
.cta-banner h3 {
    font-family: 'Playfair Display', serif; font-size: 28px;
    font-weight: 700; margin-bottom: 16px;
}
.cta-banner p { font-size: 15px; opacity: 0.7; margin-bottom: 24px; }

/* PRO PAGE */
.priority-banner {
    background: linear-gradient(135deg, #2D5016, #4A7C2E); color: white;
    border-radius: 12px; padding: 20px 24px; margin-bottom: 24px;
}
.priority-banner h2 { font-size: 16px; margin-bottom: 12px; font-weight: 600; }
.priority-list { display: flex; flex-direction: column; gap: 6px; }
.priority-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.priority-num {
    background: rgba(255,255,255,0.2); width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px; flex-shrink: 0;
}
.category {
    background: white; border-radius: 12px; margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden;
}
.cat-header {
    padding: 16px 24px; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer; user-select: none;
}
.cat-header:hover { background: #faf8f4; }
.cat-header h2 {
    font-size: 16px; font-weight: 600; color: var(--dark);
    display: flex; align-items: center; gap: 10px;
}
.cat-header .icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.cat-header .arrow { transition: transform 0.3s; color: var(--stone); }
.category.open .cat-header .arrow { transform: rotate(180deg); }
.cat-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.category.open .cat-body { max-height: 5000px; }
.contact { padding: 16px 24px; border-top: 1px solid #f0ebe3; }
.contact:hover { background: #fdfbf8; }
.contact-name { font-size: 15px; font-weight: 600; color: var(--dark); }
.contact-firm { font-size: 13px; color: var(--forest); font-weight: 500; }
.contact-detail { font-size: 12px; color: var(--stone); margin-top: 4px; line-height: 1.5; }
.contact-why { font-size: 12px; margin-top: 6px; background: var(--cream); padding: 8px 12px; border-radius: 6px; line-height: 1.5; }
.contact-links { margin-top: 6px; display: flex; gap: 8px; flex-wrap: wrap; }
.contact-links a {
    display: inline-block; padding: 3px 10px; border-radius: 6px;
    font-size: 11px; font-weight: 500; text-decoration: none;
    background: #e8f5e9; color: var(--forest); transition: all 0.2s;
}
.contact-links a:hover { background: var(--forest); color: white; }
.tag-reco {
    display: inline-block; padding: 2px 8px; border-radius: 10px;
    font-size: 10px; font-weight: 600; background: #e8f5e9;
    color: var(--forest); margin-left: 8px;
}

/* COLLAB CARDS (Pro page) */
.collab-card {
    background: white; border: 1px solid var(--border); border-radius: 12px;
    padding: 24px; transition: transform 0.3s, box-shadow 0.3s;
}
.collab-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.collab-card h4 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.collab-card p { font-size: 13px; color: var(--stone); line-height: 1.5; }
.collab-card .tag { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; margin-top: 8px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    nav { padding: 12px 20px; }
    nav .links { display: none; }
    nav .links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: rgba(26,17,8,0.98);
        padding: 20px; gap: 16px; text-align: center;
    }
    .hamburger { display: block; }
    section { padding: 60px 20px; }
    .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .grid-3, .grid-4, .climate-grid { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .gallery img.wide { grid-column: span 1; height: 200px; }
    .stats-bar .inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .timeline-item { grid-template-columns: 1fr; gap: 8px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .fw-section, .fw-dark, .fw-forest { padding: 60px 20px; }
    .finance-row .label { width: 120px; font-size: 12px; }
    .floating-donate { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 13px; }
    .mini-crowd { padding: 16px 20px; }
    .mini-crowd .inner { flex-wrap: wrap; gap: 12px; }
    .mini-crowd .bar-wrap { width: 100%; order: 3; }
    .mini-crowd .btn { width: 100%; text-align: center; order: 4; }
    .subpage-hero { padding: 100px 20px 60px; }
}
@media (max-width: 480px) {
    .grid-3, .grid-4, .climate-grid { grid-template-columns: 1fr; }
    .stats-bar .inner { grid-template-columns: 1fr 1fr; }
}
