/* ============================================================
   Booking Modal
   ============================================================ */

.rh-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.50);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.rh-modal-overlay.is-open {
    display: flex;
}

.rh-modal {
    background: var(--cream);
    border: 1px solid var(--border);
    max-width: 42rem;
    width: 100%;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.rh-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
    padding: 0.25rem 0.5rem;
    transition: color 0.15s;
}

.rh-modal__close:hover {
    color: var(--dark);
}

.rh-modal__title {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.rh-modal__desc {
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.rh-modal__frame {
    border: 1px solid var(--border);
    background: rgb(255, 255, 255);
}

.rh-modal__placeholder {
    text-align: center;
    padding: 2rem;
}

.rh-modal__placeholder-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    color: var(--faint);
    margin-bottom: 0.75rem;
}

.rh-modal__placeholder-text {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--mid);
}

.rh-modal__placeholder-hint {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 1rem;
}