        :root {
            --navy: #03071e;
            --navy-mid: #0a0e2a;
            --navy-light: #12183a;
            --gold: #c9a84c;
            --gold-light: #e8c96a;
            --gold-pale: rgba(201, 168, 76, 0.15);
            --electric: #4f7cff;
            --electric-glow: rgba(79, 124, 255, 0.3);
            --white: #f8f6f0;
            --white-dim: rgba(248, 246, 240, 0.7);
            --white-ghost: rgba(248, 246, 240, 0.08);
            --glass: rgba(255, 255, 255, 0.04);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-gold: 0 0 60px rgba(201, 168, 76, 0.15);
            --radius: 16px;
            --radius-lg: 24px;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--navy);
            color: var(--white);
            overflow-x: hidden;
        }

        /* NAVBAR */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s ease;
        }

        nav.scrolled {
            background: rgba(3, 7, 30, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 16px 60px;
        }

        .nav-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--white);
        }

        .nav-logo span {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white-dim);
            text-decoration: none;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--navy) !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600 !important;
            font-size: 12px !important;
            letter-spacing: 0.12em !important;
            transition: all 0.3s ease !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
        }

        .nav-cta::after {
            display: none !important;
        }

        /* HERO */
        #hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background: var(--navy);
        }

        .slides-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.2s ease;
            display: flex;
            align-items: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-bg {
            position: absolute;
            inset: -10%;
            background-size: cover;
            background-position: center;
            transition: transform 8s ease;
            filter: brightness(0.35) saturate(1.2);
        }

        .slide.active .slide-bg {
            transform: scale(1.08);
        }

        .slide-1 .slide-bg {
            background-image: radial-gradient(ellipse at 20% 50%, rgba(79, 124, 255, 0.3) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.2) 0%, transparent 60%), linear-gradient(135deg, #03071e 0%, #0d1b4b 50%, #03071e 100%);
            filter: none;
        }

        .slide-2 .slide-bg {
            background: linear-gradient(135deg, #050b1f 0%, #0a1635 40%, #060d25 100%);
            filter: none;
        }

        .slide-3 .slide-bg {
            background: linear-gradient(135deg, #03071e 0%, #0e1a3a 50%, #03071e 100%);
            filter: none;
        }

        .slide-4 .slide-bg {
            background: linear-gradient(135deg, #060c20 0%, #111e42 50%, #040a1a 100%);
            filter: none;
        }

        /* Particle canvas */
        #particles {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .slide-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            padding: 0 80px;
            transform: translateY(30px);
            transition: transform 1.2s ease, opacity 1.2s ease;
            opacity: 0;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-eyebrow {
            font-size: 11px;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 400;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .slide-eyebrow::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .slide-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(52px, 7vw, 96px);
            font-weight: 300;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            color: var(--white);
        }

        .slide-headline em {
            font-style: italic;
            color: var(--gold);
        }

        .slide-sub {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.7;
            color: var(--white-dim);
            max-width: 520px;
            margin-bottom: 44px;
        }

        .slide-actions {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--navy);
            padding: 16px 36px;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 30px rgba(201, 168, 76, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
        }

        .btn-primary .arrow {
            transition: transform 0.3s;
        }

        .btn-primary:hover .arrow {
            transform: translateX(4px);
        }

        .btn-secondary {
            color: var(--white-dim);
            text-decoration: none;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 2px;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            color: var(--white);
            border-color: var(--white);
        }

        /* Glass card */
        .glass-card {
            position: absolute;
            bottom: 60px;
            right: 80px;
            z-index: 5;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            min-width: 300px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .glass-card-label {
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .glass-card-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 12px;
        }

        .glass-card-meta {
            font-size: 13px;
            color: var(--white-dim);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .glass-card-meta svg {
            opacity: 0.6;
        }

        .glass-divider {
            height: 1px;
            background: var(--glass-border);
            margin: 16px 0;
        }

        /* Countdown */
        .countdown {
            display: flex;
            gap: 16px;
            margin-top: 4px;
        }

        .countdown-unit {
            text-align: center;
        }

        .countdown-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 400;
            color: var(--gold);
            line-height: 1;
        }

        .countdown-label {
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--white-dim);
            margin-top: 4px;
        }

        .countdown-sep {
            font-size: 24px;
            color: var(--glass-border);
            align-self: start;
            padding-top: 4px;
        }

        /* Slide dots */
        .slide-dots {
            position: absolute;
            bottom: 40px;
            left: 80px;
            z-index: 5;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 1);
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--gold);
            width: 24px;
            border-radius: 3px;
        }

        /* Hero scroll indicator */
        .scroll-ind {
            position: absolute;
            bottom: 44px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {

            0%,
            100% {
                opacity: 0.3;
                transform: scaleY(1);
            }

            50% {
                opacity: 1;
                transform: scaleY(0.7);
            }
        }

        /* SECTION COMMONS */
        section {
            position: relative;
        }

        .section-eyebrow {
            font-size: 10px;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .section-eyebrow::before,
        .section-eyebrow::after {
            content: '';
            flex: 0 0 30px;
            height: 1px;
            background: var(--gold);
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(38px, 5vw, 64px);
            font-weight: 300;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .section-title em {
            font-style: italic;
            color: var(--gold);
        }

        /* Reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        /* ABOUT */
        #about {
            padding: 140px 80px;
            background: var(--navy-mid);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
        }

        .about-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/5;
        }

        .about-img-bg {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0d1b4b 0%, #1a2d6b 40%, #0a1430 100%);
            position: relative;
            overflow: hidden;
        }

        .about-img-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 40%, rgba(201, 168, 76, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(79, 124, 255, 0.15) 0%, transparent 50%);
        }

        .about-img-bg .grid-lines {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .about-img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(3, 7, 30, 0.95) 0%, transparent 60%);
            padding: 40px 36px;
        }

        .about-img-stat {
            font-family: 'Cormorant Garamond', serif;
            font-size: 52px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
        }

        .about-img-stat-label {
            font-size: 12px;
            letter-spacing: 0.2em;
            color: var(--white-dim);
            margin-top: 4px;
        }

        .about-badge {
            position: absolute;
            top: 30px;
            right: -20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 20px 24px;
            text-align: center;
        }

        .about-badge-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            color: var(--gold);
            font-weight: 300;
        }

        .about-badge-txt {
            font-size: 11px;
            color: var(--white-dim);
            letter-spacing: 0.1em;
        }

        .about-content {
            padding-right: 20px;
        }

        .about-body {
            font-size: 17px;
            font-weight: 300;
            line-height: 1.85;
            color: var(--white-dim);
            margin: 32px 0 48px;
        }

        .about-body strong {
            color: var(--white);
            font-weight: 500;
        }

        .about-body .highlight {
            color: var(--gold);
            font-style: italic;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 20px 24px;
            background: var(--white-ghost);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }

        .about-feature:hover {
            background: rgba(201, 168, 76, 0.07);
            border-color: rgba(201, 168, 76, 0.3);
            transform: translateX(6px);
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--gold-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 18px;
        }

        .feature-title {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .feature-desc {
            font-size: 13px;
            color: var(--white-dim);
            line-height: 1.5;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--glass-border);
            border-radius: var(--radius);
            overflow: hidden;
            margin-top: 60px;
            border: 1px solid var(--glass-border);
        }

        .stat-item {
            background: var(--navy-mid);
            padding: 32px 24px;
            text-align: center;
            transition: background 0.3s;
        }

        .stat-item:hover {
            background: var(--gold-pale);
        }

        .stat-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 42px;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
        }

        .stat-label {
            font-size: 11px;
            color: var(--white-dim);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-top: 6px;
        }

        /* EVENTS */
        #events {
            padding: 140px 80px;
            background: var(--navy);
        }

        .events-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .events-header .section-eyebrow {
            justify-content: center;
        }

        .events-header .section-eyebrow::before,
        .events-header .section-eyebrow::after {
            display: none;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 24px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .event-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--navy-light);
            border: 1px solid var(--glass-border);
            transition: all 0.4s ease;
            transform-style: preserve-3d;
        }

        .event-card:nth-child(1) {
            grid-row: span 2;
        }

        .event-card:nth-child(4) {
            grid-column: span 2;
        }

        .event-card:hover {
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.1);
            border-color: rgba(201, 168, 76, 0.3);
        }

        .event-img {
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
        }

        .event-card:nth-child(1) .event-img {
            aspect-ratio: 3/4;
        }

        .event-card:nth-child(4) .event-img {
            aspect-ratio: 21/9;
        }

        .event-img-bg {
            width: 100%;
            height: 100%;
            transition: transform 0.6s ease, filter 0.6s ease;
        }

        .event-card:hover .event-img-bg {
            transform: scale(1.06);
            filter: brightness(0.7) saturate(1.2);
        }

        .ev1 {
            background: linear-gradient(135deg, #0f1e4a 0%, #1a3070 50%, #0a1535 100%);
            position: relative;
            overflow: hidden;
        }

        .ev1::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.25) 0%, transparent 65%);
        }

        .ev2 {
            background: linear-gradient(135deg, #1a0d2e 0%, #2d1a52 50%, #120a22 100%);
        }

        .ev3 {
            background: linear-gradient(135deg, #0a1f1a 0%, #143d30 50%, #071510 100%);
        }

        .ev4 {
            background: linear-gradient(135deg, #1e1008 0%, #3d2015 50%, #180d07 100%);
        }

        .ev5 {
            background: linear-gradient(135deg, #0d0f25 0%, #1a1e45 50%, #080a1c 100%);
        }

        .event-date-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            background: var(--gold);
            border-radius: 10px;
            padding: 8px 14px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
        }

        .event-date-day {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--navy);
            line-height: 1;
        }



        .event-price {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 2;
            background: var(--gold);
            border-radius: 10px;
            padding: 8px 14px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
        }

        .event-prices {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--navy);
            line-height: 1;
        }


        .event-date-mon {
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(3, 7, 30, 0.7);
        }

        .event-hover-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(to top, rgba(3, 7, 30, 0.98) 0%, rgba(3, 7, 30, 0.2) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 28px;
        }

        .event-card:hover .event-hover-overlay {
            opacity: 1;
        }

        .event-hover-cta {
            background: var(--gold);
            color: var(--navy);
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;

            transform: translateY(10px);
            transition: transform 0.4s ease;
        }

        .event-card:hover .event-hover-cta {
            transform: translateY(0);
        }

        .event-info {
            padding: 24px 28px 28px;
        }

        .event-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(201, 168, 76, 0.1);
            color: var(--gold);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 12px;
            border: 1px solid rgba(201, 168, 76, 0.2);
        }

        .event-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .event-card:nth-child(1) .event-name {
            font-size: 30px;
        }

        .event-desc {
            font-size: 13px;
            color: var(--white-dim);
            line-height: 1.65;
        }

        .event-card:nth-child(1) .event-desc {
            font-size: 14px;
        }

        .event-meta {
            display: flex;
            gap: 16px;
            margin-top: 18px;
            font-size: 12px;
            color: var(--white-dim);
            align-items: center;
        }

        .event-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* TEAM */
        #team {
            padding: 140px 80px;
            background: var(--navy-mid);
        }

        .team-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .team-header .section-eyebrow {
            justify-content: center;
        }

        .team-header .section-eyebrow::before,
        .team-header .section-eyebrow::after {
            display: none;
        }

        .founding-highlight {
            background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(79, 124, 255, 0.05) 100%);
            border: 1px solid rgba(201, 168, 76, 0.2);
            border-radius: var(--radius-lg);
            padding: 60px;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto 80px;
            position: relative;
            overflow: hidden;
        }

        .founding-highlight::before {
            content: '"';
            position: absolute;
            right: 40px;
            top: 10px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 200px;
            color: rgba(201, 168, 76, 0.06);
            line-height: 1;
        }

        .founder-portrait {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a2d6b, #0d1b4b);
            border: 3px solid var(--gold);
            box-shadow: 0 0 40px rgba(201, 168, 76, 0.3), 0 20px 60px rgba(0, 0, 0, 0.4);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            color: var(--gold);
            flex-shrink: 0;
        }

        .founder-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 4px;
        }

        .founder-title {
            font-size: 13px;
            color: var(--gold);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .founder-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-style: italic;
            line-height: 1.6;
            color: var(--white-dim);
            margin-bottom: 20px;
        }

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

        .social-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--white-ghost);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            text-decoration: none;
            color: var(--white-dim);
            transition: all 0.3s;

        }

        .social-btn:hover {
            background: var(--gold-pale);
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-3px);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .team-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--navy-light);
            border: 1px solid var(--glass-border);

            transition: all 0.4s ease;
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.1);
            border-color: rgba(201, 168, 76, 0.2);
        }

        .team-portrait {
            aspect-ratio: 3/4;
            position: relative;
            background: linear-gradient(135deg, #0d1b4b, #1a2d5e);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            color: var(--gold);
            overflow: hidden;
        }

        .team-portrait-colors {
            position: absolute;
            inset: 0;
        }

        .tp1 {
            background: linear-gradient(135deg, #0d1b4b 0%, #1a3070 100%);
        }

        .tp2 {
            background: linear-gradient(135deg, #1a0d2e 0%, #2d1a52 100%);
        }

        .tp3 {
            background: linear-gradient(135deg, #0a1f1a 0%, #143d30 100%);
        }

        .tp4 {
            background: linear-gradient(135deg, #1e1008 0%, #3d2015 100%);
        }

        .portrait-initial {
            position: relative;
            z-index: 1;
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            color: var(--gold);
            opacity: 0.7;
        }

        .team-gradient-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--navy-light) 0%, transparent 50%);
        }

        .team-social-overlay {
            position: absolute;
            inset: 0;
            background: rgba(3, 7, 30, 0.8);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .team-social-overlay {
            opacity: 1;
        }

        .team-info {
            padding: 22px 24px 26px;
        }

        .team-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 400;
        }

        .team-role {
            font-size: 11px;
            color: var(--gold);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-top: 4px;
        }

        .team-bio {
            font-size: 12px;
            color: var(--white-dim);
            line-height: 1.6;
            margin-top: 10px;
        }

        /* TESTIMONIALS */
        #testimonials {
            padding: 140px 80px;
            background: var(--navy);
            overflow: hidden;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .testimonials-header .section-eyebrow {
            justify-content: center;
        }

        .testimonials-header .section-eyebrow::before,
        .testimonials-header .section-eyebrow::after {
            display: none;
        }

        .testimonials-track-wrapper {
            overflow: hidden;
            position: relative;
        }

        .testimonials-track-wrapper::before,
        .testimonials-track-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 200px;
            z-index: 2;
            pointer-events: none;
        }

        .testimonials-track-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--navy), transparent);
        }

        .testimonials-track-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--navy), transparent);
        }

        .testimonials-track {
            display: flex;
            gap: 28px;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonial-card {
            flex-shrink: 0;
            width: 420px;
            background: var(--navy-mid);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s;
        }
@media (max-width:768px){

    .testimonial-card{
        width:100%;
        min-width:0;
    }

    .testimonials-track{
        gap:16px;
    }

}
        .testimonial-card:hover {
            border-color: rgba(201, 168, 76, 0.3);
        }

        .testimonial-quote-mark {
            position: absolute;
            top: 20px;
            right: 24px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 80px;
            color: rgba(201, 168, 76, 0.1);
            line-height: 1;
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .star {
            color: var(--gold);
            font-size: 14px;
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-style: italic;
            line-height: 1.7;
            color: var(--white-dim);
            margin-bottom: 28px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            flex-shrink: 0;
        }

        .av1 {
            background: linear-gradient(135deg, #1a3070, #0d1b4b);
            color: var(--gold);
        }

        .av2 {
            background: linear-gradient(135deg, #2d1a52, #1a0d2e);
            color: #c084fc;
        }

        .av3 {
            background: linear-gradient(135deg, #143d30, #0a1f1a);
            color: #34d399;
        }

        .av4 {
            background: linear-gradient(135deg, #3d2015, #1e1008);
            color: #fb923c;
        }

        .av5 {
            background: linear-gradient(135deg, #1a1e45, #0d0f25);
            color: var(--electric);
        }

        .av6 {
            background: linear-gradient(135deg, #3d2a15, #1e1508);
            color: #fbbf24;
        }

        .testimonial-name {
            font-size: 15px;
            font-weight: 500;
        }

        .testimonial-role {
            font-size: 11px;
            color: var(--gold);
            letter-spacing: 0.1em;
        }

        .testimonial-country {
            font-size: 11px;
            color: var(--white-dim);
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 52px;
        }

        .testimonials-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--white-ghost);
            border: 1px solid var(--glass-border);
            color: var(--white);

            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .testimonials-btn:hover {
            background: var(--gold-pale);
            border-color: var(--gold);
            color: var(--gold);
        }

        .testimonials-dots {
            display: flex;
            gap: 8px;
        }

        .t-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);

            transition: all 0.3s;
        }

        .t-dot.active {
            background: var(--gold);
            width: 20px;
            border-radius: 3px;
        }

        /* MAP */
        #location {
            height: 650px;
            position: relative;
        }

        .map-embed {
            width: 100%;
            height: 100%;
            filter: saturate(0.3) brightness(0.5);
        }

        .map-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-glass-card {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            background: rgba(3, 7, 30, 0.85);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 40px 44px;
            min-width: 340px;
            z-index: 2;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .map-card-label {
            font-size: 10px;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .map-card-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 30px;
            font-weight: 300;
            margin-bottom: 24px;
        }

        .map-card-info {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .map-info-item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 14px;
            color: var(--white-dim);
            line-height: 1.4;
        }

        .map-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--gold-pale);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .map-card-divider {
            height: 1px;
            background: var(--glass-border);
            margin: 20px 0;
        }

        /* CONTACT */
        #contact {
            padding: 140px 80px;
            background: var(--navy-mid);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 100px;
            max-width: 1300px;
            margin: 0 auto;
            align-items: start;
        }

        .contact-left {
            padding-top: 10px;
        }

        .contact-left .section-title {
            margin-bottom: 24px;
        }

        .contact-desc {
            font-size: 16px;
            color: var(--white-dim);
            line-height: 1.7;
            margin-bottom: 48px;
        }

        .quick-contacts {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .quick-contact-btn {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 22px;
            border-radius: var(--radius);
            background: var(--white-ghost);
            border: 1px solid var(--glass-border);
            text-decoration: none;
            color: var(--white);

            transition: all 0.3s ease;
        }

        .quick-contact-btn:hover {
            background: var(--gold-pale);
            border-color: rgba(201, 168, 76, 0.3);
            transform: translateX(6px);
        }

        .qcb-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .qcb-wa .qcb-icon {
            background: rgba(37, 211, 102, 0.15);
        }

        .qcb-email .qcb-icon {
            background: var(--gold-pale);
        }

        .qcb-text .qcb-label {
            font-size: 10px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--white-dim);
        }

        .qcb-text .qcb-value {
            font-size: 15px;
            font-weight: 400;
            margin-top: 2px;
        }

        .contact-form {
            background: var(--white-ghost);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 48px;
        }

        .form-group {
            position: relative;
            margin-bottom: 28px;
        }

        .form-label {
            position: absolute;
            top: 16px;
            left: 18px;
            font-size: 13px;
            color: var(--white-dim);
            transition: all 0.3s ease;
            pointer-events: none;
            letter-spacing: 0.05em;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 24px 18px 10px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            transition: all 0.3s ease;
            outline: none;
            -webkit-appearance: none;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: rgba(201, 168, 76, 0.5);
            background: rgba(201, 168, 76, 0.04);
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
        }

        .form-input:focus+.form-label,
        .form-input:not(:placeholder-shown)+.form-label,
        .form-textarea:focus+.form-label,
        .form-textarea:not(:placeholder-shown)+.form-label {
            top: 7px;
            font-size: 10px;
            color: var(--gold);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            opacity: 0;
        }

        .form-textarea {
            height: 130px;
            resize: none;
        }

        .btn-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--navy);
            border: none;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;

            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
        }

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

        .btn-submit span {
            position: relative;
            z-index: 1;
        }

        /* FOOTER */
        footer {
            background: #010411;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 80px 80px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .footer-logo span {
            color: var(--gold);
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 300px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-col-title {
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 24px;
            font-weight: 500;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s;
            letter-spacing: 0.02em;

        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-addr {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.9;
        }

        .footer-addr strong {
            color: rgba(255, 255, 255, 0.7);
            display: block;
            margin-bottom: 4px;
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0.05em;
        }

        /* FLOATING ORB ACCENT */
        .orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(80px);
        }

        .orb-gold {
            background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
        }

        .orb-blue {
            background: radial-gradient(circle, rgba(79, 124, 255, 0.12) 0%, transparent 70%);
        }

        /* DECORATIVE LINES */
        .deco-line {
            position: absolute;
            background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
            height: 1px;
            left: 0;
            right: 0;
            pointer-events: none;
        }

        @media (max-width: 1100px) {
            nav {
                padding: 20px 32px;
            }

            .slide-content {
                padding: 0 40px;
            }

            .glass-card {
                right: 32px;
                bottom: 40px;
            }

            #about,
            #events,
            #team,
            #testimonials,
            #contact {
                padding: 100px 40px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

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

            .event-card:nth-child(1) {
                grid-row: auto;
            }

            .event-card:nth-child(4) {
                grid-column: auto;
            }

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

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

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

            .founding-highlight {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .founder-social {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {

nav{
    width:100%;
    box-sizing:border-box;
}
            .nav-links {
                display: none;
            }

            .slide-content {
                padding: 0 24px;
            }

            .glass-card {
                display: none;
            }

            #about,
            #events,
            #team,
            #testimonials,
            #contact {
                padding: 80px 24px;
            }

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

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

            footer {
                padding: 60px 24px 32px;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

        /* Services Section */
        .services-section {
            padding: 100px 5%;
            background: #0c1132;
            position: relative;
            overflow: hidden;
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-eyebrow {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #d4af37;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 20px auto 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
        }

        .service-icon i {
            font-size: 2.5rem;
            color: #d4af37;
        }

        .service-icon img {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

        .service-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
            letter-spacing: -0.02em;
        }

        .service-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services-section {
                padding: 60px 5%;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service-card {
                padding: 30px 20px;
            }

            .service-icon {
                width: 70px;
                height: 70px;
            }

            .service-icon i {
                font-size: 2rem;
            }

            .service-name {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .service-card {
                padding: 25px 20px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
            }

            .service-icon i {
                font-size: 1.8rem;
            }
        }
    
/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 7, 30, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
    z-index: 1000;
    animation: fadeInMenu 0.3s ease;
}

.nav-links.mobile-open a {
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.nav-links.mobile-open a:hover {
    color: var(--gold);
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE OVERRIDES ===== */
@media (max-width: 1100px) {
    nav {
        padding: 20px 32px;
    }

    .slide-content {
        padding: 0 40px;
    }

    .glass-card {
        right: 32px;
        bottom: 40px;
    }

    #about,
    #events,
    #team,
    #testimonials,
    #contact {
        padding: 100px 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .event-card:nth-child(1) {
        grid-row: auto;
    }

    .event-card:nth-child(4) {
        grid-column: auto;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

    .founding-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Fix nav padding and layout */
    nav {
        padding: 16px 20px;
        width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
    }

    nav.scrolled {
        padding: 12px 20px;
    }

    /* Show hamburger, hide nav links by default */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* Fix slide content padding and overflow */
    .slide-content {
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .slide-headline {
        font-size: clamp(36px, 10vw, 52px);
    }

    .slide-sub {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }

    /* Hide glass card on mobile */
    .glass-card {
        display: none !important;
    }

    /* Hide scroll indicator on mobile */
    .scroll-ind {
        display: none;
    }

    /* Fix section padding - remove right empty space */
    #about,
    #events,
    #team,
    #testimonials,
    #contact {
        padding: 80px 20px;
        overflow-x: hidden;
        box-sizing: border-box;
        width: 100%;
    }

    #hero {
        height: 100vh;
        overflow: hidden;
        width: 100%;
    }

    .slides-container {
        width: 100%;
        overflow: hidden;
    }

    /* Fix slide dots positioning */
    .slide-dots {
        left: 20px;
        bottom: 30px;
    }

    /* Events grid - single column */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .event-card-full {
        height: 380px;
        width: 100%;
        box-sizing: border-box;
    }

    .event-content-overlay {
        padding: 1.5rem 1.2rem 1.2rem;
    }

    .event-title-full {
        font-size: 1.2rem;
    }

    .event-desc-full {
        display: none;
    }

    .event-badges-top {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }

    /* Team grid - 2 columns */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .team-card {
        width: 100%;
        box-sizing: border-box;
    }

    .team-portrait {
        aspect-ratio: 3/4;
        min-height: 200px;
    }

    .team-name {
        font-size: 18px;
    }

    .team-bio {
        font-size: 11px;
    }

    /* Testimonials */
    .testimonial-card {
        width: 100%;
        min-width: 0;
        padding: 28px 24px;
        box-sizing: border-box;
    }

    .testimonials-track {
        gap: 16px;
        padding: 0 10px;
    }

    .testimonials-track-wrapper::before,
    .testimonials-track-wrapper::after {
        width: 60px;
    }

    /* Contact form */
    .contact-form {
        padding: 30px 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-grid {
        gap: 40px;
        width: 100%;
        box-sizing: border-box;
    }

    /* About section */
    .about-grid {
        gap: 40px;
        width: 100%;
        box-sizing: border-box;
    }

    .about-visual {
        aspect-ratio: 4/5;
        width: 100%;
    }

    .about-content {
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .about-feature {
        padding: 16px 18px;
        width: 100%;
        box-sizing: border-box;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
        width: 100%;
        box-sizing: border-box;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-num {
        font-size: 32px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .services-section {
        padding: 60px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .service-card {
        padding: 28px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Footer */
    footer {
        padding: 60px 20px 32px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    /* Map section */
    #location {
        height: 500px;
        width: 100%;
        overflow: hidden;
    }

    .map-glass-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: -80px 16px 0;
        padding: 30px 28px;
        min-width: auto;
        width: auto;
        border-radius: var(--radius);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }

    .map-embed {
        height: 100%;
        width: 100%;
    }

    .map-card-title {
        font-size: 24px;
    }

    /* Founding highlight */
    .founding-highlight {
        padding: 30px 24px;
        margin: 0 0 40px 0;
        width: 100%;
        box-sizing: border-box;
        gap: 30px;
    }

    .founder-portrait {
        width: 140px;
        height: 140px;
        margin: 0 auto;
        font-size: 48px;
    }

    .founder-name {
        font-size: 26px;
    }

    .founder-quote {
        font-size: 17px;
    }

    /* Section titles */
    .section-title {
        font-size: clamp(30px, 8vw, 42px);
    }

    .section-eyebrow {
        font-size: 9px;
        letter-spacing: 0.3em;
    }

    /* Quick contact buttons */
    .quick-contacts {
        width: 100%;
        box-sizing: border-box;
    }

    .quick-contact-btn {
        padding: 14px 18px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Orbs - hide on mobile for performance */
    .orb {
        display: none;
    }

    /* Fix any horizontal scroll issues */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    html {
        overflow-x: hidden;
        width: 100%;
    }

    * {
        max-width: 106%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 16px;
    }

    nav.scrolled {
        padding: 10px 16px;
    }

    #about,
    #events,
    #team,
    #testimonials,
    #contact {
        padding: 60px 16px;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .team-card {
        border-radius: var(--radius);
    }

    .team-info {
        padding: 16px 16px 20px;
    }

    .team-portrait {
        min-height: 160px;
    }

    .event-card-full {
        height: 340px;
    }

    .event-title-full {
        font-size: 1rem;
    }

    .event-content-overlay {
        padding: 1.2rem 1rem 1rem;
    }

    .event-button-full {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }

    .price-badge-full {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .date-badge .date-day {
        font-size: 1.4rem;
    }

    .testimonial-card {
        padding: 24px 18px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .form-input,
    .form-textarea {
        padding: 20px 14px 8px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 15px;
        font-size: 13px;
    }

    .map-glass-card {
        margin: -60px 12px 0;
        padding: 24px 20px;
    }

    .founding-highlight {
        padding: 24px 18px;
        gap: 20px;
    }

    .founder-portrait {
        width: 110px;
        height: 110px;
        font-size: 36px;
    }

    .founder-name {
        font-size: 22px;
    }

    .founder-quote {
        font-size: 15px;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .stat-item {
        padding: 18px 12px;
    }

    .stat-num {
        font-size: 26px;
    }

    .stat-label {
        font-size: 9px;
    }

    .services-section {
        padding: 40px 16px;
    }

    .service-card {
        padding: 22px 16px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-name {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 34px);
    }

    .footer-grid {
        gap: 30px;
        padding-bottom: 30px;
    }

    footer {
        padding: 40px 16px 24px;
    }
}