﻿ * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --forest: #1a472a;
            --forest-light: #2d5a3d;
            --moss: #4a7c59;
            --sage: #87a878;
            --cream: #faf8f5;
            --warm-white: #fffef9;
            --gold: #d4a853;
            --gold-light: #e8c97a;
            --terracotta: #c17f59;
            --text-dark: #2c2c2c;
            --text-muted: #5a5a5a;
            --font-display: 'Playfair Display', serif;
            --gradient-forest: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
            --gradient-accent: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
            --radius-pill: 50px;
            --glow-gold: rgba(212, 168, 83, 0.35);
            --glow-forest: rgba(26, 71, 42, 0.22);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--cream);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            background: rgba(255, 254, 249, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(26, 71, 42, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--forest);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
            border-radius: 50%;
            font-size: 1.3rem;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.2rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(26, 71, 42, 0.2);
            border-radius: 10px;
            background: white;
            color: var(--forest);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            gap: 4px;
            flex-direction: column;
        }

        .nav-toggle span {
            width: 18px;
            height: 2px;
            border-radius: 2px;
            background: currentColor;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .skip-link {
            position: absolute;
            left: 50%;
            top: -60px;
            transform: translateX(-50%);
            z-index: 10000;
            padding: 10px 18px;
            border-radius: 999px;
            background: var(--forest);
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: top 0.25s ease;
        }

        .skip-link:focus,
        .skip-link:focus-visible {
            top: 16px;
            outline: 3px solid var(--gold);
            outline-offset: 2px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--forest);
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.2rem 0.45rem;
            border-radius: 999px;
            background: rgba(26, 71, 42, 0.08);
        }

        .lang-switch a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 30px;
            height: 28px;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            color: var(--forest);
        }

        .lang-switch a[aria-current="page"] {
            background: var(--forest);
            color: #fff;
        }

        .nav-cta {
            background: var(--gradient-accent);
            color: white !important;
            padding: 0.6rem 1.2rem;
            border-radius: var(--radius-pill);
            font-weight: 600;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 2rem 80px;
            background: linear-gradient(135deg, var(--cream) 0%, #f0ebe3 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(135, 168, 120, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(26, 71, 42, 0.1);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-pill);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--forest);
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 480px;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--gradient-forest);
            color: white;
            box-shadow: 0 4px 20px rgba(26, 71, 42, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(26, 71, 42, 0.4);
        }

        .btn-primary.is-pressed,
        .nav-cta.is-pressed {
            transform: scale(0.98);
            transition-duration: 120ms;
        }

        .btn-secondary {
            background: transparent;
            color: var(--forest);
            border: 2px solid var(--forest);
        }

        .btn-secondary:hover {
            background: var(--forest);
            color: white;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(26, 71, 42, 0.2);
        }

        .hero-stats {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0;
            background: white;
            padding: 1.2rem 2rem;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(26, 71, 42, 0.08);
        }

        .stat {
            text-align: center;
            padding: 0 1.5rem;
            border-right: 1px solid #eee;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat:last-child {
            border-right: none;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--forest);
            line-height: 1.05;
            min-height: 3.3rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .stat-number[data-count] {
            font-size: 2.3rem;
            letter-spacing: 0.3px;
            display: inline-block;
            padding: 0.08rem 0.45rem 0.16rem;
            border-radius: 999px;
            background: linear-gradient(180deg, rgba(232, 201, 122, 0.26) 0%, rgba(232, 201, 122, 0.1) 100%);
            box-shadow: inset 0 0 0 1px rgba(212, 168, 83, 0.22), 0 6px 14px rgba(212, 168, 83, 0.16);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
        }

        .stat-number--love {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 3.3rem;
            min-height: 3.3rem;
        }

        .stat-love-icon {
            width: 56px;
            height: 56px;
            filter: drop-shadow(0 7px 14px rgba(55, 178, 111, 0.28));
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 600;
            margin-top: 0.4rem;
            line-height: 1.2;
            white-space: nowrap;
        }

        /* Sections Common */
        section {
            padding: 100px 2rem;
            scroll-margin-top: 110px;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            line-height: 1.1;
            color: var(--gold);
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 10px;
        }

        .section-label::after {
            content: "";
            display: block;
            width: 42px;
            height: 2px;
            margin: 8px auto 0;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--gold) 0%, rgba(212, 168, 83, 0) 100%);
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.15rem;
        }

        /* Mission */
        .mission {
            background: linear-gradient(180deg, var(--cream) 0%, white 100%);
        }

        /* Impact */
        .impact-now {
            background: linear-gradient(180deg, #f7f4ef 0%, var(--warm-white) 100%);
        }

        .impact-grid {
            max-width: 1100px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            margin: 0 auto;
        }

        .impact-card {
            background: white;
            border-radius: 18px;
            padding: 1.4rem;
            border: 1px solid rgba(26, 71, 42, 0.1);
            box-shadow: 0 8px 26px rgba(26, 71, 42, 0.08);
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        }

        .impact-card:hover {
            transform: translate3d(0, -6px, 0);
            box-shadow: 0 14px 34px rgba(26, 71, 42, 0.12);
            border-color: rgba(212, 168, 83, 0.35);
        }

        .impact-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(26, 71, 42, 0.12) 0%, rgba(212, 168, 83, 0.2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .impact-card h3 {
            color: var(--forest);
            margin-bottom: 0.35rem;
            font-size: 1.1rem;
        }

        .impact-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--forest);
            line-height: 1.1;
            margin-bottom: 0.35rem;
        }

        .impact-note {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .stat-number[data-count],
        .impact-value[data-count],
        .urgent-raised[data-count],
        .urgent-missing[data-count] {
            position: relative;
            display: inline-block;
        }

        .stat-number[data-count]::after,
        .impact-value[data-count]::after,
        .urgent-raised[data-count]::after,
        .urgent-missing[data-count]::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(212, 168, 83, 0.14) 30%,
                rgba(212, 168, 83, 0.96) 50%,
                rgba(212, 168, 83, 0.14) 70%,
                transparent 100%
            );
            opacity: 0;
            transform: translate3d(-120%, 0, 0);
            transform-origin: 50% 50%;
            will-change: transform, opacity;
            pointer-events: none;
        }

        .hero .stat-number[data-count]::after {
            width: 76px;
            left: 50%;
            margin-left: -38px;
            transform: translateX(-50%) translateX(-120%);
        }

        .rr-sweep::after {
            opacity: 1;
            animation: rrGoldSweepLong 900ms cubic-bezier(0.22, 1, 0.36, 1);
        }

        .hero .stat-number[data-count].rr-sweep::after {
            animation: rrGoldSweepLongCentered 900ms cubic-bezier(0.22, 1, 0.36, 1);
        }

        @keyframes rrGoldSweepLong {
            0% {
                opacity: 0;
                transform: translate3d(-120%, 0, 0) scaleY(1);
            }
            12% {
                opacity: 1;
            }
            50% {
                opacity: 1;
                transform: translate3d(0%, 0, 0) scaleY(1.55);
            }
            70% {
                opacity: 1;
                transform: translate3d(120%, 0, 0) scaleY(1);
            }
            100% {
                opacity: 0;
                transform: translate3d(120%, 0, 0) scaleY(1);
            }
        }

        @keyframes rrGoldSweepLongCentered {
            0% {
                opacity: 0;
                transform: translateX(-50%) translateX(-120%) scaleY(1);
            }
            12% {
                opacity: 1;
            }
            50% {
                opacity: 1;
                transform: translateX(-50%) translateX(0%) scaleY(1.55);
            }
            70% {
                opacity: 1;
                transform: translateX(-50%) translateX(120%) scaleY(1);
            }
            100% {
                opacity: 0;
                transform: translateX(-50%) translateX(120%) scaleY(1);
            }
        }

        .impact-glow {
            display: inline-block;
            animation: rrImpactGlow 720ms cubic-bezier(0.22, 1, 0.36, 1);
        }

        .stat-number[data-count].impact-glow {
            animation: rrImpactGlowPill 720ms cubic-bezier(0.22, 1, 0.36, 1);
        }

        @keyframes rrImpactGlow {
            0% {
                transform: scale(1);
                text-shadow: 0 0 0 rgba(212, 168, 83, 0);
                opacity: 1;
            }
            55% {
                transform: scale(1.015);
                text-shadow:
                    0 0 10px var(--glow-gold),
                    0 0 18px var(--glow-forest);
                opacity: 1;
            }
            100% {
                transform: scale(1);
                text-shadow: 0 0 0 rgba(212, 168, 83, 0);
                opacity: 1;
            }
        }

        @keyframes rrImpactGlowPill {
            0% {
                transform: scale(1);
                box-shadow: inset 0 0 0 1px rgba(212, 168, 83, 0.22), 0 6px 14px rgba(212, 168, 83, 0.16);
                text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
            }
            52% {
                transform: scale(1.018);
                box-shadow: inset 0 0 0 1px var(--glow-gold), 0 10px 24px var(--glow-gold);
                text-shadow: 0 0 12px var(--glow-forest);
            }
            100% {
                transform: scale(1);
                box-shadow: inset 0 0 0 1px rgba(212, 168, 83, 0.22), 0 6px 14px rgba(212, 168, 83, 0.16);
                text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
            }
        }

        .mission-grid {
            max-width: 1200px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .mission-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(26, 71, 42, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-top-color 0.4s ease;
            border-top: 4px solid transparent;
        }

        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(26, 71, 42, 0.15);
            border-top-color: var(--gold);
        }

        .mission-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(74, 124, 89, 0.15) 100%);
            border-radius: 18px;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .mission-card h3 {
            font-size: 1.4rem;
            color: var(--forest);
            margin-bottom: 1rem;
        }

        /* Donation */
        .donation {
            background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
            color: white;
        }

        .donation .section-label {
            color: var(--gold-light);
        }

        .donation .section-title,
        .donation .section-subtitle {
            color: white;
        }

        .donation .section-subtitle {
            opacity: 0.9;
        }

        .donation-grid {
            max-width: 1000px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .donation-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
        }

        .donation-card.featured {
            grid-column: span 2;
            background: white;
            color: var(--text-dark);
        }

        .donation-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .donation-card.featured h3 {
            color: var(--forest);
        }

        .donation-card > p {
            opacity: 0.85;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .detail-row {
            display: flex;
            align-items: center;
            padding: 0.9rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin-bottom: 0.6rem;
            gap: 1rem;
        }

        .donation-card.featured .detail-row {
            background: rgba(26, 71, 42, 0.06);
        }

        .detail-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            min-width: 80px;
        }

        .detail-value {
            font-weight: 600;
            flex: 1;
            word-break: break-all;
        }

        .copy-btn {
            padding: 0.4rem 0.8rem;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 6px;
            color: inherit;
            font-size: 0.75rem;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
            white-space: nowrap;
        }

        .donation-card.featured .copy-btn {
            background: var(--forest);
            color: white;
        }

        .copy-btn:hover {
            opacity: 0.8;
        }

        .btn:focus-visible,
        .nav-links a:focus-visible,
        .copy-btn:focus-visible,
        .nav-toggle:focus-visible,
        .social-links a:focus-visible,
        .contact-item a:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 3px;
        }

        .donation-card .btn {
            width: 100%;
            justify-content: center;
            margin-top: 1rem;
        }

        /* GPM Section */
        .gpm {
            background: var(--warm-white);
        }

        /* Urgent */
        .urgent {
            background: linear-gradient(135deg, #fff6ee 0%, #fffef9 100%);
            padding-top: 70px;
            padding-bottom: 70px;
        }

        .urgent-card {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            border: 1px solid rgba(193, 127, 89, 0.25);
            box-shadow: 0 18px 46px rgba(193, 127, 89, 0.16);
            padding: 2rem;
            display: grid;
            gap: 1.2rem;
        }

        .urgent-head h2 {
            color: var(--forest);
            font-size: 2rem;
            margin-bottom: 0.4rem;
            font-family: var(--font-display);
        }

        .urgent-head p {
            color: var(--text-muted);
        }

        .urgent-progress-track {
            height: 14px;
            border-radius: 999px;
            background: rgba(26, 71, 42, 0.12);
            overflow: hidden;
        }

        .urgent-progress-fill {
            width: 0;
            height: 100%;
            border-radius: inherit;
            background: var(--gradient-accent);
            transition: width 1s cubic-bezier(0.2, 1, 0.3, 1);
        }

        .urgent-progress-meta {
            margin-top: 1rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.8rem;
        }

        .urgent-kicker {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 0.15rem;
        }

        .urgent-progress-meta strong {
            color: var(--forest);
            font-size: 1.05rem;
        }

        .gpm-wrapper {
            max-width: 1000px;
        }

        .gpm-card {
            background: linear-gradient(135deg, #fffbeb 0%, #fff7d6 100%);
            border-radius: 28px;
            padding: 3.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(212, 168, 83, 0.2);
        }

        .gpm-card::before {
            content: '1,2%';
            position: absolute;
            top: -30px;
            right: -30px;
            font-size: 12rem;
            font-weight: 800;
            color: rgba(212, 168, 83, 0.12);
            line-height: 1;
            pointer-events: none;
        }

        .gpm-text {
            position: relative;
            z-index: 2;
        }

        .gpm-text h2 {
            font-size: 2.2rem;
            color: var(--forest);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .gpm-text > p {
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }

        .gpm-highlight {
            background: white;
            padding: 1.5rem;
            border-radius: 14px;
            border-left: 4px solid var(--gold);
        }

        .gpm-highlight strong {
            display: block;
            color: var(--forest);
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .gpm-steps {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .gpm-steps h3 {
            font-size: 1.2rem;
            color: var(--forest);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .step {
            display: flex;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }

        .step:last-of-type {
            border-bottom: none;
        }

        .step-num {
            width: 32px;
            height: 32px;
            background: var(--gradient-accent);
            border-radius: 50%;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .step-content h4 {
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 0.2rem;
            font-size: 0.95rem;
        }

        .step-content p {
            font-size: 0.85rem;
        }

        .gpm-cta {
            text-align: center;
            margin-top: 1.5rem;
        }

        .gpm-cta a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient-accent);
            color: white;
            padding: 0.9rem 1.8rem;
            border-radius: var(--radius-pill);
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background-color 0.3s ease;
        }

        .gpm-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212, 168, 83, 0.5);
        }

        /* Contact */
        .contact {
            background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
        }

        .contact-grid {
            max-width: 1000px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.3rem;
            background: white;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }

        .contact-item:hover {
            transform: translate3d(0, -6px, 0);
            box-shadow: 0 8px 30px rgba(26, 71, 42, 0.1);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(74, 124, 89, 0.15) 100%);
            border-radius: 12px;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 0.2rem;
            font-size: 0.95rem;
        }

        .contact-item p,
        .contact-item a {
            text-decoration: none;
            font-size: 0.95rem;
        }

        .contact-item a:hover {
            color: var(--forest);
        }

        .contact-map {
            position: relative;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 18px 45px rgba(26, 71, 42, 0.14);
            border: 1px solid rgba(26, 71, 42, 0.12);
            align-self: start;
            aspect-ratio: 5 / 4;
            min-height: 360px;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: saturate(0.9) contrast(0.96) brightness(0.98);
            transition: filter 0.3s ease;
        }

        .contact-map:hover iframe {
            filter: none;
        }

        .contact-map::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 34%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 254, 249, 0.92) 90%);
            pointer-events: none;
        }

        .contact-map-caption {
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 12px;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(255, 254, 249, 0.92);
            border: 1px solid rgba(26, 71, 42, 0.12);
            backdrop-filter: blur(8px);
            color: var(--forest);
            font-size: 0.85rem;
        }

        .contact-map-caption a {
            color: var(--forest);
            text-decoration: none;
            font-weight: 600;
            white-space: nowrap;
        }

        .contact-map-caption a:hover {
            text-decoration: underline;
        }

        /* Animals noscript message (cards are styled in the dedicated ANIMALS block below) */
        .animals-noscript {
            margin: 1rem auto 0;
            max-width: 760px;
            text-align: center;
            color: var(--text-muted);
        }

        .animals-noscript a {
            color: var(--forest);
            font-weight: 600;
        }

        /* Mobile sticky donate */
        .sticky-donate {
            position: fixed;
            left: 10px;
            right: 10px;
            bottom: 10px;
            z-index: 2100;
            display: none;
            gap: 0.6rem;
            padding: 0.55rem;
            border-radius: 14px;
            background: rgba(255, 254, 249, 0.86);
            border: 1px solid rgba(26, 71, 42, 0.16);
            box-shadow: 0 16px 40px rgba(26, 71, 42, 0.2);
            backdrop-filter: blur(10px);
        }

        .sticky-donate .btn {
            flex: 1;
            justify-content: center;
            padding: 0.85rem 1rem;
            font-size: 0.92rem;
        }

        /* Donate click micro flash */
        .donate-cta {
            isolation: isolate;
        }

        .donate-cta::before {
            content: "";
            position: absolute;
            inset: -8px;
            border-radius: inherit;
            background: radial-gradient(circle, rgba(212, 168, 83, 0.28) 0%, rgba(212, 168, 83, 0) 70%);
            opacity: 0;
            transform: scale(0.85);
            pointer-events: none;
            z-index: -1;
        }

        .donate-cta.impact-flash::before {
            animation: rr-impactFlash 260ms ease-out;
        }

        .donate-cta.heartbeat {
            animation: rrDonateHeartbeat 1.1s ease-in-out;
        }

        .donate-cta.impact-pulse,
        .nav-cta.impact-pulse,
        .btn.btn-primary[href="#parama"].impact-pulse {
            animation: impactPulse 850ms cubic-bezier(0.22, 1, 0.36, 1);
        }

        .hero-container {
            overflow: visible;
        }

        .hero-container::after {
            content: "";
            position: absolute;
            inset: -14px;
            border-radius: 28px;
            pointer-events: none;
            background: radial-gradient(circle at 30% 45%, rgba(212, 168, 83, 0.16), rgba(212, 168, 83, 0) 62%);
            opacity: 0;
            transition: opacity 0.26s ease;
        }

        .hero-container.has-impact-flash::after {
            opacity: 1;
        }

        @keyframes rr-impactFlash {
            from {
                opacity: 0.85;
                transform: scale(0.9);
            }
            to {
                opacity: 0;
                transform: scale(1.04);
            }
        }

        @keyframes rrDonateHeartbeat {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 20px rgba(26, 71, 42, 0.3);
            }
            28% {
                transform: scale(1.035);
                box-shadow: 0 8px 26px rgba(212, 168, 83, 0.35);
            }
            56% {
                transform: scale(1);
                box-shadow: 0 4px 20px rgba(26, 71, 42, 0.3);
            }
            78% {
                transform: scale(1.02);
                box-shadow: 0 6px 24px rgba(212, 168, 83, 0.28);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 20px rgba(26, 71, 42, 0.3);
            }
        }

        @keyframes impactPulse {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 20px rgba(26, 71, 42, 0.3);
            }
            45% {
                transform: scale(1.03);
                box-shadow: 0 9px 28px rgba(212, 168, 83, 0.34);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 20px rgba(26, 71, 42, 0.3);
            }
        }

        /* Footer */
        footer {
            background: var(--forest);
            color: white;
            padding: 4rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1000px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            max-width: 280px;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gold);
        }

        .footer-links h4 {
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
        }

        .nav-container,
        .hero-container,
        .mission-grid,
        .donation-grid,
        .gpm-wrapper,
        .contact-grid,
        .footer-content {
            margin: 0 auto;
        }

        .logo-text,
        .hero h1,
        .stat-number,
        .section-title,
        .mission-card h3,
        .donation-card h3,
        .gpm-text h2,
        .gpm-steps h3,
        .footer-links h4,
        .gpm-card::before {
            font-family: var(--font-display);
        }

        .logo-icon,
        .mission-icon,
        .step-num,
        .contact-icon,
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero p,
        .stat-label,
        .section-subtitle,
        .mission-card p,
        .donation-card.featured > p,
        .gpm-text > p,
        .gpm-highlight span,
        .step-content p,
        .contact-item p,
        .contact-item a {
            color: var(--text-muted);
        }

        .rr-consent {
            position: fixed;
            left: 16px;
            right: 16px;
            bottom: 16px;
            z-index: 2000;
            max-width: 980px;
            margin: 0 auto;
            background: rgba(255, 254, 249, 0.98);
            border: 1px solid rgba(26, 71, 42, 0.18);
            border-radius: 16px;
            box-shadow: 0 18px 50px rgba(26, 71, 42, 0.18);
            backdrop-filter: blur(14px);
            padding: 14px;
        }

        .rr-consent__row {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .rr-consent__text {
            min-width: 220px;
            flex: 1;
        }

        .rr-consent__title {
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .rr-consent__description {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        .rr-consent__actions {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }

        .rr-consent__btn {
            padding: 10px 14px;
            border-radius: 999px;
            font-weight: 700;
            cursor: pointer;
            font: inherit;
            line-height: 1;
        }

        .rr-consent__btn--reject {
            border: 2px solid var(--forest);
            background: transparent;
            color: var(--forest);
        }

        .rr-consent__btn--accept {
            border: none;
            background: var(--gradient-forest);
            color: white;
        }

        .rr-consent__btn:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 3px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* =========================
           WOW MOTION PACK (safe)
           ========================= */

        /* Smooth GPU hints */
        .hero-image,
        .hero-image img,
        .mission-card,
        .donation-card,
        .contact-item,
        .btn-primary {
          will-change: transform, opacity;
        }

        /* Animated background blobs in Hero */
        .hero::after {
          content: '';
          position: absolute;
          inset: -12%;
          background:
            radial-gradient(520px 360px at 18% 28%, rgba(212,168,83,0.14), transparent 62%),
            radial-gradient(460px 320px at 78% 34%, rgba(135,168,120,0.15), transparent 64%),
            radial-gradient(620px 420px at 58% 82%, rgba(74,124,89,0.12), transparent 60%);
          opacity: 0.8;
          animation: rr-heroFloat 18s ease-in-out infinite;
          pointer-events: none;
          z-index: 1;
        }

        @keyframes rr-heroFloat {
          0%   { transform: translate3d(0, 0, 0) scale(1); }
          33%  { transform: translate3d(-1.2%, 1%, 0) scale(1.015); }
          66%  { transform: translate3d(1%, -1.2%, 0) scale(1.02); }
          100% { transform: translate3d(0, 0, 0) scale(1); }
        }

        /* Subtle shine on primary CTA */
        .btn-primary::after {
          content: '';
          position: absolute;
          top: -40%;
          left: -60%;
          width: 40%;
          height: 180%;
          background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
          transform: rotate(18deg);
          transition: transform 0.5s ease;
        }

        .btn-primary:hover::after {
          transform: translateX(260%) rotate(18deg);
        }

        /* Premium hover: cards */
        .mission-card,
        .donation-card,
        .contact-item {
          transform: translateZ(0);
        }

        .mission-card:hover,
        .contact-item:hover {
          transform: translate3d(0, -10px, 0);
        }

        .donation-card:hover {
          transform: translate3d(0, -6px, 0);
        }

        /* Image: depth + micro zoom */
        .hero-image img {
          transition: transform 0.6s ease, filter 0.6s ease;
        }

        .hero-image:hover img {
          transform: scale(1.03);
          filter: contrast(1.02) saturate(1.05);
        }

        @media (hover: none), (pointer: coarse) {
          .btn-primary::after {
            display: none;
          }

          .mission-card:hover,
          .donation-card:hover,
          .contact-item:hover {
            transform: none;
            box-shadow: inherit;
          }

          .hero-image:hover img {
            transform: none;
            filter: none;
          }

        }

        /* Scroll-reveal base */
        .rr-reveal {
          opacity: 0;
          transform: translate3d(0, 18px, 0);
          filter: blur(2px);
          transition:
            opacity 0.7s ease,
            transform 0.7s ease,
            filter 0.7s ease;
        }

        .rr-reveal.is-visible {
          opacity: 1;
          transform: translate3d(0, 0, 0);
          filter: blur(0);
        }

        .rr-reveal--delay-1 { transition-delay: 90ms; }
        .rr-reveal--delay-2 { transition-delay: 160ms; }
        .rr-reveal--delay-3 { transition-delay: 230ms; }

        /* Reduced motion respect */
        @media (prefers-reduced-motion: reduce) {
          .hero::after {
            animation: none !important;
          }
          .rr-reveal {
            opacity: 1 !important;
            transform: none !important;
            filter: none !important;
            transition: none !important;
          }
          .btn-primary::after {
            display: none !important;
          }

          .donate-cta::before {
            display: none !important;
          }

          .donate-cta.heartbeat {
            animation: none !important;
          }

          .impact-pulse {
            animation: none !important;
          }

          .impact-glow {
            animation: none !important;
          }

          .rr-sweep::after {
            animation: none !important;
            opacity: 0 !important;
          }

          .hero-container::after {
            display: none !important;
          }

          .urgent-progress-fill {
            transition: none !important;
          }

        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-container,
            .gpm-card,
            .contact-grid {
                grid-template-columns: 1fr;
            }

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

            .urgent-progress-meta {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-map {
                aspect-ratio: 16 / 10;
                min-height: 300px;
            }

            .contact-map-caption {
                flex-direction: column;
                align-items: flex-start;
                font-size: 0.82rem;
            }


            .hero {
                text-align: center;
                padding-top: 100px;
            }

            .hero p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                order: -1;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .mission-grid {
                grid-template-columns: 1fr;
            }

            .donation-grid {
                grid-template-columns: 1fr;
            }

            .donation-card.featured {
                grid-column: span 1;
            }

            .gpm-card::before {
                font-size: 6rem;
                top: -15px;
                right: -15px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            body {
                padding-bottom: 88px;
            }

            .nav-container {
                position: relative;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 0.75rem);
                left: 0;
                right: 0;
                background: rgba(255, 254, 249, 0.98);
                border: 1px solid rgba(26, 71, 42, 0.12);
                border-radius: 14px;
                box-shadow: 0 14px 34px rgba(26, 71, 42, 0.12);
                padding: 0.5rem;
                flex-direction: column;
                gap: 0.25rem;
                align-items: stretch;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                display: block;
                padding: 0.7rem 0.9rem;
                border-radius: 10px;
            }

            .nav-links .nav-cta {
                text-align: center;
            }

            section {
                padding: 60px 1.5rem;
            }

            .hero-stats {
                width: 90%;
                flex-direction: column;
                padding: 1rem;
                bottom: -40px;
            }

            .stat {
                padding: 0.5rem;
                border-right: none;
                border-bottom: 1px solid #eee;
            }

            .stat-love-icon {
                width: 52px;
                height: 52px;
            }

            .stat:last-child {
                border-bottom: none;
            }

            .gpm-card {
                padding: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .rr-consent {
                left: 12px;
                right: 12px;
                bottom: 94px;
            }

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

            .urgent-card {
                padding: 1.25rem;
            }

            .urgent-head h2 {
                font-size: 1.6rem;
            }

            .urgent-progress-meta {
                grid-template-columns: 1fr 1fr;
            }

            .sticky-donate {
                display: flex;
            }
        }

/* =========================
   ANIMALS (data-driven)
   ========================= */

.animals {
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}

.animals-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.animal-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 71, 42, 0.08);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-top-color 0.35s ease;
}

.animal-media {
  position: relative;
  height: 240px; /* desktop */
  overflow: hidden;
}

.animal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 71, 42, 0) 30%, rgba(26, 71, 42, 0.42) 100%);
  opacity: 0.78;
  transition: opacity 0.35s ease;
}

.animal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s ease, filter 0.55s ease;
  display: block;
}

.animal-body {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.animal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.animal-desc {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  min-height: 3.2em; /* чтобы тексты не "плясали" */
}

.animal-cta {
  margin-top: auto; /* кнопка вниз */
  align-self: flex-start;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.paw-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.paw-mark {
  width: 22px;
  height: 22px;
  fill: color-mix(in srgb, var(--gold-light) 78%, transparent);
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.paw-signature.is-visible .paw-mark {
  opacity: 0.82;
  transform: translate3d(0, 0, 0);
}

.paw-signature.is-visible .paw-mark:nth-child(2) {
  transition-delay: 120ms;
}

.paw-signature.is-visible .paw-mark:nth-child(3) {
  transition-delay: 240ms;
}

.donate-paw {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.38rem;
  transform-origin: 50% 60%;
}

.donate-paw svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  opacity: 0.95;
}

.donate-paw.paw-heartbeat {
  animation: rrPawHeartbeat 950ms ease-in-out;
}

@keyframes rrPawHeartbeat {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(232, 201, 122, 0));
  }
  46% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(232, 201, 122, 0.38));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(232, 201, 122, 0));
  }
}

/* Hover - современно, но мягко */
.animal-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 20px 50px rgba(26, 71, 42, 0.15);
  border-top-color: var(--gold);
}

.animal-card:hover .animal-media img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.02);
}

.animal-card:hover .animal-media::after {
  opacity: 0.6;
}

.animal-card:hover .animal-cta,
.animal-card:focus-within .animal-cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Responsive */
@media (min-width: 601px) and (max-width: 900px) {
  .animals-grid { grid-template-columns: repeat(2, 1fr); }
  .animal-media { height: 210px; }
}

@media (max-width: 600px) {
  .animals-grid { grid-template-columns: 1fr; }
  .animal-media { height: 200px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animal-card,
  .animal-media img,
  .animal-media::after,
  .animal-cta {
    transition: none !important;
  }
  .animal-card:hover {
    transform: none !important;
  }
  .animal-card:hover .animal-media img {
    transform: none !important;
    filter: none !important;
  }

  .animal-cta {
    opacity: 1 !important;
    transform: none !important;
  }

  .paw-mark {
    opacity: 0.82 !important;
    transform: none !important;
    transition: none !important;
  }

  .donate-paw.paw-heartbeat {
    animation: none !important;
  }
}

/* =========================
   Paw Trail
   ========================= */

.paw-trail-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.paw-stamp {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  color: rgba(212, 168, 83, 0.82);
  transform: translate(-50%, -50%) scale(0.9) rotate(var(--rot, 0deg));
  animation: pawPop 650ms ease-out forwards;
  will-change: transform, opacity;
}

.paw-stamp .paw-icon {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes pawPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85) rotate(var(--rot, 0deg));
  }
  20% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 6px)) scale(1.05) rotate(var(--rot, 0deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .paw-trail-layer {
    display: none !important;
  }
}



