:root {
    --ff-gilroy: "Gilroy", "Arial", sans-serif;
    --color-accent: #c4a789;
    --color-black: #2c211d;
    --color-light: #f2ede9;
    --swiper-pagination-bullet-horizontal-gap: 16px;
}

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

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

html {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    font-family: var(--ff-gilroy);
    color: var(--color-light);
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    width: 100%;
    height: 100%;

    background-color: var(--color-black);

}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: calc(100 * var(--vh, 1vh));
}

.wrapper .header,
.wrapper .footer {
    flex-shrink: 0;
}

.wrapper main {
    flex-grow: 1;
}

a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

textarea {
    resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;

    appearance: none;
}

input[type="number"] {
    appearance: textfield;
}

select,
textarea,
input:matches([type="email"],
    [type="number"],
    [type="password"],
    [type="search"],
    [type="tel"],
    [type="text"],
    [type="url"]) {
    appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    appearance: none;
}

@font-face {
    font-style: normal;
    font-weight: 400;
    font-family: "Gilroy";

    font-display: swap;
    src:
        url("../fonts/Gilroy-Regular.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 500;
    font-family: "Gilroy";

    font-display: swap;
    src:
        url("../fonts/Gilroy-Medium.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 600;
    font-family: "Gilroy";

    font-display: swap;
    src:
        url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: "Gilroy";

    font-display: swap;
    src:
        url("../fonts/Gilroy-Bold.woff2") format("woff2");
}

.container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.image-mask {
    clip-path: url(#blobClip);
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    outline: none;
    border: 2px solid var(--color-accent);
    border-radius: 30px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 17px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    min-height: 60px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    min-width: 270px;
    background-color: var(--color-accent);
    color: var(--color-light);

    padding: 10px 33px;
}

.button:hover,
.button:focus {
    background-color: transparent;
    color: var(--color-accent);
}

.button--border {
    background-color: transparent;
    color: var(--color-accent);
}

.button--border:hover,
.button--border:focus {
    background-color: var(--color-accent);
    color: var(--color-light);
}
.link-delivery {
    padding: 10px;
    height: 60px;
}
.link-delivery img {
    height: 100%;
    object-fit: contain;
}
.link-delivery:hover img,
.link-deliveryr:focus img {
    filter: brightness(0) invert(1);
}

.divider {
    display: grid;
    grid-template-columns: 1fr 20px 1fr;
    align-items: center;
    gap: 5px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.divider__line {
    height: 1px;
    background-color: #e1d3c4;
}

.divider__icon {
    width: 20px;
    height: 20px;
}

.divider__icon img {
    width: 100%;
    height: 100%;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    display: block;
    width: 210px;
    height: 46px;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo svg,
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo a:hover,
.logo a:focus {
    opacity: 0.8;
}

@media(max-width : 767px) {

}


.breadcrumbs {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
.main-page .breadcrumbs {
    display: none;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs a {
    color: inherit;
    font-size: 16px;
    line-height: 17px;
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs li::after {
    content: "»";
    padding: 0 5px;
}

.breadcrumbs li:last-child a {
    pointer-events: none;
}

.breadcrumbs li:last-child::after {
    display: none;
}
@media(max-width: 539px) {
    .breadcrumbs a {
        font-size: 12px;
    }
}

.custom-input,
.custom-textarea {
    position: relative;
    flex: 1;

    display: flex;
    width: 100%;

    font-size: 17px;
    letter-spacing: 0.42px;
    color: var(--color-light);
}

.custom-input label,
.custom-textarea label {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.custom-input input,
.custom-textarea textarea {
    width: 100%;
    min-height: 60px;
    padding: 20px 30px;
    font: inherit;
    color: inherit;
    outline: none;
    background-color: transparent;
    transition: border 0.3s ease;
    border: 2px solid var(--color-accent);
    border-radius: 30px;
}

.custom-textarea textarea {
    height: 203px;
}

.custom-toggle {
    position: relative;
    display: flex;
    width: 100%;
}

.custom-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
 }

 .custom-toggle label {
     display: flex;
    position: relative;
    cursor: pointer;
 }

.custom-toggle__label {
    font-size: 12px;
    line-height: 130%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.custom-toggle a {
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.custom-toggle a:hover {
    opacity: 0.6;
}

.custom-toggle__icon {
    margin-right: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid var(--color-light);
    border-radius: 8px;
    color: var(--color-light);
    flex-shrink: 0;
}

.custom-toggle__icon svg {
    width: 10px;
    height: 10px;
}

.custom-toggle label:hover .custom-toggle__label,
.custom-toggle label:focus .custom-toggle__label {
   opacity: 1;
}

.custom-toggle input:checked + .custom-toggle__icon {
    background-color: var(--color-accent);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media(max-width: 959px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }  
}
.page .wrapper {
    padding-top: 130px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    color: var(--color-light);
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 115px;
    
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.page .header, 
.header.sticky {
    background: var(--color-black);
}

.header__wrap {
    position: relative;
    top: 0;
    padding: 20px 0 40px;
    display: grid;
    grid-template-columns: 1fr 270px 1fr;
    gap: 30px;
    align-items: center;
}

.header__btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.header__btn {
    min-height: 42px;
}

.header__burger {
    position: absolute;
    top: 25px;
    left: 0;
    display: none;
    width: 30px;
    height: 30px;
    padding: 0;
    background-color: transparent;
    border: none;
    color: inherit;
    z-index: 10;
}

.header__burger img {
    width: 30px;
    height: 30px;
}

.header .divider {
    position: absolute;
    bottom: 10px;
    left: 0;
}

.header .logo {
    transition: filter 0.3s ease;
    filter: brightness(0) invert(1);
}

.phone {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    margin: 0;
}

.phone a {
    color: inherit;
    font-weight: 600;
    font-size: 40px;
    text-align: center;
}
.header__phones {
    display: flex;
    flex-direction: column;
}

.header__phones .phone,
.header__phones .phone a {
    color: inherit;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.96px;
    text-align: left;
}
.header__phones .phone a:hover {
    color: var(--color-accent);
}

.header__phone-call {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.85px;
    position: relative;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 0;
    font-family: var(--ff-gilroy);
    transition: opacity 0.3s ease
}
.header__phone-call svg {
    width: 18px;
    height: 18px;
}
.header__phone-call:hover {
    opacity: 0.7;
}

.header__mobile-block {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--color-accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.85px;
}

.header__call {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    width: 30px;
    height: 30px;
    z-index: 10;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}
.header__call img {
    width: 100%;
    height: 100%;
}

.header__mobile-block .socials {
    display: none;
}

@media (max-width : 1399px) {
    .header:has(.header__wrap.active) {
        background-color: var(--color-light);
    }
    .header__wrap {
        min-height: 110px;
    }
    .header__wrap.active {
        justify-content: start;
        align-items: start;
        grid-template-columns: 1fr;
        background-color: var(--color-light);
        color: var(--color-black);
        height: 100vh;
        padding-top: 120px;
        gap: 0;
        overflow: auto;
    }

    .header .logo {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .header__wrap.active .logo {
        filter: none;
    }

    .header .divider {
        bottom: auto;
        top: 80px;
    }

    .header__wrap.active .header__mobile-block{
        display: flex;
    }
    .header__phones,
    .header__phone-call {
        display: none;
    }

    .header__burger,
    .header__call {
        display: block;
    }
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 22px;
}

.nav__item {
    position: relative;
}

.nav__item:hover > .nav__sublist,
.nav__item:focus > .nav__sublist,
.nav__item:focus-within > .nav__sublist {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 100%) scaleY(1);
}

.nav__item a {
    color: inherit;
    transition: opacity 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.96px;
}

.nav__list > li > a {
    padding: 10px 0;
}

.nav__item a:hover,
.nav__item a:focus {
    text-decoration: underline;
}

.nav__sublist {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(33,24,22,0.8);
    list-style: none;
    margin: 0;
    padding: 10px;
    z-index: 10;
    width: max-content;
    width: 250px;
    opacity: 0;
    visibility: hidden;

    padding: 10px;
    transform: translate(0, 100%) scaleY(0);
    transform-origin: 0 0;
    transition: .5s ease-in-out;
}

.nav__sublist .nav__subitem a {
    color: var(--color-light);
    font-weight: 500;
    padding: 12px 15px;
    font-size: 17px;
    display: block;
    text-transform: none;
    border-bottom: 1px solid var(--color-light);
}

.nav__sublist .nav__subitem:last-child a {
    border-bottom: none;
}

@media (max-width : 1399px) {
    .nav {
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header__wrap.active .nav {
        display: flex;
    }
    .nav__list {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .nav__sublist {
        position: static;
        margin: 0;
        padding: 0;
        z-index: 10;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
    }

    .nav > .nav__item  {
        margin-bottom: 10px;
    }

    .nav__item:hover > .nav__sublist,
    .nav__item:focus > .nav__sublist,
    .nav__item:focus-within > .nav__sublist {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .nav__sublist .nav__subitem a {
        padding: 5px 0px;
        font-size: 14px;
        border: none;
        color: var(--color-black);
        background: transparent;
    }
}

.title {
    font-size: 50px;
    line-height: 120%;
    font-weight: 400;
    text-align: center;
    margin: 0 0 50px;
}

@media(max-width: 959px) {
    .title {
        font-size: 40px;
    }
}

@media(max-width: 539px) {
    .title {
        font-size: 30px;
        margin-bottom: 30px;
    }
}
.socials {
    gap: 20px;
}
.socials a {
    display: block;
    width: 40px;
    height: 40px;
}
.socials img {
    width: 100%;
    height: 100%;
}
.socials a:hover {
    opacity: 0.6;
}
.promo {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.promo__wrap {
    position: relative;
    min-height: 100vh;
    min-height: calc(100 * var(--vh, 1vh));

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 0;
    color: var(--color-light);
    z-index: 5;
}

.promo__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.promo__slider .swiper {
    height: 100%;
}

.promo__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .promo__img::after {
    content: '';
    position: absolute;
    top: 0;
    height: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
} */
.promo__title {
    font-weight: 600;
    font-size: 100px;
    line-height: 110%;
    letter-spacing: 1.7px;
    text-align: center;
    margin: 0 0 55px;
    max-width: 1000px;
}

.promo__text {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 85px;
    text-align: center;
    max-width: 900px;
}

@media (max-width: 767px) {
    .promo__title {
        font-size: 57px;
        margin: 0 0 40px;
    }

    .promo__text{
        font-size: 18px;
        margin: 0 0 40px;
    }
}
.promo-menu__subtitle {
    font-size: 17px;
    letter-spacing: 0.42px;
    line-height: 31px;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 870px;
}
.promo-menu__text {
    text-align: right;
    align-self: end;
    margin: 0;
}
.promo-menu__wrap {
    display: flex;
    gap: 300px;
    justify-content: space-between;
    aspect-ratio: 16 / 9;
}
.promo-menu__img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    margin: 0 auto;
    z-index: -1;
}
.promo-menu__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.promo-menu__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

@media(max-width: 959px) {
    .promo-menu__wrap {
        gap: 40px;
        aspect-ratio: auto;
        margin-bottom: 50px;
    }
   .promo-menu__img {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        z-index: 1;
    } 
}
@media(max-width: 767px) {
    .promo-menu__wrap {
        flex-direction: column;
    }
    .promo-menu__text {
        text-align: center;
        align-self: center;
    }
}
.gallery {
    position: relative;
    height: 90vh;
    overflow: hidden;
}
.gallery .swiper {
    height: 100%;
}

.gallery__img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
}

.gallery__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination {
    padding: 20px 0;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-light);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #E1D3C4;
}

.swiper-pagination-bullet {
  position: relative;
  width: 40px;
  height: 40px;
}

.swiper-pagination-bullet svg {
    position: absolute;
    top: -15px;
    left: -15px;
    transform: rotate(-90deg);
}

.swiper-pagination-bullet {
  position: relative;
  width: 40px;
  height: 40px;
}

.swiper-pagination-bullet circle {
  animation: none;
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
}

.swiper-pagination-bullet-active circle {
  animation: progressCircle 5s linear forwards;
}

@keyframes progressCircle {
  from {
    stroke-dashoffset: 113;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.swiper-btn-next,
.swiper-btn-prev {
    width: 120px;
    height: 60px;
    min-width: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.swiper-btn-next{
    right: 10px;
}
.swiper-btn-prev {
    left: 10px;
}
.swiper-btn-next.swiper-button-lock,
.swiper-btn-prev.swiper-button-lock {
    display: none;
}

@media(max-width: 767px) {
    .swiper-btn-next,
    .swiper-btn-prev {
        width: 60px;
        height: 60px;
        padding: 0;
        transform: translateY(calc(-50% - 25px));
    }
    .gallery .swiper-btn-next,
    .gallery .swiper-btn-prev {
        display: none;
    }
}
.text-content {
    font-size: 17px;
    letter-spacing: 0.42px;
    line-height: 180%;
}
.text-content p {
    margin: 0 0 10px;
}


@media(max-width : 539px) {
    .text-content {
        font-size: 14px;
    }
}
.content-block {
    padding: 50px 0;
}
.content-block .title {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}


.image-block {
    padding: 50px 0;
}

.image-block__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.image-block__img {
    width: 100%;
    max-width: 690px;
}
.image-block--right .image-block__img {
    order: 2;
}

.image-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-block__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.image-block__btn {
    width: 270px;
}

@media(max-width : 767px) {
    .image-block__wrap {
        grid-template-columns: 1fr;
    }
    .image-block--right .image-block__img {
        order: 0;
    }
}
.features {
    padding: 50px 0;
}

.features__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.features__item {
    width: calc((100% - 20px * 3) / 4);
    display: flex;
    gap: 15px;
    align-items: center;
}

.features__icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.features__icon ing {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features__text {
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    text-align: center;
}

@media(max-width: 1040px) {
    .features__list {
        grid-template-columns: repeat(2, 1fr);
    }  
    .features__item {
        width: calc((100% - 20px) / 2);
    }
}

@media(max-width: 767px) {
    .features__list {
        grid-template-columns: 1fr;
    }  
    .features__item {
        flex-direction: column;
        width: 100%;
    }
}

.spacial {
    padding: 50px 0;
}

.special__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
}

.special__list a {
    display: block;
    width: calc((100% - 60px) / 3);
}

.special__list img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

@media(max-width: 1023px) {
    .special__list a {
        width: calc((100% - 30px) / 2);
    }
}

@media(max-width: 767px) {
    .special__list a {
        width: 100%;
    }
}

.special-card {
    width: 100%;
}
.special-card__img {
    width: 100%;
}

.special-card__img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.special-card__title {
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    line-height: 120%;
    font-weight: 700;
    text-transform: uppercase;
}

.advantages__list {
   display: grid;
   gap: 20px;
}

.advantages__item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.advantages__img {
    width: 40%;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
}

.advantages__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages__info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantages__name {
    font-weight: 600;
    font-size: 70px;
    line-height: 1.28;
    letter-spacing: 1.27px;
    margin: 0 0 40px;
}

.advantages__description {
    font-size: 17px;
    line-height: 1.47;
    letter-spacing: 0.42px;
    margin: 0;
}

.advantages__item:nth-child(even) {
    flex-direction: row-reverse;
}

@media(max-width: 1023px) {
    .advantages {
        margin-bottom: 50px;
    }
    .advantages__item,
    .advantages__item:nth-child(even) {
        flex-direction: column;
    }

    .advantages__img {
        width: 100%;
        max-width: 662px;
    }
}

@media(max-width: 850px) {
    .advantages__name {
        font-size: 50px;
    }
}

@media(max-width: 539px) {
    .advantages__name {
        font-size: 36px;
        text-align: center;
        margin-bottom: 20px;
    }
    .advantages__description {
        font-size: 14px;
    }
}
.booking {
    padding: 50px 0;
}

.booking__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin: 50px auto;
    max-width: 800px;
}

.booking__text {
    font-size: 17px;
    letter-spacing: 0.42px;
    line-height: 31px;
    text-align: center;
    margin-bottom: 30px;
}

.booking__phone {
    display: flex;
    flex-direction: column;
    align-items: center
    gap: 40px;
    margin-bottom: 30px;
}

.booking__phone a {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    margin: 0;
}
.booking__phone a:hover {
    color: var(--color-accent);
}

.booking__subtitle {
    font-size: 17px;
    letter-spacing: 0.42px;
    line-height: 31px;
    text-align: center;
    margin: 30px 0;
}

.booking__form  form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking__form .form__text {
    grid-column: 1 / -1;
    max-width: none;
}


@media(max-width: 1023px) {
.booking__form form {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media(max-width: 767px) {
.booking__form form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.block-links {
    padding: 50px 0;
}
.block-links__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin: 50px auto;
    max-width: 870px;
}
.footer {
    position: relative;
    padding: 40px;
}

.footer__wrap {
    display: grid;
    grid-template-columns: 4fr 4fr 3fr 2fr 2fr;
    gap: 30px;
}
.footer .logo {
    justify-content: start;
    width: 210px;
    height: 27px;
    filter: brightness(0) invert(1);
}

.footer__text {
    font-size: 15px;
    letter-spacing: 0.42px;
    line-height: 18px;
    font-weight: 500;
}
.footer a:hover {
    color: var(--color-accent);
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery {
    display: flex;
    gap: 30px;
}

.delivery img {
    display: block;
    height: 26px;
}
.delivery a:hover {
    opacity: 0.7;
}


@media(max-width : 1023px) {
    .footer__wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer__col {
        display: none;
    }
    .footer__col.col-mob {
        display: flex;
        align-items: center;
    }
}
.accept {
    position: fixed;
    bottom: 30px;
    left: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: var(--color-light);
    color: var(--color-black);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 120;
}

.accept.active {
    opacity: 1;
    visibility: visible;
}
.accept svg {
    color: var(--color-accent);
}
.accept a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.accept a:hover {
    color: var(--color-accent);
}

.accept__btn {
    margin-left: auto;
    width: 80px;
    min-width: 0;
}

@media(max-width : 767px) {
    .accept {
        bottom: 15px;
        left: 15px;
        width: calc(100% - 30px);
        padding: 20px;
    }
}

.custom-select {
  position: relative;
  width: 100%;
  margin: 0;
}

.custom-select__label {
  display: block;
  max-width: 100%;
  font-size: 17px;
  line-height: 1.7rem;
  color: var(--color-light);
  margin-bottom: 0.7rem;
}

.custom-select__placeholder {
  position: absolute;
  top: 50%;
  width: calc(100% - 30px);
  left: 30px;
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  color: rgb(117, 117, 117);
  z-index: 3;
}

.custom-select select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
}

.custom-select__button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 20px 30px;
  background-color: var(--color-black);
  border: 2px solid var(--color-accent);
  color: var(--color-light);
  border-radius: 30px;
  outline: none;
  cursor: pointer;
  transition: border 0.3s ease;
  z-index: 2;
}

.custom-select__list {
  position: absolute;
  bottom: 30px;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 30px 0 0;
  list-style: none;
  background-color: var(--color-light);
  border: 1px solid var(--color-light);
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  border-radius: 0 0 0.8rem 0.8rem;
  max-height: 300px;
  overflow-y: auto;
}

.custom-select__item {
  padding: 5px 30px;
  border-bottom: 1px sold #e8e8e8;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--color-black);
}

.custom-select__text {
    font-size: 17px;
    letter-spacing: 0.42px;
    color: var(--color-light);
  flex-shrink: 0;
  width: 80%;
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
}

.custom-select .custom-select__text p {
    margin: 0;
}

.custom-select__text br {
  display: none;
}

.custom-select__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-left: auto;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.custom-select__icon svg {
  width: 100%;
  height: 100%;
}

.custom-select.is-disabled {
  pointer-events: none;
}

.custom-select.is-disabled .custom-select__list {
  display: none;
}

.custom-select.open-up .custom-select__list {
  bottom: auto;
  top: 0;
  transform: translateY(calc(-100% + 10px));
}

.custom-select.is-open .custom-select__list {
  visibility: visible;
  opacity: 1;
}

.custom-select.not-empty .custom-select__text {
  opacity: 1;
}

.custom-select.not-empty .custom-select__placeholder {
  opacity: 0;
}

.custom-select--placeholder .custom-select__label {
  transform: translateY(calc(-50% - 40px));
  opacity: 1;
}

.custom-select--placeholder.is-open .custom-select__label {
  opacity: 1;
}

.custom-select--placeholder.not-empty .custom-select__label {
  opacity: 1;
}

.custom-select.slide-up.not-empty .custom-select__label,
.custom-select.slide-up.is-open .custom-select__label {
  transform: translateY(calc(-50% - 40px));
  opacity: 1;
}

.custom-select.slide-up.not-empty .custom-select__text,
.custom-select.slide-up.is-open .custom-select__text {
  opacity: 1;
}

.custom-select__item[aria-selected="true"] {
    color: var(--color-accent);
}

.custom-input:has([data-date-input])::after {
  content: url('/assets/theme/img/calendar.svg');
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 30px;
  height: 30px;
}

.air-datepicker-cell.-current- {
    background-color: var(--color-accent);  
    color: var(--color-light);               
    border-radius: 50%;        
}

.air-datepicker-body--day-name {
    color: var(--color-accent);     
}

.form__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.form__text {
    font-size: 17px;
    letter-spacing: 0.42px;
    color: inherit;
    line-height: 31px;
    text-align: center;
    max-width: 680px;
    text-wrap: balance;
    margin: 0 auto;
}
.form__text a {
    color: var(--color-accent);
}
.form__text a:hover {
    color: inherit;
}
.form__btn.button {
    align-self: start;
}

@media(max-width: 1023px) {
    .form__row {
        grid-template-columns: repeat(2, 1fr);
    }
    .form__btn.button {
        grid-column:  1 / span 2;
        min-width: 0;
    }
}

@media(max-width: 767px) {
    .form__row {
        grid-template-columns: 1fr;
    }
    .form__btn.button {
        grid-column:  auto;
    }
    .form__text {
        font-size: 14px;
    }
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: scale(1.2);
    visibility: hidden;
    opacity: 0;

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;

    pointer-events: none;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.modal__wrapper {
    position: relative;

    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding: 40px;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #211816;
    opacity: 0.6;
    cursor: pointer;
}

.modal__content {
    position: relative;
    max-width: 1100px;
    width: 100%;
    background-color: var(--color-light);
    color: var(--color-black);
    border-radius: 45px;
    overflow: hidden;
    padding: 50px;
}

.modal__close {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    cursor: pointer;
    background: transparent;
    transition: color 0.3s ease;
    color: inherit;
}

.modal__close:hover,
.modal__close:focus {
    color: var(--color-accent);
}

.modal__close svg {
    width: 30px;
    height: 30px;
}

.modal.active {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal .custom-input {
    color: var(--color-black);
}

@media(max-width: 1023px) {
   .modal__content {
        padding: 30px;
    }
}

@media(max-width: 767px) {

    .modal__wrapper {
        padding: 20px;
    }
    
    .modal__content {
        padding: 30px;
    }
    
    .modal__close {
        top: 20px;
        right: 20px;
    }
}

.banquet-halls {
    padding: 50px 0;
}


.banquet-halls__wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media(max-width: 1199px) {
    .banquet-halls__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .banquet-halls__wrap {
        grid-template-columns: 1fr;
    }
}

.hall {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 15px;
}

.hall__title {
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    flex: 1;
    color: var(--color-accent);
    transition: color 0.3s ease;
}

.hall__img {
    width: 100%;
    aspect-ratio: 1 / 1;
}
.hall__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hall:hover .hall__title {
    color: var(--color-black);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.gallery-hall {
    padding-top: 140px;
}
.gallery-hall__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 90px;
}

.gallery-hall__img {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.gallery-hall__img a{
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-hall__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 1199px) {
    .gallery-hall__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .gallery-hall__wrap {
        grid-template-columns: 1fr;
    }
}

.menu__link {
    width: fit-content;
    margin: 40px auto;
}
.menu__link.mob {
    display: none;
}

.menu__wrap {
    position: relative;
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: start;
    gap: 50px;
}

.menu__anchors {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction:column;
    padding: 60px 0;
}

.menu__anchor {
    color: var(--color-dark);
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.96px;
    padding: 10px;
    border-bottom: 1px solid var(--color-accent);
}
.menu__anchor:hover,
.menu__anchor.active  {
    color: var(--color-accent);
}
.menu__block {
    margin: 60px 0;
}

.menu__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.menu__item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: min-content;
    gap: 0 20px;
}

.menu__name {
    font-size: 25px;
    line-height: 120%;
    font-weight: 400;
    text-transform: uppercase;
}

.menu__text {
    font-size: 17px;
    letter-spacing: 0.42px;
    line-height: 120%;
}
.menu__weight {
    font-size: 17px;
    letter-spacing: 0.42px;
    line-height: 120%;
    text-align: right;
}

.menu__price {
    font-weight: 600;
    font-size: 32px;
     line-height: 120%;
    letter-spacing: 1.27px;
    color: var(--color-accent);
}

@media(max-width: 959px) {
   .menu__list {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 767px) {
    .menu__wrap {
        grid-template-columns: 1fr;
    }
    .menu__anchors {
        display: none;
    }
    .menu__block {
        margin: 40px 0;
    }
    .menu__link.mob {
        display: flex;
    }
}


[data-accordion=element].is-active>[data-accordion=content] {
    max-height: 100%;
}

[data-accordion=parent].no-transition [data-accordion=content] {
    transition: none;
}

[data-accordion=content] {
    max-height: 0;
    transition: max-height 0.3s;
    overflow: hidden;
}

.accordion__element {
    overflow: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.accordion__button {
    pointer-events: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 0;
    cursor: pointer;
    border: none;
    background-color: var(--color-black);
    color: var(--color-accent);
    transition: color 0.3s ease;
    font-family: 'Gilroy','Arial', sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 120%;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.accordion__button:hover {
    opacity: 0.6;
}

.accordion__icon {
    position: relative;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: none;
}

.accordion__icon svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.accordion__element.is-active .accordion__icon {
    transform: rotate(-180deg);
}

.accordion__element.is-active .accordion__button {
    color: var(--color-dark);
}

.accordion__wrapper {
    padding: 50px 0;
}

@media(max-width: 767px) {
    .accordion__button {
        pointer-events: all;
        padding: 20px;
        font-weight: 500;
        font-size: 34px;
        justify-content: space-between;
    }
    .accordion__icon {
        display: block;
    }
    .accordion__wrapper {
        padding: 20px;
    }
}
.apartaments {
    padding: 50px 0;
}
.apartaments__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 50px 0;
}
.apartament-card {
    display: block;
    width: calc((100% - 20px * 2) / 3);
}
.apartament-card__img {
    display: block;
    width: 100%;
    aspect-ratio: 372 / 476;
}
.apartament-card__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.apartament-card__title {
    display: block;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    transition: color 0.3s ease;
}
.apartament-card:hover .apartament-card__title {
    color: var(--color-accent);
}

@media(max-width: 959px) {
    .apartament-card {
        width: calc((100% - 20px) / 2);
    }
}
@media(max-width: 539px) {
    .apartament-card {
        width: 100%;
    } 
}
.prices {
    padding: 50px 0;
}
.prices__desc {
    margin-bottom: 50px;
}
.prices__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.prices__item {
    width: calc((100% - 20px * 2) / 3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.prices__name {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    color: var(--color-accent);
    text-align: center;
}
.prices__text {
    font-size: 40px;
    line-height: 100%;
    font-weight: 600;
    text-align: center;
}
.prices__text span {
    font-size: 24px;
    line-height: 100%;
}
.prices__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.42px;
    margin: 20px 0;
}

@media(max-width: 959px) {
   .prices__item {
        width: calc((100% - 20px) / 2);
    } 
}
@media(max-width: 639px) {
   .prices__item {
        width: 100%;
    } 
}
.additional {
    padding: 50px 0;
}
.additional__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 30px;
}
.additional__text {
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.42px;
    margin-bottom: 30px;
    max-width: 450px;
}
.additional__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.additional__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: max-content 1fr;
    align-items: start
}
.additional__icon {
    grid-row: 1 / 3;
    width: 70px;
    height: 70px;
    margin-right: 30px;
}
.additional__icon img {
    width:100%;
    height: 100%;
    object-fit: contain;
}
.additional__name {
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.42px;
}
.additional__price {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0.48px;
    font-weight: 700;
}
.additional__price span {
    font-size: 16px;
    line-height: 100%;
    font-weight: 400;
}

@media(max-width: 959px) {
    .additional__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .additional__title {
        font-size: 36px;
    }
}
@media(max-width: 767px) {
    .additional__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 539px) {
    .additional__list {
        grid-template-columns: 1fr;
    }
    .additional__title {
        font-size: 24px;
    }
}
.contacts {
    margin-bottom: 100px;
}
.contacts__address {
    font-size: 17px;
    letter-spacing: 0.42px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 90px;
}
.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contacts__item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.5px;
}
.contacts__item svg {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}
.contacts__list {
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}
.contacts__list dd {
    margin: 0;
}
.contacts__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.5px;
}
.contacts__map iframe {
    width: 100%;
    height: 100%;
}

@media(max-width: 1024px) {
    .contacts__delivery {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 959px) {
    .contacts__wrap {
        grid-template-columns: 1fr;
    }
    .contacts__delivery {
        grid-template-columns: 1fr 1fr;
    }
    .contacts__map iframe {
        height: 400px;
    }
}
@media(max-width: 539px) {
    .contacts__delivery {
        grid-template-columns: 1fr;
    }
}

.tabs__btns {
    margin-bottom: 50px;
}
.tabs__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    border: none;
    padding: 0;
    background: transparent;
    font-family: 'Gilroy', 'Arial', sans-serif;
    cursor: pointer;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    outline: none;
}
.tabs__name {
    transition: transform 0.3s ease;
}
.tabs__btn.active .tabs__name {
    transform: scale(1.4);
}
.tabs__img {
    display: block;
    width: 270px;
    height: 270px;
    border-radius: 135px;
    overflow: hidden;
    transition: width 0.3s ease, opacity 0.3s ease, outline-color 0.3s ease;
    opacity: 0.6;
    outline: 5px solid transparent;
    outline-offset: -5px;
}
.tabs__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tabs__btn:hover .tabs__img {
    opacity: 1;
}
.tabs__btn.active .tabs__img {
    opacity: 1;
    width: 450px;
}
.tabs__item {
    display: none;
}
.tabs__item.active {
    display: block;
}
@media(max-width:1199px) {
    .tabs__btn.active .tabs__img {
        width: 270px;
        outline-color: var(--color-accent);
    }
}
@media(max-width:959px) {
    .tabs__btn .tabs__img,
    .tabs__btn.active .tabs__img {
        width: 180px;
        height: 180px;
    }
}
.saunas {
    padding: 50px 0;
}
.saunas__text {
    text-align: center;
    margin: 0 auto 50px;
    max-width: 1100px;
}
.tl-wrapper {
    position: relative;
    width: 100%;
    margin-top: auto;
    background: #FCFBF9E5;
}
.tl-container {
    padding: 0 25px;
}

.photos {
    padding: 50px 0;
}
.photos__img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
}
.photos__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}