.book-now {
    background: rgb(244, 244, 244);
    width: 100%;
    overflow: hidden;
}

.book-now__columns {
    min-height: 560px;
    align-items: stretch;
}

.book-now__image-col {
    overflow: hidden;
}

.book-now__image-col .img-block {
    height: 100%;
    border-radius: 0;
}

.book-now__image-col .img-block__img {
    aspect-ratio: unset;
    width: unset;
    height: 100%;
    object-fit: cover;
}

.book-now__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 72px 80px 80px;
    box-sizing: border-box;
    gap: 80px;
}

.book-now__body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: #222;
    margin: 0 0 30px;
}

/* ── Book Now Picker ── */
.book-now__picker {
    margin-bottom: 1.75rem;
}

.book-now__picker-label {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    font-style: italic;
}

/* ── Dropdown ── */
.bn-dropdown {
    position: relative;
    display: inline-block;
}

.bn-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.6rem 1.125rem;
    background: transparent;
    border: 2px solid var(--color-dark, #1a1a1a);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark, #1a1a1a);
    letter-spacing: 0.02em;
    cursor: pointer;
    min-width: 300px;
    transition: border-color 0.2s ease;
}

.bn-dropdown__trigger:hover,
.bn-dropdown[data-open] .bn-dropdown__trigger {
    border-color: var(--color-gold, #a8892a);
    color: var(--color-gold, #a8892a);
}

.bn-dropdown__trigger-text {
    flex: 1;
    text-align: left;
}

.bn-dropdown__chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--color-gold, #a8892a);
}

.bn-dropdown[data-open] .bn-dropdown__chevron {
    transform: rotate(180deg);
}

.bn-dropdown__list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    background: var(--color-white, #fff);
    border: 1px solid var(--color-dark, #1a1a1a);
    border-radius: 2px;
    padding: 0.25rem 0;
    margin: 0;
    list-style: none;
    z-index: 100;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.bn-dropdown[data-open] .bn-dropdown__list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.bn-dropdown__item {
    padding: 0.6rem 1.125rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-dark, #1a1a1a);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.bn-dropdown__item:hover,
.bn-dropdown__item[aria-selected="true"] {
    background: var(--color-gold-light, #f5efe0);
    color: var(--color-gold, #a8892a);
}

@media (max-width: 1024px) {
    .book-now__content {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .book-now__columns {
        min-height: auto;
    }

    .book-now__image-col {
        height: 320px;
    }

    .book-now__content {
        padding: 0px 1.5rem 60px;
        gap: 48px;
    }

    .book-now__image-col .img-block__img {
        max-height: 340px;
        width: 100%;
    }
}