.lvhs,
.lvhs * {
    box-sizing: border-box;
}

.lvhs {
    --lvhs-desktop-height: 650px;
    --lvhs-mobile-height: 560px;
    --lvhs-transition: 900ms;
    --lvhs-booking-width: 1180px;
    --lvhs-booking-overlap: 42px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
}

.lvhs-full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.lvhs-stage {
    position: relative;
    height: var(--lvhs-desktop-height);
    min-height: 300px;
    overflow: hidden;
    background: #1b1b1b;
}

.lvhs-slides,
.lvhs-slide,
.lvhs-media,
.lvhs-media img,
.lvhs-media video,
.lvhs-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lvhs-slide {
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--lvhs-transition) ease, visibility var(--lvhs-transition) ease;
}

.lvhs-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lvhs-media img,
.lvhs-media video {
    object-fit: cover;
    object-position: center;
}

.lvhs-overlay {
    z-index: 1;
}

.lvhs-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: min(1180px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
}

.lvhs-content {
    width: min(560px, 100%);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

.lvhs-align-left {
    justify-content: flex-start;
    text-align: left;
}

.lvhs-align-center {
    justify-content: center;
    text-align: center;
}

.lvhs-align-right {
    justify-content: flex-end;
    text-align: right;
}

.lvhs-content h2 {
    margin: 0 0 16px;
    color: inherit;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.025em;
}

.lvhs-content p {
    margin: 0 0 24px;
    color: inherit;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 1.65;
}

.lvhs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, filter .2s ease;
}

.lvhs-button:hover,
.lvhs-button:focus {
    color: inherit;
    filter: brightness(.94);
    transform: translateY(-2px);
}

.lvhs-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: rgba(0,0,0,.2);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease;
}

.lvhs-arrow:hover,
.lvhs-arrow:focus {
    background: rgba(0,0,0,.55);
}

.lvhs-prev { left: 20px; }
.lvhs-next { right: 20px; }

.lvhs-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 24px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.lvhs-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.lvhs-dot.is-active {
    background: #fff;
}

.lvhs-booking-wrap {
    position: relative;
    z-index: 10;
    width: min(var(--lvhs-booking-width), calc(100% - 48px));
    margin: calc(var(--lvhs-booking-overlap) * -1) auto 0;
}

.lvhs-booking-card {
    width: 100%;
    
}

.lvhs-booking-card > :first-child {
    margin-top: 0;
}

.lvhs-booking-card > :last-child {
    margin-bottom: 0;
}

.lvhs-admin-notice {
    padding: 12px 16px;
    border-left: 4px solid #d63638;
    background: #fff;
}

@media (max-width: 767px) {
    .lvhs-full-bleed {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .lvhs-stage {
        height: var(--lvhs-mobile-height);
    }

    .lvhs-content-wrap {
        width: calc(100% - 40px);
        padding-top: 24px;
        padding-bottom: 70px;
    }

    .lvhs-content h2 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .lvhs-align-left,
    .lvhs-align-center,
    .lvhs-align-right {
        justify-content: flex-start;
        text-align: left;
    }

    .lvhs-arrow {
        top: auto;
        bottom: 18px;
        width: 40px;
        height: 40px;
        transform: none;
    }

    .lvhs-prev { left: 20px; }
    .lvhs-next { right: 20px; }

    .lvhs-dots {
        bottom: 34px;
    }

    .lvhs-booking-wrap {
        width: calc(100% - 28px);
        margin-top: calc(min(var(--lvhs-booking-overlap), 28px) * -1);
    }

    .lvhs-booking-card {
        padding: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lvhs-slide,
    .lvhs-button,
    .lvhs-arrow {
        transition: none;
    }
}
