:root {
    --booking-accent: #d4a574;
    --booking-accent-hover: #c49563;
    --booking-accent-light: #ecd4b8;
    --booking-accent-soft: #f0dcc4;
    --booking-accent-glow: rgba(212, 165, 116, 0.45);
    --booking-accent-bg: rgba(212, 165, 116, 0.14);
    --booking-warm-dark: #1f1a16;
    --booking-warm-border: #3d3228;
}

/* Floating menu trigger — no header bar */
.booking-menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2100;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.booking-menu-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}

.booking-menu-toggle.open .booking-menu-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.booking-menu-toggle.open .booking-menu-bar:nth-child(2) {
    opacity: 0;
}

.booking-menu-toggle.open .booking-menu-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.booking-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2150;
    background: rgba(10, 8, 6, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.booking-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.booking-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2200;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--booking-warm-dark);
    border-left: 1px solid var(--booking-warm-border);
    padding: 24px 22px 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
}

.booking-menu-drawer.open {
    transform: translateX(0);
}

.booking-menu-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.booking-menu-drawer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #9ca3af;
}

.booking-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.booking-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.booking-menu-links li {
    border-bottom: 1px solid rgba(61, 50, 40, 0.65);
}

.booking-menu-links a {
    display: block;
    padding: 16px 4px;
    color: #f3f4f6;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.booking-menu-links a:hover,
.booking-menu-links a.active {
    color: var(--booking-accent-light);
}

.booking-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--booking-warm-border);
}

.booking-btn {
    display: inline-block;
    padding: 14px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 2px;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.booking-btn-primary {
    background: var(--booking-accent);
    color: #fff;
    border: 1px solid var(--booking-accent);
}

.booking-btn-primary:hover {
    background: var(--booking-accent-hover);
}

.booking-btn-outline {
    background: transparent;
    color: var(--booking-accent-light);
    border: 1px solid var(--booking-accent);
}

.booking-btn-outline:hover {
    background: var(--booking-accent-bg);
}

.booking-site-nav-cta {
    display: inline-block;
    padding: 14px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 2px;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.booking-site-nav-cta-primary {
    background: var(--booking-accent);
    color: #fff;
    border: 1px solid var(--booking-accent);
}

.booking-site-nav-cta-primary:hover {
    background: var(--booking-accent-hover);
}

.booking-site-nav-cta-ghost {
    background: transparent;
    color: var(--booking-accent-light);
    border: 1px solid var(--booking-accent);
}

.booking-site-nav-cta-ghost:hover {
    background: var(--booking-accent-bg);
}

.booking-page-hero {
    background: var(--booking-warm-dark);
    padding: 72px 24px 48px;
    text-align: center;
    border-bottom: 1px solid var(--booking-warm-border);
}

.booking-page-eyebrow {
    display: none;
}

.booking-page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}

.booking-page-subtitle {
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
    font-family: 'Space Grotesk', sans-serif;
}

.booking-conversion-strip {
    background: #111827;
    border-top: 1px solid var(--booking-warm-border);
    border-bottom: 1px solid var(--booking-warm-border);
    padding: 40px 24px;
}

.booking-conversion-strip-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.booking-conversion-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.booking-conversion-links li {
    color: #d1d5db;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 640px) {
    .booking-conversion-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 28px;
    }
}

.booking-conversion-strip p {
    color: #d1d5db;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0;
}

.booking-conversion-strip a {
    color: var(--booking-accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking-conversion-strip a:hover {
    color: #fff;
}

.venue-gallery-header {
    text-align: center;
    padding: 48px 24px 28px;
    background: #080808;
}

.venue-gallery-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
    margin: 0 0 10px;
}

.venue-gallery-header p {
    color: #9ca3af;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-features-copy-panel {
    background: rgba(18, 14, 11, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.28);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

@media (min-width: 640px) {
    .booking-features-copy-panel {
        padding: 40px 44px;
    }
}

.booking-features-lead {
    color: #f3f4f6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.booking-features-checklist {
    color: #e5e7eb;
}

.venue-gallery-section--full .venue-gallery-header {
    padding-top: 56px;
}

.booking-reviews-section {
    background: #0f0f0f;
    padding: 52px 0 44px;
    border-top: 1px solid #1f1f1f;
}

.booking-reviews-header {
    max-width: 640px;
    margin: 0 auto 32px;
    padding: 0 24px;
    text-align: center;
}

.booking-reviews-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: #f3f4f6;
    margin: 0 0 8px;
    line-height: 1.3;
}

.booking-reviews-header p {
    color: #6b7280;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}

.booking-reviews-header a {
    color: var(--booking-accent-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(236, 212, 184, 0.35);
}

.booking-reviews-header a:hover {
    color: #fff;
}

.booking-reviews-carousel-wrap {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 44px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.booking-reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    padding: 2px 4px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.booking-reviews-track--auto {
    scroll-snap-type: none;
}

.booking-reviews-track::-webkit-scrollbar {
    display: none;
}

.booking-review-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: center;
    background: transparent;
    border: 1px solid #2a2a2a;
    padding: 24px 22px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.booking-review-card--expandable {
    cursor: pointer;
}

.booking-review-card--expandable:hover {
    border-color: #3d3228;
}

.booking-review-card-stars {
    color: var(--booking-accent);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    margin: 0 0 14px;
}

.booking-review-card-quote {
    color: #d1d5db;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.booking-review-card-meta {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    color: #6b7280;
    margin: 16px 0 0;
    line-height: 1.4;
}

.booking-review-card-meta strong {
    color: #e5e7eb;
    font-weight: 500;
}

.booking-review-read-more {
    margin-top: 12px;
    padding: 0;
    border: none;
    background: none;
    color: var(--booking-accent-light);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking-review-read-more:hover {
    color: #fff;
}

.booking-reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 1px solid #333;
    background: #141414;
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.booking-reviews-nav:hover {
    border-color: var(--booking-accent);
    color: var(--booking-accent-light);
}

.booking-reviews-nav.prev { left: 8px; }
.booking-reviews-nav.next { right: 8px; }

.booking-review-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2400;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.booking-review-modal {
    position: relative;
    width: min(520px, 100%);
    background: #141414;
    border: 1px solid #2a2a2a;
    padding: 36px 32px 32px;
}

.booking-review-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}

.booking-review-modal-close:hover {
    color: #fff;
}

.booking-review-modal-stars {
    color: var(--booking-accent);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin: 0 0 16px;
}

.booking-review-modal-quote {
    color: #f3f4f6;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.booking-review-modal-meta {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.booking-review-modal-meta strong {
    color: #d1d5db;
    font-weight: 500;
}

@media (max-width: 640px) {
    .booking-reviews-carousel-wrap {
        padding: 0 12px;
    }

    .booking-reviews-nav {
        display: none;
    }

    .booking-review-card {
        flex-basis: 82vw;
    }
}
