        :root {
            --event-color: #1a2b3a;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 24px;
            background: rgba(26, 43, 58, 0.95);
            backdrop-filter: blur(10px);
            z-index: 100;
            transition: background 0.3s;
        }

        header.scrolled {
            background: var(--navy);
        }

        .header-back {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            opacity: 0.9;
            transition: opacity 0.2s;
        }

        .header-back:hover {
            opacity: 1;
        }

        .header-back svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .header-actions {
            display: flex;
            gap: 12px;
        }

        .header-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            background: rgba(255,255,255,0.1);
            color: var(--white);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .header-btn:hover {
            background: rgba(255,255,255,0.2);
        }

        .header-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Hero */
        .event-hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            max-height: 700px;
            overflow: hidden;
        }

        .event-hero-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .event-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(26, 43, 58, 0.15) 0%,
                rgba(26, 43, 58, 0.3) 50%,
                rgba(26, 43, 58, 0.7) 100%
            );
        }

        .event-hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 60px 24px 320px;
            max-width: 900px;
            margin: 0 auto;
        }

        .event-badges {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .event-type-badge {
            display: inline-block;
            padding: 8px 16px;
            background: var(--event-color);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .event-hero h1 {
            font-family: 'Libre Baskerville', Georgia, serif;
            font-size: clamp(26px, 5vw, 52px);
            font-weight: 400;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .event-hero-tagline {
            font-family: 'Libre Baskerville', Georgia, serif;
            font-style: italic;
            font-size: clamp(17px, 2.2vw, 22px);
            line-height: 1.4;
            color: rgba(255,255,255,0.92);
            max-width: 720px;
            margin: 0 0 24px;
        }

        .mh-image-tagline {
            font-family: 'Libre Baskerville', Georgia, serif;
            font-style: italic;
            font-size: 14px;
            line-height: 1.35;
            color: rgba(255,255,255,0.92);
            margin: 0 0 8px;
            max-width: 92%;
            text-shadow: 0 1px 4px rgba(0,0,0,0.35);
        }

        .event-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            font-size: 16px;
            color: rgba(255,255,255,0.9);
        }

        .event-hero-meta span {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .event-hero-meta svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
            opacity: 0.8;
        }

        /* Main Content */
        main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            margin-top: -300px;
            position: relative;
            z-index: 10;
        }

        .event-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 360px;
            gap: 32px;
        }

        /* Event Details Card */
        .event-details {
            background: var(--white);
            padding: 40px;
            min-width: 0;
            max-width: 100%;
        }

        .event-section {
            margin-bottom: 40px;
        }

        .event-section:last-child {
            margin-bottom: 0;
        }

        .event-section h2 {
            font-family: 'Libre Baskerville', Georgia, serif;
            font-size: 24px;
            font-weight: 400;
            color: var(--navy);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }

        .event-description {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text);
        }

        .event-description h3 {
            font-family: 'Libre Baskerville', Georgia, serif;
            font-size: 20px;
            font-weight: 400;
            color: var(--navy);
            margin: 32px 0 12px;
        }

        .event-description h3:first-child {
            margin-top: 0;
        }

        .event-description p {
            margin-bottom: 20px;
        }

        .event-description strong {
            color: var(--navy);
        }

        .event-description ul,
        .event-description ol {
            margin-bottom: 20px;
            padding-left: 24px;
        }

        .event-description li {
            margin-bottom: 8px;
        }

        /* Location Section */
        .location-card {
            display: flex;
            gap: 20px;
            background: var(--bone);
            padding: 24px;
        }

        .location-icon {
            width: 48px;
            height: 48px;
            background: var(--event-color);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .location-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

        .location-info h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .location-info p {
            font-size: 15px;
            color: var(--text-mid);
            margin-bottom: 12px;
        }

        .location-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--blue);
            text-decoration: none;
        }

        .location-link:hover {
            text-decoration: underline;
        }

        .location-link svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Gallery */
        .event-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .gallery-image {
            aspect-ratio: 4/3;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-image:hover img {
            transform: scale(1.05);
        }

        /* Attendees */
        .attendees-list {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .attendee-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--bone);
        }

        .attendee-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
        }

        .attendee-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .attendee-name {
            font-size: 15px;
            font-weight: 500;
            color: var(--navy);
        }

        .more-attendees {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background: var(--bone);
            font-size: 14px;
            color: var(--text-mid);
        }

        /* Sidebar */
        .event-sidebar {
            align-self: start;
        }

        .sticky-cta-bar {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 50;
            background: var(--white);
            border-top: 1px solid var(--border);
            box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
            transform: translateY(100%);
            transition: transform 0.25s ease;
            pointer-events: none;
        }
        .sticky-cta-bar.is-visible {
            transform: translateY(0);
            pointer-events: auto;
        }
        .sticky-cta-bar__inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .sticky-cta-bar__avatars {
            display: flex;
            flex-shrink: 0;
        }
        .sticky-cta-bar__avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--navy);
            border: 2px solid var(--white);
            overflow: hidden;
            display: inline-block;
            flex-shrink: 0;
        }
        .sticky-cta-bar__avatar + .sticky-cta-bar__avatar {
            margin-left: -10px;
        }
        .sticky-cta-bar__avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .sticky-cta-bar__avatar.is-logo img {
            object-fit: contain;
            padding: 4px;
        }
        .sticky-cta-bar__info {
            flex: 1;
            min-width: 0;
        }
        .sticky-cta-bar__title {
            font-weight: 600;
            color: var(--navy);
            font-size: 17px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .sticky-cta-bar__price {
            font-size: 15px;
            color: var(--text-mid);
            margin-top: 2px;
        }
        .sticky-cta-bar__btn {
            background: var(--navy);
            color: var(--white);
            font-weight: 600;
            font-size: 17px;
            padding: 14px 28px;
            border-radius: 4px;
            text-decoration: none;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .sticky-cta-bar__btn:hover { opacity: 0.9; }
        @media (max-width: 480px) {
            .sticky-cta-bar__avatars { display: none; }
            .sticky-cta-bar__inner { padding: 10px 14px; gap: 10px; }
            .sticky-cta-bar__title { font-size: 15px; }
            .sticky-cta-bar__price { font-size: 13px; }
            .sticky-cta-bar__btn { padding: 10px 16px; font-size: 14px; }
        }


        /* Sidebar Actions */
        .sidebar-actions {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .sidebar-action-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 16px;
            background: var(--white);
            border: 1px solid var(--border);
            color: var(--navy);
            font-size: 14px;
            font-weight: 500;
            font-family: inherit;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s;
        }

        .sidebar-action-btn:hover {
            background: var(--bone);
            border-color: var(--navy);
        }

        .sidebar-action-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* RSVP Card */
        .rsvp-card {
            background: var(--white);
            padding: 32px;
            margin-bottom: 24px;
        }

        .rsvp-price {
            text-align: center;
            margin-bottom: 24px;
        }

        .rsvp-price .amount {
            font-size: 36px;
            font-weight: 700;
            color: var(--navy);
        }

        .rsvp-price .note {
            font-size: 14px;
            color: var(--text-mid);
            margin-top: 4px;
        }

        .rsvp-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px;
            background: #e8f5e9;
            margin-bottom: 20px;
        }

        .rsvp-status svg {
            width: 24px;
            height: 24px;
            fill: var(--green);
        }

        .rsvp-status span {
            font-size: 16px;
            font-weight: 600;
            color: #2e7d32;
        }

        .rsvp-btn {
            display: block;
            width: 100%;
            padding: 18px 24px;
            font-size: 16px;
            font-weight: 600;
            font-family: inherit;
            text-align: center;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }

        .rsvp-btn-primary {
            background: var(--navy);
            color: var(--white);
        }

        .rsvp-btn-primary:hover,
        .rsvp-btn-primary:visited,
        .rsvp-btn-primary:active {
            background: var(--slate);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .rsvp-btn-outline {
            background: transparent;
            color: var(--navy);
            border: 1px solid var(--border);
            margin-top: 12px;
        }

        .rsvp-btn-outline:hover {
            background: var(--bone);
            border-color: var(--navy);
        }

        /* Cancel RSVP Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s, visibility 0.2s;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--white);
            padding: 32px;
            max-width: 400px;
            width: 90%;
            text-align: center;
            transform: scale(0.9);
            transition: transform 0.2s;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: #fff3e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-icon svg {
            width: 32px;
            height: 32px;
            fill: #f57c00;
        }

        .modal-content h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .modal-content p {
            color: var(--text-mid);
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .modal-buttons {
            display: flex;
            gap: 12px;
        }

        .modal-btn {
            flex: 1;
            padding: 14px 20px;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }

        .modal-btn-cancel {
            background: var(--bone);
            color: var(--navy);
        }

        .modal-btn-cancel:hover {
            background: var(--border);
        }

        .modal-btn-confirm {
            background: #d32f2f;
            color: white;
        }

        .modal-btn-confirm:hover {
            background: #b71c1c;
        }

        /* Details Card */
        .details-card {
            background: var(--white);
            padding: 24px;
            margin-bottom: 24px;
        }

        .details-card h3 {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .detail-item svg {
            width: 20px;
            height: 20px;
            fill: var(--event-color);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .detail-item-content {
            flex: 1;
        }

        .detail-item-label {
            font-size: 12px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 2px;
        }

        .detail-item-value {
            font-size: 15px;
            color: var(--navy);
            font-weight: 500;
        }

        /* Host Card */
        .host-card {
            background: var(--white);
            padding: 24px;
        }

        .host-card h3 {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .host-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
        }

        .host-info + .host-info {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .host-card--compact {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 20px;
        }

        .host-card--compact h3 {
            width: 100%;
            margin-bottom: 4px;
        }

        .host-info--compact {
            flex-direction: row;
            text-align: left;
            gap: 10px;
            align-items: center;
        }

        .host-info--compact + .host-info--compact {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        .host-info--compact .host-avatar {
            width: 56px;
            height: 56px;
            border-radius: 8px;
        }

        .host-info--compact .host-details h4 {
            font-size: 14px;
        }

        .host-info--compact .host-details p {
            display: none;
        }

        .host-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .host-avatar--logo {
            background: var(--navy);
        }

        .host-avatar--logo[style*="background"] {
            width: 200px;
            height: 100px;
            border-radius: 12px;
        }

        .host-avatar--logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .host-avatar--photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .host-details h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .host-details p {
            font-size: 14px;
            color: var(--text-mid);
        }

        .host-info-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            text-decoration: none;
            color: inherit;
            transition: opacity 0.2s;
        }

        .host-info-link:hover {
            opacity: 0.8;
        }

        .host-info-link:hover .host-details h4 {
            color: var(--blue);
        }


        .host-partner-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 500;
            color: var(--blue);
            background: rgba(43, 123, 185, 0.1);
            padding: 2px 8px;
            vertical-align: middle;
            margin-left: 4px;
        }

        /* Inline Share */
        .share-inline {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 0;
            margin-bottom: 24px;
            border-bottom: 1px solid var(--border);
        }

        .share-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-mid);
        }

        .share-buttons {
            display: flex;
            gap: 10px;
        }

        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.15);
        }

        .share-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .share-btn--whatsapp { background: #25D366; }
        .share-btn--facebook { background: #1877F2; }
        .share-btn--twitter { background: #000000; }
        .share-btn--linkedin { background: #0A66C2; }
        .share-btn--copy { background: var(--navy); }
        .share-btn--copy.copied { background: var(--green); }

        /* Footer */
        footer {
            background: var(--navy);
            padding: 32px 24px;
            text-align: center;
            margin-top: 80px;
        }

        footer p {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        footer a {
            color: rgba(255,255,255,0.5);
        }

        footer a:hover {
            color: var(--white);
        }

        /* Tablet */
        @media (max-width: 768px) {
            /* Prevent any 100vw full-bleed children from causing horizontal page scroll */
            body { overflow-x: hidden; }

            .event-layout {
                grid-template-columns: 1fr;
            }

            /* Allow grid children to shrink past intrinsic min-content
               so wide flex/scroll children (like horizontal reel rows) don't
               blow out the column width. */
            .event-layout > * {
                min-width: 0;
            }

            /* Full-bleed recap video — break out of all parent padding */
            .recap-video-section video {
                width: 100vw;
                max-width: 100vw;
                margin-left: 50%;
                transform: translateX(-50%);
                border-radius: 0;
                display: block;
            }

            .event-sidebar {
                position: static;
            }

            .event-hero {
                height: 50vh;
                min-height: 400px;
            }

            main {
                margin-top: -200px;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .header-actions {
                gap: 8px;
            }

            .header-btn span {
                display: none;
            }

            .event-hero {
                height: auto;
                min-height: 420px;
            }

            .event-hero-content {
                position: relative;
                padding: 24px 16px 160px;
            }

            .event-hero-meta {
                flex-direction: column;
                gap: 12px;
            }

            main {
                padding: 0 16px;
                margin-top: -120px;
            }

            .event-details {
                padding: 24px;
            }

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

            .location-card {
                flex-direction: column;
                text-align: center;
            }

            .location-icon {
                margin: 0 auto;
            }
        }

        /* Confetti Animation */
        .confetti-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 999;
            overflow: hidden;
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            opacity: 0;
        }

        .confetti.active {
            animation: confettiFall 3s ease-out forwards;
        }

        @keyframes confettiFall {
            0% { opacity: 1; transform: translateY(-100px) rotate(0deg); }
            100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
        }

        /* Social Proof */
        .social-proof-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .social-proof-grid img {
            width: 100%;
            border-radius: 12px;
            border: 1px solid var(--border, #e5e5e5);
        }

        .reels-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .past-events-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            max-width: 100%;
        }
        .past-event-card {
            margin: 0;
            min-width: 0;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        /* Source video files are 9:16 portrait, but the content inside was
           filmed sideways. Rotate the whole player 90deg so the landscape
           content reads upright, producing a 16:9 visual landscape block. */
        .past-event-video-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: var(--navy);
            border-radius: 12px;
            border: 1px solid var(--border, #e5e5e5);
            overflow: hidden;
        }
        .past-event-video {
            position: absolute;
            top: 50%;
            left: 50%;
            /* Pre-rotation: 9:16 box with width = wrapper height, height = wrapper width.
               After rotate(90deg) around center it exactly fills the 16:9 wrapper. */
            width: 56.25%;   /* = wrapper height (since wrapper aspect 16:9, h = 9/16 w) */
            height: 177.78%; /* = wrapper width */
            transform: translate(-50%, -50%) rotate(-90deg);
            transform-origin: center;
            object-fit: cover;
            background: var(--navy);
            display: block;
        }
        .past-event-play {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.18);
            border: 0;
            color: #fff;
            cursor: pointer;
            transition: background 0.15s, opacity 0.2s;
            padding: 0;
        }
        .past-event-play:hover { background: rgba(0,0,0,0.32); }
        .past-event-play svg {
            background: rgba(0,0,0,0.55);
            border-radius: 50%;
            padding: 14px;
            width: 32px;
            height: 32px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
        }
        .past-event-video-wrap.is-playing .past-event-play {
            opacity: 0;
            pointer-events: none;
        }
        .past-event-meta {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 13.5px;
            line-height: 1.4;
            color: var(--text-mid, #5d6c7c);
        }
        .past-event-caption {
            color: var(--navy);
            font-weight: 500;
        }
        .past-event-ig {
            color: var(--blue, #2b7bb9);
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
        }
        .past-event-ig:hover { text-decoration: underline; }

        @media (max-width: 480px) {
            .past-events-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .past-photos-section { min-width: 0; max-width: 100%; }
        .past-photos-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-areas:
                "a a b c"
                "a a d d"
                "e f d d"
                "g g h h";
            grid-auto-rows: minmax(0, 1fr);
            aspect-ratio: 1 / 1;
            gap: 8px;
            max-width: 100%;
        }
        .past-photo {
            border-radius: 10px;
            overflow: hidden;
            background: var(--bone);
            min-width: 0;
        }
        .past-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 32%;
            display: block;
            transition: transform 0.4s ease;
        }
        .past-photo:hover img { transform: scale(1.04); }
        .past-photos-strip > .past-photo:nth-child(1) { grid-area: a; }
        .past-photos-strip > .past-photo:nth-child(2) { grid-area: b; }
        .past-photos-strip > .past-photo:nth-child(3) { grid-area: c; }
        .past-photos-strip > .past-photo:nth-child(4) { grid-area: d; }
        .past-photos-strip > .past-photo:nth-child(5) { grid-area: e; }
        .past-photos-strip > .past-photo:nth-child(6) { grid-area: f; }
        .past-photos-strip > .past-photo:nth-child(7) { grid-area: g; }
        .past-photos-strip > .past-photo:nth-child(8) { grid-area: h; }
        .past-photos-strip > .past-photo:nth-child(3) img {
            object-position: center;
        }
        .past-photos-strip > .past-photo:nth-child(4) img {
            object-fit: contain;
            object-position: center;
            background: var(--bone);
        }
        @media (max-width: 768px) {
            .past-photos-strip {
                grid-template-columns: repeat(2, 1fr);
                grid-template-areas:
                    "a a"
                    "a a"
                    "b c"
                    "d d"
                    "d d"
                    "e f"
                    "g h";
                aspect-ratio: 2 / 3.5;
                gap: 6px;
            }
        }

        .reel-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 9 / 16;
            background: var(--navy);
        }

        .reel-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .reel-card:hover img {
            transform: scale(1.05);
        }

        .reel-card-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease;
        }

        .reel-card:hover .reel-card-overlay {
            background: rgba(0, 0, 0, 0.35);
        }

        .reel-card-overlay svg {
            width: 48px;
            height: 48px;
            fill: white;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
        }

        .reel-card-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 12px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            font-size: 13px;
            font-weight: 500;
        }

        /* Public RSVP form */
        .rsvp-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border, #ddd);
            border-radius: 8px;
            font-size: 15px;
            font-family: var(--font-body, inherit);
            box-sizing: border-box;
        }

        .rsvp-input:focus {
            outline: none;
            border-color: var(--navy);
        }

        /* Countdown badge */
        .event-countdown {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            padding: 8px 16px;
            border-radius: 100px;
            color: white;
            font-size: 14px;
            font-weight: 600;
        }

        .event-countdown svg {
            width: 16px;
            height: 16px;
            fill: #f59e0b;
        }

        /* Recap video section */
        .recap-video-section video {
            width: 100%;
            border-radius: 12px;
        }


        @media (max-width: 600px) {
            .social-proof-grid {
                grid-template-columns: 1fr;
            }
            .reels-grid {
                display: flex;
                flex-wrap: nowrap;
                gap: 12px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding-bottom: 4px;
                scroll-snap-type: x mandatory;
                min-width: 0; /* prevent flex content from forcing parent wider */
                /* fade right edge as a "swipe me" hint */
                -webkit-mask-image: linear-gradient(to right, #000 88%, transparent 100%);
                        mask-image: linear-gradient(to right, #000 88%, transparent 100%);
            }
            .reels-grid::-webkit-scrollbar { display: none; }
            .reel-card {
                flex: 0 0 auto;
                width: 150px;
                scroll-snap-align: start;
            }
        }

        /* FAQ accordion */
        .faq-list {
            margin-top: 8px;
        }
        .faq-item {
            border-top: 1px solid var(--border);
        }
        .faq-item:last-child {
            border-bottom: 1px solid var(--border);
        }
        .faq-item summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 18px 0;
            cursor: pointer;
            font-family: 'Libre Baskerville', Georgia, serif;
            font-size: 17px;
            font-weight: 400;
            color: var(--navy);
            list-style: none;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: '+';
            flex-shrink: 0;
            width: 24px;
            text-align: center;
            font-size: 22px;
            font-weight: 300;
            line-height: 1;
            color: var(--navy);
        }
        .faq-item[open] summary::after {
            content: '−';
        }
        .faq-answer {
            padding: 0 0 22px;
            color: var(--text);
            font-size: 15px;
            line-height: 1.7;
        }
        .faq-answer a {
            color: var(--blue);
        }
        @media (max-width: 480px) {
            .faq-item summary {
                font-size: 16px;
                padding: 16px 0;
            }
            .faq-answer {
                font-size: 14px;
            }
        }

        /* Read more toggle (mobile only) */
        .read-more-toggle {
            display: none;
        }

        @media (max-width: 768px) {
            .event-description.is-collapsible:not(.is-expanded) {
                max-height: 600px;
                overflow: hidden;
                position: relative;
            }
            .event-description.is-collapsible:not(.is-expanded)::after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 96px;
                background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff 85%);
                pointer-events: none;
            }
            .read-more-toggle {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                margin-top: 14px;
                padding: 10px 18px;
                background: var(--white);
                color: var(--navy);
                border: 1px solid var(--navy);
                font-family: inherit;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
            }
            .read-more-toggle:hover,
            .read-more-toggle:focus {
                background: var(--navy);
                color: var(--white);
            }

            /* Hide redundant date/time/location card on mobile — hero already shows these */
            .event-sidebar .details-card { display: none; }
            .event-sidebar .details-card.stay-card { display: block; }
            /* Hide "Back to Events" escape hatch on mobile — header nav covers this */
            .event-sidebar .sidebar-actions { display: none; }
        }

        /* === Mobile-first marketing hero (≤768px) === */
        .mobile-hero { display: none; }

        @media (max-width: 768px) {
            /* Replace desktop hero with full-fold marketing block on mobile */
            .event-hero { display: none; }
            .event-sidebar .rsvp-card { display: none; } /* duplicated in mobile hero */
            main { margin-top: 0; }

            .mobile-hero {
                position: relative;
                min-height: 92dvh;
                background: var(--navy);
                overflow: hidden;
                display: flex;
                flex-direction: column;
            }

            .mh-image {
                position: absolute;
                inset: 0;
                z-index: 0;
                background: var(--navy);
            }
            .mh-image img,
            .mh-image video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

            .mh-content {
                position: relative;
                z-index: 1;
                display: flex;
                flex-direction: column;
                flex: 1 1 auto;
                padding: 12px 14px 12px;
                gap: 10px;
                min-height: 0;
                justify-content: space-between;
            }

            .mh-ticker-slot {
                margin-top: auto;
                margin-right: -14px;
                margin-left: -14px;
                margin-bottom: 0;
                overflow: hidden;
                padding-top: 12px;
            }
            .mh-ticker-slot .quotes-ticker { margin: 0; }
            .mobile-hero ~ .quotes-ticker { display: none; }

            .mh-image-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    to bottom,
                    rgba(26,43,58,0.55) 0%,
                    rgba(26,43,58,0.35) 25%,
                    rgba(26,43,58,0.65) 60%,
                    rgba(26,43,58,0.92) 100%
                );
            }

            .mh-image-content { display: none; } /* legacy, not used */

            .mh-title {
                font-family: 'Libre Baskerville', Georgia, serif;
                font-size: clamp(22px, 5.8vw, 28px);
                font-weight: 400;
                color: var(--white);
                line-height: 1.15;
                margin: 0;
                text-shadow: 0 2px 12px rgba(0,0,0,0.4);
            }
            .mh-tagline {
                font-family: 'Libre Baskerville', Georgia, serif;
                font-style: italic;
                font-size: 13.5px;
                line-height: 1.35;
                color: rgba(255,255,255,0.92);
                margin: 0;
                text-shadow: 0 1px 4px rgba(0,0,0,0.35);
            }

            .mh-details-card {
                background: rgba(255,255,255,0.96);
                border: 1px solid rgba(255,255,255,0.6);
                border-radius: 10px;
                padding: 12px 14px;
                display: flex;
                flex-direction: column;
                gap: 9px;
                box-shadow: 0 4px 14px rgba(0,0,0,0.18);
                backdrop-filter: blur(4px);
                -webkit-backdrop-filter: blur(4px);
            }
            .mh-blurb {
                font-size: 13.5px;
                line-height: 1.4;
                color: var(--navy);
                margin: 0 0 2px;
            }
            .mh-row {
                display: flex;
                align-items: flex-start;
                gap: 12px;
            }
            .mh-row-icon {
                font-size: 18px;
                line-height: 1.2;
                flex-shrink: 0;
                width: 22px;
                text-align: center;
            }
            .mh-row-avatars {
                display: inline-flex;
                flex-shrink: 0;
                width: 22px;
                justify-content: flex-start;
            }
            .mh-row-avatars img + img { display: none; }
            .mh-row-avatars img {
                width: 22px;
                height: 22px;
                border-radius: 50%;
                border: 1.5px solid var(--white);
                object-fit: cover;
                background: var(--bone);
                margin-left: -7px;
            }
            .mh-row-avatars img:first-child { margin-left: 0; }
            .mh-row-text { min-width: 0; flex: 1 1 auto; }
            .mh-row-label {
                font-size: 10.5px;
                font-weight: 700;
                color: var(--text-mid, #5d6c7c);
                text-transform: uppercase;
                letter-spacing: 0.06em;
                line-height: 1.2;
                margin-bottom: 2px;
            }
            .mh-row-value {
                font-size: 14px;
                color: var(--navy);
                line-height: 1.35;
            }
            .mh-row-hint {
                font-size: 12px;
                color: var(--text-mid, #5d6c7c);
                opacity: 0.85;
            }

            .mh-image-badges {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                margin: 0 0 4px;
            }
            .mh-countdown {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                background: rgba(255,255,255,0.95);
                color: var(--navy);
                padding: 5px 10px;
                border-radius: 999px;
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 0.02em;
            }
            .mh-countdown svg { width: 13px; height: 13px; fill: currentColor; }

            .mh-spacer { display: none; }

            .mh-image-title {
                font-family: 'Libre Baskerville', Georgia, serif;
                font-size: clamp(24px, 6.5vw, 32px);
                font-weight: 400;
                color: var(--white);
                line-height: 1.15;
                margin: 0 0 8px;
                text-shadow: 0 2px 12px rgba(0,0,0,0.4);
            }

            .mh-info-card {
                background: var(--white);
                border: 1px solid var(--border, #e5e5e5);
                border-radius: 10px;
                padding: 14px;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 10px;
                box-shadow: 0 1px 3px rgba(0,0,0,0.04);
            }

            .mh-perks {
                display: flex;
                flex-wrap: nowrap;
                gap: 6px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                margin: 0 -2px; /* let chips bleed into card padding if tight */
            }
            .mh-perks::-webkit-scrollbar { display: none; }
            .mh-perk {
                display: inline-flex;
                align-items: center;
                gap: 5px;
                flex-shrink: 0;
                background: var(--white);
                border: 1px solid var(--border, #e5e5e5);
                color: var(--navy);
                padding: 6px 10px;
                border-radius: 999px;
                font-size: 13px;
                font-weight: 600;
                line-height: 1;
                white-space: nowrap;
            }
            .mh-perk-icon { font-size: 14px; line-height: 1; }

            .mh-hosts {
                display: flex;
                align-items: center;
                gap: 10px;
                color: var(--navy);
            }
            .mh-hosts-avatars { display: flex; flex-shrink: 0; }
            .mh-hosts-avatars img {
                width: 28px;
                height: 28px;
                border-radius: 50%;
                border: 1.5px solid var(--bone);
                object-fit: cover;
                margin-left: -7px;
                background: var(--white);
            }
            .mh-hosts-avatars img:first-child { margin-left: 0; }
            .mh-hosts-text {
                font-size: 13px;
                line-height: 1.35;
                min-width: 0;
            }
            .mh-hosts-label {
                display: block;
                color: var(--text-mid, #5d6c7c);
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                font-weight: 600;
                margin-bottom: 1px;
            }
            .mh-hosts-names {
                font-weight: 600;
                color: var(--navy);
            }
            .mh-hosts--top {
                margin-bottom: 14px;
                color: #fff;
            }
            .mh-hosts--top .mh-hosts-avatars img {
                width: 32px;
                height: 32px;
                border-color: rgba(255,255,255,0.9);
                box-shadow: 0 1px 4px rgba(0,0,0,0.25);
            }
            .mh-hosts--top .mh-hosts-label {
                color: rgba(255,255,255,0.8);
            }
            .mh-hosts--top .mh-hosts-names {
                color: #fff;
                text-shadow: 0 1px 4px rgba(0,0,0,0.35);
            }

            .mh-included {
                font-size: 13.5px;
                line-height: 1.45;
                color: var(--text-mid, #5d6c7c);
                margin: 0;
            }

            .mh-meta {
                display: flex;
                flex-wrap: wrap;
                column-gap: 8px;
                row-gap: 4px;
                font-size: 14px;
                color: rgba(255,255,255,0.92);
                margin-bottom: 18px;
                line-height: 1.4;
                text-shadow: 0 1px 6px rgba(0,0,0,0.35);
            }
            .mh-meta-sep { opacity: 0.55; }
            .mh-meta-loc-hint { opacity: 0.75; font-size: 12px; }

            .mh-scroll-hint {
                position: fixed;
                left: 50%;
                bottom: max(14px, env(safe-area-inset-bottom));
                z-index: 50;
                transform: translateX(-50%);
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: rgba(0, 0, 0, 0.55);
                backdrop-filter: blur(6px);
                -webkit-backdrop-filter: blur(6px);
                color: #fff;
                text-decoration: none;
                box-shadow: 0 2px 10px rgba(0,0,0,0.35);
                animation: mh-bounce 2.2s ease-in-out infinite;
                transition: opacity 0.3s ease, transform 0.3s ease;
                pointer-events: auto;
            }
            .mh-scroll-hint svg { width: 22px; height: 22px; fill: currentColor; }
            .mh-scroll-hint.is-hidden,
            body.sticky-cta-active .mh-scroll-hint {
                opacity: 0;
                pointer-events: none;
                transform: translateX(-50%) translateY(8px);
            }
            @keyframes mh-bounce {
                0%, 100% { transform: translateX(-50%) translateY(0); }
                50%      { transform: translateX(-50%) translateY(5px); }
            }
            @media (prefers-reduced-motion: reduce) {
                .mh-scroll-hint { animation: none; }
            }

            .mh-social {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-bottom: 14px;
            }
            .mh-avatars {
                display: flex;
            }
            .mh-avatars img {
                width: 26px;
                height: 26px;
                border-radius: 50%;
                border: 2px solid var(--white);
                object-fit: cover;
                margin-left: -8px;
                background: var(--bone);
            }
            .mh-avatars img:first-child { margin-left: 0; }
            .mh-social-count {
                font-size: 13px;
                font-weight: 600;
                color: var(--navy);
            }

            .mh-cta-card {
                background: rgba(255,255,255,0.96);
                border: 1px solid rgba(255,255,255,0.6);
                border-radius: 10px;
                padding: 12px;
                box-shadow: 0 4px 14px rgba(0,0,0,0.18);
                backdrop-filter: blur(4px);
                -webkit-backdrop-filter: blur(4px);
            }
            .mh-cta-row {
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .mh-price-block {
                flex: 0 0 auto;
                min-width: 0;
            }
            .mh-price {
                font-size: 22px;
                font-weight: 700;
                color: var(--navy);
                line-height: 1.1;
                font-family: 'Libre Baskerville', Georgia, serif;
            }
            .mh-price-note {
                font-size: 12px;
                color: var(--text-mid, #5d6c7c);
                margin-top: 2px;
            }
            .mh-cta-btn {
                flex: 1 1 auto;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: var(--navy);
                color: var(--white);
                font-weight: 700;
                font-size: 16px;
                padding: 13px 16px;
                border-radius: 6px;
                text-decoration: none;
                text-align: center;
                white-space: nowrap;
                box-shadow: 0 2px 8px rgba(26,43,58,0.18);
            }
            .mh-cta-btn:active { transform: translateY(1px); }

            .mh-cta-microcopy { display: none; }

            .mh-trust {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                margin-top: 10px;
                opacity: 0.7;
            }
            .mh-payment-logos {
                display: flex;
                gap: 3px;
                align-items: center;
            }
            .mh-payment-logos img {
                height: 11px;
                background: var(--white);
                padding: 1px 3px;
                border-radius: 2px;
            }
            .mh-secure {
                font-size: 10.5px;
                color: var(--text-mid, #5d6c7c);
                font-weight: 500;
                white-space: nowrap;
                letter-spacing: 0.01em;
            }
            .mh-secure-lock { display: inline-block; margin-right: 2px; }

            .mh-waitlist {
                text-align: center;
            }
            .mh-soldout-pill {
                display: inline-block;
                background: #fee2e2;
                color: #991b1b;
                padding: 4px 12px;
                border-radius: 999px;
                font-size: 11px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 8px;
            }
            .mh-waitlist-prompt {
                margin: 0 0 10px;
                font-size: 13px;
                color: var(--text-mid, #5d6c7c);
                line-height: 1.4;
            }
            .mh-waitlist-form {
                display: flex;
                flex-direction: column;
                gap: 8px;
            }
            .mh-waitlist-form input {
                width: 100%;
                padding: 12px;
                border: 1px solid var(--border, #e5e5e5);
                border-radius: 6px;
                font: inherit;
            }
            .mh-waitlist-msg {
                margin: 10px 0 0;
                font-size: 13px;
            }
        }


/* Static (non-scrolling) community quotes on event page */
.quotes-ticker-row {
    flex-wrap: wrap;
    justify-content: center;
    -webkit-mask-image: none;
            mask-image: none;
    overflow: visible;
}
.quotes-ticker-track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
}

/* Single testimonial card under buy-tickets boxes */
.checkout-top-quote {
    display: flex; align-items: center; gap: 12px;
    background: var(--white); border: 1px solid var(--border, #e5e0d8);
    border-left: 4px solid var(--green, #16a34a);
    padding: 12px 14px; border-radius: 6px; margin-top: 14px;
    text-decoration: none; color: var(--text-dark, #1a2b3a);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.checkout-top-quote-mark { flex-shrink: 0; color: var(--green, #16a34a); }
.checkout-top-quote-text {
    flex: 1; font-family: 'Libre Baskerville', Georgia, serif;
    font-style: italic; font-size: 13.5px; line-height: 1.45;
}
.checkout-top-quote-handle {
    flex-shrink: 0; font-size: 12px; color: var(--text-mid, #5d6c7c); font-weight: 500;
}
@media (max-width: 640px) {
    .checkout-top-quote { flex-wrap: wrap; }
    .checkout-top-quote-handle { width: 100%; padding-left: 32px; }
}
/* In mobile hero, place under cta-card with tighter spacing */
.mh-cta-card + .checkout-top-quote { margin-top: 10px; }

.checkout-top-quote-body { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.checkout-top-quote-from {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--green, #16a34a);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
}
.checkout-top-quote--event .checkout-top-quote-text { font-size: 13.5px; }

@media (max-width: 768px) {
    .event-sidebar-quote { display: none; }
}

/* Backpack of Hope - community cause section (Cabarete launch) */
.backpack-cause-card {
    background: linear-gradient(135deg, #fef9ec 0%, #fff5d6 100%);
    border: 1px solid #f0d98a;
    border-left: 5px solid #c9a227;
    border-radius: 10px;
    padding: 24px 28px;
}
.backpack-cause-eyebrow {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.backpack-cause-pill {
    background: #1a2b3a; color: #fff;
    padding: 4px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.backpack-cause-deadline {
    font-size: 12px; color: #7a5e0a; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.backpack-cause-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 26px; font-weight: 400; color: #1a2b3a;
    margin: 0 0 10px; line-height: 1.2;
    border-bottom: none; padding-bottom: 0;
}
.backpack-cause-lede {
    font-size: 16px; line-height: 1.6; color: #2b3a48;
    margin: 0 0 18px;
}
.backpack-cause-match {
    display: flex; align-items: flex-start; gap: 12px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px; padding: 14px 16px; margin-bottom: 18px;
}
.backpack-cause-match-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.backpack-cause-match strong { display: block; font-size: 15px; color: #1a2b3a; margin-bottom: 3px; line-height: 1.35; }
.backpack-cause-match span { font-size: 13.5px; color: #5d6c7c; line-height: 1.45; }
.backpack-cause-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #1a2b3a; color: #fff;
    padding: 12px 22px; border-radius: 6px;
    font-size: 15px; font-weight: 600;
    text-decoration: none; transition: background 0.15s;
}
.backpack-cause-cta:hover { background: #2b7bb9; color: #fff; }
.backpack-cause-footnote {
    font-size: 12px; color: #7d7460; margin: 14px 0 0; line-height: 1.5;
}
@media (max-width: 640px) {
    .backpack-cause-card { padding: 20px 18px; }
    .backpack-cause-title { font-size: 22px; }
    .backpack-cause-lede { font-size: 15px; }
}

/* Live painting performance (Cabarete launch) — Eric Waugh */
.live-painting-card {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 0;
    background: #0f1a24;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.live-painting-media {
    position: relative;
    background: #1a2b3a;
    min-height: 320px;
}
.live-painting-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.live-painting-body {
    padding: 28px 30px;
    color: #f5f3ef;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.live-painting-pill {
    display: inline-block;
    background: rgba(245, 243, 239, 0.12);
    color: #f5f3ef;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    width: fit-content;
}
.event-section .live-painting-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1.2;
    border-bottom: none;
    padding-bottom: 0;
}
.live-painting-lede {
    font-size: 15px;
    line-height: 1.6;
    color: #d4d8de;
    margin: 0 0 12px;
}
.live-painting-lede strong { color: #f5f3ef; font-weight: 600; }
.live-painting-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f3ef;
    color: #1a2b3a;
    padding: 11px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 6px;
    width: fit-content;
    transition: background 0.15s, color 0.15s;
}
.live-painting-cta:hover { background: #2b7bb9; color: #fff; }
.live-painting-credit {
    font-size: 12px;
    color: #8b96a3;
    margin: 14px 0 0;
}
.live-painting-credit a { color: #b6c2cf; text-decoration: underline; }
@media (max-width: 768px) {
    .live-painting-card { grid-template-columns: 1fr; }
    .live-painting-media { min-height: 280px; aspect-ratio: 1 / 1; }
    .live-painting-body { padding: 22px 20px; }
    .live-painting-title { font-size: 22px; }
    .live-painting-lede { font-size: 14.5px; }
}

/* Vibe pills above the mobile details card */
@media (max-width: 768px) {
    .mh-vibe-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin: 0 0 2px;
    }
    .mh-vibe-pill {
        display: inline-block;
        padding: 4px 10px;
        background: rgba(255,255,255,0.18);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 999px;
        color: #fff;
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 0.02em;
        line-height: 1.3;
        text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    }
}

/* Designed overlay for past-event video thumbnails (city name + logo) */
.past-event-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 28% 22%, rgba(43,123,185,0.32) 0%, transparent 55%),
        radial-gradient(ellipse at 78% 82%, rgba(43,123,185,0.20) 0%, transparent 50%),
        linear-gradient(160deg, #1a2b3a 0%, #0f1d2a 100%);
    transition: opacity 0.3s ease;
}
.past-event-overlay::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    pointer-events: none;
}
.past-event-overlay-logo {
    width: 96px;
    height: auto;
    margin-bottom: 18px;
    opacity: 0.95;
}
.past-event-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.past-event-overlay-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.past-event-overlay-city {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-style: italic;
    font-size: clamp(26px, 4.6vw, 34px);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
}
.past-event-video-wrap.is-playing .past-event-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Mobile hero scroll cue */
@media (max-width: 768px) {
    .mh-scroll-cue {
        position: absolute;
        bottom: 14px;
        left: 50%;
        transform: translateX(-50%);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px 7px 16px;
        background: rgba(255,255,255,0.16);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid rgba(255,255,255,0.28);
        border-radius: 999px;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.02em;
        line-height: 1;
        cursor: pointer;
        z-index: 3;
        text-shadow: 0 1px 3px rgba(0,0,0,0.35);
        animation: mhCueBob 1.8s ease-in-out infinite;
        transition: opacity 0.25s ease;
    }
    .mh-scroll-cue svg {
        opacity: 0.9;
    }
    .mh-scroll-cue.is-hidden {
        opacity: 0;
        pointer-events: none;
    }
    @keyframes mhCueBob {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50%      { transform: translateX(-50%) translateY(4px); }
    }
}
@media (min-width: 769px) {
    .mh-scroll-cue { display: none; }
}
