body {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    color: var(--base);
}

.container {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    position: relative;
    padding: 0 20px;
    max-width: 1320px;
}

.title {
    font-family: var(--t_font);
}

.tre {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.tac {
    text-align: center;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    cursor: pointer;
    padding: 14px 32px;
    color: var(--secondary);
    background: var(--active);
    border: none;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn:hover {
    background: var(--active__hover);
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
}

.section__title {
    font-size: calc(16px + 1.2vw);
    position: relative;
    text-align: left;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    padding-left: 20px;
    border-left: 4px solid var(--active);
}


.section {
    padding: 60px 0 40px;
}

@media(max-width:800px) {
    .section__title {
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--active);
        padding-top: 15px;
    }
}

/* #HEADER */
.header {
    width: 100%;
    padding: 25px 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    background: transparent;
}

.template-page .header {
    position: relative;
    border-bottom: 2px solid var(--secondary__dark);
    padding: 25px 0;
    background: var(--secondary);
}

.header__wrap {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 80px;
}

.logo {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: start;
}

.logo__img {
    height: 40px;
}

.nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr .5fr;
    gap: 80px;
    align-items: center;
}

.menu {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.menu__item {
    padding: 0 20px;
}

.menu__link {
    color: var(--secondary);
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.menu__link.current,
.menu__link:hover {
    border-bottom-color: var(--secondary);
}

.template-page .menu__link {
    color: var(--base__light);
}

.template-page .menu__link.current,
.template-page .menu__link:hover {
    border-bottom-color: var(--base);
    color: var(--base);
}

.burger {
    display: none;
}

/* #HEADER - @MEDIA */
@media (max-width:1280px) {
    .header__wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .nav {
        gap: 30px;
    }
}

@media (max-width:1140px) {
    .logo__img {
        height: 30px;
    }

    .menu__link {
        font-size: 15px;
    }
}

@media (max-width:1024px) {
    .header {
        padding: 20px 0;
        background: var(--secondary);
    }

    .nav {
        position: absolute;
        top: 60px;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        z-index: 999;
        background: var(--secondary);
        padding: 30px 0 0 0;
        height: calc(100dvh - 60px);
    }

    .nav.nav__active {
        display: flex;
    }

    .menu {
        flex-direction: column;
    }

    .menu__item {
        padding: 25px 0;
    }

    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        cursor: pointer;
        border: transparent;
        background: transparent;
        margin: 0;
        padding: 0;
    }

    .burger span {
        width: 32px;
        height: 3px;
        display: block;
        position: relative;
        background: var(--base);
    }

    .burger span::before,
    .burger span::after {
        content: '';
        display: block;
        width: 32px;
        height: 3px;
        background: var(--base);
        position: absolute;
        right: 0;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
    }

    .burger span::before {
        top: -8px;
    }

    .burger span::after {
        bottom: -8px;
    }

    .burger__active span {
        background: transparent;
    }

    .burger__active span::before {
        top: 0;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    .burger__active span::after {
        bottom: 0;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    .menu__link {
        color: var(--base__light);
    }

    .menu__link.current,
    .menu__link:hover {
        color: var(--base);
        border-bottom-color: var(--base);
    }
}

/* #MAIN */
.main {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}

.main__wrap {
    position: relative;
    z-index: 1;
}

.main__title {
    font-size: calc(16px + 1.6vw);
    line-height: 1.4;
    color: var(--secondary);
    margin-bottom: 50px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

/* #MAIN - @FORM */
.main__form {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
    padding: 35px 40px 30px;
    background: rgba(255,255,255,0.98);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 20px 50px 0 rgba(0,0,0,0.2);
}

.main__form-item {
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    position: relative;
}

.form__item-title {
    display: block;
    color: var(--base);
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    z-index: 2;
    pointer-events: none;
    left: 12px;
    top: -12px;
    padding: 4px 8px;
    background: var(--secondary);
}

.online__order-label {
    width: 100%;
    position: relative;
    display: block;
}

.online__order-label::after {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 50%;
    margin-top: -11px;
    width: 22px;
    height: 22px;
    background: url(../images/form/calendar.svg) no-repeat center/contain;
    z-index: 1;
    pointer-events: none;
}

.form__field {
    width: 100%;
    height: 56px;
    background: transparent;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    display: flex;
    align-items: center;
    justify-self: start;
    padding: 0 52px 0 20px;
    color: var(--base);
    border: 2px solid var(--secondary__dark);
    outline: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
}

.form__field::placeholder {
    color: var(--base__light);
    font-weight: 400;
}

.form__field:focus {
    border-color: var(--accent);
}

.online__order-btn {
    height: 56px;
}

/* #MAIN - @MEDIA */
@media (max-width:1024px) {
    .main {
        padding: 140px 0;
    }

    .main__form {
        width: 100%;
    }
}

@media (max-width:800px) {

    .main__title {
        margin-bottom: 60px;
    }

    .main__form {
        grid-template-columns: 1fr;
        padding: 30px 20px 25px;
    }
}

/* #ABOUT */
.about {
    background: var(--accent__light);
}

.about__wrap {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 70px;
    align-items: center;
}

.about__title {
    font-size: calc(16px + 1vw);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about__item-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.about__item-stars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars-container {
    display: flex;
    gap: 3px;
}

.about__item-stars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about__item-stars svg {
    width: 20px;
    height: 20px;
    fill: gold;
}

.about__item-stars + span {
    margin-left: 14px;
}

.about__item-reviews {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}

.about__item-reviews::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--base__light);
    pointer-events: none;
    position: absolute;
    right: -2px;
    top: calc(50% - 2px);
}

.about__item-reviews span {
    padding: 3px 11px;
    margin-right: 6px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    background: var(--tech__green);
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
}

.about__description {
    line-height: 1.7;
    color: var(--base__light);
    font-size: 14px;
}

.about__details ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.about__details ul li {
    padding: 8px 16px;
    background: var(--secondary);
    border: 1px solid var(--accent);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    font-weight: 400;
    font-size: 13px;
    box-shadow: none;
}

@media (max-width:900px) {
    .about__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width:550px) {
    .about__item {
        text-align: center;
    }

    .about__item-subtitle {
        flex-direction: column;
        gap: 12px;
    }

    .about__item-reviews::after {
        display: none;
    }

    .about__details ul {
        justify-content: center;
    }
}

/* #ROOMS */

.rooms__wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rooms__item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 50px;
    border-bottom: 1px solid var(--secondary__dark);
    padding-bottom: 35px;
    background: transparent;
    padding: 0 0 35px 0;
    border-radius: 0;
    margin-bottom: 35px;
}


.rooms__item:last-child {
    border-bottom: none;
}

.rooms__item-slider {
    width: calc(45% - 25px);
    height: 100%;
    position: relative;
}

.rooms__item-content {
    width: calc(55% - 25px);
    flex: 1;
}

.swiper {
    height: 280px;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__button {
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    z-index: 33;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    opacity: 0.85;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 50%;
}

.slider__button:hover {
    opacity: 1;
}

.slider__button-prev {
    left: 20px;
}

.slider__button-next {
    right: 20px;
}

.slider__button img {
    height: 28px;
    filter: brightness(0) invert(1);
}

.rooms__item-slider .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: var(--secondary);
    margin: 0 20px;
}

.rooms__item-title {
    font-size: calc(16px + 0.9vw);
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.rooms__item-subtitle {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--base__light);
}

.rooms__item-description {
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--base__light);
    font-size: 14px;
}

.rooms__item-btn {
    max-width: 280px;
    margin-bottom: 18px;
}

.rooms__item-message {
    font-size: 13px;
    color: var(--base__light);
    font-style: italic;
}

.section__offer {
    display: grid;
    grid-template-columns: 1fr .5fr;
    gap: 70px;
    align-items: center;
    padding: 35px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    border: 2px solid var(--secondary__dark);
}

.section__offer-description {
    line-height: 1.7;
    color: var(--base__light);
}

.section__offer-link {
    padding: 35px 25px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background: var(--base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section__offer-link img {
    height: 60px;
}

.section__offer-btn {
    color: var(--secondary);
    line-height: 1.6;
}

.section__offer-btn span {
    display: block;
    color: var(--active);
    font-weight: 600;
}

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

@media(max-width:800px) {
    .rooms__item {
        flex-direction: column !important;
        gap: 30px;
    }

    .rooms__item-slider {
        width: 100%;
    }

    .rooms__item-content {
        width: 100%;
    }

    .swiper {
        height: 280px;
    }

    .rooms__item-title,
    .rooms__item-subtitle {
        margin-bottom: 20px;
    }

    .rooms__item-btn {
        max-width: 100%;
    }

    .rooms__item-message {
        text-align: center;
    }

    .section__offer {
        padding: 25px 15px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media(max-width:500px) {
    .swiper {
        height: 280px;
    }
}

@media(max-width:400px) {
    .section__offer-link img {
        height: 35px;
    }
}

/* #DOSUG */

.dosug__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.template-page .dosug__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
}

.dosug__item {
    display: flex;
    flex-direction: column;
    padding-bottom: 35px;
}

.dosug__item-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
}

.dosug__item-title {
    font-size: calc(16px + 1.1vw);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.dosug__item-description {
    line-height: 1.7;
    color: var(--base__light);
    font-size: 15px;
}

@media (max-width:800px) {

    .dosug__wrap,
    .template-page .dosug__wrap {
        grid-template-columns: 1fr;
    }

    .dosug__item {
        padding-bottom: 25px;
        border-bottom: 2px solid var(--secondary__dark);
    }

    .dosug__item.dosug__item:last-child {
        border: none;
    }

    .dosug__item-img {
        height: 280px;
    }
}

/* #Gallery */
.gallery__wrap {
    display: grid;
    grid-template-columns: .75fr 1fr .5fr;
    gap: 12px;
}

.template-page .gallery__wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery__item {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
}

.gallery__wrap .section__offer-link {
    flex-direction: column;
    align-items: center;
}

@media(max-width:900px) {

    .gallery__wrap,
    .template-page .gallery__wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .template-page .gallery__wrap img {
        height: 280px;
    }
}

@media(max-width:600px) {

    .gallery__wrap,
    .template-page .gallery__wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .main-page .gallery__item:nth-child(2),
    .main-page .gallery__item:nth-child(4),
    .main-page .gallery__item:nth-child(3) {
        display: none;
    }

    .gallery__wrap .section__offer-link {
        flex-direction: row;
    }
}

/* #Order */
.order__wrap {
    border: 2px solid var(--active);
    padding: 35px 40px 50px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    background: var(--accent__light);
    max-width: 100%;
}

.order__title::after,
.order__title::before {
    background: var(--active);
}

.order form {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.order form select.form__field {
    appearance: none;
    font-weight: 400;
}

.order form label.online__order-select::after {
    background: url(../images/form/select.svg) no-repeat center / contain;
}

@media(max-width:900px) {
    .order__wrap .main__form {
        grid-template-columns: 1fr;
    }

    .order__wrap {
        padding: 25px 20px;
    }
}

/* #Contacts / #Footer */
.footer {
    border-top: 2px solid var(--accent__light);
    border-bottom: 2px solid var(--accent__light);
    background: var(--accent__light);
}

.footer__wrap {
    display: flex;
    gap: 100px;
    justify-content: space-between;
}

.footer__item {
    max-width: 30%;
}

.footer__item-title {
    font-weight: 700;
    font-size: calc(14px + 0.8vw);
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

.contacts__list {
    font-weight: 600;
    color: var(--base__light);
}

.contacts__list li {
    margin-bottom: 35px;
}

.contacts__list li:last-child {
    margin-bottom: 0;
}

.contacts__link {
    font-weight: 400;
    color: var(--base__light);
    display: inline-block;
    margin-left: 6px;
}

.contacts__link img {
    margin-bottom: -3px;
}

.map {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background: #e8eef5;
}

.footer .menu__item {
    padding: 0 0 35px 0;
}

.footer .menu__link {
    color: var(--base__light);
}

.footer .menu__link:hover,
.footer .menu__link.current {
    border-bottom-color: var(--base);
    color: var(--base);
}

.policy__description {
    line-height: 1.7;
    color: var(--base__light);
    margin-bottom: 28px;
}

@media(max-width:1200px) {
    .footer__wrap {
        gap: 50px;
    }

    .footer__item {
        max-width: 100%;
    }

    .footer__item:last-child {
        max-width: 320px;
    }
}

@media(max-width:900px) {
    .footer__wrap {
        flex-direction: column;
    }

    .footer__item:last-child {
        max-width: 100%;
    }

    .policy__description {
        font-size: 13px;
    }
}

.header__buttons {
  display: flex;
  gap: 18px;
}

.phone__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--active);
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--active);
  white-space: nowrap;
}

.phone__btn:hover {
  background: var(--active__hover);
  border-color: var(--active__hover);
}

.phone__btn svg {
  flex-shrink: 0;
  stroke: white;
}

.phone__btn span {
  font-size: 14px;
  font-family: var(--font);
  font-weight: bold;
  color: white;
}

.star {
    color: var(--active);
    font-size: 20px;
}

