/* Make scroll arrow yellow */
.scroll-arrow svg {
    stroke: #F9A826;
}
/* ============================================
   THE LITTLE PICKERS — Global Styles
   Cleaning up the world, one street at a time
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colours */
    --green-dark: #1a6b3c;
    --green: #2D8B4E;
    --green-light: #4CAF50;
    --green-pale: #e8f5e9;
    --green-glow: rgba(45, 139, 78, 0.15);

    --yellow: #F9A826;
    --yellow-light: #FFF3D4;
    --yellow-dark: #E08E00;

    --blue: #2196F3;
    --blue-light: #E3F2FD;
    --sky: #87CEEB;

    --earth: #8B6914;
    --earth-light: #F5E6C8;

    --white: #ffffff;
    --off-white: #FAFDF7;
    --light-bg: #F4F9F0;
    --gray-50: #f8f9fa;
    --gray-100: #f0f0f0;
    --gray-200: #e0e0e0;
    --gray-300: #bdbdbd;
    --gray-400: #9e9e9e;
    --gray-600: #616161;
    --gray-700: #424242;
    --gray-800: #2d2d2d;
    --gray-900: #1a1a1a;
    --dark: #0f1f0f;

    --red: #e74c3c;
    --red-light: #fdecea;

    /* Typography */
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;

    /* Sizing */
    --nav-height: 80px;
    --container-max: 1200px;
    --container-wide: 1400px;
    --section-padding: clamp(60px, 10vw, 120px);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-normal: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.12);
    --shadow-green: 0 4px 20px rgba(45, 139, 78, 0.2);
    --shadow-yellow: 0 4px 20px rgba(249, 168, 38, 0.25);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 20px);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--off-white);
    overflow-x: hidden;
    cursor: none;
}

/* Restore cursor on mobile / touch */
@media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .custom-cursor, .cursor-trail { display: none !important; }
}

a, button, input, textarea, select {
    cursor: none;
}

@media (hover: none) and (pointer: coarse) {
    a, button, input, textarea, select { cursor: auto; }
}

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

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--green-dark);
}

::selection {
    background: var(--green);
    color: var(--white);
}

/* ---------- Custom Cursor ---------- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, opacity 0.2s ease;
    mix-blend-mode: normal;
    opacity: 0;
}

.custom-cursor.visible {
    opacity: 1;
}

.custom-cursor.hovering {
    transform: translate(-50%, -50%) scale(1.4) rotate(20deg);
}

.custom-cursor svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

.trail-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-pale);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--green);
    position: relative;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 70px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 139, 78, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--white);
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-secondary:hover {
    background: var(--green-pale);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn svg {
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ---------- Section Base ---------- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ---------- Scroll Animation ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition-normal);
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    height: 68px;
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green);
    transition: color var(--transition-fast);
}

.main-nav:not(.scrolled) .logo-text {
    color: var(--green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.main-nav:not(.scrolled) .nav-links a {
    color: var(--gray-700);
}

.main-nav:not(.scrolled) .nav-links a:hover {
    color: var(--green);
    background: var(--green-pale);
    margin-bottom: 24px;
}

.gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.gallery-item.placeholder-card,
.gallery-item.upload-card {
    flex: 0 1 220px;
    margin-bottom: 0;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.gallery-item.placeholder-card:hover,
.gallery-item.upload-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green);
    background: var(--green-pale);
}

/* Lightbox styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.gallery-lightbox.active {
    display: flex;
}
.gallery-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox-img {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}
.gallery-lightbox-caption {
    color: var(--white);
    margin-top: 18px;
    font-size: 1.1rem;
    text-align: center;
}
.gallery-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--white);
    background: rgba(0,0,0,0.2);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: background 0.2s;
}
.gallery-lightbox-arrow:hover {
    background: var(--green);
}
.gallery-lightbox-arrow.left { left: -60px; }
.gallery-lightbox-arrow.right { right: -60px; }
.gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.main-nav.scrolled .nav-links a {
    color: var(--gray-700);
}

.main-nav.scrolled .nav-links a:hover {
    color: var(--green);
    background: var(--green-pale);
}

.nav-cta {
    background: var(--yellow) !important;
    color: var(--gray-900) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
}

.nav-cta:hover {
    background: var(--yellow-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--green);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.main-nav:not(.scrolled) .nav-toggle span {
    background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-normal);
        z-index: 2000;
        box-shadow: none;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        z-index: 2000;
    }

    .nav-toggle {
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 2101;
        background: rgba(255, 255, 255, 0.92) !important;
        border-radius: 10px;
        padding: 10px 12px;
        pointer-events: all;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        cursor: pointer;
    }
    /* Force bars green on mobile — always contrasts with white pill background */
    .nav-toggle span.hamburger {
        display: block;
        background: #2D8B4E !important;
    }
    .main-nav:not(.scrolled) .nav-toggle span.hamburger {
        background: #2D8B4E !important;
    }
    .nav-toggle.active .hamburger {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    .nav-close {
        display: none;
        cursor: pointer;
        z-index: 2102;
    }
    .nav-toggle.active .nav-close {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links a {
        color: var(--gray-800) !important;
        font-size: 1.3rem !important;
        padding: 12px 28px !important;
    }

    .nav-links a:hover {
        background: var(--green-pale) !important;
        color: var(--green) !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0f3d1b 0%, #1a6b3c 30%, #2D8B4E 60%, #3aa65e 100%);
    padding: calc(var(--nav-height) + 20px) 20px 40px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(249, 168, 38, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 180px;
    background: var(--off-white);
    clip-path: ellipse(100% 100% at 50% 100%);
}

/* Floating Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.25;
    animation: floatLeaf 20s infinite ease-in-out;
}

.leaf-1 { top: 10%; left: 5%; animation-delay: 0s; animation-duration: 22s; font-size: 2.5rem; }
.leaf-2 { top: 20%; right: 10%; animation-delay: -3s; animation-duration: 18s; }
.leaf-3 { top: 60%; left: 8%; animation-delay: -7s; animation-duration: 25s; }
.leaf-4 { top: 15%; left: 40%; animation-delay: -5s; animation-duration: 20s; font-size: 1.5rem; }
.leaf-5 { top: 70%; right: 15%; animation-delay: -10s; animation-duration: 28s; font-size: 3rem; }
.leaf-6 { bottom: 20%; left: 25%; animation-delay: -2s; animation-duration: 23s; }
.leaf-7 { top: 40%; right: 5%; animation-delay: -8s; animation-duration: 19s; font-size: 1.8rem; }
.leaf-8 { bottom: 30%; right: 30%; animation-delay: -12s; animation-duration: 24s; }

@keyframes floatLeaf {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(10deg); }
    50% { transform: translate(-15px, -50px) rotate(-5deg); }
    75% { transform: translate(25px, -20px) rotate(8deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-badge span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line:first-child {
    font-size: 0.5em;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.title-highlight {
    background: linear-gradient(135deg, var(--yellow), #FFD700, var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(249, 168, 38, 0.3));
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-subtitle em {
    font-style: italic;
    color: var(--yellow);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-actions .btn-primary {
    background: var(--yellow);
    color: var(--gray-900);
    box-shadow: var(--shadow-yellow);
    font-size: 1.05rem;
    padding: 16px 36px;
}

.hero-actions .btn-primary:hover {
    background: #FFD700;
    box-shadow: 0 8px 30px rgba(249, 168, 38, 0.4);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.stat-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
    font-style: italic;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

 .scroll-arrow {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(18px); opacity: 1; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--off-white);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

@media (max-width: 900px) {
    .section-grid {
        grid-template-columns: 1fr;
    }
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--gray-700);
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
}

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

.about-quote {
    background: var(--green-pale);
    border-left: 4px solid var(--green);
    padding: 24px 28px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 28px;
}

.about-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--green-dark);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.about-quote cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--green);
    font-weight: 700;
}

/* About Visual / Scene */
.about-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.nature-scene {
    position: relative;
    background: linear-gradient(180deg, #87CEEB 0%, #87CEEB 55%, #4CAF50 55%, #2D8B4E 100%);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scene-element {
    position: absolute;
    font-size: 2.5rem;
    animation: gentleBob 4s infinite ease-in-out;
}

.sun {
    top: 20px;
    right: 30px;
    font-size: 3.5rem;
    animation: rotateSun 20s infinite linear;
}

@keyframes rotateSun {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cloud-1 {
    top: 40px;
    left: 20px;
    font-size: 3rem;
    animation: driftCloud 15s infinite ease-in-out;
}

.cloud-2 {
    top: 80px;
    left: 55%;
    font-size: 2rem;
    animation: driftCloud 20s infinite ease-in-out reverse;
}

@keyframes driftCloud {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(40px); }
}

.tree-1 { bottom: 40px; left: 20px; font-size: 3.5rem; }
.tree-2 { bottom: 40px; right: 25px; font-size: 3rem; }

.child {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
    animation: gentleBob 3s infinite ease-in-out;
}

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

.child {
    animation: gentleBobChild 3s infinite ease-in-out;
}

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

.scene-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.scene-text span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
}

.scene-text span:first-child {
    font-size: 1.5rem;
    opacity: 0.9;
}

.scene-text span:last-child {
    font-size: 2.2rem;
}

/* About Badges */
.about-badges {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-700);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 240px;
    max-width: 340px;
    text-align: center;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.step-card:hover {
    background: var(--green-pale);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.step-card:hover .step-number {
    color: var(--green);
    opacity: 0.3;
}

.step-icon {
    color: var(--green);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 60px;
}

@media (max-width: 900px) {
    .step-connector {
        display: none;
    }
    .steps-grid {
        gap: 16px;
    }
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact {
    background: var(--light-bg);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

.impact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-pale);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.impact-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.impact-goal {
    background: var(--green-pale);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-block;
}

.goal-label {
    font-weight: 700;
    color: var(--green);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.goal-value {
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 4px;
}

/* Impact Banner */
.impact-banner {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    color: var(--white);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.banner-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.banner-text h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

@media (max-width: 600px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   WHY IT MATTERS
   ============================================ */
.why-it-matters {
    background: var(--white);
}

.matters-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

@media (max-width: 900px) {
    .matters-grid {
        grid-template-columns: 1fr;
    }
}

.matters-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.matter-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.matter-item:hover {
    background: var(--green-pale);
}

.matter-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.matter-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.matter-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Earth Animation */
.earth-animation {
    text-align: center;
}

.earth {
    position: relative;
    display: inline-block;
}

.earth-emoji {
    font-size: clamp(8rem, 15vw, 12rem);
    animation: earthPulse 4s infinite ease-in-out;
}

@keyframes earthPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleFloat 3s infinite ease-in-out;
}

.sparkle-1 { top: 0; left: -20px; animation-delay: 0s; }
.sparkle-2 { top: -10px; right: -15px; animation-delay: 0.5s; }
.sparkle-3 { bottom: 20px; left: -25px; animation-delay: 1s; }
.sparkle-4 { top: 30%; right: -30px; animation-delay: 1.5s; }
.sparkle-5 { bottom: 0; right: 0; animation-delay: 2s; }

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-12px) scale(1.2); opacity: 1; }
}

.earth-caption {
    margin-top: 24px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gray-600);
}

.earth-caption strong {
    color: var(--green);
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events {
    background: var(--light-bg);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}

@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.event-featured {
    border: 2px solid var(--yellow);
    background: linear-gradient(180deg, var(--yellow-light) 0%, var(--white) 40%);
}

.event-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--yellow);
    color: var(--gray-900);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.event-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.event-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.event-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.detail-icon {
    font-size: 1.1rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--white);
}

.gallery-placeholder {
    text-align: center;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 700px) {
    .placeholder-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.placeholder-card {
    background: var(--light-bg);
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-md);
    padding: 40px 20px;
    transition: all var(--transition-normal);
}

.placeholder-card:hover {
    border-color: var(--green);
    background: var(--green-pale);
    transform: translateY(-3px);
}

.placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.placeholder-card p {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.placeholder-message {
    font-size: 1.1rem;
    color: var(--gray-400);
    font-style: italic;
}

/* ============================================
   JOIN SECTION
   ============================================ */
.join {
    background: var(--light-bg);
}

.join-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: flex-start;
}

@media (max-width: 900px) {
    .join-wrapper {
        grid-template-columns: 1fr;
    }
}

.join-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

.join-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.join-option {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.join-option:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.join-option-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.join-option h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.join-option p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Join Form */
.join-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.join-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--yellow), var(--green));
}

.join-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.join-form-card > p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    transition: all var(--transition-fast);
    outline: none;
    color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--green-glow);
}

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

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s var(--ease-out);
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-600);
}

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

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
    background: var(--green);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gray-300);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 10px;
}

.footer-links-group a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--green-light);
}

.footer-links-group span {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-mission {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--green) !important;
    margin-top: 6px;
    font-size: 0.9rem !important;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 500px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

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

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
    .custom-cursor, .cursor-trail { display: none !important; }
}

/* ============================================
   HOMEPAGE GALLERY FEED
   ============================================ */
.hp-gallery-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hp-quick-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-pale);
    border: 2px solid var(--green-light);
    border-radius: 50px;
    padding: 11px 22px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--green-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.hp-quick-card:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.hp-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.hp-feed-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
    background: var(--light-bg);
}
.hp-feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}
.hp-feed-item:hover img { transform: scale(1.06); }
.hp-feed-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-400);
    font-style: italic;
    font-family: var(--font-body);
}
.hp-feed-empty a { color: var(--green); }
.hp-feed-cta {
    text-align: center;
    margin-top: 8px;
}
.hp-feed-cta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.hp-feed-cta a:hover { color: var(--green-dark); }
