﻿html { overflow-x: hidden; max-width: 100%; }
body { background-color: #000000; color: #ffffff; overflow-x: hidden; max-width: 100%; }
.spark-page { overflow-x: hidden; max-width: 100%; }

        .text-gradient {
            background: linear-gradient(to right, #17ff02, #ddff15);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .bg-gradient-cosmic { background: linear-gradient(135deg, #17ff02, #ddff15); }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #050505; }
        ::-webkit-scrollbar-thumb { background: #222; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #7B2FBE; }

        /* ---- HERO BANNER ---- */
        .experiences-hero {
            padding-top: 80px;
            margin-bottom: 48px;
        }
        .hero-banner {
            position: relative;
            width: 100%;
            aspect-ratio: 21 / 9;
            overflow: hidden;
            background: #000;
        }
        .hero-banner__media,
        .hero-banner__media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* ---- POST-HERO TAGLINE ---- */
        .experiences-tagline {
            margin-bottom: 64px;
            text-align: center;
        }
        .experiences-tagline__text {
            display: inline-block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1rem, 2.8vw, 1.65rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            line-height: 1.2;
            color: #000;
            background: linear-gradient(135deg, #17ff02, #ddff15);
            padding: 16px 36px;
            border-radius: 50px;
            box-shadow: 0 0 48px rgba(170, 255, 0, 0.18);
        }
        .experiences-pdf-download {
            margin-top: 20px;
            text-align: center;
        }

        /* ---- WHY SPARK SECTION ---- */
        .why-section {
            padding: 80px 0;
            border-top: 1px solid #1a1a1a;
            border-bottom: 1px solid #1a1a1a;
            margin-bottom: 100px;
            position: relative;
            overflow: hidden;
        }
        .why-section::before {
            content: 'SPARK';
            position: absolute;
            right: -60px; top: 50%;
            transform: translateY(-50%);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18rem;
            font-weight: 900;
            color: rgba(255,255,255,0.015);
            letter-spacing: -0.05em;
            pointer-events: none;
            user-select: none;
        }
        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .why-heading {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 24px;
        }
        .why-intro {
            font-size: 0.95rem;
            color: #888;
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .why-bullets {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .why-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 0.95rem;
            color: #ccc;
            line-height: 1.5;
        }
        .why-bullets li .bullet-icon {
            width: 28px; height: 28px;
            min-width: 28px;
            border-radius: 50%;
            background: rgba(123,47,190,0.15);
            border: 1px solid rgba(123,47,190,0.4);
            display: flex; align-items: center; justify-content: center;
            margin-top: 1px;
        }
        .why-bullets li .bullet-icon svg { width: 12px; height: 12px; color: #9B4FDE; }
        .why-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .why-quote-block {
            background: #0d0d0d;
            border: 1px solid #222;
            border-left: 3px solid #7B2FBE;
            border-radius: 12px;
            padding: 20px 24px;
            font-size: 0.88rem;
            color: #888;
            line-height: 1.7;
        }
        .why-tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .why-tag {
            padding: 8px 18px;
            border: 1px solid #2a2a2a;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            transition: all 0.2s ease;
        }
        .why-tag:hover { border-color: #7B2FBE; color: #9B4FDE; }
        .why-highlight {
            background: linear-gradient(135deg, rgba(123,47,190,0.1), rgba(170,255,0,0.05));
            border: 1px solid rgba(123,47,190,0.25);
            border-radius: 16px;
            padding: 28px;
        }
        .why-highlight p {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #ccc;
            line-height: 1.8;
        }
        .why-highlight p strong {
            color: #AAFF00;
        }
        .why-cta-pill {
            display: inline-block;
            background: rgba(245,255,0,0.08);
            border: 1px solid rgba(245,255,0,0.2);
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #F5FF00;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ---- SECTION LABELS ---- */
        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #AAFF00;
            margin-bottom: 10px;
            display: block;
        }
        .section-heading {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 10px;
        }
        .section-sub {
            font-size: 0.88rem;
            color: #666;
            margin-bottom: 48px;
        }

        /* ---- DAY LABEL ---- */
        .day-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 36px;
        }
        .day-label .day-badge {
            background: rgba(123,47,190,0.15);
            border: 1px solid rgba(123,47,190,0.4);
            border-radius: 8px;
            padding: 8px 16px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: #9B4FDE;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .day-label .day-line {
            height: 1px;
            flex: 1;
            background: linear-gradient(90deg, #333, transparent);
        }

        /* ---- EVENT CARDS ---- */
        .events-grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            margin-bottom: 40px;
        }
        .event-card { display: flex; flex-direction: column; }
        .event-card--horizontal {
            padding: 0;
            overflow: hidden;
        }
        .event-card-layout {
            display: flex;
            flex-direction: row;
            align-items: stretch;
            min-height: 100%;
        }
        .event-card--horizontal .event-banner {
            flex: 0 0 45%;
            max-width: 45%;
            margin: 0;
            aspect-ratio: auto;
            height: auto;
            align-self: stretch;
            overflow: hidden;
            border-radius: 16px 0 0 16px;
        }
        .event-card--horizontal .event-banner img {
            width: 100%;
            height: 100%;
            min-height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .event-card--horizontal.event-card--reverse .event-card-layout {
            flex-direction: row-reverse;
        }
        .event-card--horizontal.event-card--reverse .event-banner {
            border-radius: 0 16px 16px 0;
        }
        .event-card-body {
            flex: 0 0 55%;
            max-width: 55%;
            padding: 32px;
            display: flex;
            flex-direction: column;
        }
        .event-card-body .card-footer {
            margin-top: auto;
        }
        .event-banner img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .event-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 14px;
        }
        .event-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }
        .speaker-name {
            font-size: 0.85rem;
            font-weight: 700;
            color: #AAFF00;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .speaker-name::before {
            content: '';
            width: 20px; height: 2px;
            background: #AAFF00;
            display: inline-block;
        }

        /* Audience tags */
        .audience-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #555;
            margin-bottom: 10px;
        }
        .audience-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 20px;
        }
        .audience-tag {
            padding: 5px 12px;
            background: rgba(255,255,255,0.04);
            border: 1px solid #2a2a2a;
            border-radius: 50px;
            font-size: 0.74rem;
            font-weight: 600;
            color: #888;
            transition: all 0.2s ease;
        }
        .spark-card:hover .audience-tag {
            border-color: rgba(123,47,190,0.3);
            color: #aaa;
        }

        /* Topics */
        .topics-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #555;
            margin-bottom: 10px;
        }
        .topics-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
        }
        .topics-list li {
            font-size: 0.82rem;
            color: #888;
            padding: 5px 0;
            padding-left: 16px;
            position: relative;
            line-height: 1.5;
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }
        .topics-list li:last-child { border-bottom: none; }
        .topics-list li::before {
            content: '';
            position: absolute;
            left: 0; top: 13px;
            width: 5px; height: 5px;
            border-radius: 50%;
            background: #7B2FBE;
        }

        /* Surprise teaser */
        .surprise-box {
            background: linear-gradient(135deg, rgba(123,47,190,0.08), rgba(245,255,0,0.04));
            border: 1px dashed rgba(123,47,190,0.4);
            border-radius: 10px;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .surprise-box .star { font-size: 1.1rem; }
        .surprise-box p {
            font-size: 0.8rem;
            font-weight: 600;
            color: #9B4FDE;
        }

        /* Card footer */
        .card-footer {
            margin-top: auto;
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 20px;
        }
        .seats-counter {
            font-size: 0.8rem;
            font-weight: 700;
            color: #F5FF00;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .seats-counter .dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: #F5FF00;
            animation: pulseDot 2s ease-in-out infinite;
        }
        @keyframes pulseDot { 0%,100%{opacity:0.4;} 50%{opacity:1;} }
        .price-tag {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #AAFF00;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
            line-height: 1;
        }

        /* ---- SOUL TRAVELLING - FULL DAY ---- */
        .soul-section {
            margin-bottom: 100px;
        }
        .soul-why-box {
            background: #0a0a0a;
            border: 1px solid #1e1e1e;
            border-radius: 16px;
            padding: 36px;
            margin-bottom: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .soul-why-heading {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 16px;
        }
        .soul-why-body {
            font-size: 0.88rem;
            color: #888;
            line-height: 1.8;
        }
        .soul-why-lines {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .soul-why-lines li {
            font-size: 0.88rem;
            font-weight: 600;
            color: #bbb;
            padding-left: 20px;
            position: relative;
        }
        .soul-why-lines li::before {
            content: '\2192';
            position: absolute;
            left: 0;
            color: #AAFF00;
            font-weight: 700;
        }

        /* Timeline */
        .soul-timeline {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            position: relative;
        }
        .soul-timeline::before {
            content: '';
            position: absolute;
            top: 52px; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, #7B2FBE, #AAFF00, #F5FF00);
            opacity: 0.3;
            z-index: 0;
        }
        .timeline-block {
            background: #111111;
            border: 1px solid #2a2a2a;
            border-radius: 16px;
            padding: 28px;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .timeline-block:hover {
            border-color: rgba(123,47,190,0.5);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(123,47,190,0.1);
        }
        .timeline-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: #AAFF00;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }
        .timeline-time {
            display: inline-block;
            background: rgba(123,47,190,0.15);
            border: 1px solid rgba(123,47,190,0.35);
            color: #9B4FDE;
            border-radius: 50px;
            padding: 5px 14px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .timeline-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            margin-bottom: 6px;
            color: #fff;
        }
        .timeline-tagline {
            font-size: 0.78rem;
            color: #555;
            font-style: italic;
            margin-bottom: 8px;
        }
        .timeline-intro {
            font-size: 0.82rem;
            color: #888;
            line-height: 1.65;
            margin-bottom: 14px;
        }
        .timeline-items-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #555;
            margin-bottom: 10px;
        }
        .timeline-conductor {
            font-size: 0.85rem;
            font-weight: 700;
            color: #AAFF00;
            margin-bottom: 16px;
        }
        .timeline-items {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .timeline-items li {
            font-size: 0.8rem;
            color: #888;
            padding-left: 14px;
            position: relative;
            line-height: 1.4;
        }
        .timeline-items li::before {
            content: '';
            position: absolute;
            left: 0; top: 7px;
            width: 5px; height: 5px;
            border-radius: 50%;
        }
        .timeline-block:nth-child(1) .timeline-items li::before { background: #F5FF00; }
        .timeline-block:nth-child(2) .timeline-items li::before { background: #7B2FBE; }
        .timeline-block:nth-child(3) .timeline-items li::before { background: #AAFF00; }

        .soul-book-banner {
            margin-top: 32px;
            background: linear-gradient(135deg, rgba(123,47,190,0.12), rgba(170,255,0,0.06));
            border: 1px solid rgba(123,47,190,0.3);
            border-radius: 16px;
            padding: 32px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .soul-book-banner .left p { color: #888; font-size: 0.88rem; margin-top: 6px; }
        .soul-book-banner .left strong {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.01em;
        }
        .soul-book-banner .right {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }
        .soul-price {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #AAFF00;
            letter-spacing: -0.03em;
            line-height: 1;
        }

        /* ---- COMBO PASSES ---- */
        .pass-section {
            margin-bottom: 100px;
        }
        .experiences-pdf-download__link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border: 1px solid rgba(170, 255, 0, 0.35);
            border-radius: 50px;
            background: rgba(170, 255, 0, 0.06);
            color: #AAFF00;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            text-decoration: none;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }
        .experiences-pdf-download__link svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }
        .experiences-pdf-download__link:hover {
            background: rgba(170, 255, 0, 0.14);
            border-color: rgba(170, 255, 0, 0.55);
            color: #ddff15;
        }
        .combo-book-banner {
            margin-top: 32px;
            background: linear-gradient(135deg, rgba(123,47,190,0.12), rgba(170,255,0,0.06));
            border: 1px solid rgba(123,47,190,0.3);
            border-radius: 16px;
            padding: 32px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .combo-book-left strong {
            display: block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
        }
        .combo-book-left p {
            color: #888;
            font-size: 0.88rem;
            line-height: 1.6;
            max-width: 520px;
        }
        .combo-book-label {
            display: inline-block;
            background: rgba(245,255,0,0.12);
            border: 1px solid rgba(245,255,0,0.25);
            border-radius: 50px;
            padding: 4px 12px;
            font-size: 0.72rem;
            font-weight: 700;
            color: #F5FF00;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 12px;
        }
        .combo-book-right {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .combo-book-original {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #555;
            text-decoration: line-through;
        }
        .combo-book-price {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #AAFF00;
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .timeline-block .event-banner {
            margin: -28px -28px 20px;
            overflow: hidden;
        }
        .timeline-block .event-banner img {
            width: 100%;
            height: auto;
            object-fit: contain;
            object-position: center top;
        }
        .timeline-block .card-footer {
            margin-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 20px;
        }
        @media (min-width: 1025px) {
            .timeline-block .card-footer {
                margin-top: auto;
            }
        }
        .timeline-block .price-tag {
            font-size: 1.8rem;
            margin-bottom: 12px;
        }

        /* ---- SPEAKERS & ARTISTS ---- */
        .people-section {
            padding: 80px 0;
            border-top: 1px solid #1a1a1a;
            margin-bottom: 80px;
        }
        .people-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }
        .speaker-card {
            background: #0d0d0d;
            border: 1px solid #222;
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .speaker-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, #7B2FBE, #AAFF00);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .speaker-card:hover { border-color: #333; transform: translateY(-3px); }
        .speaker-card:hover::after { opacity: 1; }

        .speaker-role {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #7B2FBE;
            margin-bottom: 10px;
        }
        .speaker-name-big {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            color: #fff;
            margin-bottom: 8px;
        }
        .speaker-session {
            font-size: 0.82rem;
            color: #555;
            margin-bottom: 16px;
        }
        .speaker-topics-mini {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .speaker-topic-mini {
            padding: 4px 12px;
            background: rgba(123,47,190,0.08);
            border: 1px solid rgba(123,47,190,0.2);
            border-radius: 50px;
            font-size: 0.72rem;
            color: #9B4FDE;
            font-weight: 600;
        }

        .artists-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .artist-card {
            background: #0d0d0d;
            border: 1px solid #1e1e1e;
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: border-color 0.2s ease;
        }
        .artist-card:hover { border-color: #333; }
        .artist-avatar {
            width: 44px; height: 44px;
            min-width: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7B2FBE, #AAFF00);
            display: flex; align-items: center; justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 900;
            color: #000;
        }
        .artist-info .role { font-size: 0.7rem; color: #555; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
        .artist-info .name { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: #ddd; }

        /* ---- PARTNERS STRIP ---- */
        .partners-section {
            padding: 60px 0;
            border-top: 1px solid #1a1a1a;
            border-bottom: 1px solid #1a1a1a;
            margin-bottom: 80px;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
            position: relative;
            contain: paint;
        }
        .partners-scroll {
            overflow: hidden;
            position: relative;
            width: 100%;
            max-width: 100%;
            clip-path: inset(0);
        }
        .partners-scroll::before {
            content: '';
            position: absolute; left: 0; top: 0;
            width: 120px; height: 100%;
            background: linear-gradient(90deg, #000, transparent);
            z-index: 1;
        }
        .partners-scroll::after {
            content: '';
            position: absolute; right: 0; top: 0;
            width: 120px; height: 100%;
            background: linear-gradient(270deg, #000, transparent);
            z-index: 1;
        }
        .partners-track {
            display: flex;
            gap: 60px;
            width: max-content;
            animation: exp-marquee 35s linear infinite;
        }
        .partner-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }
        .partner-role {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #7B2FBE;
        }
        .partner-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #333;
            transition: color 0.3s ease;
        }
        .partners-track:hover .partner-name { color: #555; }
        .partner-item:hover .partner-name { color: #fff !important; }

        /* ---- RESPONSIVE ---- */
        @media (max-width: 1024px) {
            .why-grid { grid-template-columns: 1fr; gap: 40px; }
            .soul-timeline { grid-template-columns: 1fr; }
            .soul-timeline::before { display: none; }
            .people-grid { grid-template-columns: 1fr; }
            .soul-why-box { grid-template-columns: 1fr; gap: 24px; }
        }
        @media (max-width: 767px) {
            .event-card--horizontal .event-card-layout,
            .event-card--horizontal.event-card--reverse .event-card-layout {
                flex-direction: column;
            }
            .event-card--horizontal .event-banner,
            .event-card--horizontal.event-card--reverse .event-banner {
                flex: none;
                max-width: 100%;
                width: 100%;
                aspect-ratio: 3 / 4;
                border-radius: 16px 16px 0 0;
            }
            .event-card--horizontal .event-banner img {
                min-height: unset;
                height: 100%;
            }
            .event-card-body {
                flex: none;
                max-width: 100%;
                width: 100%;
                padding: 24px 24px 28px;
            }
            .experiences-hero {
                margin-bottom: 36px;
            }
            .experiences-tagline {
                margin-bottom: 48px;
            }
            .experiences-tagline__text {
                padding: 14px 24px;
                letter-spacing: 0.06em;
            }
            .hero-banner {
                aspect-ratio: 4 / 5;
            }
            .hero-banner__media img {
                object-position: center 30%;
            }
        }
        @media (max-width: 680px) {
            .experiences-hero {
                margin-bottom: 60px;
            }
            .soul-book-banner { flex-direction: column; align-items: flex-start; }
            .combo-book-banner { flex-direction: column; align-items: flex-start; padding: 24px; }
            .combo-book-right { width: 100%; justify-content: space-between; }
            .artists-row { grid-template-columns: 1fr; }
            .partners-section { margin-bottom: 40px; }
            .partners-scroll::before,
            .partners-scroll::after { width: 40px; }
            .partners-track { gap: 36px; }
            .partner-name { font-size: 0.95rem; }
        }

@keyframes exp-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.sold-out-btn { background: #222 !important; color: #666 !important; pointer-events: none; }
