﻿
.nav__logo-text {
    color: var(--cream);
}

.nav__links a {
    color: var(--cream);
}

.nav.is-scrolled .nav__logo-text {
    color: var(--dark);
}

.nav.is-scrolled .nav__links a {
    color: var(--dark);
}

.nav.is-scrolled .nav__links li.is-active a {
    color: var(--gold);
    font-weight: 500;
}

.nav__links li.is-active a {
    color: var(--gold);
    font-weight: 500;
}

.nav__links a:hover {
    opacity: 0.6;
}

.nav__cta {
    color: #fff;
    background: var(--dark);
}

    .nav__cta:hover {
        background: #2e1f06;
        transform: scale(0.98);
    }

    .nav__cta svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
    opacity: 0;
    animation: fadeDown 0.8s 0.3s var(--ease) forwards;
}

    .nav__burger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--cream);
        transition: transform 0.3s var(--ease), opacity 0.3s;
        transform-origin: center;
    }

.nav.is-scrolled .nav__burger span {
    background: var(--dark);
}

/* ── Desktop breakpoints (nav) ── */
@media (min-width: 768px) {
    .nav {
        height: 80px;
    }

    .nav__links {
        display: flex;
    }

    .nav__cta {
        display: flex;
    }

    .nav__burger {
        display: none;
    }

    .nav__drawer-close {
        top: 1.75rem;
        right: 3rem;
    }
}

/* 
       BANNER HERO — event poster image
     */
.event-detail-hero {
    background: var(--dark);
    padding: 72px 0 0;
}

.eventhero__topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 2rem;
    flex-wrap: wrap;
}

.eventhero__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--greybg);
    margin-bottom: 0.75rem;
}

.eventhero__title {
    font-family: 'Satoshi';
    font-weight: 600;
    font-size: clamp(1.4rem, 4vw, 2rem);
    line-height: 1.15;
    color: var(--bodybg);
}

.eventhero__nav {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
}


.eventhero__nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--cream);
    text-decoration: none;
    align-self: center;
}


@media (min-width: 768px) {
    .eventhero__topbar {
        padding-block: 3rem;
    }

    .eventhero__nav-btn {
        width: 44px;
        height: 44px;
    }
}

.event-detail-hero__img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 8;
    background: #2b2620;
    min-height: 350px;
}

    .event-detail-hero__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

@media (min-width: 768px) {
    .event-detail-hero {
        padding: 80px 0 0;
    }

    .event-detail-hero__img-wrap {
        aspect-ratio: 16 / 6.5;
    }
}

/* 
       ABOUT THIS EXPERIENCE + RESERVATION
     */
.experience {
    background: var(--greybg);
    padding-block: 3rem;
}

.experience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* ── Left column ── */
.experience__title {
    font-family: 'Satoshi', serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    color: var(--dark-);
    margin-bottom: 1.5rem;
}

.experience__body {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.5rem
}

    .experience__body p {
        font-size: 0.85rem;
        line-height: 1.7;
        color: var(--dark-fainted);
    }

.experience__note {
    background: rgba(185, 92, 58, 0.08);
    border: 1px solid rgba(185, 92, 58, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(26,18,8,0.75);
    margin-bottom: 1.5rem;
}

    .experience__note strong {
        color: var(--dark);
        font-weight: 700;
    }

/* ── Info cards row ── */
.experience__info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.info-card {
    background: #FDFAF4;
    border: 1px solid rgba(26,18,8,0.06);
    border-radius: 14px;
    padding: 1.1rem 1.15rem;
}

.info-card__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark-fainted);
    margin-bottom: 0.7rem;
}

    .info-card__label svg {
        width: 15px;
        height: 15px;
        stroke: #B95C3A;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.info-card__main {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.info-card__sub {
    font-size: 0.8rem;
    color: rgba(26,18,8,0.5);
    line-height: 1.5;
}

/* ── Right column: reservation card ── */
.reservation-card {
    background: #FDFAF4;
    border: 1px solid rgba(26,18,8,0.08);
    border-radius: 22px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 12px rgba(26,18,8,0.08);
}

.reservation-card__label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dark-fainted);
    margin-bottom: 0.9rem;
}

.reservation-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.reservation-card__price {
    font-family: 'Satoshi', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--dark);
}

.reservation-card__price-note {
    font-size: 0.8rem;
    color: var(--dark-fainted);
}

.reservation-card__badge {
    display: block;
    background: rgba(200,151,58,0.08);
    border: 1px solid rgba(200,151,58,0.3);
    border-radius: 99999px;
    padding: 0.7rem 0.9rem;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 1.1rem;
}

.reservation-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--dark);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 1.1rem;
}

    .reservation-card__cta:hover {
        background: #2e1f06;
    }

    .reservation-card__cta:active {
        transform: scale(0.98);
    }

    .reservation-card__cta svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* ── Ticket-tier rows ── */
.ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid #D4CCC3;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.65rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

    .ticket-row:hover {
        border-color: rgba(200,151,58,0.5);
    }

.ticket-row__left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

    .ticket-row__left svg {
        width: 17px;
        height: 17px;
        stroke: #B95C3A;
        fill: none;
        stroke-width: 1.7;
        flex-shrink: 0;
    }

.ticket-row__name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: var(--dark);
}

.ticket-row__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ticket-row__price {
    font-size: clamp(0.65rem, 2vw, 0.75rem);
    color: rgba(26,18,8,0.55);
    white-space: nowrap;
}

.ticket-row__chevron {
    width: 14px;
    height: 14px;
    stroke: rgba(26,18,8,0.35);
    fill: none;
    stroke-width: 2;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.ticket-row.is-open .ticket-row__chevron {
    transform: rotate(180deg);
}

/* Share / Add-to-calendar row */
.reservation-card__share-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.reservation-card__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #D4CCC3;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

    .reservation-card__share-btn:hover {
        border-color: rgba(200,151,58,0.5);
    }

    .reservation-card__share-btn svg {
        width: 16px;
        height: 16px;
        stroke: var(--dark);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.reservation-card__calendar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    gap: 0.5rem;
    border: 1px solid #D4CCC3;
    border-radius: 99999px;
    padding: 0 1rem;
    height: 44px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    transition: border-color 0.2s;
}

    .reservation-card__calendar-btn:hover {
        border-color: rgba(200,151,58,0.5);
    }

    .reservation-card__calendar-btn svg {
        width: 13px;
        height: 13px;
        stroke: rgba(26,18,8,0.4);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

.reservation-card__footnote {
    font-size: 0.76rem;
    line-height: 1.55;
    color: var(--dark-fainted);
}

/* ── Official merch mini-section inside the reservation card ── */
.reservation-card__merch {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(26,18,8,0.08);
}

.reservation-card__merch-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

    .reservation-card__merch-head svg {
        width: 16px;
        height: 16px;
        stroke: #B95C3A;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.reservation-card__merch-title {
    font-family: 'Satoshi', serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--dark);
}

.reservation-card__merch-desc {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--dark-fainted);
    margin-bottom: 0.9rem;
}

.reservation-card__merch-link {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/2;
    max-height: 300px;
}

    .reservation-card__merch-link img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s var(--ease);
    }

    .reservation-card__merch-link:hover img {
        transform: scale(1.03);
    }

.reservation-card__merch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,10,6,0.82) 0%, rgba(15,10,6,0.35) 45%, rgba(15,10,6,0) 75%);
    pointer-events: none;
}

.reservation-card__merch-caption {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

    .reservation-card__merch-caption svg {
        width: 12px;
        height: 12px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

/* dropdown panel that opens beneath a ticket row */
.ticket-row__panel {
    display: none;
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid rgba(26,18,8,0.08);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin: -0.4rem 0 0.65rem;
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(26,18,8,0.6);
}

    .ticket-row__panel.is-open {
        display: block;
    }

/* ── Add-to-calendar popover ── */
.reservation-card__share-row {
    position: relative;
}

.calendar-menu {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    right: 0;
    width: 220px;
    background: #FDFAF4;
    border: 1px solid rgba(26,18,8,0.1);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(26,18,8,0.16);
    padding: 0.4rem;
    z-index: 20;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

    .calendar-menu.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .calendar-menu a,
    .calendar-menu button {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        width: 100%;
        background: none;
        border: none;
        border-radius: 8px;
        padding: 0.6rem 0.65rem;
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--dark);
        text-decoration: none;
        text-align: left;
        cursor: pointer;
        transition: background 0.15s;
    }

        .calendar-menu a:hover,
        .calendar-menu button:hover {
            background: rgba(200,151,58,0.1);
        }

    .calendar-menu svg {
        width: 15px;
        height: 15px;
        stroke: #B95C3A;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

/* ── RSVP modal ── */
.rsvp-modal {
    position: fixed;
    inset: 0;
    z-index: 99999999999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

    .rsvp-modal.is-open {
        visibility: visible;
        opacity: 1;
    }

.rsvp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26,18,8,0.55);
    backdrop-filter: blur(2px);
}

.rsvp-modal__panel {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: 88vh;
    overflow-y: auto;
    background: #FDFAF4;
    border-radius: 24px 24px 0 0;
    padding: 0;
    transform: translateY(24px);
    transition: transform 0.3s var(--ease, ease);
    box-shadow: 0 -12px 40px rgba(26,18,8,0.2);
    scrollbar-width: none;
}

    .rsvp-modal__panel::-webkit-scrollbar {
        display: none;
    }

.rsvp-modal.is-open .rsvp-modal__panel {
    transform: translateY(0);
}

@media (min-width: 640px) {
    .rsvp-modal {
        align-items: center;
    }

    .rsvp-modal__panel {
        border-radius: 24px;
        transform: translateY(12px) scale(0.98);
    }

    .rsvp-modal.is-open .rsvp-modal__panel {
        transform: translateY(0) scale(1);
    }
}

.rsvp-modal__close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*    background: rgba(26,18,8,0.06);*/
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--dark);
    cursor: pointer;
}

/* ── Banner: eyebrow + title + date on dark bg ── */
.rsvp-modal__banner {
    background: var(--dark);
    padding: 1.1rem 1.5rem 1.15rem;
}

.rsvp-modal__banner-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.rsvp-modal__banner .rsvp-modal__title {
    font-size: 1.02rem;
    color: var(--cream);
    margin-bottom: 0;
    flex: 1 1 auto;
    min-width: 180px;
}

.rsvp-modal__date {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.65);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Featured photo ── */
.rsvp-modal__photo {
    width: 100%;
    aspect-ratio: 16 / 5.2;
    overflow: hidden;
    background: #14100a;
}

    .rsvp-modal__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.rsvp-modal__body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.rsvp-modal__eyebrow {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.55);
    margin-bottom: 0.55rem;
}

.rsvp-modal__title {
    font-family: 'Satoshi', serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.rsvp-modal__sub {
    font-size: 0.83rem;
    line-height: 1.55;
    color: var(--dark-fainted);
    margin-bottom: 1.5rem;
}

.rsvp-field {
    display: block;
    margin-bottom: 1rem;
}

    .rsvp-field span {
        display: block;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--dark-fainted);
        margin-bottom: 0.4rem;
    }

    .rsvp-field input,
    .rsvp-field select {
        width: 100%;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        color: var(--dark);
        background: #FFFDF7;
        border: 1px solid rgba(26,18,8,0.12);
        border-radius: 99999px;
        padding: 0.9rem 1.1rem;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .rsvp-field input:focus,
        .rsvp-field select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px var(--gold-dim);
        }

        .rsvp-field input:invalid.is-touched {
            border-color: #C0392B;
        }

/* ── General Admission stepper ── */
.rsvp-stepper {
    position: relative;
    display: flex;
    align-items: center;
}

.rsvp-stepper__icon {
    position: absolute;
    left: 1.1rem;
    width: 14px;
    height: 14px;
    stroke: rgba(26,18,8,0.45);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.rsvp-stepper input[type="number"] {
    padding-left: 2.6rem;
    -moz-appearance: textfield;
}

    .rsvp-stepper input[type="number"]::-webkit-outer-spin-button,
    .rsvp-stepper input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/* ── "Keep me updated" checkbox ── */
.rsvp-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.83rem;
    line-height: 1.4;
    color: var(--dark);
    cursor: pointer;
    margin: 0.25rem 0 1.25rem;
}

    .rsvp-checkbox input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

.rsvp-checkbox__box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(26,18,8,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

    .rsvp-checkbox__box svg {
        width: 12px;
        height: 12px;
        stroke: #fff;
        fill: none;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 0;
        transition: opacity 0.15s ease;
    }

.rsvp-checkbox input:checked + .rsvp-checkbox__box {
    background: var(--dark);
}

    .rsvp-checkbox input:checked + .rsvp-checkbox__box svg {
        opacity: 1;
    }

.rsvp-field__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--dark);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 9999px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.4rem;
}

    .rsvp-field__submit svg {
        width: 14px;
        height: 14px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        margin-left: 0.5rem;
    }

    .rsvp-field__submit:hover {
        background: #2e1f06;
    }

    .rsvp-field__submit:active {
        transform: scale(0.98);
    }

    .rsvp-field__submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.rsvp-modal__note {
    font-size: 0.76rem;
    line-height: 1.55;
    color: var(--dark-fainted);
    text-align: center;
    margin-top: 1rem;
}

#rsvpSuccessView {
    text-align: center;
    padding-top: 0.5rem;
}

.rsvp-success__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52,168,83,0.12);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}

    .rsvp-success__icon svg {
        width: 26px;
        height: 26px;
        stroke: #2E8B4F;
        fill: none;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* ── Toast ── */
.toast {
    position: fixed;
    left: 50%;
    bottom: 1.75rem;
    transform: translate(-50%, 16px);
    background: var(--dark);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.85rem 1.4rem;
    border-radius: 9999px;
    box-shadow: 0 10px 28px rgba(26,18,8,0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 99999999999;
    white-space: nowrap;
}

    .toast.is-visible {
        opacity: 1;
        transform: translate(-50%, 0);
    }

/* ── Responsive ── */
@media (min-width: 640px) {
    .experience__info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .experience {
        padding-block: 4rem;
    }
}

@media (min-width: 1280px) {
    .experience__grid {
        grid-template-columns: 1.7fr 1fr;
        gap: 4rem;
    }

    .reservation-card {
        position: sticky;
        top: 100px;
        width: 360px;
        margin-left: auto;
    }

    .experience {
        padding-block: 4.5rem;
    }

    .experience__grid {
        gap: 5.5rem;
    }
    .left-reservation-info {
        position: sticky;
        top: 100px;
    }
}



/* 
       GUEST MINISTERS & LINEUP
     */
.lineup {
    background: var(--greybg);
    padding-block: 3rem;
}

.lineup__title {
    font-family: 'Satoshi', serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    color: var(--dark);
    margin-bottom: 2rem;
}

.lineup__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
}

.lineup__img {
    width: 100%;
    aspect-ratio: 179 / 237;
    overflow: hidden;
    border-radius: 999px 999px 10px 10px;
    background: #2b2620;
    margin-bottom: 0.9rem;
}

    .lineup__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.lineup__name {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

.lineup__role {
    font-size: 0.78rem;
    color: var(--dark-fainted);
}

@media (min-width: 640px) {
    .lineup__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 960px) {
    .lineup {
        padding-block: 4rem;
    }

    .lineup__grid {
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
    }

    .lineup__img {
        max-width: 180px;
    }
}

/* ── Official Merch banner below the lineup grid ── */
.merch-banner-section {
    margin-top: 2.75rem;
}

.merch-banner-title {
    font-family: 'Satoshi', serif;
    font-weight: 400;
    font-size: clamp(1.3rem, 4.5vw, 1.6rem);
    color: var(--dark);
    margin-bottom: 1.1rem;
}

.merch-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(185, 92, 58, 0.08);
    border: 1px solid rgba(185, 92, 58, 0.3);
    border-radius: 8px;
    padding: 1.25rem 1.4rem;
    max-width: 870px;
}

.merch-banner__head {
    display: flex;
    align-items: start;
    gap: 0.55rem;
}

    .merch-banner__head svg {
        width: 18px;
        height: 18px;
        stroke: #B95C3A;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

    .merch-banner__head strong {
        font-family: 'Satoshi', serif;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--dark);
    }

.merch-banner__text {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--dark);
}

.merch-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--dark);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.7rem 1.1rem;
    transition: background 0.2s, transform 0.15s;
}

    .merch-banner__cta:hover {
        background: #2e1f06;
    }

    .merch-banner__cta:active {
        transform: scale(0.98);
    }

    .merch-banner__cta svg {
        width: 12px;
        height: 12px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* 
       LOCATION
     */
.location {
    background: var(--dark);
    padding-block: 3rem;
}

.location__title {
    font-family: 'Satoshi', serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    color: var(--cream);
    margin-bottom: 0.65rem;
}

.location__address {
    font-size: 0.9rem;
    color: rgba(245,237,216,0.6);
    margin-bottom: 1.75rem;
}

.location__map {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(245,237,216,0.14);
    margin-bottom: 1.75rem;
}

    .location__map img {
        width: 100%;
        height: auto;
        display: block;
    }

.location__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(245,237,216,0.35);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

    .location__btn:hover {
        background: rgba(245,237,216,0.08);
        border-color: rgba(245,237,216,0.6);
    }

    .location__btn svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

@media (min-width: 900px) {
    .location {
        padding-block: 4rem;
    }
}


