﻿ * {
            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;
        }

        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;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--forest);
        }

        .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: all 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);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(26, 71, 42, 0.4);
        }

        .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);
        }

        .stat {
            text-align: center;
            padding: 0 1.5rem;
            border-right: 1px solid #eee;
        }

        .stat:last-child {
            border-right: none;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--forest);
        }

        .stat-label {
            font-size: 0.8rem;
        }

        /* 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.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .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%);
        }

        .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: all 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: all 0.3s;
            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);
        }

        .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: all 0.3s;
        }

        .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: all 0.3s;
        }

        .contact-item:hover {
            transform: translateX(8px);
            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;
        }

        /* 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: all 0.3s;
        }

        .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: all 0.3s;
        }

        .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;
            }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-container,
            .gpm-card,
            .contact-grid {
                grid-template-columns: 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) {
            .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:last-child {
                border-bottom: none;
            }

            .gpm-card {
                padding: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

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