:root {
            --navy: #1a3267;
            --navy-deep: #0f1d3d;
            --navy-light: #2a4a8a;
            --gold: #f4b41a;
            --gold-light: #ffd54f;
            --gold-dark: #c9930f;
            --cream: #fdf8f0;
            --white: #ffffff;
            --charcoal: #1a1a1a;
            --gray: #6b7280;
            --gray-light: #f3f4f6;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Cormorant Garamond', Georgia, serif;
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
        }
        .nav.scrolled {
            background: rgba(255,255,255,0.98);
            padding: 14px 40px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }
        .nav-logo img { height: 44px; }
        .nav.scrolled .nav-logo img { height: 36px; }
        .nav-links { display: flex; gap: 32px; align-items: center; }
        .nav-links a {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
        }
        .nav.scrolled .nav-links a { color: var(--navy); }
        .nav-links a:hover { color: var(--gold); }
        .nav-cta {
            background: var(--gold);
            color: var(--navy-deep) !important;
            padding: 12px 24px;
            border-radius: 4px;
        }
        
        /* Hero */
        .hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--navy-deep);
        }
        .hero-bg {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('/mnt/user-data/uploads/bg.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(15,29,61,0.9) 0%, rgba(26,50,103,0.85) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 160px 40px 100px;
            text-align: center;
        }
        .hero-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        .hero h1 span { color: var(--gold); }
        .hero-sub {
            font-size: 1.35rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            margin-bottom: 40px;
        }
        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 18px 36px;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-primary {
            background: var(--gold);
            color: var(--navy-deep);
        }
        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(244,180,26,0.3);
        }
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
        }
        .btn-secondary:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }
        .btn-outline {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }
        .btn-outline:hover {
            background: var(--navy);
            color: white;
        }
        
        /* Section basics */
        .section-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 16px;
        }
        
        /* ═══════════════════════════════════════════════════════════
           PRIMARY WAYS TO HELP
           ═══════════════════════════════════════════════════════════ */
        .primary-ways {
            padding: 100px 40px;
            background: white;
        }
        .primary-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .primary-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .primary-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        .primary-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        .primary-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .primary-card {
            background: var(--gray-light);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
        }
        .primary-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        .primary-card.featured {
            background: var(--navy);
        }
        .primary-card.featured .primary-card-content h3,
        .primary-card.featured .primary-card-content p {
            color: white;
        }
        .primary-card.featured .primary-card-content p {
            color: rgba(255,255,255,0.8);
        }
        .primary-card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--navy-deep);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 20px;
            z-index: 2;
        }
        .primary-card-image {
            height: 200px;
            overflow: hidden;
        }
        .primary-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .primary-card:hover .primary-card-image img {
            transform: scale(1.08);
        }
        .primary-card-content {
            padding: 32px;
        }
        .primary-card-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 12px;
        }
        .primary-card-content p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .primary-card .btn {
            width: 100%;
            text-align: center;
        }
        
        /* ═══════════════════════════════════════════════════════════
           IMPACT STATS
           ═══════════════════════════════════════════════════════════ */
        .impact {
            padding: 80px 40px;
            background: var(--navy);
        }
        .impact-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 40px;
            text-align: center;
        }
        .impact-stat {
            flex: 1;
            min-width: 150px;
        }
        .impact-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
        }
        .impact-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
        }
        
        /* ═══════════════════════════════════════════════════════════
           SPONSORSHIP TIERS
           ═══════════════════════════════════════════════════════════ */
        .tiers {
            padding: 100px 40px;
            background: var(--cream);
        }
        .tiers-inner {
            max-width: 1000px;
            margin: 0 auto;
        }
        .tiers-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .tiers-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        .tiers-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .tier-card {
            background: white;
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s;
            position: relative;
        }
        .tier-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .tier-card.popular {
            border: 2px solid var(--gold);
            transform: scale(1.05);
        }
        .tier-card.popular:hover {
            transform: scale(1.05) translateY(-6px);
        }
        .tier-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--navy-deep);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 20px;
        }
        .tier-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 8px;
        }
        .tier-price {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 4px;
        }
        .tier-price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--gray);
        }
        .tier-desc {
            font-size: 1rem;
            color: var(--gray);
            margin: 16px 0 24px;
            min-height: 48px;
        }
        .tier-card .btn {
            width: 100%;
            padding: 14px 20px;
        }
        
        /* ═══════════════════════════════════════════════════════════
           EVENTS
           ═══════════════════════════════════════════════════════════ */
        .events {
            padding: 100px 40px;
            background: white;
        }
        .events-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .events-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .events-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        .events-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .event-card {
            background: var(--gray-light);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .event-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .event-card-image {
            height: 180px;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }
        .event-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .event-card-date {
            position: absolute;
            top: 16px;
            left: 16px;
            background: white;
            padding: 10px 14px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .event-card-date .month {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold-dark);
        }
        .event-card-date .day {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
        }
        .event-card-content {
            padding: 24px;
        }
        .event-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }
        .event-card p {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 16px;
        }
        .event-card-link {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gold-dark);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .event-card-link:hover {
            color: var(--navy);
        }
        
        /* No events state */
        .events-empty {
            background: var(--gray-light);
            border-radius: 12px;
            padding: 60px 40px;
            text-align: center;
        }
        .events-empty-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
        .events-empty-icon svg {
            width: 36px;
            height: 36px;
            color: var(--gray);
        }
        .events-empty h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }
        .events-empty p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 24px;
        }
        
        /* ═══════════════════════════════════════════════════════════
           OTHER WAYS TO GIVE
           ═══════════════════════════════════════════════════════════ */
        .other-ways {
            padding: 100px 40px;
            background: var(--gray-light);
        }
        .other-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .other-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .other-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        .other-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 650px;
            margin: 0 auto;
        }
        .other-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .other-card {
            background: white;
            border-radius: 12px;
            padding: 32px;
            transition: all 0.3s;
        }
        .other-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .other-card-icon {
            width: 56px;
            height: 56px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .other-card-icon svg {
            width: 26px;
            height: 26px;
            color: var(--navy);
        }
        .other-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }
        .other-card p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .other-card-link {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gold-dark);
            text-decoration: none;
        }
        .other-card-link:hover {
            color: var(--navy);
        }
        
        /* ═══════════════════════════════════════════════════════════
           CONTACT / QUESTIONS
           ═══════════════════════════════════════════════════════════ */
        .contact {
            padding: 100px 40px;
            background: var(--navy);
        }
        .contact-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .contact-content .section-label { color: var(--gold); }
        .contact-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .contact-content p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }
        .contact-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 40px;
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }
        .contact-item:last-child { margin-bottom: 0; }
        .contact-item-icon {
            width: 44px;
            height: 44px;
            background: rgba(244,180,26,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-item-icon svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
        }
        .contact-item-text {
            flex: 1;
        }
        .contact-item-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 4px;
        }
        .contact-item-value {
            font-size: 1.1rem;
            color: white;
        }
        .contact-item-value a {
            color: white;
            text-decoration: none;
        }
        .contact-item-value a:hover {
            color: var(--gold);
        }
        
        /* Footer */
        .footer {
            background: var(--navy-deep);
            color: white;
            padding: 40px;
            text-align: center;
        }
        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer-brand {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .footer-brand span { color: var(--gold); }
        .footer-legal {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .primary-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
            .tiers-grid { grid-template-columns: repeat(2, 1fr); }
            .tier-card.popular { transform: scale(1); }
            .tier-card.popular:hover { transform: translateY(-6px); }
            .events-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .other-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-inner { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .nav { padding: 16px 20px; }
            .nav-links { display: none; }
            .hero-content { padding: 120px 24px 80px; }
            .primary-ways, .tiers, .events, .other-ways, .contact { padding: 70px 24px; }
            .tiers-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
            .other-grid { grid-template-columns: 1fr; }
            .impact-inner { flex-direction: column; gap: 30px; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero-buttons { flex-direction: column; }
            .btn { width: 100%; text-align: center; }
        }