        /* ===== CSS RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'DM Sans', sans-serif;
            color: #1a1a1a;
            background: #faf8f5;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ===== COLOR VARIABLES ===== */
        :root {
            --terracotta: #c0542b;
            --terracotta-dark: #a3441f;
            --forest: #2d5a3d;
            --forest-dark: #1e3d29;
            --gold: #d4a843;
            --gold-light: #e8c96a;
            --cream: #faf8f5;
            --cream-dark: #f0ece4;
            --charcoal: #1a1a1a;
            --charcoal-light: #2c2c2c;
            --text-light: #f0ece4;
            --text-muted: #6b6b6b;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
        h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
        p { font-size: 1.05rem; }

        /* ===== UTILITY ===== */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .section-padding { padding: 100px 0; }
        .section-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: block;
        }
        .section-title { margin-bottom: 24px; }
        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 680px;
            margin-bottom: 60px;
        }
        .btn {
            display: inline-block;
            padding: 16px 36px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            letter-spacing: 0.5px;
        }
        .btn-primary { background: var(--terracotta); color: #fff; }
        .btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,84,43,0.3); }
        .btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
        .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
        .btn-outline { background: transparent; color: var(--terracotta); border: 2px solid var(--terracotta); }
        .btn-outline:hover { background: var(--terracotta); color: #fff; }
        .btn-gold { background: var(--gold); color: var(--charcoal); }
        .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.3); }

        /* ===== FADE-IN ANIMATION ===== */
        .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* ===== NAVIGATION ===== */
        nav {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            padding: 18px 0; transition: all 0.3s ease;
        }
        nav.scrolled {
            background: rgba(26,26,26,0.97); backdrop-filter: blur(12px);
            padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }
        .nav-inner {
            display: flex; justify-content: space-between; align-items: center;
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
        }
        .nav-logo { display: flex; align-items: center; text-decoration: none; }
        .nav-logo img { height: 48px; width: auto; border-radius: 4px; }
        nav.scrolled .nav-logo img { height: 40px; transition: height 0.3s; }
        .nav-links { display: flex; gap: 28px; list-style: none; }
        .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.3s; }
        .nav-links a:hover { color: var(--gold); }
        .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
        .nav-toggle span { width: 26px; height: 2px; background: #fff; transition: all 0.3s; }

        /* ===== HERO ===== */
        #home { min-height: 100vh; display: flex; align-items: center; position: relative; background: var(--charcoal); overflow: hidden; }
        .hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; z-index: 0; }
        .hero-bg {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.6) 60%, rgba(26,26,26,0.9) 100%),
                radial-gradient(ellipse at 20% 50%, rgba(192,84,43,0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(45,90,61,0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 80%, rgba(212,168,67,0.15) 0%, transparent 50%);
        }
        .hero-pattern {
            position: absolute; inset: 0; opacity: 0.06;
            background-image:
                linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
                linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
                linear-gradient(60deg, rgba(212,168,67,0.5) 25%, transparent 25.5%, transparent 75%, rgba(212,168,67,0.5) 75%, rgba(212,168,67,0.5));
            background-size: 80px 140px;
            background-position: 0 0, 0 0, 40px 70px;
        }
        .hero-content { position: relative; z-index: 2; max-width: 800px; }
        .hero-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
        .hero-title { color: #fff; margin-bottom: 28px; font-weight: 900; }
        .hero-title em { font-style: normal; color: var(--gold); }
        .hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.7); max-width: 620px; margin-bottom: 44px; line-height: 1.8; }
        .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
        .hero-accent {
            position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
            width: 500px; height: 500px; border-radius: 50%;
            border: 1px solid rgba(212,168,67,0.1); z-index: 1;
        }
        .hero-accent::after { content: ''; position: absolute; inset: 40px; border-radius: 50%; border: 1px solid rgba(192,84,43,0.12); }

        /* ===== ABOUT ===== */
        #about { background: var(--cream); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; }
        .about-mission .section-label { color: var(--terracotta); }
        .about-vision .section-label { color: var(--forest); }
        .about-text { color: var(--text-muted); margin-bottom: 16px; }
        .elevator-pitch {
            background: var(--forest); color: #fff; padding: 40px 48px;
            border-radius: 8px; margin-bottom: 60px; border-left: 6px solid var(--gold);
        }
        .elevator-pitch .section-label { color: var(--gold); }
        .elevator-pitch p { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.8; font-style: italic; }
        .origin-story {
            background: var(--charcoal); color: var(--text-light);
            padding: 60px; border-radius: 8px; margin-bottom: 60px;
        }
        .origin-story .section-label { color: var(--gold); }
        .origin-story h3 { color: #fff; margin-bottom: 20px; }
        .origin-story p { color: rgba(255,255,255,0.75); margin-bottom: 16px; }
        .origin-story cite { color: rgba(255,255,255,0.45); font-size: 0.85rem; font-style: italic; }
        .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
        .value-item {
            text-align: center; padding: 32px 16px; background: #fff;
            border-radius: 8px; border: 1px solid rgba(0,0,0,0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .value-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
        .value-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.3rem; }
        .value-item h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; }

        /* ===== PROGRAMS ===== */
        #programs { background: var(--charcoal); color: #fff; }
        #programs .section-label { color: var(--gold); }
        #programs .section-subtitle { color: rgba(255,255,255,0.6); }
        .programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
        .program-card {
            background: var(--charcoal-light); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px; padding: 48px 36px;
            transition: transform 0.3s, border-color 0.3s; position: relative; overflow: hidden;
            display: flex; flex-direction: column;
        }
        .program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
        .program-card:nth-child(1)::before { background: var(--terracotta); }
        .program-card:nth-child(2)::before { background: var(--gold); }
        .program-card:nth-child(3)::before { background: var(--forest); }
        .program-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.15); }
        .program-icon { font-size: 2.4rem; margin-bottom: 24px; display: block; }
        .program-card h3 { margin-bottom: 16px; font-size: 1.5rem; }
        .program-card p { color: rgba(255,255,255,0.65); line-height: 1.8; flex: 1; }
        .program-learn-btn {
            margin-top: 28px; display: inline-block; padding: 12px 24px;
            background: transparent; border: 1px solid rgba(255,255,255,0.25);
            color: #fff; border-radius: 4px; font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem; font-weight: 600; cursor: pointer;
            transition: all 0.3s; text-align: center; letter-spacing: 0.5px;
        }
        .program-learn-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
        .program-card:nth-child(1) .program-learn-btn:hover { background: rgba(192,84,43,0.25); border-color: var(--terracotta); }
        .program-card:nth-child(2) .program-learn-btn:hover { background: rgba(212,168,67,0.2); border-color: var(--gold); }
        .program-card:nth-child(3) .program-learn-btn:hover { background: rgba(45,90,61,0.3); border-color: #4a8c63; }

        /* ===== PROGRAM MODALS ===== */
        .modal-overlay {
            display: none; position: fixed; inset: 0; z-index: 3000;
            background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
            overflow-y: auto; padding: 40px 20px;
        }
        .modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; }
        .modal-box {
            background: #fff; border-radius: 12px; max-width: 860px; width: 100%;
            position: relative; overflow: hidden; margin: auto;
            box-shadow: 0 24px 80px rgba(0,0,0,0.4);
        }
        .modal-header {
            padding: 48px 48px 32px;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        .modal-header.terracotta { border-top: 6px solid var(--terracotta); }
        .modal-header.gold { border-top: 6px solid var(--gold); }
        .modal-header.forest { border-top: 6px solid var(--forest); }
        .modal-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
        .modal-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; color: var(--charcoal); }
        .modal-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; }
        .modal-close {
            position: absolute; top: 20px; right: 24px;
            background: none; border: none; font-size: 2rem; cursor: pointer;
            color: var(--text-muted); line-height: 1; transition: color 0.2s;
        }
        .modal-close:hover { color: var(--charcoal); }
        .modal-body { padding: 40px 48px 48px; }
        .modal-section { margin-bottom: 36px; }
        .modal-section:last-child { margin-bottom: 0; }
        .modal-section h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--cream-dark); }
        .modal-section h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; margin-top: 20px; }
        .modal-section p { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
        .modal-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 16px; }
        .modal-pillar {
            padding: 20px; background: var(--cream); border-radius: 8px;
            border-left: 3px solid var(--terracotta);
        }
        .modal-pillar.gold-border { border-left-color: var(--gold); }
        .modal-pillar.forest-border { border-left-color: var(--forest); }
        .modal-pillar h4 { color: var(--charcoal); font-size: 0.9rem; margin-bottom: 6px; margin-top: 0; }
        .modal-pillar p { font-size: 0.88rem; margin-bottom: 0; }
        .objective-list { list-style: none; padding: 0; }
        .objective-list li {
            padding: 10px 0 10px 28px; position: relative; color: var(--text-muted);
            border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.98rem;
        }
        .objective-list li:last-child { border-bottom: none; }
        .objective-list li::before {
            content: '→'; position: absolute; left: 0;
            color: var(--terracotta); font-weight: 700;
        }
        .modal-section .objective-list.forest-arrows li::before { color: var(--forest); }

        /* ===== SALON EVENT CARD (inside modal) ===== */
        .salon-event-card {
            display: flex; flex-direction: column; gap: 20px;
            background: var(--cream); border-radius: 8px; padding: 20px;
        }
        .salon-event-flyer {
            width: 100%; max-width: 320px; height: auto; display: block;
            margin: 0 auto; border-radius: 6px; object-fit: contain;
        }
        .salon-event-tag {
            display: inline-block; background: var(--forest); color: #fff;
            font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
            padding: 4px 12px; border-radius: 50px;
        }
        .salon-event-details p { margin-bottom: 12px; }
        .salon-event-meta { list-style: none; margin: 14px 0; padding: 0; }
        .salon-event-meta li { padding: 4px 0; color: var(--text-muted); font-size: 0.92rem; }

        /* ===== EVENTS SECTION ===== */
        #events { background: var(--cream-dark); }
        #events .section-label { color: var(--forest); }
        .events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
        .event-card {
            background: #fff; border-radius: 8px; overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06); display: flex; flex-direction: column;
            transition: transform 0.3s;
        }
        .event-card:hover { transform: translateY(-4px); }
        .event-flyer { width: 100%; height: auto; display: block; }
        .event-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
        .event-date-badge {
            display: inline-block; background: var(--gold); color: var(--charcoal);
            font-weight: 700; font-size: 0.78rem; letter-spacing: 0.5px;
            padding: 6px 14px; border-radius: 50px; margin-bottom: 14px; align-self: flex-start;
        }
        .event-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
        .event-meta { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 6px; }
        .event-desc { color: var(--text-muted); margin: 14px 0 22px; flex: 1; }
        .event-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
        .events-empty { color: var(--text-muted); }

        /* ===== HERO EVENT BANNER ===== */
        .hero-event-banner {
            display: inline-flex; align-items: center; gap: 10px;
            background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.4);
            color: var(--gold-light); text-decoration: none;
            font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px;
            padding: 10px 20px; border-radius: 50px; margin-bottom: 28px; transition: all 0.3s;
        }
        .hero-event-banner:hover { background: rgba(212,168,67,0.22); border-color: var(--gold-light); }
        .hero-event-banner strong { color: var(--gold-light); }

        /* ===== SCHOLARSHIP RECIPIENTS ===== */
        .scholar-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
        .scholar-tab {
            padding: 10px 24px; border: 2px solid rgba(255,255,255,0.2);
            border-radius: 50px; background: transparent; color: rgba(255,255,255,0.65);
            font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
            cursor: pointer; transition: all 0.3s;
        }
        .scholar-tab.active, .scholar-tab:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
        .scholar-panel { display: none; }
        .scholar-panel.active { display: block; }
        .scholars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
        .scholar-card {
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px; padding: 28px 20px; text-align: center;
            cursor: pointer; transition: all 0.3s;
        }
        .scholar-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); border-color: var(--gold); }
        .scholar-photo {
            width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px;
            background: var(--charcoal-light); border: 3px solid rgba(212,168,67,0.3);
            overflow: hidden; display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.3); font-size: 2rem;
        }
        .scholar-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
        .scholar-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
        .scholar-year { color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 4px; }
        .scholar-university { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
        .scholar-international { background: rgba(45,90,61,0.2); border-color: rgba(45,90,61,0.4); }
        .scholar-international:hover { border-color: #4a8c63; }
        .scholar-international .scholar-year { color: #4a8c63; }

        /* Scholar Profile Modal */
        .scholar-modal-overlay {
            display: none; position: fixed; inset: 0; z-index: 4000;
            background: rgba(0,0,0,0.88); backdrop-filter: blur(8px);
            align-items: center; justify-content: center; padding: 40px 20px;
        }
        .scholar-modal-overlay.active { display: flex; }
        .scholar-modal-box {
            background: var(--charcoal-light); border-radius: 12px;
            max-width: 560px; width: 100%; position: relative;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 24px 80px rgba(0,0,0,0.6);
            overflow: hidden;
        }
        .scholar-modal-top { padding: 40px 40px 28px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 24px; align-items: flex-start; }
        .scholar-modal-photo {
            width: 90px; height: 90px; border-radius: 50%; flex-shrink: 0;
            background: var(--charcoal); border: 3px solid var(--gold);
            overflow: hidden; display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.3); font-size: 2rem;
        }
        .scholar-modal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
        .scholar-modal-info { flex: 1; }
        .scholar-modal-info h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; }
        .scholar-modal-info .year-badge {
            display: inline-block; background: var(--gold); color: var(--charcoal);
            font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
            padding: 3px 12px; border-radius: 20px; margin-bottom: 8px;
        }
        .scholar-modal-info .university { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
        .scholar-modal-info .major { color: var(--gold); font-size: 0.85rem; }
        .scholar-modal-body { padding: 28px 40px 40px; }
        .scholar-modal-body blockquote {
            font-family: 'Playfair Display', serif; font-size: 1.05rem;
            font-style: italic; color: rgba(255,255,255,0.8);
            line-height: 1.8; margin-bottom: 16px; padding-left: 16px;
            border-left: 3px solid var(--gold);
        }
        .scholar-modal-body .current-status { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
        .scholar-modal-close {
            position: absolute; top: 16px; right: 20px;
            background: none; border: none; font-size: 1.8rem; cursor: pointer;
            color: rgba(255,255,255,0.4); line-height: 1; transition: color 0.2s;
        }
        .scholar-modal-close:hover { color: #fff; }

        /* ===== IMPACT ===== */
        #impact { background: var(--cream); }
        #impact .section-label { color: var(--forest); }
        .metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 80px; }
        .metric-card {
            text-align: center; padding: 48px 24px; background: var(--forest);
            color: #fff; border-radius: 8px; position: relative; overflow: hidden;
        }
        .metric-card::after {
            content: ''; position: absolute; top: -50%; right: -50%;
            width: 100%; height: 100%; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        }
        .metric-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold); display: block; margin-bottom: 8px; }
        .metric-label { font-size: 0.95rem; opacity: 0.85; }
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-bottom: 80px; }
        .testimonial-card {
            background: #fff; border-radius: 8px; padding: 40px;
            border-left: 4px solid var(--terracotta); box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .testimonial-card blockquote { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--charcoal); margin-bottom: 20px; line-height: 1.7; }
        .testimonial-author { font-weight: 600; font-size: 0.9rem; }
        .testimonial-role { color: var(--text-muted); font-size: 0.85rem; }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
        .gallery-item {
            aspect-ratio: 4/3; border-radius: 8px; overflow: hidden;
            position: relative; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
        .gallery-item:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
        .gallery-item:hover img { transform: scale(1.06); }

        /* ===== LIGHTBOX ===== */
        .lightbox {
            position: fixed; inset: 0; background: rgba(0,0,0,0.92);
            display: none; align-items: center; justify-content: center;
            z-index: 2000; padding: 40px; cursor: zoom-out;
        }
        .lightbox.active { display: flex; }
        .lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; box-shadow: 0 8px 60px rgba(0,0,0,0.6); }
        .lightbox-close { position: absolute; top: 24px; right: 32px; color: #fff; font-size: 2rem; background: none; border: none; cursor: pointer; line-height: 1; }

        /* ===== OUR TEAM ===== */
        #team { background: var(--charcoal); color: #fff; }
        #team .section-label { color: var(--gold); }
        #team .section-subtitle { color: rgba(255,255,255,0.6); }
        .team-category { margin-bottom: 60px; }
        .team-category h3 { color: var(--gold); margin-bottom: 32px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
        .team-grid-single { display: flex; justify-content: center; }
        .team-member { text-align: center; }
        .team-photo {
            width: 140px; height: 140px; border-radius: 50%;
            background: var(--charcoal-light); border: 3px solid rgba(212,168,67,0.3);
            margin: 0 auto 20px; overflow: hidden; display: flex;
            align-items: center; justify-content: center;
            color: rgba(255,255,255,0.3); font-size: 0.75rem;
        }
        .team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
        .team-member h4 { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
        .team-member .role { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }
        .team-member .team-contact { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
        .team-member .team-contact a { color: rgba(255,255,255,0.4); text-decoration: none; }
        .team-member .team-contact a:hover { color: var(--gold); }
        .team-member .bio { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 6px; }
        .founder-bio {
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px; padding: 40px; margin-top: 32px;
        }
        .founder-bio-inner { display: grid; grid-template-columns: 160px 1fr; gap: 36px; align-items: start; }
        .founder-bio h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
        .founder-bio p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
        .founder-bio p:last-child { margin-bottom: 0; }
        .board-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
        .board-card {
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px; padding: 28px 24px; text-align: center;
        }
        .board-card .board-role { color: var(--terracotta); font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
        .board-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
        .board-card a { color: rgba(255,255,255,0.4); font-size: 0.8rem; text-decoration: none; }
        .board-card a:hover { color: var(--gold); }

        /* ===== PARTNERS ===== */
        #partners { background: var(--cream); }
        #partners .section-label { color: var(--terracotta); }
        .partners-category { margin-bottom: 48px; }
        .partners-category h3 { color: var(--forest); margin-bottom: 24px; font-size: 1.3rem; }
        .partners-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
        .partner-logo {
            background: #fff; border-radius: 8px; padding: 24px 20px;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            min-height: 110px; border: 1px solid rgba(0,0,0,0.06);
            transition: box-shadow 0.3s, transform 0.2s; gap: 10px;
        }
        .partner-logo:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
        .partner-logo img { max-width: 140px; max-height: 70px; width: auto; height: auto; object-fit: contain; }
        .partner-logo-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-align: center; color: var(--forest); text-transform: uppercase; }
        .partner-logo-sub { font-size: 0.7rem; color: var(--text-muted); text-align: center; }
        .partners-coming { color: var(--text-muted); font-size: 0.9rem; font-style: italic; margin-top: 8px; }

        /* ===== GET INVOLVED ===== */
        #involve { background: var(--forest); color: #fff; }
        #involve .section-label { color: var(--gold); }
        #involve .section-subtitle { color: rgba(255,255,255,0.65); }
        .involve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
        .involve-card {
            background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px; padding: 40px 32px; text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .involve-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); }
        .involve-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
        .involve-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
        .involve-card p { color: rgba(255,255,255,0.65); margin-bottom: 24px; font-size: 0.95rem; }
        .involve-card .btn { background: var(--gold); color: var(--charcoal); padding: 12px 28px; font-size: 0.85rem; }
        .involve-card .btn:hover { background: var(--gold-light); }

        /* ===== DONATE ===== */
        #donate { background: var(--cream-dark); }
        #donate .section-label { color: var(--terracotta); }
        .donate-wrapper { max-width: 700px; margin: 0 auto; text-align: center; }
        .donate-pitch { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; }
        .donate-toggle { display: inline-flex; background: #fff; border-radius: 50px; padding: 4px; margin-bottom: 36px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
        .donate-toggle button { padding: 12px 32px; border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s; background: transparent; color: var(--text-muted); }
        .donate-toggle button.active { background: var(--terracotta); color: #fff; }
        .donate-tiers { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
        .tier-btn { width: 90px; height: 90px; border-radius: 8px; border: 2px solid var(--terracotta); background: #fff; display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--terracotta); cursor: pointer; transition: all 0.3s; }
        .tier-btn:hover, .tier-btn.active { background: var(--terracotta); color: #fff; }
        .custom-amount { width: 200px; height: 90px; border-radius: 8px; border: 2px solid rgba(0,0,0,0.15); background: #fff; font-family: 'DM Sans', sans-serif; font-size: 1.2rem; font-weight: 700; text-align: center; color: var(--charcoal); outline: none; }
        .custom-amount::placeholder { color: #ccc; font-weight: 400; font-size: 0.95rem; }
        .custom-amount:focus { border-color: var(--terracotta); }
        .donate-cta { margin-top: 24px; }
        .donate-cta .btn { padding: 18px 48px; font-size: 1.1rem; }

        /* ===== CONTACT ===== */
        #contact { background: var(--charcoal); color: #fff; }
        #contact .section-label { color: var(--gold); }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
        .contact-info h3 { margin-bottom: 16px; }
        .contact-info p { color: rgba(255,255,255,0.65); margin-bottom: 12px; }
        .contact-emails { margin-bottom: 32px; }
        .contact-email-item { margin-bottom: 16px; }
        .contact-email-item .email-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
        .contact-email-item a { color: rgba(255,255,255,0.75); font-size: 0.9rem; text-decoration: none; }
        .contact-email-item a:hover { color: var(--gold); }
        .social-links { display: flex; gap: 16px; flex-wrap: wrap; }
        .social-link { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 0.8rem; font-weight: 700; transition: all 0.3s; }
        .social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
        .contact-form { display: flex; flex-direction: column; gap: 20px; }
        .form-group { display: flex; flex-direction: column; gap: 6px; }
        .form-group label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); }
        .form-group input, .form-group select, .form-group textarea { padding: 14px 18px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.3s; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .form-group select option { background: var(--charcoal); color: #fff; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-status { padding: 14px 18px; border-radius: 6px; font-size: 0.95rem; font-weight: 500; display: none; }
        .form-status.success { display: block; background: rgba(45,90,61,0.25); border: 1px solid var(--forest); color: #a8d5b5; }
        .form-status.error { display: block; background: rgba(192,84,43,0.2); border: 1px solid var(--terracotta); color: #f0a080; }
        .hp-field { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }

        /* ===== FOOTER ===== */
        footer { background: #111; color: rgba(255,255,255,0.5); padding: 40px 0; text-align: center; font-size: 0.85rem; }
        footer a { color: var(--gold); text-decoration: none; }
        footer a:hover { text-decoration: underline; }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 992px) {
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .contact-grid { grid-template-columns: 1fr; gap: 40px; }
            .origin-story { padding: 40px 28px; }
            .founder-bio-inner { grid-template-columns: 1fr; }
            .hero-accent { display: none; }
            .modal-header { padding: 36px 28px 24px; }
            .modal-body { padding: 28px 28px 36px; }
            .scholar-modal-top { flex-direction: column; align-items: center; text-align: center; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; position: fixed; inset: 0; background: rgba(26,26,26,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
            .nav-links.active { display: flex; }
            .nav-links a { font-size: 1.2rem; }
            .nav-toggle { display: flex; z-index: 1001; }
            .section-padding { padding: 70px 0; }
            .programs-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .hero-ctas { flex-direction: column; }
            .hero-ctas .btn { text-align: center; }
            .donate-tiers { gap: 12px; }
            .tier-btn { width: 75px; height: 75px; font-size: 1rem; }
            .scholars-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
            #home { padding-top: 100px; }
            .hero-event-banner {
                font-size: 0.75rem; padding: 8px 14px; line-height: 1.4;
                white-space: normal; max-width: 100%; flex-wrap: wrap; justify-content: center;
            }
        }

        /* ===== PAST EVENTS GALLERY ===== */
        .past-events-intro { color: var(--text-muted); margin-bottom: 24px; }
        .past-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
        .past-event-item {
            cursor: pointer; border-radius: 8px; overflow: hidden;
            background: var(--cream); border: 1px solid rgba(0,0,0,0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .past-event-item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.1); }
        .past-event-item img { width: 100%; height: 200px; object-fit: cover; display: block; }
        .past-event-caption { display: block; padding: 12px 14px; font-size: 0.88rem; color: var(--charcoal); line-height: 1.4; }
        .past-event-caption small { display: block; color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }
        .past-event-tag {
            display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.4px;
            text-transform: uppercase; color: var(--terracotta); margin-bottom: 4px;
        }

        /* ===== LIGHTBOX CAPTION ===== */
        .lightbox-caption {
            color: #fff; text-align: center; max-width: 600px; margin: 16px auto 0;
            font-size: 0.95rem; line-height: 1.5;
        }

        /* ===== SPONSORSHIP TIERS (upcoming event) ===== */
        .sponsorship-tiers { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.08); }
        .sponsorship-tiers h5 {
            font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.5px; color: var(--forest); margin-bottom: 12px;
        }
        .tier-row { display: flex; flex-wrap: wrap; gap: 12px; }
        .tier-card {
            flex: 1 1 160px; background: #fff; border: 1px solid rgba(0,0,0,0.08);
            border-radius: 6px; padding: 14px 16px;
        }
        .tier-card strong { display: block; color: var(--terracotta); font-size: 1.05rem; margin-bottom: 4px; }
        .tier-card span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }
