        :root {
            --blue-900: #1C2D5C;
            --blue-800: #2A4080;
            --blue-700: #3B5BA9;
            --blue-600: #4B6DB9;
            --blue-500: #6B8AD0;
            --blue-400: #8BA5E0;
            --blue-300: #B0C4F0;
            --blue-200: #D0DCFA;
            --blue-100: #E8EDFC;
            --blue-50: #F4F6FE;
            --amber-500: #1a1a1a;
            --amber-400: #333333;
            --amber-300: #4a4a4a;
            --green-600: #2E8540;
            --green-500: #3FA553;
            --green-400: #5BC06A;
            --red-500: #D4382F;
            --gray-600: #6B7280;
            --gray-400: #9CA3AF;
            --white: #FFFFFF;
            --font-display: 'Fraunces', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            color: var(--blue-900);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }

        /* ── Background Image ── */
        #site-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: url('../images/background.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.12;
        }

        /* ── Navigation ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: top 0.3s ease, background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
            color: var(--white);
        }

        /* Offset the fixed nav so it sits below the WP admin bar. */
        .admin-bar nav {
            top: 32px;
        }

        @media screen and (max-width: 782px) {
            .admin-bar nav {
                top: 46px;
            }
        }


        nav.scrolled {
            background: rgba(59, 91, 169, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 24px rgba(28, 45, 92, 0.15);
            color: var(--white);
        }

        .nav-brand {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: inherit;
        }

        .nav-brand .brand-leaf {
            width: 22px;
            height: 22px;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
        }

        .nav-brand .brand-leaf:hover {
            transform: rotate(360deg);
        }

        .nav-brand .brand-leaf.spin {
            animation: spinLeaf 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes spinLeaf {
            from { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.3); }
            to { transform: rotate(360deg) scale(1); }
        }

        .nav-donate {
            background: var(--blue-700);
            color: var(--white);
            border: none;
            padding: 0.6rem 1.4rem;
            border-radius: 100px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .nav-donate:hover {
            background: var(--blue-600);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 91, 169, 0.4);
        }

        /* Hidden by default; revealed when nav is scrolled over content */
        .nav-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: -0.01em;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.35s ease, transform 0.35s ease;
            white-space: nowrap;
        }

        nav.scrolled .nav-title {
            opacity: 1;
            transform: translateX(0);
        }

        /* Donate button — invert on scrolled blue background for contrast */
        nav.scrolled .nav-donate {
            background: var(--white);
            color: var(--blue-800);
        }

        nav.scrolled .nav-donate:hover {
            background: var(--blue-50);
            color: var(--blue-900);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        }

        /* Hide the nav Donate button on the Donate page itself */
        .page-slug-donate .nav-donate {
            display: none;
        }

        /* ── Hero Section ── */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6rem 2rem 4rem;
            background: #333;
            color: var(--white);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('../images/background.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            pointer-events: none;
            z-index: 1;
        }

        .hero::after {
            display: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }

        .hero-eyebrow {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.6rem, 6vw, 4.2rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: clamp(1.05rem, 2vw, 1.2rem);
            line-height: 1.7;
            opacity: 0.85;
            max-width: 560px;
            margin: 0 auto 2.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--blue-700);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 100px;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--blue-600);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(59, 91, 169, 0.4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.12);
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.25);
            padding: 0.9rem 1.8rem;
            border-radius: 100px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-2px);
        }

        .scroll-hint {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0.5;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            animation: hintBounce 2.5s ease-in-out infinite;
        }

        .scroll-hint svg {
            width: 20px;
            height: 20px;
        }

        @keyframes hintBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        /* ── Section Utilities ── */
        section {
            position: relative;
            z-index: 1;
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .section-heading {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 560px;
            line-height: 1.7;
        }

        /* ── Scroll Reveal ── */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* In the block editor the scroll-reveal JS doesn't run,
           so .reveal elements would stay invisible. Force them visible. */
        .editor-styles-wrapper .reveal {
            opacity: 1 !important;
            transform: none !important;
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ── About Section ── */
        .about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--blue-900);
            margin-bottom: 1.25rem;
        }

        .about-text p:last-child { margin-bottom: 0; }

        .about-text strong {
            color: var(--blue-700);
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }

        .stat-card {
            background: var(--blue-50);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--blue-100);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(59, 91, 169, 0.1);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--blue-700);
            line-height: 1;
            margin-bottom: 0.4rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--gray-600);
            line-height: 1.3;
        }

        /* ── Progress / Thermometer Section ── */
        .progress-section {
            background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
        }

        .progress-layout {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .progress-info {
            flex: 0 0 auto;
            text-align: center;
        }

        .progress-raised {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            color: var(--blue-700);
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .progress-goal {
            font-size: 1.1rem;
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .progress-supporters {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: transparent;
            color: var(--green-600);
            padding: 0;
            border-radius: 0;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .progress-supporters svg {
            width: 14px;
            height: 14px;
            stroke: var(--green-600);
        }

        .progress-supporters #supporter-count {
            font-weight: 700;
            color: var(--green-600);
        }

        .progress-percentage {
            display: inline-block;
            margin-left: 0.5rem;
            padding: 0.15rem 0.55rem;
            background: var(--blue-100);
            color: var(--blue-700);
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            vertical-align: middle;
        }

        /* Thermometer — horizontal layout */
        .thermometer-wrapper {
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: center;
            width: 100%;
            max-width: 640px;
            padding-bottom: 1.75rem; /* room for the marker labels */
        }

        .thermometer-goal-label {
            position: absolute;
            right: 0;
            top: -1.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-600);
        }

        .thermometer-track {
            flex: 1 1 auto;
            height: 40px;
            background: var(--blue-100);
            border-radius: 20px;
            position: relative;
            overflow: visible;
            border: 3px solid var(--blue-200);
            transition: box-shadow 0.3s ease;
        }

        .thermometer-track:hover {
            box-shadow: 0 0 30px rgba(59, 91, 169, 0.25), 0 0 60px rgba(59, 91, 169, 0.1);
        }

        .thermometer-fill {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 0%;
            height: auto;
            background: linear-gradient(to right, var(--blue-700), var(--blue-500), var(--blue-400));
            border-radius: 18px;
            transition: width 2.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .thermometer-fill::after {
            content: '';
            position: absolute;
            right: -2px;
            top: 50%;
            left: auto;
            transform: translateY(-50%);
            width: 6px;
            height: 24px;
            background: rgba(255,255,255,0.6);
            border-radius: 3px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .thermometer-track:hover .thermometer-fill::after {
            opacity: 1;
            animation: fillPulse 1.5s ease-in-out infinite;
        }

        @keyframes fillPulse {
            0%, 100% { box-shadow: 0 0 8px rgba(255,255,255,0.3); }
            50% { box-shadow: 0 0 20px rgba(255,255,255,0.6); }
        }

        .thermometer-markers {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1.5rem;
            top: auto;
            width: auto;
            height: 1rem;
        }

        .thermo-mark {
            position: absolute;
            top: 0;
            left: 0;
            bottom: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            font-size: 0.7rem;
            color: var(--gray-400);
            font-weight: 500;
            transform: translateX(-50%);
        }

        .thermo-mark::before {
            content: '';
            width: 1px;
            height: 6px;
            background: var(--gray-400);
        }

        .thermometer-bulb {
            width: 56px;
            height: 56px;
            background: var(--blue-700);
            border-radius: 50%;
            margin-top: 0;
            margin-left: -14px;
            border: 3px solid var(--blue-200);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            flex-shrink: 0;
        }

        .thermometer-bulb svg {
            width: 22px;
            height: 22px;
            fill: white;
            opacity: 0.9;
        }

        /* Growing tree */
        .growing-tree {
            position: absolute;
            left: -70px;
            bottom: 72px;
            width: 50px;
            height: 240px;
        }

        .tree-trunk {
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 6px;
            height: 0;
            background: linear-gradient(to top, #8B6914, #A07B1E);
            transform: translateX(-50%);
            border-radius: 3px;
            transition: height 2s ease-out 0.8s;
        }

        .tree-trunk.grown { height: 70px; }

        .tree-canopy {
            position: absolute;
            bottom: 60px;
            left: 50%;
            width: 44px;
            height: 44px;
            transform: translateX(-50%) scale(0);
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 2s;
        }

        .tree-canopy.grown {
            transform: translateX(-50%) scale(1);
        }

        .tree-canopy circle {
            fill: var(--green-500);
        }

        .tree-canopy .canopy-light {
            fill: var(--green-400);
        }

        .tree-sprout {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.2rem;
            opacity: 0;
            transition: opacity 0.5s ease 3s;
        }

        .tree-sprout.grown { opacity: 1; }

        /* ── Impact Section ── */
        .impact {
            background: var(--white);
        }

        .impact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .impact-header .section-subtitle {
            margin: 0.5rem auto 0;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .impact-card {
            background: var(--white);
            border: 1px solid var(--blue-100);
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }

        .impact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--blue-700);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .impact-card:hover::before {
            transform: scaleX(1);
        }

        .impact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(59, 91, 169, 0.12);
            border-color: var(--blue-200);
        }

        .impact-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
        }

        .impact-card:nth-child(1) .impact-icon { background: #EBF0FF; }
        .impact-card:nth-child(2) .impact-icon { background: #FFF3E0; }
        .impact-card:nth-child(3) .impact-icon { background: #E8F5E9; }
        .impact-card:nth-child(4) .impact-icon { background: #F3E5F5; }

        .impact-card h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--blue-900);
        }

        .impact-card p {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .impact-cost {
            display: inline-block;
            background: var(--blue-50);
            color: var(--blue-700);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 0.35rem 0.8rem;
            border-radius: 100px;
        }

        /* ── Get Involved Section ── */
        .involved {
            background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 50%, var(--blue-600) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .involved::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
        }

        .involved-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .involved-text .section-heading {
            color: var(--white);
        }

        .involved-text .section-subtitle {
            color: rgba(255,255,255,0.7);
        }

        .involved-ways {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .involved-way {
            display: flex;
            align-items: center;
            font-size: 1rem;
            opacity: 0.85;
            margin: 0;
        }

        .involved-way-icon {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
            margin-right: 0.75rem;
        }

        .contact-form {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-lg);
            padding: 2rem;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
            opacity: 0.8;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.06);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: border-color 0.3s, background 0.3s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.35);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--amber-400);
            background: rgba(255,255,255,0.1);
        }

        .form-group textarea {
            height: 100px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            padding: 0.9rem;
            background: var(--amber-500);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: var(--amber-400);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 2rem;
        }

        .form-success.visible {
            display: block;
            animation: fadeInUp 0.5s ease;
        }

        .form-success .check-circle {
            width: 60px;
            height: 60px;
            background: var(--green-500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
        }

        .form-success h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ── Footer ── */
        footer {
            background: var(--blue-900);
            color: rgba(255,255,255,0.6);
            text-align: center;
            padding: 3rem 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-school {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 0.25rem;
        }

        .footer-address {
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .footer-initiative {
            font-size: 0.8rem;
            opacity: 0.5;
            margin-bottom: 1.5rem;
        }

        .footer-credits {
            font-size: 0.8rem;
            opacity: 0.6;
            margin-bottom: 1.5rem;
        }

        .footer-credits a {
            color: inherit;
            text-decoration: underline;
        }

        .footer-bottom {
            font-size: 0.8rem;
            opacity: 0.4;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
        }

        .footer-leaf {
            display: inline-block;
            cursor: pointer;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .footer-leaf:hover {
            transform: rotate(360deg) scale(1.2);
        }

        .footer-leaf svg {
            width: 14px;
            height: 14px;
            fill: rgba(255,255,255,0.4);
            vertical-align: middle;
        }

        .footer-eh {
            opacity: 0;
            transition: opacity 0.5s ease;
            font-style: italic;
        }

        footer:hover .footer-eh {
            opacity: 1;
        }

        /* ── Timeline ── */
        .timeline-section {
            background: var(--blue-50);
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .timeline-header .section-subtitle {
            margin: 0.5rem auto 0;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 1rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--blue-200);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 0 2.5rem 3rem;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            top: 4px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--white);
            border: 3px solid var(--blue-700);
            z-index: 2;
        }

        .timeline-item:nth-child(odd)::after {
            right: -8px;
        }

        .timeline-item:nth-child(even)::after {
            left: -8px;
        }

        .timeline-item.completed::after {
            background: var(--blue-700);
            border-color: var(--blue-700);
        }

        .timeline-item.active::after {
            background: var(--blue-700);
            border-color: var(--blue-700);
            box-shadow: 0 0 0 4px rgba(59, 91, 169, 0.2);
        }

        .timeline-date {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--blue-700);
            margin-bottom: 0.35rem;
        }

        .timeline-title {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--blue-900);
            line-height: 1.3;
        }

        .timeline-desc {
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.6;
            margin-top: 0.3rem;
        }

        @media (max-width: 600px) {
            .timeline::before {
                left: 16px;
            }

            .timeline-item,
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                width: 100%;
                left: 0;
                text-align: left;
                padding-left: 3rem;
                padding-right: 0;
            }

            .timeline-item:nth-child(odd)::after,
            .timeline-item:nth-child(even)::after {
                left: 9px;
                right: auto;
            }
        }

        /* ── Confetti Canvas ── */
        #confetti-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
        }

        /* ── Photo Gallery ── */
        .gallery {
            background: var(--white);
            overflow: hidden;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .gallery-header .section-subtitle {
            margin: 0.5rem auto 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--blue-50);
            aspect-ratio: 4 / 3;
            cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 32px rgba(59, 91, 169, 0.15);
        }

        .gallery-item.featured {
            grid-column: span 2;
            grid-row: span 2;
            aspect-ratio: auto;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
            border: 2px dashed var(--blue-200);
            border-radius: var(--radius-md);
        }

        .gallery-placeholder svg {
            width: 32px;
            height: 32px;
            stroke: var(--blue-400);
            fill: none;
        }

        .gallery-placeholder span {
            font-size: 0.8rem;
            color: var(--blue-400);
            font-weight: 500;
        }

        .gallery-grid-bottom {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem 1.25rem 1rem;
            background: linear-gradient(to top, rgba(28, 45, 92, 0.8), transparent);
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 500;
            opacity: 0;
            transform: translateY(4px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-stats {
                order: -1;
            }

            .progress-layout {
                flex-direction: column;
                text-align: center;
            }

            .impact-grid {
                grid-template-columns: 1fr;
            }

            .involved-layout {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .growing-tree {
                display: none;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }

            .gallery-item.featured {
                grid-column: span 2;
                grid-row: span 1;
                aspect-ratio: 16 / 9;
            }
        }

        @media (max-width: 600px) {
            .section-inner {
                padding: 4rem 1.25rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            nav {
                padding: 0.8rem 1.25rem;
            }

            .nav-donate {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .nav-brand {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: auto;
                justify-content: center;
                padding: 0.85rem 1.5rem;
                font-size: 0.95rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-item.featured {
                grid-column: span 1;
            }
        }

        /* ── Reduced Motion ── */
        @media (prefers-reduced-motion: reduce) {
            #site-background { animation: none !important; }
            .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
            .thermometer-fill { transition-duration: 0.01s !important; }
            .tree-trunk, .tree-canopy { transition-duration: 0.01s !important; }
            .scroll-hint { animation: none !important; }
            html { scroll-behavior: auto; }
        }

        /* ── Block editor button overrides ──
           In the block editor, each button is wrapped in .wp-block-button
           with an inner .wp-block-button__link. Neutralise the wrapper's
           default pill styling and re-apply the btn-primary/btn-secondary
           look to the inner link so there's only one visible pill. */
        .wp-block-button.btn-primary,
        .wp-block-button.btn-secondary {
            background: transparent !important;
            border: none !important;
            padding: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            transform: none !important;
        }

        .btn-primary > .wp-block-button__link,
        .btn-secondary > .wp-block-button__link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            line-height: 1;
        }

        .btn-primary > .wp-block-button__link {
            background: var(--blue-700);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            font-weight: 700;
        }

        .btn-primary > .wp-block-button__link:hover {
            background: var(--blue-600);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(59, 91, 169, 0.4);
        }

        .btn-secondary > .wp-block-button__link {
            background: rgba(255,255,255,0.12);
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.25);
            padding: 0.9rem 1.8rem;
            font-weight: 600;
        }

        .btn-secondary > .wp-block-button__link:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-2px);
        }

        /* ── Page hero (compact interior-page banner) ── */
        .hero-page {
            min-height: auto;
            padding: 10rem 2rem 4rem;
        }

        .hero-page .hero-page-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 5vw, 3.4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--white);
            margin: 0 0 1rem;
        }

        .hero-page .hero-page-tagline {
            font-size: clamp(1rem, 2vw, 1.15rem);
            line-height: 1.7;
            opacity: 0.8;
            color: var(--white);
            margin: 0;
            max-width: 560px;
        }

        /* ── Page content area ── */
        .page-content {
            background: var(--white);
            position: relative;
            z-index: 1;
            padding: 4rem 2rem;
        }

        .page-content .wp-block-post-content {
            max-width: 900px;
            margin: 0 auto;
        }

        /* ── About image above stat cards ── */
        .about-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ── About stat cards: equal size regardless of content length ── */
        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
            align-items: stretch;
        }

        .stat-card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            gap: 0.4rem;
        }

        .stat-card .stat-number,
        .stat-card .stat-label {
            margin: 0;
        }

        /* ── Readable links on dark "Get Involved" section ── */
        .involved a,
        .involved .contact-form a {
            color: #FFFFFF;
            text-decoration: underline;
            text-decoration-color: rgba(255, 255, 255, 0.5);
            text-underline-offset: 3px;
            transition: text-decoration-color 0.2s ease;
        }

        .involved a:hover {
            text-decoration-color: #FFFFFF;
        }

        /* ── Impact cards: equal heights across the 2-column grid ── */
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            align-items: stretch;
        }

        .impact-grid > * {
            margin-top: 0 !important;
            margin-block-start: 0 !important;
        }

        .impact-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            gap: 0;
        }

        .impact-card > * {
            margin-top: 0 !important;
            margin-bottom: 0 !important;
        }

        .impact-card > .impact-icon {
            margin-bottom: 1.2rem !important;
        }

        .impact-card > h3,
        .impact-card > .wp-block-heading {
            margin-bottom: 0.5rem !important;
        }

        /* ── Centered section subtitles (progress, impact, timeline) ── */
        .progress-section .section-subtitle,
        .impact-header .section-subtitle,
        .timeline-header .section-subtitle,
        .gallery-header .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        .progress-section > .section-inner > :first-child {
            text-align: center;
        }

        .progress-section .section-heading {
            text-align: center;
        }
