.dng-header-right {
    overflow: visible;
    flex-wrap: nowrap;
    gap: 8px;
}

.dng-hotels-cta-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.dng-hotels-modal[hidden] {
    display: none !important;
}

.dng-hotels-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.dng-hotels-modal.is-open {
    display: flex;
}

.dng-hotels-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 16, 0.62);
}

.dng-hotels-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: calc(100vh - 64px);
    overflow: auto;
    background: #f7f4ef;
}

.dng-hotels-modal__close {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #111;
    cursor: pointer;
    line-height: 1;
}

.dng-hotels-modal__close svg {
    display: block;
    width: 22px;
    height: 22px;
}

.dng-hotels-modal__close:hover,
.dng-hotels-modal__close:focus {
    background: transparent !important;
    color: #00c4b8;
}

.dng-hotels-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.dng-hotels-modal__intro {
    background: #0d1f1c;
    color: #f7f4ef;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dng-hotels-modal__eyebrow {
    margin: 0 0 24px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.72;
}

.dng-hotels-modal__headline {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
}

.dng-hotels-modal__copy {
    margin: 0;
    max-width: 28ch;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.82;
}

.dng-hotels-modal__form-wrap {
    padding: 56px 48px 48px;
    background: #f7f4ef;
}

.dng-hotels-modal__form-title {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    color: #111;
}

.dng-hotels-modal__form-lead {
    margin: 0 0 36px;
    font-size: 14px;
    line-height: 1.55;
    color: #5b5b5b;
}

.dng-hotels-field {
    display: block;
    margin-bottom: 22px;
}

.dng-hotels-field > span {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b6b6b;
}

.dng-hotels-modal .dng-hotels-field input[type="text"],
.dng-hotels-modal .dng-hotels-field input[type="email"],
.dng-hotels-modal .dng-hotels-field input[type="tel"],
.dng-hotels-modal .dng-hotels-field textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 0;
    padding: 8px 0 10px !important;
    border: 0 !important;
    border-bottom: 1px solid #d2d2d2 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
    font-size: 15px;
    line-height: 1.4;
    color: #111;
}

.dng-hotels-modal .dng-hotels-field textarea {
    min-height: 88px !important;
    resize: vertical;
}

.dng-hotels-modal .dng-hotels-field input[type="text"]:focus,
.dng-hotels-modal .dng-hotels-field input[type="email"]:focus,
.dng-hotels-modal .dng-hotels-field input[type="tel"]:focus,
.dng-hotels-modal .dng-hotels-field textarea:focus {
    border: 0 !important;
    border-bottom: 1px solid #00c4b8 !important;
    box-shadow: none !important;
    outline: none !important;
}

.dng-hotels-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0 28px;
}

.dng-hotels-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: #4a4a4a;
}

.dng-hotels-modal .dng-hotels-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    border: 1px solid #c4c4c4 !important;
    border-radius: 2px;
    background: #fff !important;
    box-shadow: none !important;
    appearance: auto;
    -webkit-appearance: checkbox;
}

.dng-hotels-submit {
    width: 100%;
    background: #00c4b8;
    border: 0 !important;
    color: #fff;
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none !important;
}

.dng-hotels-submit:hover,
.dng-hotels-submit:focus {
    background: #00b0a5;
    color: #fff;
}

.dng-hotels-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    background: #7ad9d3;
}

.dng-hotels-lead-success,
.dng-hotels-lead-error {
    margin-top: 14px;
    font-size: 14px;
}

.dng-hotels-lead-success[hidden],
.dng-hotels-lead-error[hidden] {
    display: none;
}

body.dng-hotels-modal-open {
    overflow: hidden;
}

@media (max-width: 800px) {
    .dng-hotels-modal {
        padding: 16px;
    }

    .dng-hotels-modal__dialog {
        max-height: calc(100vh - 32px);
    }

    .dng-hotels-modal__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .dng-hotels-modal__intro,
    .dng-hotels-modal__form-wrap {
        padding: 40px 24px 32px;
    }

    .dng-hotels-modal__close {
        top: 12px;
        right: 12px;
    }
}
