@charset "UTF-8";
/* Reset and base styles  */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Poppins:wght@400;500;600;700;800;900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}
input:focus:focus, input:active:focus,
button:focus:focus, button:active:focus {
  outline: 2px solid #434842;
  outline-offset: 2px;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #2F3539;
}

a,
a:link,
a:visited {
  color: #ffffff;
  text-decoration: none;
}

a:focus,
button:focus {
  outline-offset: 1px;
  outline: #F6D5A7 auto 1px;
}

p + p {
  margin-top: 1em;
}

.container {
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .container {
    width: 768px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0 10px;
  }
}
.container--large {
  max-width: 1510px;
  width: 100%;
}
@media (max-width: 1199px) {
  .container--large {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .container--tablet-fluid {
    width: auto;
  }
}
@media (max-width: 767px) {
  .container--mobile-fluid {
    width: auto;
  }
}

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

.sticky-footer {
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

.header {
  background-color: #434842;
  color: #fff;
  padding: 40px 0;
  border-bottom: 1px solid rgb(150, 150, 150);
}
@media (max-width: 767px) {
  .header {
    padding: 20px 0;
  }
}

.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.header__logo {
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .header__nav {
    display: none;
  }
}

.header__nav-btn {
  display: none;
}
@media (max-width: 767px) {
  .header__nav-btn {
    display: block;
  }
}

.nav__link-contact {
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.nav__link-contact:hover img, .nav__link-contact:hover a {
  color: #F6D5A7;
}
@media (max-width: 1199px) {
  .nav__link-contact {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .nav__link-contact {
    display: none;
  }
}

.header__icon-phone {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  /* 👈 Отступ от иконки до текста */
  flex-shrink: 0;
}

.nav {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}

.nav__list {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
  text-align: center;
}
@media (max-width: 1199px) {
  .nav__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 46px;
  color: #ffffff;
  transition: color 0.2s ease-in;
}
.nav__link:hover {
  color: #F6D5A7;
}
.nav__link:hover::after {
  width: 100%;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50%;
  transition: all 0.2s ease-in;
  width: 0;
  height: 2px;
  background-color: #F6D5A7;
  transition-duration: inherit;
}
@media (max-width: 1199px) {
  .nav__link {
    height: 40px;
  }
}

.promo {
  background-color: #434842;
  padding-bottom: 30px;
}

.promo__wrapper {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo__content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  color: #fff;
}
@media (max-width: 1199px) {
  .promo__content {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .promo__content {
    flex-direction: column;
    gap: 30px;
  }
}

.promo__title {
  width: 591px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1199px) {
  .promo__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .promo__title {
    width: 320px;
    font-size: 30px;
  }
}

.promo__content-text {
  text-align: right;
  width: 438px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1199px) {
  .promo__content-text {
    width: 380px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .promo__content-text {
    width: 320px;
    text-align: left;
  }
}

.promo__btns {
  display: inline-block;
  align-items: center;
  justify-content: center;
}

.promo__img {
  background: linear-gradient(360deg, #f4f2f0 0%, #f4f2f0 27.37%, #434842 27.38%, #434842 100%);
  overflow: hidden;
}

.about {
  padding-top: 140px;
  background-color: #f4f2f0;
  color: #131313;
}
@media (max-width: 1199px) {
  .about {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .about {
    padding-top: 70px;
  }
}

.about__img {
  overflow: hidden;
  flex-shrink: 0;
}

.about__content {
  display: flex;
  -moz-column-gap: 111px;
       column-gap: 111px;
  padding-bottom: 80px;
}
@media (max-width: 1199px) {
  .about__content {
    flex-direction: column;
    gap: 30px;
  }
}

.about__desc {
  max-width: 836px;
}
@media (max-width: 1199px) {
  .about__desc {
    max-width: 100%;
  }
}

.about__text {
  line-height: 24px;
  margin-bottom: 36px;
}

.about__text p + p {
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .about__text p + p {
    margin-top: 16px;
  }
}

.about__statistic-item p {
  font-size: 100px;
  line-height: 128px;
  color: #F6D5A7;
  font-family: "Merriweather", serif;
}
@media (max-width: 1199px) {
  .about__statistic-item p {
    font-size: 70px;
    line-height: 100px;
  }
}

.about__statistic-item {
  width: 300px;
}

.about__statistic {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 38px;
       column-gap: 38px;
}
@media (max-width: 767px) {
  .about__statistic {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.animated-number .num {
  opacity: 0;
}

.price {
  margin-top: 140px;
  margin-bottom: 140px;
}
@media (max-width: 1199px) {
  .price {
    margin-top: 90px;
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .price {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

.price__title {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .price__title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .price__title {
    margin-bottom: 30px;
  }
}

.cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1199px) {
  .cards {
    flex-wrap: wrap;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 20px;
  }
}

/* ===== ГАЛЕРЕЯ ===== */
.portfolio {
  margin-top: 140px;
  margin-bottom: 140px;
  color: #131313;
}
@media (max-width: 767px) {
  .portfolio {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}

.portfolio-content {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
.portfolio-content.owl-carousel {
  display: block;
}
.portfolio-content .owl-stage-outer {
  overflow: visible;
}
.portfolio-content .owl-stage {
  display: flex;
  transition: transform 0.25s ease-in-out;
}
.portfolio-content .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card {
  width: calc((100% - 60px) / 3);
  height: 0;
  padding-bottom: calc((100% - 60px) / 3);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.portfolio-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover img {
  transform: scale(1.05);
}
@media (max-width: 1199px) {
  .portfolio-card {
    width: calc((100% - 30px) / 2);
    padding-bottom: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .portfolio-card {
    width: 100%;
    padding-bottom: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .portfolio-card:hover img {
    transform: none;
  }
}

.owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.owl-prev,
.owl-next {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.2s;
}
.owl-prev:hover,
.owl-next:hover {
  background-color: rgb(255, 255, 255);
}
.owl-prev span,
.owl-next span {
  display: none;
}
.owl-prev::after,
.owl-next::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
}

.owl-prev::after {
  content: "\f104";
}

.owl-next::after {
  content: "\f105";
}

.photo {
  background: url("./../img/bridge.jpg ");
  height: 540px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .photo {
    height: 200px;
  }
}

/* Card image */
.card__image {
  width: 370px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .card__image {
    width: 360px;
  }
}
@media (max-width: 767px) {
  .card__image {
    width: auto;
    height: auto;
  }
}

.card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.card__image:hover img {
  transform: scale(1.1);
}

.card__content {
  border-bottom: 1px solid #596b86;
  border-left: 1px solid #596b86;
  border-right: 1px solid #596b86;
  padding: 25px;
  width: 370px;
  height: 224px;
}
@media (max-width: 1199px) {
  .card__content {
    width: 360px;
  }
}
@media (max-width: 767px) {
  .card__content {
    width: auto;
    height: auto;
  }
}

.card__title {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 24px;
  color: #131313;
  margin-bottom: 26px;
}

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

.card__list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #727272;
  margin-bottom: 26px;
}
.card__list__item img {
  padding-right: 5px;
}
@media (max-width: 767px) {
  .card__list__item {
    flex-wrap: wrap;
    -moz-column-gap: 5px;
         column-gap: 5px;
    row-gap: 5px;
  }
}

.card__price_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .card__price_wrapper {
    flex-wrap: wrap;
    -moz-column-gap: 5px;
         column-gap: 5px;
    row-gap: 5px;
  }
}

.card__price {
  display: flex;
  flex-direction: column;
}

.card__price__amount {
  font-weight: 600;
  font-size: 20px;
}

.card__price__currency {
  font-weight: 400;
  font-size: 12px;
  color: #727272;
}

/* ===== ОТЗЫВЫ ===== */
.response {
  background-color: #434842;
  color: #fff;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .response {
    padding-bottom: 50px;
  }
}

.responses__title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .responses__title-wrapper {
    padding-top: 70px;
    padding-bottom: 20px;
  }
}

.responses__title-wrapper .title-section {
  text-align: left;
  color: white;
  margin: 0;
}

.response-nav.desktop-only {
  display: flex;
  gap: 15px;
}

@media (max-width: 767px) {
  .response-nav.desktop-only {
    display: none;
  }
}
.response-nav__btn {
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.response-nav__btn img {
  width: 62px;
  height: 62px;
}

.response-nav__btn:hover {
  transform: translateY(-2px);
}

.response__wrapper {
  padding-bottom: 70px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .response__wrapper {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .response__wrapper {
    padding-bottom: 20px;
  }
}

.response__slider .owl-stage-outer {
  overflow: visible;
}
.response__slider .owl-stage {
  display: flex;
  transition: transform 0.25s ease-in-out;
}
.response__slider .owl-item {
  justify-content: center;
}

.response__card {
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 320px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  margin: 0 15px;
}
@media (max-width: 767px) {
  .response__card {
    margin: 0;
    padding: 20px;
    height: 320px;
  }
}
@media (max-width: 1199px) {
  .response__card {
    padding: 25px;
  }
}

.response__info {
  flex-shrink: 0;
  margin-bottom: 15px;
}

.response__stars {
  color: #ffc107;
  font-size: 16px;
}

.response__title {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  margin: 0;
}
@media (max-width: 1199px) {
  .response__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .response__title {
    font-size: 18px;
  }
}

.response__body {
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .response__body {
    font-size: 14px;
  }
}

.response__author-name {
  position: relative;
  padding-left: 20px;
  color: #45525b;
  font-size: 16px;
}

.response__author-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ff8a63;
}

.response .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.response .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background-color: #ddd;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  .response .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
  }
}

.response .owl-dots .owl-dot.active {
  background-color: #333;
}

/* ===== КОНТАКТЫ / ФОРМА ОБРАТНОЙ СВЯЗИ ===== */
.contact-section {
  padding: 100px 0;
  background-color: #f4f2f0;
}
@media (max-width: 767px) {
  .contact-section {
    padding: 30px 0;
  }
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.form__title {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .form__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .form__title {
    margin-bottom: 20px;
  }
}

.contact-image {
  flex: 1;
  border-radius: 0;
  overflow: hidden;
}
.contact-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .contact-image {
    order: 2;
  }
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact-form {
    order: 1;
  }
}

.contact-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 16px;
  background-color: #fff;
  color: #2F3539;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #333;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__inputs .btn {
  width: auto;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .contact-form__inputs .btn {
    width: 100%;
    max-width: 100%;
  }
}

.footer {
  padding: 90px 0;
  background-color: #000;
  color: #fff;
}
@media (max-width: 1199px) {
  .footer {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 0;
  }
}
.footer a {
  color: #e7e7e7;
}

.footer__contacts,
.footer__list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer__contacts,
  .footer__list {
    flex-direction: column;
    gap: 20px;
  }
}

.footer__contacts {
  gap: 40px;
}

.footer__nav {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .footer__nav {
    flex-direction: column;
    gap: 20px;
  }
}

.footer__link {
  padding-bottom: 15px;
  transition: color 0.2s ease-in;
}
.footer__link:hover {
  color: #F6D5A7;
}
@media (max-width: 767px) {
  .footer__link {
    height: 20px;
  }
}

.footer__row,
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__item {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.footer__item:hover img, .footer__item:hover a {
  color: #F6D5A7;
}
@media (max-width: 1199px) {
  .footer__item {
    font-size: 14px;
  }
}

.footer__icon {
  width: 20px;
  height: 20px;
  margin-right: 16px;
  flex-shrink: 0;
}

.footer-list__offer {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 90px;
       column-gap: 90px;
}
@media (max-width: 1199px) {
  .footer-list__offer {
    flex-direction: column;
    gap: 20px;
  }
}

.footer_bar {
  width: 100%;
  background: #181a1d;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  border-top: 1px solid #7f7f7f;
}

.container_bar {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .container_bar {
    flex-direction: column;
    gap: 20px;
  }
}

.footer-list__offer-link,
a.footer-list__offer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer-list__offer-link:hover,
a.footer-list__offer-link:hover {
  color: #F6D5A7;
}

.mobile-nav {
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #434842;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in;
}
.mobile-nav--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__header {
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav__link-contact {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  padding-top: 20px;
}
.mobile-nav__link-contact a {
  color: #000;
}
.mobile-nav__link-contact i {
  font-size: 17px;
  /* Размер иконки */
  margin-right: 12px;
}

.nav__link-contact .mobile-nav__btn {
  position: absolute;
  z-index: 99;
  top: 20px;
  right: 20px;
}

.mobile-nav__body {
  flex-grow: 1;
  color: #434842;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
  transform: translate(0, 10%);
  transition: all 0.2s ease-in;
}

.mobile-nav--open .mobile-nav__body {
  transform: translate(0, 0%);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  font-size: 15px;
  color: #000;
}
.mobile-nav-list a {
  color: #000;
}

.none {
  display: none !important;
}

@media (max-width: 1199px) {
  .visible-desktop {
    display: none;
  }
}

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

.no-scroll {
  overflow-y: hidden;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mb-4 {
  margin-bottom: 4em;
}

.mb-5 {
  margin-bottom: 5em;
}

.logo, a.logo, a.logo:link {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}
.logo a, a.logo a, a.logo:link a {
  text-decoration: none;
}

.btn,
a.btn {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #fff;
  background-color: #434842;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn:hover,
a.btn:hover {
  background-color: #F6D5A7;
  color: #434842;
}
.btn--wide,
a.btn--wide {
  width: 100%;
}

.btn-outline,
a.btn-outline {
  display: inline-block;
  border: 1px solid #393c43;
  padding: 12px 42px 12px 44px;
  background-color: #ffffff;
  width: 180px;
  height: 46px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #393c43;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-outline:hover,
a.btn-outline:hover {
  background-color: #F6D5A7;
  color: #434842;
}
.btn-outline--wide,
a.btn-outline--wide {
  width: 100%;
}

.title-section {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-size: 55px;
  line-height: 1.09;
  letter-spacing: -0.01em;
  margin: 0;
}
@media (max-width: 1199px) {
  .title-section {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .title-section {
    font-size: 30px;
    line-height: 1.5;
  }
}

.title-section-room {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
  color: #131313;
  padding-bottom: 15px;
  margin: 0;
}

.title-room {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  color: #131313;
  padding-top: 25px;
  padding-bottom: 15px;
  margin: 0;
}

.modal__title {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.09;
  letter-spacing: -0.01em;
  color: #131313;
  text-align: center;
  margin: 0 0 10px 0;
}

.input {
  padding: 10px 20px;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  color: #000;
  transition: all 0.2s ease-in;
}
.input:active, .input:focus {
  border: 1px solid #434842;
}

/* ===== ЧЕКБОКС ===== */
.modal__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
}

.real-checkbox {
  display: none;
}

.fake-checkbox {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 0;
  background-color: #fff;
  transition: all 0.2s ease-in;
}

.fake-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease-in;
  width: 16px;
  height: 13px;
  background-image: url("./../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.real-checkbox:checked + .fake-checkbox {
  background-color: #000;
  border: 1px solid #000;
}

.real-checkbox:checked + .fake-checkbox::after {
  transform: translate(-50%, -50%) scale(1);
}

.modal__checkbox-label a {
  display: inline-block;
  padding: 4px 8px;
  color: #434842;
  text-decoration: none;
  font-weight: 400;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.modal__checkbox-label a:hover {
  color: #333 !important;
}

.top-link {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in;
  z-index: 9999;
}
.top-link--visible {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 1199px) {
  .top-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .top-link {
    right: 10px;
    bottom: 10px;
  }
}

/* === Стили для модальных окон номеров === */
.modal_numer {
  display: none;
  position: relative;
  padding: 40px;
  background: #fff;
  color: #2f2f2f;
  width: 1000px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .modal_numer {
    padding: 20px;
  }
}
.hotel-description {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hotel-description {
    flex-direction: column;
    gap: 20px;
  }
}
.description-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .description-photos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.photo-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #eee;
  cursor: zoom-in;
}

.description {
  flex: 1;
  min-width: 300px;
}

.description__title h2 {
  margin-bottom: 20px;
}

.description p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.title-room {
  margin: 20px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.description__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.description__list .description__item {
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
}

.description__list .description__item::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #f7b366;
}

.btn-modal-submit {
  width: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 768px) {
  .btn-modal-submit {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
/* === Модальное окно формы "Заказать звонок" === */
.modal {
  display: none;
  position: relative;
  padding: 40px;
  background: #fff;
  color: #2f2f2f;
  width: 420px;
  max-width: 100%;
  border-radius: 0;
}

@media (max-width: 768px) {
  .modal {
    padding: 20px;
    width: 360px;
  }
}
.modal__header {
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}

.modal__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

@media (max-width: 768px) {
  .modal__title {
    font-size: 28px;
  }
}
.modal__inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal .form-group input,
.modal .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 16px;
  background-color: #fff;
  color: #2f2f2f;
  box-sizing: border-box;
}

.modal .form-group input:focus,
.modal .form-group textarea:focus {
  outline: none;
  border-color: #333;
}

.modal .checkbox {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
}

.modal .modal__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
}

.modal .real-checkbox {
  display: none;
}

.modal .fake-checkbox {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal .real-checkbox:checked + .fake-checkbox {
  background-color: #f7b366;
  border-color: #f7b366;
}

.modal .real-checkbox:checked + .fake-checkbox::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 3px;
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.modal .modal__checkbox-label a {
  color: #666;
  text-decoration: underline;
}

.modal .modal__checkbox-label a:hover {
  color: #333;
}

.modal .btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  font-size: 16px;
}

.fancybox__carousel__slide {
  background: #fff;
}/*# sourceMappingURL=main.css.map */