/* ==========================================================================
   STICKY BOOKING BAR + BOOKING CTA MODULE (Quiet Luxury)
   Santis Club – Conversion Optimization
   Kijo London Pattern: +26% booking click-through
   ========================================================================== */

/* ── BOOKING CTA SECTION (above footer) ── */
.nv-booking-cta {
    background: linear-gradient(180deg,
            rgba(10, 12, 16, 0) 0%,
            rgba(15, 15, 18, 0.6) 30%,
            rgba(15, 15, 18, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.nv-booking-cta .nv-title {
    color: #fff;
}

.nv-booking-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.nv-brand-story-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ── STICKY BOOKING BAR (bottom of viewport) ── */
.nv-sticky-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;

    /* Glassmorphism */
    background: rgba(10, 12, 16, 0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);

    /* Show/hide animation */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.nv-sticky-booking.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nv-sticky-booking-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nv-sticky-booking-text {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .nv-sticky-booking-inner {
        padding: 12px 16px;
    }

    .nv-sticky-booking-text {
        font-size: 13px;
    }

    .nv-booking-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}