@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.review__item,
.review__slider {
display: inline-flex;
padding: 0 10px;
}

.review__slider__sticky {
overflow: hidden;
}

.review__slidercd {
width: 100%;
overflow: visible;
}

.review__slider {
    display: flex;
    align-items: stretch;
}

.review__item {
    display: flex;
    height: auto; 
    width: 245px;
    flex: 0 0 245px;
    padding: 0 10px; 
}

.review__item .in {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: var(--bt-radius);
    overflow: hidden;
    position: relative;
}


.review__guest-photo {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
}


.review__platform-icons {
    position: absolute; 
    bottom: 15px; 
    right: 15px; 
    top: auto;  
    width: auto; 
    margin: 0; 
    display: flex;
    z-index: 10;
}

.platform-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.platform-icon:hover {
  transform: scale(1.15);
}

.platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-icon:hover img {
  filter: grayscale(50%) opacity(1); 
}

@media (max-width: 768px) {
    .review__platform-icons {
        top: auto;
        right: 16px;
        bottom: 12px; 
        gap: 10px;
        justify-content: flex-end;
    }
}


@media (min-width: 768px) {
  .review__guest-photo {
    height: 180px;
  }
  
  .review__platform-icons {
    bottom: 30px;
    right: 30px;
    top: auto;
    gap: 10px;
    justify-content: flex-end;
  }
  
  .platform-icon {
    width: 26px;
    height: 26px;
  }
}

.review__item blockquote {
    margin-top: 0px;
    padding-top: 20px;
    color: #1B191C;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
    text-align: flex-start;
    flex: 1; 
}

.review__item blockquote::before {
  display: none !important;
  content: none !important;
}

.review__item blockquote span {
width: 100%;
display: block;
}

.review__item p {
margin: 0;
color: #1B191C;
font-size: 10px;
font-weight: 600;
line-height: 1em;
letter-spacing: 0.3px;
text-transform: uppercase;
}

.review__item .button {
position: relative;
z-index: 3;
width: auto;
}

.review__item .img:before {
content: ' ';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 40%;
background: rgba(196, 196, 196, 0.1);
backdrop-filter: blur(6px);
z-index: 2;
mask-image: linear-gradient(to top, #000 60%, transparent 100%);
-webkit-mask-image: linear-gradient(to top, #000 60%, transparent 100%);
}

.review__item .img img {
object-fit: cover;
}

.reviews .bts {
padding: 0 var(--padding-mt2);
margin-top: 25px;
justify-content: center;
}

.reviews__container {
margin: 0 0 30px;
}

.reviews__container h2 {
margin: 0 auto;
}

.reviews__container .a.button {
display: none;
}

/* ----------  MOBILE  ---------- */
@media (max-width: 767px) {
.reviews {
        height: auto !important;
}

.reviews .js__sticky__wrapper {
        top: initial !important;
        position: relative !important;
}

.review__slider {
        transform: translate(0, 0) !important;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
}

.review__slider:-webkit-scrollbar {
        display: none;
}

.review__item {
        scroll-snap-align: start;
        padding: 0 0 0 20px;
}

.review__item:last-child {
        padding: 0 10px 0 20px;
}
}

/* ----------  DESKTOP  ---------- */
@media (min-width: 768px) {
.review__slidercd {
        padding: 0;
}

.review__max {
        padding: 0 20px;
        max-width: var(--containerWidth-xl);
        margin-left: auto;
        margin-right: auto;
}

.reviews__container {
        margin: 0 auto 60px;
        display: flex;
        justify-content: center;
        align-items: center;
}

.reviews__container h2 h2 {
        margin: 0 auto;
}

.reviews__container .a.button {
        display: inline-flex;
}

.reviews .bts {
        display: none;
}

.review__item {
        width: 320px;
        flex: 0 0 320px;
}

.review__item .in {
        min-height: 400px;
        padding: 0;
}

.review__item .in blockquote {
        font-size: 16px;
}
}

/* ----------  BASE LAYOUT  ---------- */
.clc,
.clc__bg {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.clc {
    position: fixed;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clc__bg {
    position: absolute;
    background: rgba(28, 27, 25, 0.8);
}

/* ----------  MESSAGE BOX  ---------- */
.clc__msg {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    max-width: 100%;
    background-color: #fff;
    font-size: 20px;
    border: 1px solid rgba(67, 63, 59, 0.25);
    box-shadow: 4px 4px 19px 0 rgba(0, 0, 0, 0.13);
    z-index: 300;
    width: 450px;
    text-align: center;
}

/* ----------  CONTAINER  ---------- */
.clc__container {
    padding: var(--margin-mt) var(--padding-mt-2);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    width: calc(100% - 40px);
    max-width: 810px;
}

.clc__container h1 {
    margin: 40px 0;
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.28em;
}

/* ----------  DATES  ---------- */
.clc__dates {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clc__dates .line {
    height: 1px;
    border: 1px solid rgba(67, 63, 59, 0.25);
}

.clc__dates h3 {
    margin: 0 0 30px;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
}

.clc__date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin: 20px 0;
    line-height: 26px;
}

.clc__date .title {
    width: 70px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
}

.clc__date .calc {
    flex: 1;
    font-weight: 700;
    display: flex;
    align-items: center;
    line-height: 26px;
}

.clc__date .calc:before {
    display: inline-block;
    content: ' ';
    width: 16px;
    height: 16px;
    margin: 0 12px;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M12.6667 2.66699H3.33333C2.59695 2.66699 2 3.26395 2 4.00033V13.3337C2 14.07 2.59695 14.667 3.33333 14.667H12.6667C13.403 14.667 14 14.07 14 13.3337V4.00033C14 3.26395 13.403 2.66699 12.6667 2.66699Z" stroke="%23433F3B" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.667 1.33301V3.99967" stroke="%23433F3B" stroke-linecap="round" stroke-linejoin="round"/><path d="M5.33301 1.33301V3.99967" stroke="%23433F3B" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 6.66699H14" stroke="%23433F3B" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.clc__date .time {
    width: 110px;
    flex: 0 0 110px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.clc__date .time:before {
    display: inline-block;
    content: ' ';
    width: 16px;
    height: 16px;
    margin: 0 12px;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_499_2496)"><path d="M8 15.5C6.51664 15.5 5.0666 15.0601 3.83323 14.236C2.59986 13.4119 1.63856 12.2406 1.07091 10.8701C0.50325 9.49968 0.354725 7.99168 0.644114 6.53683C0.933503 5.08197 1.64781 3.7456 2.6967 2.6967C3.7456 1.64781 5.08197 0.933503 6.53683 0.644114C7.99168 0.354725 9.49968 0.50325 10.8701 1.07091C12.2406 1.63856 13.4119 2.59986 14.236 3.83323C15.0601 5.0666 15.5 6.51664 15.5 8C15.5 9.98913 14.7098 11.8968 13.3033 13.3033C11.8968 14.7098 9.98913 15.5 8 15.5ZM8 1.5C6.71443 1.5 5.45772 1.88122 4.3888 2.59545C3.31988 3.30968 2.48676 4.32484 1.99479 5.51256C1.50282 6.70028 1.3741 8.00722 1.6249 9.26809C1.8757 10.529 2.49477 11.6872 3.40381 12.5962C4.31285 13.5052 5.47104 14.1243 6.73192 14.3751C7.99279 14.6259 9.29973 14.4972 10.4874 14.0052C11.6752 13.5133 12.6903 12.6801 13.4046 11.6112C14.1188 10.5423 14.5 9.28558 14.5 8C14.5 6.2761 13.8152 4.6228 12.5962 3.40381C11.3772 2.18482 9.72391 1.5 8 1.5Z" fill="%23433F3B"/><path d="M10.12 10.83L7.64501 8.355C7.59867 8.30828 7.56201 8.25287 7.53712 8.19195C7.51224 8.13103 7.49963 8.0658 7.50001 8V4H8.50001V7.795L10.83 10.12L10.12 10.83Z" fill="%23433F3B"/></g><defs><clipPath id="clip0_499_2496"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>');
}

/* ----------  LEGEND  ---------- */
.clc__legend {
    margin: 27px 0;
    display: flex;
    flex-direction: column;
}

.clc__legend .clc__legend_l {
    width: auto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 20px;
    color: #fff;
}

.clc__legend .clc__legend_r {
    width: auto;
    display: flex;
}

.clc__legend .clc__legend_r .occupied,
.clc__legend .clc__legend_r .reserved {
    width: auto;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 0 20px;
    color: #fff;
}

.clc__legend .clc__legend_r .occupied:before,
.clc__legend .clc__legend_r .reserved:before {
    content: ' ';
    width: 12px;
    height: 12px;
    margin: 0 12px 0 0;
    background-color: #FFF1CC;
}

.clc__legend .clc__legend_r .occupied.occupied:before,
.clc__legend .clc__legend_r .reserved.occupied:before {
    background-color: #FFE2E2;
}

/* ----------  FOOTER MESSAGES  ---------- */
.clc__footer__msg,
.clc__footer__msgs {
    visibility: hidden;
    display: flex;
    flex: 1;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 6px 40px;
    min-height: 28px;
    margin: 5px 0 0;
    width: 100%;
    border-radius: 100px;
    background: #8a0000;
    text-align: center;
    font-size: 14px;
    line-height: 1em;
    font-weight: 500;
}

.clc__footer__msg.active,
.clc__footer__msgs.active {
    visibility: visible;
    display: flex;
}

.clc__footer__msg span,
.clc__footer__msgs span {
    text-align: left;
}

.clc__footer__msg strong,
.clc__footer__msgs strong {
    font-weight: 700;
}

.clc__footer__msg:before,
.clc__footer__msgs:before {
    flex: 0 0 20px;
    content: ' ';
    width: 20px;
    height: 20px;
    margin: 0 8px 0 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="20" viewBox="0 0 21 20" fill="none"><path d="M10.5003 18.3337C15.1027 18.3337 18.8337 14.6027 18.8337 10.0003C18.8337 5.39795 15.1027 1.66699 10.5003 1.66699C5.89795 1.66699 2.16699 5.39795 2.16699 10.0003C2.16699 14.6027 5.89795 18.3337 10.5003 18.3337Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5 13.3333V10" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5 6.66699H10.5088" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.clc__footer__msg .wt,
.clc__footer__msgs .wt {
    color: #fff;
}

.clc__footer__msg .wt a,
.clc__footer__msgs .wt a {
    color: #fff;
    text-decoration: underline;
}

/* ----------  FOOTER  ---------- */
.clc__footer {
    display: flex;
    padding: 0 10px;
}

.clc__footer .clc__footer__m {
    flex: 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    min-height: 28px;
    margin: 0 20px 20px;
    border-radius: 100px;
    background: #F9F3EB;
    text-align: center;
    font-size: 14px;
    line-height: 1em;
    font-weight: 500;
}

.clc__dates__footer .msg__placeholder:before,
.clc__footer .clc__footer__m:before {
    margin: 0 8px 0 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="20" viewBox="0 0 21 20" fill="none"><path d="M10.5003 18.3337C15.1027 18.3337 18.8337 14.6027 18.8337 10.0003C18.8337 5.39795 15.1027 1.66699 10.5003 1.66699C5.89795 1.66699 2.16699 5.39795 2.16699 10.0003C2.16699 14.6027 5.89795 18.3337 10.5003 18.3337Z" stroke="%23272322" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5 13.3333V10" stroke="%23272322" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5 6.66699H10.5088" stroke="%23272322" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    content: ' ';
}

.clc__footer .clc__footer__m span {
    text-align: left;
}

.clc__footer .clc__footer__m strong {
    font-weight: 700;
}

.clc__footer .clc__footer__m:before {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

/* ----------  DATES FOOTER  ---------- */
.clc__dates__footer {
    margin: 0 0 20px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clc__dates__footer .button span {
    width: auto;
    white-space: nowrap;
}

.clc__dates__footer .button.disabled {
    display: none;
}

.clc__dates__footer .msg__placeholder {
    display: none;
    flex: 1;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    min-height: 28px;
    border-radius: 100px;
    background-color: #F8B0B0;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.clc__dates__footer .msg__placeholder strong {
    font-weight: 700;
}

.clc__dates__footer .msg__placeholder.active {
    display: flex;
}

.clc__dates__footer .msg__placeholder:before {
    width: 20px;
    height: 20px;
}

/* ----------  CLOSE BUTTON  ---------- */
.clc__close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    background-color: var(--brown-dark);
    border-radius: 50%;
    display: block;
    z-index: 5;
    cursor: pointer;
    transition: all 150ms linear;
}

.clc__close:after,
.clc__close:before {
    content: ' ';
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.clc__close:after {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.clc__close:hover {
    background-color: var(--brown-light);
}

/* ----------  CALENDARS  ---------- */
.clc__calendars {
    max-height: calc(100 * 1dvh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.clc__calendars .calendar {
    display: flex;
    justify-content: center;
}

.clc__calendars__border {
    border-radius: 20px;
    border: 1px solid rgba(67, 63, 59, 0.25);
    background: #FFF;
    padding: 0 10px;
}

/* ----------  RESPONSIVE  ---------- */
@media (max-width: 767px) {
    .clc__footer .clc__footer__m {
        margin: 0;
    }

    .clc__footer .clc__footer__m2 {
        display: none !important;
    }

    .clc__legend {
        flex-direction: column;
    }

    .clc__legend .clc__legend_l {
        text-align: center;
    }

    .clc__legend .clc__legend_r {
        margin-top: 10px;
        justify-content: center;
    }

    .clc__dates__footer {
        padding: 0 10px;
        margin: 10px 0;
    }
}

@media (min-width: 768px) {
    .clc__container {
        padding: var(--margin-pc) var(--padding-pc-2);
        margin: 0 auto;
    }

    .clc__container h1 {
        font-size: 56px;
        margin: 80px 0;
    }

    .clc__dates {
        width: 40%;
        margin: 0 0 40px;
    }

    .clc__dates h3 {
        margin: 60px 0 30px;
    }

    .clc__legend .clc__legend_r {
        justify-content: center;
    }

    .clc__legend {
        flex-direction: column;
    }

    .clc__legend .clc__legend_l {
        text-align: center;
    }

    .clc__footer__msg,
    .clc__footer__msgs {
        margin: 0 30px 20px;
        width: calc(100% - 60px);
    }
}

@media (max-width: 1023px) {
    .clc__footer .clc__footer__m2 {
        display: none;
    }
}

@media (min-width: 1024px) {
    .clc__container {
        padding: var(--margin-pc) var(--padding-pc-2);
        margin: 0 auto;
        display: flex;
    }

    .clc__container h1 {
        font-size: 56px;
        margin: 80px 0;
    }

    .clc__calendars .calendar {
        display: flex;
        justify-content: space-evenly;
    }

    .clc__legend {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .clc__legend .clc__legend_r {
        justify-content: flex-end;
    }

    .clc__dates {
        width: 33.33%;
        padding: 0 0 0 60px;
        margin: 0 auto;
    }

    .clc__dates h3 {
        font-size: 40px;
        line-height: 1.3em;
        margin: 30px 0 60px;
    }
}

/* ----------  HERO BLOCK  ---------- */
.hp-hero {
    background-color: var(--brown-dark);
    overflow: hidden;
    height: 100vh;
}

/* ----------  BACKGROUND  ---------- */
.hp-hero .bg img {
    object-fit: cover;
}

.hp-hero .bg:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: multiply;
    z-index: 2;
}

/* ----------  CONTAINER  ---------- */
.hp-hero__container {
    z-index: 3;
    height: 100%;
}

.hp-hero__container .txt {
    padding: 164px var(--padding-mt2) 50px;
    align-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
}

/* Center the buttons container */
.hp-hero__container .txt .bts {
    justify-content: center;
}

.hp-hero__container .txt h1,
.hp-hero__container .txt h3,
.hp-hero__container .txt p {
    color: #fff;
}

.hp-hero__container .txt h3{
    margin-bottom: 3px;
}


.hp-hero__container .txt h1 {
    position: relative;
    margin-top: 5px;
    margin-bottom: 72px;
}

.hp-hero__container .txt p {
    position: relative;
    margin-top: 3px;
    margin-bottom: 72px;
}

/* ----------  SLIDER  ---------- */

.hero__bookingcd {
    padding: 0;
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero__bookingcd h4 {
    font-family: 'Cinzel', serif;
    leading-trim: both;
    text-edge: cap;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 1em;
    margin: 0 0 16px;
}

.hero__bookingcd:before {
    content: ' ';
    position: absolute;
    top: -20px;
    left: 50%;
    width: calc(100% - 40px);
    border-top: 1px solid rgba(242, 237, 232, 0.3);
    height: 1px;
    transform: translateX(-50%);
}

.hero__booking {
    display: flex;
    pointer-events: none;
}

.hero__booking .slick-list {
    overflow: visible;
}

/* ----------  SLIDER ITEM  ---------- */
.hero__booking-item {
    padding: 0 16px 0 0;
    width: auto;
    display: flex !important;
    align-items: center;
}


/* ----------  ICON  ---------- */
.hp-hero__icon {
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 500px;
    flex: 0 0 48px;
    margin: 0 12px 0 0;
    background: rgba(245, 240, 235, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    pointer-events: auto;
}

.hp-hero__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}


.hp-hero__icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.5);
}


.hp-hero__icon img {
    pointer-events: none;
}

/* ----------  MOBILE Update these in your existing mobile media query ---------- */
@media (max-width: 767px) {
    
    .hp-hero {
        height: 100vh;
    }

    .hp-hero__container .txt {
        padding: 240px var(--padding-mt2) 30px;
    }

    .hp-hero__container .txt h3 {
        font-size: 12px;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .hp-hero__container .txt h1 {
        font-size: 36px;
        line-height: 1.2em;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .hp-hero__container .txt h1 span {
        font-size: 24px;
    }
}

/* ----------  TABLET & MOBILE ---------- */
@media (max-width: 767px) {
    .hero__bookingcd {
        display: flex;
        justify-content: center !important; /* Force centering */
        align-items: center;
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        padding: 0; /* Remove padding that might push it off-center */
        z-index: 10;
    }

    .hero__booking {
        justify-content: center !important;
        width: auto;
    }

    /* Keep the decoration line centered above the icons */
    .hero__bookingcd:before {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
        width: calc(100% - 40px);
    }

    .hero__booking-item {
        padding-right: 8px;
    }

    .hp-hero__icon {
        margin-right: 0;
    }
}


/* ----------  TABLET  ---------- */
@media (min-width: 768px) {
    .hp-hero__container {
        padding: 0;
        margin: 0 auto;
        max-width: var(--containerWidth-xl);
    }

    .hp-hero__container .txt {
        padding: 219px var(--padding-pc2) 60px;
    }

    .hero__bookingcd {
        padding: 30px var(--padding-pc2);
    }

    .hero__bookingcd:before {
        width: calc(100% - 80px);
    }
}

/* ----------  DESKTOP  ---------- */
@media (min-width: 1200px) {
    .hero__bookingcd {
        flex-direction: row;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .hero__bookingcd h4 {
        margin: 0 12px 0 0;
    }

    .hero__booking {
        width: auto;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__booking .hero__booking-item:last-child {
        margin-right: 0;
        padding-right: 0;
    }
}

.calendar-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-image: url('/assets/img/icons/calendar.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

/* ----------  IMAGE LAYOUTS  ---------- */
.images-1 {
    display: flex;
    align-items: center
}

.images-1 .img-1 {
    aspect-ratio: 210/198;
    width: 60%;
    height: auto;
    flex: 0 0 60%
}

.images-1 .imggroup {
    width: 40%;
    padding: 0 0 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.images-2,.images-3 .imggroup {
    flex-direction: column;
    display: flex
}

.images-1 .img-2 {
    aspect-ratio: 128/96;
    width: 100%;
    height: auto;
    margin-bottom: 12px
}

.images-1 .img-3 {
    aspect-ratio: 78/64;
    width: 70%;
    height: auto
}

.images-2 .img-1 {
    aspect-ratio: 350/268;
    width: 100%;
    height: auto
}

.images-2 .imggroup {
    padding: 12px 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-start
}

.images-2 .img-2 {
    aspect-ratio: 133/81;
    width: 38%;
    height: auto;
    margin-right: 12px
}

.images-2 .img-3 {
    aspect-ratio: 168/120;
    width: 48%;
    height: auto
}

.images-3 {
    display: flex;
    align-items: center
}

.images-3 .img-1 {
    aspect-ratio: 189/262;
    width: 58%;
    height: auto;
    flex: 0 0 58%;
    order: 2
}

.images-3 .imggroup {
    order: 1;
    width: 42%;
    padding: 0 12px 0 0;
    justify-content: center;
    align-items: flex-end
}

.images-3 .img-2 {
    aspect-ratio: 91/74;
    width: 70%;
    height: auto;
    margin-bottom: 12px
}

.images-3 .img-3 {
    aspect-ratio: 149/112;
    width: 100%;
    height: auto
}

.images-4 {
    display: flex;
    flex-direction: column
}

.images-4 .img-1 {
    order: 2;
    aspect-ratio: 350/165;
    width: 100%;
    height: auto
}

.images-4 .imggroup {
    order: 1;
    padding: 0 0 12px;
    display: flex;
    justify-content: center;
    align-items: flex-end
}

.images-4 .img-2 {
    aspect-ratio: 143/102;
    width: 40%;
    height: auto;
    margin-right: 12px
}

.images-4 .img-3 {
    aspect-ratio: 102/88;
    width: 29%;
    height: auto
}

.hr-slider__item:nth-child(5n+1) .text:before {
    z-index: -1;
    content: ' ';
    width: 66px;
    height: 66px;
    position: absolute;
    right: 0;
    top: 0;
    background-repeat: no-repeat
}

@media (min-width: 1024px) {
    .hr-slider__item:nth-child(5n+1) .text:before {
        width:96px;
        height: 96px;
    }
}

.hr-slider__item:nth-child(5n+2) .text:before {
    z-index: -1;
    content: ' ';
    width: 96px;
    height: 66px;
    position: absolute;
    right: 0;
    top: -20px;
    background-repeat: no-repeat
}

.hr-slider__item:nth-child(5n+3) .text:before,.hr-slider__item:nth-child(5n+4) .text:before {
    width: 66px;
    z-index: -1;
    content: ' ';
    position: absolute;
    right: 0;
    background-repeat: no-repeat
}

.hr-slider__item:nth-child(5n+3) .text:before {
    height: 66px;
    top: -10px
}

.hr-slider__item:nth-child(5n+4) .text:before {
    height: 36px;
    top: 20px
}

.hr-slider__item:nth-child(5n+5) .text:before {
    z-index: -1;
    content: ' ';
    width: 96px;
    height: 67px;
    position: absolute;
    right: 0;
    bottom: 8px;
    background-repeat: no-repeat
}

@media (max-width: 1023px) {
    .hr-slider__container {
        top:0!important
    }

    .hr-slider__item {
        margin: 0;
        padding: 0 20px;
        display: flex;
        flex-direction: column
    }

    .hr-slider__item:first-child .images {
        margin-top: 30px;
        margin-bottom: 0
    }

    .hr-slider__item .images {
        order: 1;
        margin: 30px 0;
        display: flex;
        position: relative;
        height: auto
    }

    .hr-slider__item .images img {
        border-radius: 6px;
        object-fit: cover
    }

    .hr-slider__item .text {
        margin: 30px 0;
        position: relative;
        order: 2
    }

    .hr-slider__item .text h3.title {
        margin-bottom: 24px
    }

    .hr-slider__item .text h2 {
        margin-top: 0;
        padding-right: 40px
    }

    .hr-slider__item .text>:last-child {
        margin-bottom: 0
    }

    .hr-slider__slider {
        top: initial!important;
        overflow: hidden;
        max-height: 1060px;
        position: relative
    }

    .button__cd,.hr-slider__slider:after {
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 150ms linear
    }

    .hr-slider__slider:after {
        pointer-events: none;
        content: ' ';
        width: 100%;
        height: 328px;
        background: linear-gradient(180deg,rgba(255,255,255,0) 0,#FFF 60%,#FFF 100%);
        z-index: 2
    }

    .button__cd {
        display: flex;
        justify-content: center;
        padding: 0 20px 50px;
        z-index: 5
    }

    .hr-slider__container.opened .hr-slider__slider {
        max-height: initial
    }

    .hr-slider__container.opened .hr-slider__slider:after {
        opacity: 0
    }

    .hr-slider__container.opened .button__cd {
        opacity: 0;
        pointer-events: none
    }
}

@media (min-width: 768px) {
    .hr-slider__item {
        padding:0 50px
    }
}

@media (min-width: 1024px) {
    .hr-slider__container {
        margin:100px 0;
        overflow: hidden;
        position: sticky
    }

    .hr-slider__container .button__cd {
        display: none
    }

    .hr-slider__in {
        max-width: var(--containerWidth-xl);
        margin: 0 auto
    }

    .hr-slider__slider {
        display: inline-flex;
        align-items: center;
        width: auto
    }

    .hr-slider__item {
        display: inline-flex;
        align-items: center;
        width: auto;
        padding: 0 80px
    }

    .hr-slider__item:first-child {
        padding-left: 40px
    }

    .hr-slider__item:last-child {
        padding-right: 40px
    }

    .hr-slider__item .text {
        width: 500px;
        flex: 0 0 500px;
        margin: 0 100px 0 0;
        padding: 0;
        position: relative
    }

    .hr-slider__item .text h2 {
        padding: 0 90px 0 0
    }

    .hr-slider__item .images {
        width: 800px;
        flex: 0 0 800px
    }

    .hr-slider__item .images img {
        border-radius: var(--box-radius);
        object-fit: cover
    }

    .hr-slider__item .images-1 {
        max-width: 127vh
    }

    .hr-slider__item .images-2 {
        max-width: 53vh
    }

    .hr-slider__item .images-2 .img-1 {
        aspect-ratio: 350/229
    }

    .hr-slider__item .images-3 {
        max-width: 67vh
    }

    .hr-slider__item .images-4 {
        max-width: 67vh
    }

    .hr-slider__item .images-4 .img-1 {
        aspect-ratio: 350/152
    }
}

/* ----------  FORM BLOCK  ---------- */
.formblock__in {
    border-radius: 20px;
    background: #1F2F28;
    padding: 40px 27px;
    position: relative;
}

/* ----------  TABLET + DESKTOP  ---------- */
@media (min-width: 768px) {
    .formblock__in::before,
    .formblock__in::after {
        content: ' ';
        position: absolute;
        background-repeat: no-repeat;
    }

    /* bottom-left decoration */
    .formblock__in::before {
        left: 60px;
        bottom: 60px;
        width: 96px;
        height: 96px;
    }

    /* top-right decoration */
    .formblock__in::after {
        right: 60px;
        top: 60px;
        width: 66px;
        height: 126px;
    }

    .formblock__in::before,
    .formblock__in::after {
        display: none !important;
    }

    .formblock__incd {
        margin: 0 auto;
        max-width: 600px;
        position: relative;
        z-index: 2;
    }

    .formblock__in {
        padding: 60px 30px;
    }
}

/* ----------  TILES WRAPPER  ---------- */
.tiles h2 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* ----------  LIST  ---------- */
ul.tiles__list {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -10px 0;
    width: calc(100% + 20px);
}

/* ----------  ITEM  ---------- */
.tiles__item {
    width: 100%;
    display: flex;
    padding: 10px;
}

.tiles__item .in {
    position: relative;
    z-index: 2;
    height: auto;
    border-radius: var(--box-radius);
    padding: 30px;
    background-color: #F2EDE8;
}

.tiles__item .in img {
    width: 100%;
    height: 32px;
    object-fit: contain;
    object-position: left center;
    margin: 0 0 40px;
}

.tiles__item .in h3 {
    margin: 0 0 24px;
    font-size: 32px;
    color: var(--brown-dark);
}

.tiles__item .in p {
    margin: 0;
}


/* ----------  TABLET + DESKTOP  ---------- */
@media (min-width: 768px) {
    .tiles__item {
        width: 33.33%;
        flex: 0 0 33.33%;
    }

    .tiles__item .in {
        padding: 40px;
    }

    .tiles__item .in img {
        margin: 0 0 80px;
    }

    ul.tiles__list {
        margin: 60px -10px 0;
    }
}

/* ----------  SECTION  ---------- */
.numbers {
    background-color: #f2ede8;
}

.numbers__container {
    padding: 40px var(--padding-mt2);
}

.numbers__container h2 {
    margin-top: 0;
}

.numbers__container .bts {
    justify-content: center;
}

.numbers__container ul {
    margin: 40px 0 0;
}

/* ----------  BOX  ---------- */
.number__box {
    margin: 12px 0;
}

.number__box .in {
    padding: 27px 28px;
    border-radius: var(--box-radius);
    background-color: var(--brown-light);
    color: #fff;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.number__box .in.dark {
    background-color: var(--brown-medium);
}

/* ----------  PLACE  ---------- */
.number__box .in .place {
    margin: 0 0 20px;
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8em;
    position: relative;
    z-index: 3;
}

.number__box .in .place svg {
    margin: 2px 6px 0 0;
}

/* ----------  BOTTOM  ---------- */
.number__box .in .bottom {
    position: relative;
    z-index: 3;
}

.number__box .in .bottom strong {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    display: flex;
    width: 100%;
    margin: 0;
    line-height: 1em;
}

.number__box .in .bottom p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    margin: 0;
}

/* ----------  IMAGE OVERLAY  ---------- */
.number__box .in .img::before {
    z-index: 2;
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 100%);
}

.number__box .in img {
    object-fit: cover;
}

/* ----------  TABLET  ---------- */
@media (min-width: 768px) {
    .numbers__container {
        max-width: var(--containerWidth-xl);
        margin: 0 auto;
        padding: 100px var(--padding-pc2);
    }

    .numbers ul {
        margin: 0 -4px;
        width: calc(100% + 8px);
        display: flex;
    }

    .numbers ul li {
        width: 20%;
        flex: 0 0 20%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .number__box {
        margin: 0;
        padding: 4px;
    }

    .number__box .in {
        padding: 27px 28px;
        min-height: 168px;
    }

    .number__box:first-child .in {
        min-height: 314px;
    }

    .numbers li:nth-child(3) .number__box .in {
        min-height: 226px;
    }

    .numbers li:nth-child(2),
    .numbers li:nth-child(4) {
        position: relative;
        align-items: flex-start;
    }

    .numbers li:nth-child(2)::before,
    .numbers li:nth-child(4)::before {
        margin: 6px 20px 20px;
        content: ' ';
        width: 96px;
        height: 96px;
    }

    .numbers li:nth-child(4) {
        align-items: flex-end;
    }

    .numbers li:nth-child(4)::before {
        transform: scaleX(-1);
    }

    .numbers .number__box .in {
        padding: calc(28 * var(--size));
    }

    .numbers .number__box .in .place {
        font-size: 12px;
    }

    .numbers .number__box .in .bottom strong {
        font-size: clamp(24px, calc(24 * var(--size)), 24px);
    }

    .numbers .number__box .in .bottom p {
        font-size: clamp(14px, calc(16 * var(--size)), 16px);
    }

    .numbers .number__box .in .img::before {
        z-index: 2;
        border-radius: 20px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 100%);
    }

    .numbers .number__box .in img {
        object-fit: cover;
    }
}

/* ----------  DESKTOP  ---------- */
@media (min-width: 1024px) {
    .numbers ul {
        margin: 0 -9px;
        width: calc(100% + 18px);
    }

    .numbers .text .txt {
        position: absolute;
        left: 50%;
        top: 100%;
        width: 60%;
        max-width: 610px;
        padding: 0 var(--padding-pc2);
        transform: translateX(-50%);
    }

    .number__box {
        padding: 9px;
    }
}

.review__image {
    width: 100%;
    height: 180px; /* or 140px on mobile */
    overflow: hidden;
}

/* Add to the bottom of assets/css/index.css */

.hr-slider__item .images img {
    border-radius: 8px !important;
}

/* Default Desktop Size */
.brand-title {
    font-size: 72px;
}

/* Mobile Adjustment */
@media (max-width: 767px) {
    .brand-title {
        font-size: 64px; /* Adjust this number to your preference */
    }
}