.com-content-article.item-page:has(.rs-property) > .page-header,
.com-content-article.item-page:has(.rs-property) > .article-info,
.com-content-article.item-page:has(.rs-property) > .icons {
    display: none;
}

.rs-property__booking-form {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.rs-property__booking-form label span {
    display: block;
    margin-bottom: .1rem;
}

.rs-property__booking-form input[data-rs-booking-datetime] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235d6678' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18M8 14h2M14 14h2M8 17h2'/%3E%3C/svg%3E");
    background-position: .75rem center;
    background-repeat: no-repeat;
    background-size: 18px;
    cursor: pointer;
    padding-left: 2.5rem;
}

.rs-date-picker {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
}

.rs-date-picker__footer {
    border-top: 1px solid #e3e7ec;
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
}

.rs-date-picker__time {
    align-items: center;
    color: #566176;
    display: flex;
    font-size: .85rem;
    font-weight: 650;
    justify-content: space-between;
}

.rs-date-picker__time-control {
    align-items: center;
    display: flex;
    gap: 5px;
}

.rs-date-picker__time-control b {
    font-size: 1rem;
}

.rs-date-picker__time select {
    appearance: none;
    background: #fff;
    border: 1px solid #d7dce3;
    border-radius: 10px;
    color: #17233a;
    font: inherit;
    font-size: .95rem;
    min-height: 38px;
    padding: .35rem .6rem;
    text-align: center;
    width: 54px;
}

.rs-date-picker__time select:focus {
    border-color: var(--rs-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--rs-accent) 14%, transparent);
    outline: 0;
}

.rs-date-picker__apply {
    background: var(--rs-accent);
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: .92rem;
    font-weight: 750;
    min-height: 40px;
    padding: .55rem 1rem;
    transition: background-color .18s ease;
    width: 100%;
}

.rs-date-picker__apply:hover:not(:disabled),
.rs-date-picker__apply:focus-visible:not(:disabled) {
    background: var(--rs-accent-dark);
    outline: 0;
}

.rs-date-picker__apply:disabled {
    background: #e6e9ed;
    color: #9aa2ad;
}

body.rs-property-picker-open {
    overflow: hidden;
}

.rs-picker-page__header {
    display: none;
}

@media (max-width: 900px) {
    .rs-property__booking {
        display: block;
        padding: .8rem max(1rem, calc((100vw - var(--rs-page-width, 1200px)) / 2));
    }

    .rs-property__booking:not(.is-mobile-open) .rs-property__booking-form {
        display: none;
    }

    .rs-property__booking .rs-property__button {
        display: flex;
        grid-column: auto;
        grid-row: auto;
        margin: 0 auto;
        min-height: 48px;
        width: min(430px, 100%);
    }

    .rs-date-picker.is-mobile-sheet {
        background: #fff;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        box-sizing: border-box;
        height: 100dvh;
        inset: 0 !important;
        margin: 0;
        max-height: none;
        max-width: none;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 0 max(1rem, env(safe-area-inset-left)) max(2rem, env(safe-area-inset-bottom));
        position: fixed;
        transform: none !important;
        width: 100vw !important;
        z-index: 10100;
    }

    .rs-date-picker.is-mobile-sheet > :not(.rs-picker-page__header) {
        margin-left: auto;
        margin-right: auto;
        max-width: 420px;
    }

    .rs-date-picker.is-mobile-sheet .rs-picker-page__header {
        align-items: center;
        background: #fff;
        border-bottom: 1px solid #e5e8ed;
        display: flex;
        justify-content: space-between;
        margin: 0 max(-1rem, calc(env(safe-area-inset-left) * -1)) 1.25rem;
        min-height: calc(64px + env(safe-area-inset-top));
        padding: env(safe-area-inset-top) max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .rs-picker-page__header strong {
        color: #17233a;
        font-size: 1.25rem;
        font-weight: 650;
        line-height: 1.2;
    }

    .rs-picker-page__close {
        background: transparent;
        border: 0;
        border-radius: 50%;
        color: #17233a;
        cursor: pointer;
        flex: 0 0 42px;
        height: 42px;
        margin-right: -.55rem;
        padding: 0;
        position: relative;
        width: 42px;
    }

    .rs-picker-page__close:hover,
    .rs-picker-page__close:focus-visible {
        background: #f0f2f4;
        outline: 0;
    }

    .rs-picker-page__close::before,
    .rs-picker-page__close::after {
        background: currentColor;
        content: '';
        height: 2px;
        left: 12px;
        position: absolute;
        top: 20px;
        width: 18px;
    }

    .rs-picker-page__close::before {
        transform: rotate(45deg);
    }

    .rs-picker-page__close::after {
        transform: rotate(-45deg);
    }

    .rs-date-picker.is-mobile-sheet .rs-date-picker__header {
        margin-bottom: 1rem;
    }

    .rs-date-picker.is-mobile-sheet .rs-date-picker__days > span,
    .rs-date-picker.is-mobile-sheet .rs-date-picker__days button {
        font-size: .95rem;
    }

    .rs-date-picker.is-mobile-sheet .rs-date-picker__footer {
        margin-top: 1.25rem;
    }
}

.com-content-article.item-page:has(.rs-property),
.com-content-article__body:has(.rs-property) {
    max-width: none;
}

.rs-property {
    --rs-ink: #182527;
    --rs-muted: #627174;
    --rs-accent: #003568;
    --rs-accent-dark: #00264b;
    --rs-soft: #eef7f5;
    --rs-warm: #fff5e9;
    --rs-line: #dce5e4;
    color: var(--rs-ink);
    margin: 0 auto;
    max-width: 1240px;
    padding: .35rem 0 4rem;
}

.rs-property *,
.rs-property *::before,
.rs-property *::after {
    box-sizing: border-box;
}

.rs-property__icon-sprite {
    height: 0 !important;
    overflow: hidden;
    position: absolute;
    width: 0 !important;
}

.rs-property__back {
    color: var(--rs-accent);
    display: inline-flex;
    font-weight: 700;
    text-decoration: none;
}

.rs-property .rs-material-toolbar {
    margin-bottom: .6rem;
    min-height: 54px;
    padding-block: .1rem;
}

.rs-property__gallery-shell {
    margin-bottom: 1.7rem;
    position: relative;
}

.rs-property__gallery {
    display: grid;
    gap: 4px;
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(180px, 260px));
    min-height: 420px;
    overflow: hidden;
    border-radius: 22px;
    background: #e8eded;
}

.rs-property__photo {
    display: block;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.rs-property__photo--extra {
    display: none;
}

.rs-property__photo--1 {
    grid-row: 1 / 3;
}

.rs-property__photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}

.rs-property__photo:hover img {
    transform: scale(1.025);
}

.rs-property__gallery--1 {
    display: block;
}

.rs-property__gallery--2 {
    grid-template-columns: 2fr 1fr;
}

.rs-property__gallery--2 .rs-property__photo--2 {
    grid-row: 1 / 3;
}

.rs-property__gallery--3 .rs-property__photo--2,
.rs-property__gallery--3 .rs-property__photo--3 {
    grid-column: 2 / 4;
}

.rs-property__photo-count {
    align-items: center;
    backdrop-filter: blur(7px);
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    bottom: 14px;
    color: var(--rs-ink);
    display: flex;
    font-size: .86rem;
    font-weight: 700;
    gap: .35rem;
    padding: .5rem .75rem;
    position: absolute;
    right: 14px;
}

.rs-property__gallery-pagination {
    display: none;
}

.rs-property svg {
    flex: 0 0 auto;
    height: 1.25em;
    width: 1.25em;
}

.rs-property__header {
    max-width: none;
    padding: .4rem 0 1.35rem;
    width: 100%;
}

.rs-property__eyebrow {
    align-items: center;
    color: var(--rs-accent);
    display: flex;
    font-size: .95rem;
    font-weight: 700;
    gap: .35rem;
    margin-bottom: .75rem;
}

.rs-property__header h1 {
    color: var(--rs-ink);
    font-size: 36px;
    font-weight: 750;
    letter-spacing: -.045em;
    line-height: 1.02;
    margin: 0;
}

.rs-property__summary {
    margin: 0 0 2rem;
}

.rs-property__operation {
    color: var(--rs-muted);
    font-size: .95rem;
    font-weight: 750;
    letter-spacing: .02em;
    margin: 0 0 .6rem;
}

.rs-property__summary .rs-property__price {
    color: var(--rs-ink);
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.rs-property__key-facts {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.4rem;
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.rs-property__key-facts li {
    align-items: center;
    display: inline-flex;
    gap: .4rem;
    min-width: 0;
}

.rs-property__key-facts strong {
    color: var(--rs-ink);
    font-size: 18px;
    font-weight: 780;
    white-space: nowrap;
}

.rs-property__key-facts span {
    color: var(--rs-muted);
    font-size: 18px;
    white-space: nowrap;
}

.rs-property__summary-location {
    color: var(--rs-ink);
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}

.rs-property__layout {
    align-items: start;
    display: grid;
    gap: clamp(2rem, 6vw, 5.5rem);
    grid-template-columns: minmax(0, 1fr) 330px;
}

.rs-property__main {
    min-width: 0;
}

.rs-property__richtext > :last-child {
    margin-bottom: 0;
}

.rs-property__facts {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 2.5rem;
}

.rs-property__facts > div {
    align-items: start;
    background: linear-gradient(145deg, #f8fafb, #f3f6f8);
    border: 1px solid #e4eaed;
    border-radius: 16px;
    display: grid;
    gap: .18rem .85rem;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-width: 0;
    padding: .85rem .95rem;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.rs-property__facts > div:hover {
    border-color: #d3dfe5;
    box-shadow: 0 7px 18px rgba(21, 47, 71, .07);
    transform: translateY(-1px);
}

.rs-property__facts dt {
    display: contents;
}

.rs-property__facts dt span {
    align-self: end;
    color: var(--rs-muted);
    font-size: .76rem;
    font-weight: 650;
    grid-column: 2;
    grid-row: 1;
    letter-spacing: .01em;
    line-height: 1.2;
    min-width: 0;
}

.rs-property__facts dd {
    color: var(--rs-ink);
    font-size: 1rem;
    font-weight: 720;
    grid-column: 2;
    grid-row: 2;
    line-height: 1.35;
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.rs-property__facts dt svg {
    align-self: center;
    background: #e8f0f7;
    border-radius: 12px;
    color: var(--rs-accent);
    grid-column: 1;
    grid-row: 1 / 3;
    height: 44px;
    padding: 10px;
    width: 44px;
}

.rs-property__section {
    border-top: 1px solid var(--rs-line);
    padding: 1.65rem 0;
}

.rs-property__lead {
    border-bottom: 1px solid var(--rs-line);
    border-top: 0;
    margin-bottom: 1.4rem;
    padding: 0 0 .9rem;
}

.rs-property__section h2 {
    color: var(--rs-ink);
    font-size: 28px;
    letter-spacing: -.025em;
    margin: 0 0 .85rem;
}

.rs-property__richtext {
    font-size: 1.04rem;
    line-height: 1.7;
}

.rs-property__richtext ul,
.rs-property__richtext ol {
    display: grid;
    float: none;
    gap: .6rem;
    margin: 0;
    padding-left: 1.3rem;
}

.rs-property__inclusions {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rs-property__inclusion {
    background: transparent;
    border: 0;
    border-radius: 0;
    min-width: 0;
    padding: 0;
}

.rs-property__inclusion h3 {
    align-items: center;
    display: flex;
    font-size: 1.08rem;
    gap: .45rem;
    margin: 0 0 .9rem;
}

.rs-property__inclusion--yes h3 {
    color: var(--rs-accent-dark);
}

.rs-property__inclusion--no h3 {
    color: #a65427;
}

.rs-property__booking {
    align-self: start;
    background: #fff;
    border: 1px solid var(--rs-line);
    border-radius: 20px;
    box-shadow: none;
    padding: 1.5rem;
    position: sticky;
    top: 6.5rem;
}

.rs-property__booking-backdrop,
.rs-property__booking-close,
.rs-property__booking-title {
    display: none;
}

.rs-property__price-label {
    color: var(--rs-muted);
    font-size: .84rem;
    margin-bottom: .2rem;
}

.rs-property__price {
    align-items: baseline;
    display: flex;
    font-size: 24px;
    font-weight: 800;
    gap: .35rem;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.rs-property__price-unit {
    color: var(--rs-muted);
    font-size: .84rem;
    margin-top: .35rem;
}

.rs-property__button {
    background: var(--rs-accent);
    border-radius: 999px;
    color: #fff;
    display: block;
    font-weight: 750;
    margin-top: 1.35rem;
    padding: .9rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    width: 100%;
}

.rs-property__button:hover,
.rs-property__button:focus-visible {
    background: var(--rs-accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

.rs-property__contact {
    align-items: center;
    border-top: 1px solid var(--rs-line);
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
}

.rs-property__contact button,
.rs-property__contact a {
    background: transparent;
    border: 0;
    color: var(--rs-accent-dark);
    font: inherit;
    font-weight: 750;
    line-height: 1.25;
    padding: .15rem .75rem;
    text-decoration: none;
    white-space: nowrap;
}

.rs-property__contact button {
    cursor: pointer;
}

.rs-property__contact--with-phone button {
    border-right: 1px solid var(--rs-line);
}

.rs-property__contact button:hover,
.rs-property__contact button:focus-visible,
.rs-property__contact a:hover,
.rs-property__contact a:focus-visible {
    color: var(--rs-accent);
}

.rs-property__booking p {
    color: var(--rs-muted);
    font-size: .86rem;
    line-height: 1.45;
    margin: .9rem 0 0;
}

.rs-property__tariffs {
    display: grid;
    /* gap: .75rem; */
}

.rs-property__tariff {
    align-items: center;
    border-bottom: 1px solid var(--rs-line);
    display: grid;
    gap: .35rem 1rem;
    grid-template-columns: minmax(90px, .7fr) minmax(0, 1.8fr) auto;
    padding: 1rem;
}

.rs-property__tariff strong {
    color: var(--rs-muted);
    font-size: .92rem;
}

.rs-property__tariff span {
    line-height: 1.4;
}

.rs-property__tariff b {
    color: var(--rs-ink);
    font-size: 1.08rem;
    text-align: right;
}

.rs-property__tariff--without-description {
    grid-template-columns: minmax(90px, 1fr) auto;
}

.rs-property__booking-form {
    border-top: 0;
    display: grid;
    gap: .45rem;
    margin-top: 0;
    padding-top: 0;
}

.rs-property__booking-form label {
    font-size: .84rem;
    font-weight: 700;
    margin-top: .25rem;
}

.rs-property__booking-option {
    display: grid;
    gap: .45rem;
}

.rs-property__booking-option[hidden] {
    display: none;
}

.rs-property__booking-form input,
.rs-property__booking-form select {
    background: #fff;
    border: 1px solid var(--rs-line);
    border-radius: 10px;
    color: var(--rs-ink);
    font: inherit;
    min-height: 44px;
    padding: .65rem .75rem;
    width: 100%;
}

.rs-property__booking-form select:disabled {
    background: #f2f4f4;
    color: var(--rs-muted);
}

.rs-property__booking-form input:focus,
.rs-property__booking-form select:focus {
    border-color: var(--rs-accent);
    outline: 2px solid color-mix(in srgb, var(--rs-accent) 18%, transparent);
    outline-offset: 1px;
}

.rs-property__booking-form input[data-rs-booking-date] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235d6678' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E");
    background-position: .75rem center;
    background-repeat: no-repeat;
    background-size: 18px;
    cursor: pointer;
    padding-left: 2.5rem;
}

.rs-booking-option__native {
    height: 1px !important;
    opacity: 0;
    overflow: hidden;
    padding: 0 !important;
    pointer-events: none;
    position: absolute;
    width: 1px !important;
}

.rs-booking-option__trigger {
    align-items: center;
    background: #fff;
    border: 1px solid var(--rs-line);
    border-radius: 10px;
    color: var(--rs-muted);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-weight: 400;
    justify-content: space-between;
    min-height: 44px;
    padding: .65rem .75rem;
    text-align: left;
    width: 100%;
}

.rs-booking-option__trigger::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: '';
    flex: 0 0 auto;
    height: 8px;
    margin: -4px .2rem 0 1rem;
    transform: rotate(45deg);
    transition: transform .18s ease;
    width: 8px;
}

.rs-booking-option__trigger[aria-expanded="true"] {
    border-color: var(--rs-accent);
    color: var(--rs-ink);
    outline: 2px solid color-mix(in srgb, var(--rs-accent) 18%, transparent);
    outline-offset: 1px;
}

.rs-booking-option__trigger[aria-expanded="true"]::after {
    margin-top: 3px;
    transform: rotate(225deg);
}

.rs-booking-option__trigger.has-value {
    color: var(--rs-ink);
}

.rs-booking-option__trigger:disabled {
    background: #f2f4f4;
    color: var(--rs-muted);
    cursor: default;
}

.rs-booking-option__popup {
    background: #fff;
    border: 1px solid #d7dce3;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(23, 35, 58, .18);
    max-height: 320px;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 7px;
    position: fixed;
    scrollbar-color: #b6bdc8 transparent;
    scrollbar-width: thin;
    z-index: 10100;
}

.rs-booking-option__item {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 9px;
    color: #17233a;
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: .92rem;
    justify-content: space-between;
    line-height: 1.4;
    min-height: 40px;
    padding: .55rem .75rem;
    text-align: left;
    width: 100%;
}

.rs-booking-option__item:hover,
.rs-booking-option__item:focus-visible {
    background: #eef7f8;
    outline: 0;
}

.rs-booking-option__item.is-selected {
    background: #e4f3f5;
    color: var(--rs-accent-dark);
    font-weight: 750;
}

.rs-booking-option__item.is-selected::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: '';
    flex: 0 0 auto;
    height: 10px;
    margin: -4px 3px 0 1rem;
    transform: rotate(45deg);
    width: 6px;
}

.rs-date-picker {
    --rs-accent: #003568;
    --rs-accent-dark: #00264b;
    background: #fff;
    border: 1px solid #d7dce3;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(23, 35, 58, .18);
    color: #17233a;
    padding: 14px;
    position: fixed;
    z-index: 10100;
}

.rs-date-picker__header {
    align-items: center;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    margin-bottom: 10px;
    text-align: center;
}

.rs-date-picker__header strong {
    font-size: .92rem;
    text-transform: capitalize;
}

.rs-date-picker__header button,
.rs-date-picker__days button {
    align-items: center;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    padding: 0;
}

.rs-date-picker__header button {
    border-radius: 50%;
    font-size: 1.45rem;
    height: 34px;
    width: 34px;
}

.rs-date-picker__header button:hover:not(:disabled),
.rs-date-picker__days button:hover:not(:disabled) {
    background: #eef3ff;
}

.rs-date-picker__weekdays,
.rs-date-picker__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.rs-date-picker__weekdays {
    color: #7b8493;
    font-size: .72rem;
    margin-bottom: 5px;
}

.rs-date-picker__days {
    gap: 2px 0;
}

.rs-date-picker__days > span,
.rs-date-picker__days button {
    aspect-ratio: 1;
    border-radius: 9px;
    font-size: .82rem;
    min-width: 0;
}

.rs-date-picker__days button.is-selected {
    background: var(--rs-accent);
    color: #fff;
    font-weight: 800;
}

.rs-date-picker button:disabled {
    color: #c9cdd4;
    cursor: default;
}

.rs-property__price-summary[hidden],
.rs-property__price [hidden] {
    display: none;
}

.rs-property__button.is-disabled,
.rs-property__button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: .48;
    transform: none;
}

@media (max-width: 900px) {
    .rs-property__contact {
        display: none;
    }

    body.rs-booking-modal-open {
        overflow: hidden;
    }

    body.rs-property-page .rs-date-picker {
        box-sizing: border-box;
        left: 50% !important;
        margin: 0;
        max-height: calc(100dvh - 2rem);
        overflow-y: auto;
        top: 50% !important;
        transform: translate(-50%, -50%);
        width: min(304px, calc(100vw - 2rem)) !important;
    }

    .rs-property {
        padding-bottom: 7.5rem;
    }

    .rs-property__gallery {
        grid-template-columns: 1.5fr 1fr;
    }

    .rs-property__photo--4,
    .rs-property__photo--5 {
        display: none;
    }

    .rs-property__gallery--3 .rs-property__photo--2,
    .rs-property__gallery--3 .rs-property__photo--3 {
        grid-column: 2;
    }

    .rs-property__layout {
        grid-template-columns: 1fr;
    }

    .rs-property__booking {
        align-items: center;
        border: 0;
        border-radius: 20px 20px 0 0;
        bottom: 0;
        box-shadow: 0 -10px 32px rgba(28, 52, 51, .16);
        display: grid;
        gap: .1rem 1rem;
        grid-template-columns: minmax(0, 1fr) minmax(155px, auto);
        left: 0;
        margin: 0;
        padding: .8rem max(1rem, calc((100vw - var(--rs-page-width, 1200px)) / 2));
        position: fixed;
        right: 0;
        top: auto;
        width: auto;
        z-index: 10020;
    }

    .rs-property__booking .rs-property__button {
        align-items: center;
        align-self: center;
        display: flex;
        grid-column: 2;
        grid-row: 1 / span 2;
        justify-content: center;
        margin: 0;
        min-height: 44px;
        min-width: 0;
        padding: .7rem 1.35rem;
    }

    .rs-property__booking:not(.is-mobile-open) .rs-property__booking-form,
    .rs-property__booking:not(.is-mobile-open) .rs-property__booking-close,
    .rs-property__booking:not(.is-mobile-open) .rs-property__booking-title,
    .rs-property__booking:not(.is-mobile-open) p {
        display: none;
    }

    .rs-property__booking:not(.is-mobile-open) .rs-property__button.is-disabled,
    .rs-property__booking:not(.is-mobile-open) .rs-property__button[aria-disabled="true"] {
        cursor: pointer;
        opacity: 1;
    }

    .rs-property__booking:not(.is-mobile-open) .rs-property__price-summary {
        align-self: end;
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .rs-property__booking:not(.is-mobile-open) .rs-property__price-label {
        font-size: .84rem;
        margin: 0;
    }

    .rs-property__booking:not(.is-mobile-open) .rs-property__price {
        font-size: 24px;
        white-space: nowrap;
    }

    .rs-property__booking:not(.is-mobile-open) .rs-property__price-unit {
        align-self: start;
        font-size: .84rem;
        grid-column: 1;
        grid-row: 2;
        margin: 0;
    }

    .rs-property__booking-backdrop:not([hidden]) {
        background: rgba(15, 27, 35, .52);
        display: block;
        inset: 0;
        position: fixed;
        z-index: 10050;
    }

    .rs-property__booking.is-mobile-open {
        border: 1px solid var(--rs-line);
        border-radius: 20px;
        bottom: auto;
        display: block;
        left: 50%;
        margin: 0;
        max-height: calc(100dvh - 2rem);
        max-width: 430px;
        overflow: auto;
        padding: 1.35rem;
        right: auto;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 2rem);
        z-index: 10060;
    }

    .rs-property__booking.is-mobile-open .rs-property__booking-title {
        display: block;
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        white-space: nowrap;
        width: 1px;
        clip: rect(0, 0, 0, 0);
    }

    .rs-property__booking.is-mobile-open .rs-property__price-summary {
        padding-right: 2.5rem;
    }

    .rs-property__booking.is-mobile-open .rs-property__price {
        font-size: 24px;
        letter-spacing: -.02em;
    }

    .rs-property__booking.is-mobile-open .rs-property__booking-close {
        background: transparent;
        border: 0;
        border-radius: 50%;
        cursor: pointer;
        display: block;
        height: 42px;
        padding: 0;
        position: absolute;
        right: .8rem;
        top: .7rem;
        width: 42px;
    }

    .rs-property__booking.is-mobile-open .rs-property__booking-close:hover,
    .rs-property__booking.is-mobile-open .rs-property__booking-close:focus-visible {
        background: #f0f2f4;
        outline: 0;
    }

    .rs-property__booking.is-mobile-open .rs-property__booking-close::before,
    .rs-property__booking.is-mobile-open .rs-property__booking-close::after {
        background: currentColor;
        content: '';
        height: 2px;
        left: 12px;
        position: absolute;
        top: 20px;
        width: 18px;
    }

    .rs-property__booking.is-mobile-open .rs-property__booking-close::before {
        transform: rotate(45deg);
    }

    .rs-property__booking.is-mobile-open .rs-property__booking-close::after {
        transform: rotate(-45deg);
    }

    .rs-property__booking.is-mobile-open .rs-property__booking-form {
        display: grid;
    }

    .rs-property__booking.is-mobile-open .rs-property__button {
        align-items: center;
        display: flex;
        justify-content: center;
        margin: 1.15rem auto 0;
        min-height: 46px;
        padding: .85rem 1.35rem;
        width: fit-content;
    }

    .rs-property__booking.is-mobile-open p {
        display: block;
    }
}

@media (max-width: 640px) {
    .rs-property__section {
        padding: 1.35rem 0;
    }

    .rs-property__lead {
        margin-bottom: 1.1rem;
        padding: 0 0 .75rem;
    }

    .rs-property__header h1 {
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -.03em;
    }

    .rs-property__section h2 {
        font-size: 25px;
        line-height: 1.18;
    }

    .rs-property__richtext {
        font-size: 1rem;
        line-height: 1.62;
    }

    .rs-property__tariff {
        align-items: start;
        grid-template-columns: 1fr auto;
    }

    .rs-property__tariff span {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .rs-property__tariff b {
        grid-column: 2;
        grid-row: 1;
    }

    .rs-property__gallery {
        border-radius: 14px;
        display: flex;
        gap: 0;
        min-height: 0;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        touch-action: pan-x;
    }

    .rs-property__gallery::-webkit-scrollbar {
        display: none;
    }

    .rs-property__photo-count {
        display: none;
    }

    .rs-property__gallery-pagination {
        bottom: 10px;
        display: block;
        left: 50%;
        padding: 5px;
        position: absolute;
        transform: translateX(-50%);
        z-index: 2;
    }

    .rs-property__gallery-pagination-track {
        align-items: center;
        display: flex;
        gap: 6px;
    }

    .rs-property__gallery-dot {
        appearance: none;
        background: rgba(205, 209, 210, .9);
        border: 0;
        border-radius: 999px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, .22);
        cursor: pointer;
        flex: 0 0 auto;
        height: 7px;
        margin: 0;
        padding: 0;
        transition: background-color .18s ease, width .18s ease;
        width: 7px;
    }

    .rs-property__gallery-dot.is-active {
        background: #4b5052;
        width: 19px;
    }

    .rs-property__photo {
        aspect-ratio: 4 / 3;
        display: block;
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .rs-property__facts,
    .rs-property__inclusions {
        grid-template-columns: 1fr;
    }

    .rs-property__facts {
        gap: .6rem;
    }

    .rs-property__facts > div {
        gap: .14rem .75rem;
        grid-template-columns: 42px minmax(0, 1fr);
        padding: .78rem .85rem;
    }

    .rs-property__facts dt span {
        align-self: end;
        font-size: .74rem;
        line-height: 1.2;
    }

    .rs-property__facts dd {
        font-size: .96rem;
        line-height: 1.3;
    }

    .rs-property__facts dt svg {
        border-radius: 11px;
        height: 42px;
        padding: 9px;
        width: 42px;
    }

    .rs-property__booking {
        padding-left: .85rem;
        padding-right: .85rem;
    }

    .rs-property__booking .rs-property__button {
        min-width: 0;
        padding: .8rem 1.35rem;
    }

    .rs-property__booking.is-mobile-open {
        padding: 1.25rem;
    }
}

@media (max-width: 420px) {
    .rs-property__header h1 {
        font-size: 27px;
    }

    .rs-property__section h2 {
        font-size: 23px;
    }

    .rs-property__facts > div { gap: .12rem .7rem; }
}

.rs-lightbox {
    background: transparent;
    border: 0;
    height: 100dvh;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    width: 100vw;
}

.rs-lightbox::backdrop {
    background: rgba(8, 17, 18, .94);
}

.rs-lightbox__stage {
    align-items: center;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    height: 100%;
    padding: 2rem;
    position: relative;
}

.rs-lightbox__figure {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    margin: 0;
    min-height: 0;
}

.rs-lightbox__image {
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .4);
    display: block;
    max-height: calc(100dvh - 5rem);
    max-width: 100%;
    object-fit: contain;
}

.rs-lightbox__button {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 2rem;
    height: 48px;
    justify-content: center;
    padding: 0 0 .15em;
    transition: background .2s ease;
    width: 48px;
}

.rs-lightbox__button:hover,
.rs-lightbox__button:focus-visible {
    background: rgba(255, 255, 255, .28);
}

.rs-lightbox__button--next {
    justify-self: end;
}

.rs-lightbox__button--close {
    background: transparent;
    border: 0;
    font-size: 0;
    height: 42px;
    padding: 0;
    position: absolute;
    right: 1.5rem;
    top: 1.25rem;
    width: 42px;
    z-index: 1;
}

.rs-lightbox__button--close::before,
.rs-lightbox__button--close::after {
    background: currentColor;
    content: '';
    height: 2px;
    left: 12px;
    position: absolute;
    top: 20px;
    width: 18px;
}

.rs-lightbox__button--close::before {
    transform: rotate(45deg);
}

.rs-lightbox__button--close::after {
    transform: rotate(-45deg);
}

.rs-lightbox__button--close:hover,
.rs-lightbox__button--close:focus-visible {
    background: rgba(255, 255, 255, .18);
}

.rs-lightbox__counter {
    bottom: 1rem;
    color: #fff;
    font-size: .9rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

@media (max-width: 640px), (pointer: coarse) {
    .rs-lightbox {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rs-property__photo img,
    .rs-property__button {
        transition: none;
    }
}

.rs-property .rs-property__booking-form {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

@media (max-width: 900px) {
    .rs-property .rs-property__booking {
        display: flex;
        gap: .85rem;
        grid-template-columns: none;
        justify-content: space-between;
        padding: .8rem max(1rem, calc((100vw - var(--rs-page-width, 1200px)) / 2));
    }

    .rs-property .rs-property__booking:not(.is-mobile-open) .rs-property__booking-form {
        display: none;
    }

    .rs-property .rs-property__booking .rs-property__button {
        display: flex;
        grid-column: auto;
        grid-row: auto;
        font-size: .95rem;
        margin: 0;
        min-height: 44px;
        order: 2;
        padding: .7rem 1.05rem;
        width: auto;
    }

    .rs-property .rs-property__booking:not(.is-mobile-open) .rs-property__contact {
        border: 0;
        display: flex;
        flex: 0 0 auto;
        margin: 0;
        order: 1;
        padding: 0;
    }

    .rs-property .rs-property__booking:not(.is-mobile-open) .rs-property__contact button {
        border: 0;
        font-size: .95rem;
        padding: .55rem 0;
    }

    .rs-property .rs-property__booking:not(.is-mobile-open) .rs-property__contact a {
        display: none;
    }

    .rs-property .rs-property__booking.is-mobile-open {
        display: block;
    }

    body.rs-property-page .rs-date-picker.is-mobile-sheet {
        inset: 0 !important;
        max-height: none;
        transform: none !important;
        width: 100vw !important;
    }
}
