@font-face {
  font-family: "Montserrat-light";
  src: url(./fonts/Montserrat-Light.ttf) format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url(./fonts/Montserrat-Regular.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url(./fonts/Montserrat-Medium.ttf) format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url(./fonts/Montserrat-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url(./fonts/Montserrat-Bold.ttf) format("truetype");
  font-weight: 700;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
}
a,
button,
a *,
button * {
  cursor: pointer;
}
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  background: #f7f3ec;
  overflow-x: hidden;
}
p {
  cursor: default;
}
#houses,
#day,
#early_bird,
#philosophy,
#who,
#faq,
#cancellation-policy {
  scroll-margin-top: 100px;
}
.philosophy_section,
.houses_section,
.map_section,
.compare_section,
.services_section,
.day_section,
.who_section,
.faq_section,
.resp_section,
.early_section {
  overflow: hidden;
}
.standart_button {
  height: 72px;
  border-radius: 50px;
  background: #2c3f29;
  backdrop-filter: blur(13.667px);
  -webkit-backdrop-filter: blur(13.667px);
  border: none;
  cursor: pointer;
}
.standart_button:hover {
  background: rgba(44, 63, 41, 0.8);
}
.header {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.35vw 4.21vw 1.35vw 4.16vw;
  background: #f7f3ec;
  font-family: "Montserrat-Regular";
  font-size: 16px;
  z-index: 10;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  top: 0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}
.header .logo {
  margin-right: 3.75vw;
  height: 29px;
}
.header .nav_box {
  width: 46.88vw;
  margin-top: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
}
.header .nav_item {
  color: #282828;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.header .nav_item::after {
  content: attr(data-text);
  font-family: "Montserrat-Medium";
  height: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.header .nav_item:hover {
  font-family: "Montserrat-Medium";
}
.header .nav_dot {
  width: 5px;
  height: 5px;
  background: #282828;
  border-radius: 50%;
}
.header .end_logo_box {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  margin-right: -2px;
}
.header .end_text {
  color: #67725a;
  font-family: "Montserrat-Medium";
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.header .end_text::before {
  content: "Стати «ранньою пташкою»";
  font-family: "Montserrat-SemiBold";
  height: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.end_logo_box:hover .end_text {
  font-family: "Montserrat-SemiBold";
}
.header .end_text:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #67725a;
  cursor: pointer;
}
.form_button {
  position: fixed;
  right: 5.62vw;
  bottom: 3.85vw;
  z-index: 3;
  display: flex;
  padding: 12px;
  background: rgba(138, 153, 119, 0.9);
  border-radius: 20px;
  cursor: pointer;
}
.form_button path {
  cursor: pointer;
}
.form_button svg {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.main_screen {
  padding: 120px 80px 279px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin-bottom: 32px;
}
.parallax_forest {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/main_back_forest_without_shade.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center calc(100% + 103px);
  z-index: 0;
  will-change: transform;
}
.parallax_house {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -102px;
  top: 15%;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 30%),
    url(../images/main_back_house_without.webp);

  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 2;
  will-change: transform;
  border-radius: 40px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.main_screen
  > *:not(.parallax_forest):not(.parallax_house):not(.main_title_box):not(
    .main_content_row
  ) {
  position: relative;
  z-index: 3;
}
.main_content_row {
  display: flex;
  gap: 64px;
  /* margin-bottom: 170px; */
  margin-bottom: 140px;
  position: relative;
}
.main_content_row > *:not(.main_title_box) {
  position: relative;
  z-index: 3;
}
.main_screen .main_title_box {
  position: relative;
  width: fit-content;
  z-index: 1;
}
.main_screen .main_subtitle {
  position: absolute;
  top: 32px;
  left: 0;
  width: 549px;
  font-family: "Montserrat-Medium";
  font-weight: 500;
  color: #282828;
  text-align: justify;
  /* text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); */
  font-size: 32px;
  line-height: 100%; /* 32px */
  letter-spacing: -1.6px;
  text-indent: 98px;
}
.main_screen .main_blue_text {
  width: 224px;
  font-weight: 500;
  margin-top: 144px;
  color: #3d7aca;
  /* text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); */
  font-family: "Montserrat-Medium";
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.22;
}
.main_screen .main_sale_box {
  display: flex;
  width: 352px;
  height: 339px;
  padding: 21px 20px 20px;
  margin-top: 143px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: #2c3f29;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.main_screen .main_sale_box:hover {
  background-color: #4f5e4d;
}
.main_screen .sale_title {
  align-self: stretch;
  color: #f7f3ec;
  font-family: "Montserrat-Regular";
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
}
.main_screen .sale_title .sale_first_word {
  color: #f7f3ec;
  text-align: justify;
  font-family: "Montserrat-Medium";
  font-size: 48px;
  line-height: 110%; /* 52.8px */
}
.main_screen .sale_bottom_box {
  display: flex;
  gap: 15px;
  align-items: center;
}
.main_screen .sale_bottom_text {
  color: #8a9977;
  font-family: "Montserrat-Regular";
  font-size: 16px;
  width: calc(100% - 61.38px);
}
.main_sale_box .sale_arrow {
  transition: transform 0.3s ease;
  width: 46.377px;
  height: 46.377px;
}
.main_sale_box:hover .sale_arrow {
  transform: rotate(45deg);
}
.main_screen .main_sub_text {
  width: 352px;
  color: #fff;
  text-align: justify;
  /* text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); */
  font-family: "Montserrat-Regular";
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 1.56vw;
}

/* Philosophy section */
.philosophy_section {
  padding: 80px 80px 40px;
}
.philosophy_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.philosophy_left {
  width: 576px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
}
.philosophy_heading {
  font-family: "Montserrat-light";
  font-weight: 300;
  font-size: 96px;
  color: #282828;
  letter-spacing: -4.8px;
  text-transform: uppercase;
  align-self: flex-start;
  line-height: normal;
}
.philosophy_traced {
  display: flex;
  padding: 26.689px 29.596px 13.83px 26.218px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.philosophy_traced_img {
  width: 100%;
  display: block;
}
.philosophy_left_text {
  font-family: "Montserrat-Regular";
  font-size: 18px;
  color: #282828;
  text-align: justify;
  line-height: normal;
}
.philosophy_right {
  width: 1019px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.philosophy_text_block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #282828;
}
.philosophy_title {
  font-family: "Montserrat-Medium";
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  color: #282828;
}
.philosophy_columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.philosophy_col_text {
  flex: 1;
  font-family: "Montserrat-Regular";
  font-size: 18px;
  color: #282828;
  text-align: justify;
  line-height: normal;
}
.philosophy_col_text strong {
  font-family: "Montserrat-SemiBold";
  font-weight: 600;
}
.philosophy_photo {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.philosophy_photo_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.philosophy_photo_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* Houses section */
.houses_section {
  padding: 0 80px 120px;
}
.house_title {
  align-self: stretch;
  color: #282828;
  font-family: "Montserrat-Medium";
  font-size: 50px;
  font-weight: 500;
  padding-bottom: 20px;
}
.house_subtitle {
  color: #282828;
  font-family: "Montserrat-Regular";
  font-size: 18px;
  align-self: stretch;
  padding-bottom: 40px;
}
.houses_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.house_row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.house_card {
  flex: 1 0 0;
  height: 500px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.house_card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.house_card__bg--active {
  opacity: 1;
}
.house_card__glow {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 388px;
  height: 329px;
  pointer-events: none;
}
.house_card__name {
  position: absolute;
  top: 30px;
  left: 30px;
  font-family: "Montserrat-Medium";
  font-size: 40px;
  font-weight: 500;
  color: #f7f3ec;
  text-transform: uppercase;
  white-space: nowrap;
}
.house_card__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: 1px solid #f7f3ec;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.house_card__arrow--prev {
  left: 30px;
}
.house_card__arrow--next {
  right: 30px;
}
.house_card__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  align-items: center;
}
.house_card__dot {
  width: 100px;
  height: 3px;
  background: rgba(247, 243, 236, 0.5);
  border-radius: 2px;
}
.house_card__dot--active {
  background: #f7f3ec;
}
.house_info {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.house_info__title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52vw;
  font-family: "Montserrat-Medium";
  font-size: 24px;
  font-weight: 500;
  color: #282828;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  line-height: normal;
}
.house_info__blue {
  color: #3d7aca;
}
.house_features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.house_feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  /* margin-bottom: 1px; */
}
.house_feature__label {
  width: 277px;
  flex-shrink: 0;
  font-family: "Montserrat-SemiBold", "Montserrat-Medium";
  font-size: 18px;
  font-weight: 600;
  color: #282828;
  line-height: normal;
}
.house_feature__items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Montserrat-Regular";
  font-size: 18px;
  color: #282828;
  line-height: normal;
  min-width: 0;
}
.house_divider,
.services_divider {
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #8a9977 0,
    #8a9977 5px,
    transparent 5px,
    transparent 10px
  );
  image-rendering: pixelated;
  margin-bottom: 1px;
}
.house_info_note {
  font-family: "Montserrat-Regular";
  font-size: 16px;
  color: #282828;
  align-self: stretch;
  line-height: 1.2;
}

/* Gallery section */
.gallery_section {
  position: relative;
  overflow: hidden;
  padding-bottom: 81px;
}
.gallery_track {
  overflow: hidden;
}
.gallery_track::-webkit-scrollbar {
  display: none;
}
.gallery_card {
  width: 670px;
  height: 889px;
  border-radius: 40px;
  overflow: hidden;
  flex-shrink: 0;
}
.gallery_card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery_arrow {
  position: absolute;
  top: 444px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: 1px solid #f7f3ec;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}
.gallery_arrow:hover,
.house_card__arrow:hover {
  background: rgba(247, 243, 236, 0.2);
}
.gallery_arrow--prev {
  left: 110px;
}
.gallery_arrow--next {
  right: 30px;
}
.gallery_arrow--next .arrow_next_svg {
  margin-top: 2px;
  margin-left: 1px;
}
.gallery_section .gallery_text {
  color: #282828;
  font-family: "Montserrat-Regular";
  font-size: 16px;
  margin: 40px 80px;
}

/* ── Map section ── */
.map_section {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 32px;
  height: 1191px;
  background: #f7f3ec;
  margin: 0 80px;
}
.map_bg {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  overflow: hidden;
}
.map_bg__overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(61, 122, 202, 0.15); */
  background: #18120d;
  border-radius: 40px;
}
.map_bg__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 76.83%;
  object-fit: cover;
}
/* Pins */
.map_pin {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 4;
  margin-left: -25px;
  margin-top: -25px;
}
.map_pin:nth-child(2) {
  left: 25.48%;
  top: 39.8%;
}
.map_pin:nth-child(3) {
  left: 34.65%;
  top: 44%;
}
.map_pin:nth-child(4) {
  left: 52.3%;
  top: 48.2%;
}
.map_pin:nth-child(5) {
  left: 67.8%;
  top: 55.65%;
}
.map_pin:nth-child(6) {
  left: 82.8%;
  top: 63.68%;
}
.map_pin img {
  width: 100%;
  height: 100%;
  display: block;
}
/* House card */
.map_card {
  position: absolute;
  display: none;
  /* left: 73.75%; */
  left: 50%;
  transform: translate(-50%);
  top: -297px;
  z-index: 3;
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.map_pin:hover .map_card {
  display: flex;
}
.map_pin:hover:after {
  content: "";
  position: absolute;
  width: 318px;
  height: 74px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  background-color: transparent;
}
.map_pin:hover .map_dot {
  fill: #fff;
}
/* .map_card:hover .map_card__text {
  display: flex;
} */
.map_card__photo {
  position: relative;
  width: 278px;
  height: 201px;
  border-radius: 10px;
  overflow: hidden;
}
.map_card__photo_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.map_card__photo_img:last-of-type {
  display: none;
}
.map_card__photo_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1;
}
.map_card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.map_card__nav_btn {
  width: 38px;
  height: 38px;
  border-radius: 100px;
  border: 1px solid #f7f3ec;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.map_card__nav_btn:hover {
  background: rgba(247, 243, 236, 0.2);
}
.map_card__nav_btn svg {
  width: 30px;
  height: 28.5px;
  display: block;
}
.map_card__nav_btn--prev svg {
  transform: rotate(180deg) scaleY(-1);
}
.map_card__dots {
  position: absolute;
  bottom: 10px;
  left: 3.6%;
  width: 92.8%;
  /* transform: translateX(-50%); */
  display: flex;
  gap: 20px;
  z-index: 2;
  padding-bottom: 0;
}
.map_card__dot {
  flex: 1 0 0;
  height: 3px;
  min-width: 40px;
  background: rgba(247, 243, 236, 0.5);
  display: block;
}
.map_card__dot--active {
  background: #f7f3ec;
}
.map_card__name {
  font-family: "Montserrat-Bold";
  font-weight: 700;
  font-size: 20px;
  color: #282828;
  text-align: center;
  white-space: nowrap;
}
/* .map_card__text {
  display: none;
  color: #282828;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
} */
/* Map header */
.map_header {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 827px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 3;
}
.map_header__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  /* color: #282828; */
  color: #fff;
  width: 100%;
}
.map_header__title {
  font-family: "Montserrat-Medium";
  font-weight: 500;
  font-size: 50px;
  line-height: normal;
  width: 100%;
}
.map_header__desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.map_header__subtitle {
  font-family: "Montserrat-Medium";
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  width: 100%;
}
.map_header__body {
  font-family: "Montserrat-Regular";
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  width: 100%;
}
.map_header__btn {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 26px 20px;
  text-decoration: none;
  background-color: #f7f3ec;
}
.map_header__btn span {
  font-family: "Montserrat-Regular";
  font-weight: 400;
  font-size: 18px;
  color: #282828;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
  text-align: justify;
  padding-top: 1px;
}
.map_header__btn svg {
  width: 20px;
  height: 20px;
  display: block;
}
.map_header__btn:hover {
  background-color: #f7f3ec80;
}

/* ── Compare section ── */
.compare_section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 120px 80px 0;
}

.compare_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 722px;
}

.compare_title {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: normal;
  color: #282828;
}

.compare_text {
  font-family: "Montserrat-Regular", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #282828;
  line-height: 1.3;
}

.compare_table_wrap {
  flex: 1;
  overflow: hidden;
}
.compare_table {
  width: 100%;
  border-collapse: collapse;
}
.compare_col--1 {
  width: 31.8%;
}
.compare_col--2 {
  width: 27.9%;
}
.compare_col--3 {
  width: 40.3%;
}

.compare_thead_top .compare_th,
.compare_thead_sub .compare_th {
  background: #8a9977;
  color: #f7f3ec;
  text-align: left;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.compare_thead_top .compare_th {
  font-family: "Montserrat-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  height: 89px;
  vertical-align: middle;
}
.compare_thead_top .compare_th_low_text {
  text-transform: none;
  padding-left: 24px;
}
.compare_thead_top .compare_th:last-child {
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(247, 243, 236, 0.4) 0,
    rgba(247, 243, 236, 0.4) 5px,
    transparent 5px,
    transparent 10px
  );
  background-position: left 0;
  background-size: 1px 100%;
  background-repeat: no-repeat;
}

.compare_thead_top .compare_th:first-child {
  border-radius: 20px 0 0 0;
}

.compare_thead_top .compare_th:last-child {
  border-radius: 0 20px 0 0;
}

.compare_thead_sub .compare_th--icon {
  border-radius: 0 0 0 20px;
  padding-top: 5px;
}

.compare_thead_sub .compare_th:last-child {
  border-radius: 0 0 20px 0;
}

.compare_thead_sub .compare_th {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  height: 84px;
  vertical-align: middle;
  background-image: repeating-linear-gradient(
    to right,
    rgba(247, 243, 236, 0.4) 0,
    rgba(247, 243, 236, 0.4) 5px,
    transparent 5px,
    transparent 10px
  );
  background-position: 0 top;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}

.compare_thead_sub .compare_th:not(:first-child) {
  background-image:
    repeating-linear-gradient(
      to right,
      rgba(247, 243, 236, 0.4) 0,
      rgba(247, 243, 236, 0.4) 5px,
      transparent 5px,
      transparent 10px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(247, 243, 236, 0.4) 0,
      rgba(247, 243, 236, 0.4) 5px,
      transparent 5px,
      transparent 10px
    );
  background-position:
    0 top,
    left 0;
  background-size:
    100% 1px,
    1px 100%;
  background-repeat: no-repeat, no-repeat;
}

.compare_icon {
  display: block;
  width: 24px;
  height: 24px;
}
tr:first-child .compare_td {
  height: 81px;
}
.compare_td {
  background: #f7f3ec;
  font-family: "Montserrat-Regular", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #282828;
  padding: 20px 30px;
  vertical-align: middle;
  height: 82px;
  background-image: repeating-linear-gradient(
    to right,
    #8a9977 0,
    #8a9977 5px,
    transparent 5px,
    transparent 10px
  );
  background-position: 0 top;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}
tbody tr:first-child .compare_td {
  background-image: none;
}
.compare_td--label {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
}
.compare_td--two_rows {
  padding: 10px 60px 10px 30px;
}
.compare_td--one_row {
  padding-right: 29px;
}
tr:last-child .compare_td {
  padding-bottom: 29px;
}
.compare_td:not(:first-child) {
  background-image:
    repeating-linear-gradient(
      to right,
      #8a9977 0,
      #8a9977 5px,
      transparent 5px,
      transparent 10px
    ),
    repeating-linear-gradient(
      to bottom,
      #8a9977 0,
      #8a9977 5px,
      transparent 5px,
      transparent 10px
    );
  background-position:
    0 top,
    left 0;
  background-size:
    100% 1px,
    1px 100%;
  background-repeat: no-repeat, no-repeat;
}
tbody tr:first-child .compare_td:not(:first-child) {
  background-image: repeating-linear-gradient(
    to bottom,
    #8a9977 0,
    #8a9977 5px,
    transparent 5px,
    transparent 10px
  );
  background-position: left 0;
  background-size: 1px 100%;
  background-repeat: no-repeat;
}
.compare_table_wrap {
  border-radius: 20px;
  position: relative;
}
.compare_table_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed #8a9977;
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

/* ── Services section ── */
.services_section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 118px 80px 121px;
}

.services_image {
  position: relative;
  flex: 0 0 802px;
  height: 955px;
  border-radius: 40px;
  overflow: hidden;
}

.services_image__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 1px;
}

.services_image__title {
  position: absolute;
  top: 40px;
  left: 80px;
  width: 615px;
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: normal;
  color: #fff;
}

.services_accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* .services_divider {
  width: 100%;
  height: 1px;
  background: #282828;
  opacity: 0.2;
} */

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

.services_item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 29px 0 29px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.services_item--open .services_item__header {
  padding-bottom: 20px;
}
.services_item__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.services_item__icon_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid #3d7aca;
  border-radius: 100%;
}
/* .services_item__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
} */

.services_item__title {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #282828;
  line-height: 1.1;
}

.services_item__toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.services_item_minus {
  display: none;
  width: 17px;
  height: 2px;
  margin-right: 3px;
}
.services_item--open .services_item_plus {
  display: none;
}
.services_item--open .services_item_minus {
  display: block;
}
.services_item__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
  transition:
    max-height 0.8s ease,
    opacity 0.7s ease,
    padding-bottom 0.8s ease;
}

.services_item--open .services_item__body {
  max-height: 600px;
  opacity: 1;
  padding-bottom: 29px;
}

.services_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 11.5px;
  list-style: none;
  font-family: "Montserrat-Regular", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #282828;
}

.services_list li {
  position: relative;
  padding-left: 16px;
}

.services_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background-color: currentColor;
  border-radius: 50%;
}

/* ── Day section ── */
.day_section {
  position: relative;
  overflow: hidden;
  /* height: 944px; */
  /* height: 1121px; */
  /* height: 1119px; */
  height: 943px;
}

.day_header {
  position: absolute;
  top: 50px;
  left: 80px;
  right: 80px;
  z-index: 2;
  display: flex;
  gap: 686px;
  align-items: flex-start;
}
.day_title {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 50px;
  color: #282828;
  white-space: nowrap;
  flex-shrink: 0;
}

.day_desc {
  font-family: "Montserrat-Regular", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #282828;
  flex: 1;
}
.day_circle_wrap {
  position: relative;
  margin: 241px 80px 0;
}
.day_circle_block {
  transform-origin: 50% 704px;
  position: relative;
}
.day_circle_overlay {
  position: absolute;
  width: 1408px;
  height: 1408px;
  border-radius: 50%;
  background: #f7f3ec;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.day_bg_circle {
  /* width: 1760px;
  height: 1760px; */
  width: 1408px;
  height: 1408px;
  margin: 0 auto;
  border-radius: 50%;
  display: block;
  object-fit: contain;
  object-position: top;
  backface-visibility: hidden;
  will-change: transform;
}

.day_side_wrap--left {
  left: 0;
  width: 589px;
}

.day_side_wrap--right {
  left: 1422px;
  width: 498px;
}

.day_side_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.day_side_inner--ccw {
  transform: rotate(-90deg);
}

.day_side_inner--cw {
  transform: rotate(90deg);
}

.day_side_indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.day_step_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  border: 1px solid;
  background: transparent;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  flex-shrink: 0;
  border-color: #3d7aca;
  color: #3d7aca;
}

.day_step_dot {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.day_side_img {
  width: 445px;
  height: 368px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.day_side_img--tall {
  height: 459px;
}

.day_side_wrap,
.day_side_wrap_false {
  position: absolute;
  width: auto;
  height: auto;
  top: -110px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
  transform-origin: 50% 814px;
}
.day_figures_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.day_figures_block .day_figure_circle {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: #3d7aca;
}
.day_figures_block .day_figure_stick {
  width: 2px;
  height: 60px;
}
.day_side_wrap.active .day_figures_block .day_figure_stick {
  background-color: #fff;
}
.day_active_img {
  width: 160px;
  height: 90px;
  object-fit: contain;
  display: block;
}

.day_active_text {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #f7f3ec;
  text-align: center;
}
.day_side_wrap.active .day_active_text {
  display: flex;
}
.day_active_title {
  font-family: "Montserrat-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
}

.day_active_desc {
  font-family: "Montserrat-Regular", sans-serif;
  font-weight: 400;
  font-size: 20px;
  width: 761px;
  line-height: 1;
}

/* ── Who section ── */
.who_section {
  position: relative;
  padding: 121px 0 0;
}
.who_title {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 50px;
  color: #282828;
  line-height: 1.2;
  padding: 0 0 0 80px;
  max-width: 630px;
  margin-bottom: -163px;
}
.who_carousel_clip {
  position: relative;
  overflow: hidden;
  padding: 164px 0 0;
  margin: -400px 0 0;
}
.who_carousel_viewport {
  margin-top: 500px;
  height: 749px;
  /* 1000px */
  position: relative;
}
.who_carousel_track {
  transform: rotate(-11.6deg);
  transform-origin: 0 60%;
  /* margin-top: 120px; */
}
.who_carousel_inner {
  display: flex;
  align-items: flex-start;
  gap: 90px;
  will-change: transform;
  padding-left: 80px;
}
.who_card {
  flex-shrink: 0;
  width: 495px;
  height: 694px;
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(11.6deg);
  transform-origin: center center;
}
.who_card__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.who_card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.who_card__dot_icon {
  width: 9px;
  height: 9px;
  background: #282828;
  border-radius: 50%;
  flex-shrink: 0;
}
.who_card__cat {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 20px;
  color: #282828;
  text-transform: uppercase;
}
.who_card__sub {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: #282828;
  max-width: 320px;
  height: 44px;
  overflow: hidden;
}
.who_card__img_wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 297px;
  flex-shrink: 0;
}
.who_card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who_card__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: #282828;
}
.who_scroll_hint {
  position: absolute;
  bottom: 194px;
  right: 79px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  cursor: pointer;
}
.who_scroll_hint * {
  cursor: pointer;
}
.who_scroll_hint__text {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 16px;
  color: #3d7aca;
  text-transform: uppercase;
  user-select: none;
}
/* ── Responsible section ── */
.resp_section {
  margin-top: -76px;
}
#resp_wraper {
  position: relative;
  padding: 147px 80px 132px;
  overflow: hidden;
}
.resp_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.resp_inner {
  position: relative;
}
.resp_title {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 50px;
  color: #f7f3ec;
  margin-bottom: 39px;
  overflow: hidden;
}
.resp_title .char {
  display: inline-block;
}
.resp_list {
  display: flex;
  flex-direction: column;
}
.resp_divider {
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgb(247, 243, 236) 0,
    rgb(247, 243, 236) 5px,
    transparent 5px,
    transparent 10px
  );
}
.resp_row {
  display: flex;
  align-items: center;
  gap: 203px;
  padding: 50px 0 49px;
}
.resp_row_box {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50px;
}
.resp_row__cat {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #f7f3ec;
  text-transform: uppercase;
  width: 425px;
  flex-shrink: 0;
  margin: 0;
}
.resp_row__text {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #f7f3ec;
  flex: 1;
  margin: 0;
}

/* ── resp_row slide-in animation ── */
@keyframes resp-slide-in {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.resp_row_box,
.resp_row__cat,
.resp_row__text {
  opacity: 0;
}
.resp_row.is-visible .resp_row_box {
  animation: resp-slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s
    forwards;
}
.resp_row.is-visible .resp_row__cat {
  animation: resp-slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s
    forwards;
}
.resp_row.is-visible .resp_row__text {
  animation: resp-slide-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s
    forwards;
}

/* ── FAQ section ── */
.faq_section {
  padding: 119px 80px;
  background: #f7f3ec;
}
.faq_inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.faq_left {
  position: relative;
  width: 802px;
  min-height: 836px;
  flex-shrink: 0;
  border-radius: 40px;
  overflow: hidden;
}
.faq_left_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq_left_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.faq_left_title {
  position: relative;
  margin: 41px 80px 0;
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 50px;
  color: #fff;
}
.faq_left_sub {
  position: absolute;
  bottom: 39px;
  left: 80px;
  right: 80px;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 20px;
  color: #fff;
  margin: 0;
}
.faq_right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.faq_divider {
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #282828 0,
    #282828 5px,
    transparent 5px,
    transparent 10px
  );
}
.faq_item {
  display: flex;
  flex-direction: column;
}
.faq_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 30px 0 1px;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.faq_item.is-open .faq_btn {
  padding-bottom: 21px;
}
.faq_question {
  font-family: "Montserrat-Medium", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #282828;
  text-transform: uppercase;
  line-height: 1.1;
}
.faq_icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq_icon_v {
  transition: opacity 0.25s;
}
.faq_btn[aria-expanded="true"] .faq_icon_v {
  opacity: 0;
}
.faq_answer {
  display: grid;
  transition: grid-template-rows 0.7s ease;
  overflow: hidden;
  transition: max-height 0.7s ease;
  max-height: 0;
  margin-bottom: 28px;
}
.faq_answer > p,
.faq_answer li {
  overflow: hidden;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: #282828;
  line-height: 1.1;
  /* margin-bottom:; */
}
.faq_answer li {
  padding-left: 27px;
  position: relative;
}
.faq_answer li:after {
  content: "";
  position: absolute;
  left: 12px;
  top: 9px;
  width: 3px;
  height: 3px;
  background-color: #282828;
  border-radius: 100%;
}
/* .faq_answer > *:last-child {
  margin-bottom: 0;
} */
.faq_item.is-open .faq_answer {
  max-height: 500px;
}

/* early_section */
.early_section {
  overflow: hidden;
  padding: 1px 0 120px;
  background: #f7f3ec;
}
.early_inner {
  max-width: 1760px;
  margin: 0 auto;
}
.early_title {
  width: 905px;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 79px;
  text-transform: uppercase;
  color: #282828;
  margin-bottom: 23px;
}
.early_sub {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 32px;
  color: #282828;
  margin-bottom: 49px;
}
.early_divider {
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
  background: black;
}
.early_bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.early_message {
  width: 657px;
  flex-shrink: 0;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: #282828;
  line-height: normal;
  margin: 0;
}
.early_form,
.wpcf7-form {
  width: 704px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.early_fields {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.early_fields_row {
  display: flex;
  gap: 20px;
}
.early_field {
  flex: 1;
  border-bottom: 1px solid #282828;
  height: 56px;
  display: flex;
  align-items: center;
}
.early_input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  color: #282828;
  padding: 12px 0;
}
.early_input_phone {
  padding: 17px 0;
}
.early_input::placeholder {
  color: #282828;
}
.early_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.early_btn br {
  display: none;
}
.early_btn span {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: #f7f3ec;
  text-transform: uppercase;
  white-space: nowrap;
}

/* footer */
.footer_section {
  background: #2c3f29;
  border-radius: 50px 50px 0 0;
}
.footer_copy span {
  /* .footer_not_link span { */
  cursor: default;
}
.footer_top {
  max-width: 1760px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 29px;
}
.footer_logo {
  position: relative;
  width: 502px;
  height: 228px;
  flex-shrink: 0;
}
.footer_logo > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer_tagline {
  position: absolute;
  top: 9.65%;
  left: 0;
  right: 25.9%;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 32px;
  color: #f7f3ec;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: normal;
  margin: 0;
  z-index: 1;
}
.footer_arrow {
  width: 207px;
  height: 207px;
  flex-shrink: 0;
  margin: 0 1px 1px 0;
}
.footer_arrow svg {
  width: 100%;
  height: 100%;
}
.footer_line {
  width: 100%;
  height: 1px;
  background: #f7f3ec;
}
.footer_bottom {
  max-width: 1760px;
  margin: 0 auto;
  display: flex;
  padding-top: 30px;
  padding-bottom: 40px;
}
.footer_contacts {
  /* width: 1056px; */
  margin-left: 2px;
  width: 727px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer_policy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 329px;
}
.footer_social {
  width: 352px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer_copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.footer_contact {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
}
.footer_contact span,
.footer_policy .footer_contact {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  color: #f7f3ec;
  line-height: normal;
  white-space: nowrap;
  margin-top: 2px;
}
.footer_contact * {
  cursor: pointer;
}
.footer_copy p {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  color: #f7f3ec;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}
.footer_dev {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer_dev span {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  color: #f7f3ec;
  line-height: normal;
  white-space: nowrap;
}
.main_content {
  padding: 88px 4.17vw 0;
  min-height: calc(100vh - 500px);
}
.main_content .page-title {
  text-align: center;
  padding-bottom: 20px;
}
.main_content * {
  padding-bottom: 10px;
  font-family: "Montserrat-Regular", sans-serif;
}
.main_content p + h2 {
  padding-top: 20px;
}
.main_content .page-content {
  padding-bottom: 20px;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
}
.footer_contact:hover span,
.footer_policy .footer_contact:hover {
  color: #f7f3ec55;
}
.footer_contact:hover path {
  fill: #f7f3ec55;
}
@media (max-width: 1919px) and (min-width: 801px) {
  .map_section {
    width: 1760px;
    margin: 0 auto;
    zoom: calc(100vw / 1920px);
    transform-origin: top left;
  }
}
@media (max-width: 1919px) and (min-width: 1251px) {
  .house_info__title {
    font-size: 1.25vw;
  }
  .house_features {
    gap: 0.73vw;
  }
  .house_feature__label {
    font-size: 0.94vw;
  }
  .house_feature__items {
    font-size: 0.94vw;
    gap: 0.52vw;
  }
  .house_info_note {
    font-size: 0.83vw;
  }
  .house_info {
    gap: 1.04vw;
  }
}
@media (max-width: 1799px) and (min-width: 801px) {
  .main_screen {
    padding: 6.25vw 4.16vw 14.43vw;
    margin-bottom: 1.7vw;
  }
  .main_screen .main_title_box {
    width: 55vw;
  }
  .main_title {
    width: 100%;
    height: fit-content;
  }
  .main_screen .main_subtitle {
    width: 33vw; /* only adaptation */
    font-size: 1.67vw;
    letter-spacing: 0.08vw;
    top: 1.67vw;
    text-indent: 5.1vw;
  }
  .main_screen .main_blue_text {
    width: 11.67vw;
    font-size: 14px; /* only adaptation */
    margin-top: 7.5vw;
  }
  .main_screen .main_sale_box {
    width: 18.33vw;
    height: 17.65vw;
    padding: 1.09vw 1.04vw 1.04vw;
    margin-top: 7.45vw;
  }
  .main_screen .sale_title {
    font-size: 1.22vw; /* only adaptation */
  }
  .main_screen .sale_title .sale_first_word {
    font-size: 2.5vw;
  }
  .main_content_row {
    gap: 3.33vw;
    /* margin-bottom: 9.06vw; */
    margin-bottom: 7.5vw;
  }
  .main_screen .sale_bottom_text {
    font-size: 0.9vw; /* only adaptation */
  }
  .main_screen .sale_bottom_box {
    gap: 0;
    justify-content: space-between;
  }
  .sale_bottom_box .sale_arrow {
    width: 2.41vw;
    height: 2.41vw;
  }
  .philosophy_right {
    width: 50vw;
  }
  .philosophy_left {
    width: 30vw;
  }
  .philosophy_section {
    padding: 80px 4.16vw 40px;
  }
  .philosophy_columns {
    flex-direction: column;
  }
  .philosophy_title {
    font-size: 2.5vw;
  }
  .philosophy_heading {
    font-size: 5vw;
    margin: 0 auto;
  }
  .gallery_arrow {
    top: 40%;
  }
  .gallery_arrow--prev {
    left: 5.73vw;
  }
  .gallery_arrow--next {
    right: 1.56vw;
  }
  .compare_section {
    padding: 6.25vw 4.17vw 0;
  }
  .compare_left {
    flex: none;
    width: 37.6vw;
  }
  .services_image {
    width: 41.77vw;
    height: 49.7vw;
    flex: unset;
    /* 802 955 */
  }
  .services_image__title {
    top: 2.08vw;
    left: 4.16vw;
    font-size: calc(2.08vw + 10px);
  }
  .faq_section {
    padding: 119px 4.17vw;
  }
  .faq_left_title {
    margin: 2.14vw 4.17vw 0;
    font-size: 3vw;
  }
  .faq_left_sub {
    bottom: 2.14vw;
    left: 4.17vw;
    right: 4.17vw;
  }
  .early_title {
    font-size: 4.11vw;
    width: 47.14vw;
  }
  .early_sub {
    font-size: 1.67vw;
  }
  .early_inner {
    max-width: 95%;
  }
  .early_message {
    width: calc(50% - 20px);
  }
  .early_form,
  .wpcf7 {
    width: 50%;
  }
  .wpcf7-form {
    width: 100%;
  }
  .footer_top {
    width: 1760px;
    max-width: 95%;
  }
  .footer_contacts {
    width: 37.86vw;
    margin-left: 0;
  }
  .footer_policy {
    width: 17.4vw;
  }
  .footer_social {
    width: 18.33vw;
  }
  .footer_copy {
    flex: unset;
  }
  .footer_bottom {
    width: 1760px;
    max-width: 95%;
  }
}
@media (max-width: 1799px) and (min-width: 1251px) {
  .house_card {
    height: 26.04vw;
    width: 45.31vw;
  }
  .house_feature__label {
    width: 14.4vw;
    min-width: fit-content;
  }
}
@media (max-width: 1560px) and (min-width: 801px) {
  .footer_bottom {
    justify-content: space-between;
  }
  .footer_contacts,
  .footer_policy,
  .footer_social,
  .footer_copy {
    width: fit-content;
  }
}
@media (max-width: 1536px) and (min-width: 801px) {
  .resp_row {
    gap: 50px;
  }
  .resp_row__cat {
    width: 320px;
  }
  .faq_left {
    min-height: 915px;
    width: 41.77vw;
  }
}
@media (max-width: 1259px) and (min-width: 801px) {
  .footer_contact span,
  .footer_policy .footer_contact {
    font-size: 14px;
  }
}
@media (max-width: 1250px) and (min-width: 801px) {
  .header {
    font-size: 1.49vw;
    padding: 1.35vw 2vw 1.35vw 2vw;
    justify-content: space-between;
  }
  .header .logo {
    margin-right: 0;
  }
  .header .nav_box {
    margin-top: 0;
    margin-right: 0;
    width: 53vw;
  }
  .main_screen .sale_bottom_text {
    font-size: 12px;
    width: calc(100% - 3vw);
  }
  .main_screen .main_blue_text {
    font-size: 1.49vw;
  }
  /* .parallax_house {
    bottom: -50px;
  } */
  .philosophy_left {
    width: 35vw;
  }
  .philosophy_traced svg {
    height: 400px;
  }
  .house_row {
    flex-direction: column;
  }
  .house_card {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 870 / 500;
  }
  .house_info {
    width: 100%;
  }
  .map_header__title {
    font-size: 60px;
  }
  .map_header__subtitle {
    font-size: 32px;
  }
  .map_header__body {
    font-size: 26px;
  }
  .map_header {
    width: 1200px;
  }
  .map_card {
    transform: translate(-50%) scale(1.8);
  }
  .compare_left {
    width: 30vw;
  }
  .compare_title {
    font-size: 3vw;
  }
  .compare_td {
    padding: 1.04vw 1.56vw;
  }
  tr:last-child .compare_td {
    padding-bottom: 1.51vw;
  }
  .services_item__header {
    padding: 20px 0;
  }
  .services_item--open .services_item__header {
    padding-bottom: 10px;
  }
  .services_item__icon_box {
    width: 40px;
    height: 40px;
  }
  .services_item__icon_box svg {
    width: 25px;
    height: 25px;
  }
  .services_item__title {
    font-size: 16px;
  }
  .services_list {
    font-size: 14px;
    gap: 8px;
  }
  .who_scroll_hint {
    bottom: 10.1vw;
  }
  .resp_row {
    gap: 35px;
  }
  #resp_wraper {
    padding: 147px 4.17vw 132px;
  }
  .footer_logo {
    width: 27.08vw;
    height: 11.88vw;
  }
  .footer_tagline {
    font-size: 1.67vw;
  }
  .footer_arrow {
    width: 11.88vw;
    height: 11.88vw;
  }
  .footer_bottom {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer_contacts {
    width: 60%;
    margin-bottom: 30px;
  }
  .footer_social {
    width: 40%;
  }
}

@media (max-width: 900px) and (min-width: 801px) {
  .who_scroll_hint {
    bottom: 11.1vw;
  }
  .resp_row__cat {
    font-size: 20px;
    width: 270px;
  }
  .resp_row {
    gap: 20px;
  }
  .resp_row__text {
    font-size: 16px;
  }
  #resp_wraper {
    padding: 147px 2vw 132px;
  }
  .faq_left {
    min-height: 1040px;
  }
}
@media (max-width: 1630px) and (min-width: 801px) {
  /* .services_section {
    padding-bottom: 40px;
  } */
  /* ── Day section – 801–1630px (vw-scale, base 1920px) ── */
  .day_section {
    /* height: 49.12vw; */
    height: 54.12vw;
  }
  .day_header {
    top: 0;
    left: 4.17vw;
    right: 4.17vw;
    /* gap: 35.73vw; */
    gap: unset;
    justify-content: space-between;
  }
  .day_title {
    font-size: clamp(22px, 2.6vw, 50px);
  }
  .day_desc {
    font-size: clamp(12px, 1.2vw, 20px);
    width: 40%;
    flex: none;
  }
  .day_circle_wrap {
    /* margin: 12.55vw 4.17vw 0; */
    margin: 17.55vw 4.17vw 0;
  }
  /* transform-origin Y = circle radius = 73.33vw / 2 */
  .day_circle_block {
    transform-origin: 50% 36.67vw;
  }
  .day_circle_overlay {
    width: 73.33vw;
    height: 73.33vw;
  }
  .day_bg_circle {
    width: 73.33vw;
    height: 73.33vw;
  }
  /* transform-origin Y = circle_radius + |top| = 36.67vw + 5.73vw */
  .day_side_wrap,
  .day_side_wrap_false {
    top: -5.73vw;
    transform-origin: 50% 42.4vw;
    gap: 1.04vw;
  }
  .day_step_badge {
    width: 4.17vw;
    height: 4.17vw;
    font-size: clamp(13px, 1.25vw, 24px);
    border-radius: 50%;
  }
  .day_figures_block {
    gap: 0.52vw;
  }
  .day_figures_block .day_figure_circle {
    width: 1.04vw;
    height: 1.04vw;
  }
  .day_figures_block .day_figure_stick {
    height: 3.13vw;
  }
  .day_active_text {
    gap: 0.52vw;
  }
  .day_active_title {
    font-size: clamp(14px, 1.25vw, 24px);
  }
  .day_active_desc {
    font-size: clamp(13px, 1.25vw, 20px);
    width: 39.64vw;
  }
}
@media (max-width: 1025px) and (min-width: 801px) {
  .compare_td {
    font-size: 16px;
  }
  .compare_thead_top .compare_th {
    font-size: 20px;
    height: 60px;
  }
  .compare_thead_sub .compare_th {
    font-size: 18px;
    height: 50px;
  }
  .compare_text {
    font-size: 16px;
  }
}
.sandwich,
.main_subtitle_mobile {
  display: none;
}

@media (max-width: 800px) {
  .header .nav_box,
  .header .end_logo_box,
  .main_subtitle_desktop {
    display: none;
  }
  .main_subtitle_mobile {
    display: block;
  }
  .header {
    justify-content: space-between;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 20px 20px 5px;
  }
  .header .logo {
    margin-bottom: 6px;
  }
  .sandwich {
    display: block;
    cursor: pointer;
    width: 44px;
    height: 44px;
  }
  .sandwich-close {
    display: none;
  }
  .sandwich.active .sandwich-close {
    display: block;
  }
  .sandwich.active .sandwich-open {
    display: none;
  }
  /* .sandwich .bar-top,
  .sandwich .bar-bot {
    transition: d 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sandwich .bar-mid {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-box: fill-box;
    transform-origin: center;
  }
  .sandwich.active .bar-top {
    d: path(
      "M35.6372 34.2173C34.9246 34.9299 33.7694 34.9297 33.057 34.2173L9.70998 10.8703C8.99746 10.1578 8.99738 9.00262 9.70999 8.29001C10.4225 7.57753 11.5776 7.57761 12.2901 8.29013L35.6371 31.6371C36.3496 32.3496 36.3497 33.5048 35.6372 34.2173Z"
    );
  }
  .sandwich.active .bar-mid {
    transform: scaleX(0);
  }
  .sandwich.active .bar-bot {
    d: path(
      "M9.36276 34.2173C10.0754 34.9299 11.2306 34.9297 11.943 34.2173L35.29 10.8703C36.0025 10.1578 36.0026 9.00262 35.29 8.29001C34.5775 7.57753 33.4224 7.57761 32.7099 8.29013L9.36289 31.6371C8.65041 32.3496 8.65028 33.5048 9.36276 34.2173Z"
    );
  } */
  .mobile_menu {
    position: fixed;
    display: none;
    left: 0;
    top: 65px;
    width: 100%;
    z-index: 10;
    height: 584px;
    max-height: 100%;
    background: #f7f3ec;
    flex-direction: column;
    padding: 72px 20px 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .sandwich.active .mobile_menu {
    display: flex;
    pointer-events: all;
    height: calc(100vh - 65px);
  }
  .mobile_menu_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
  }
  .mobile_menu_nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    font-family: "Montserrat-Regular";
    font-size: 16px;
    text-transform: uppercase;
    color: #282828;
  }
  .mobile_menu_item {
    color: #282828;
    text-decoration: none;
    cursor: pointer;
  }
  .mobile_menu_cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    text-decoration: none;
  }
  .mobile_menu_cta_text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .mobile_menu_cta_text span {
    font-family: "Montserrat-Medium";
    font-size: 16px;
    text-transform: uppercase;
    color: #67725a;
    font-weight: 500;
    cursor: pointer;
  }
  .mobile_menu_cta_line {
    height: 1px;
    background: #67725a;
    width: 100%;
  }
  .mobile_menu_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 269px;
    background-image: url(../images/main_back_mobile.webp);
    background-size: cover;
    background-position: top center;
    pointer-events: none;
  }
  .parallax_forest {
    background-position: calc(100% + 497px) calc(100% + 36px);
  }
  .main_screen {
    /* padding: 36.8vw 5.33vw 29px; */
    padding: 45.8vw 5.33vw 29px;
    border-radius: 20px;
    margin-bottom: 1.7vw;
    /* position: static; */
  }
  .main_screen .main_title_box {
    width: 100%;
    position: static;
  }
  .main_screen .main_subtitle {
    font-size: 20px;
    letter-spacing: -1px;
    max-width: 100%;
    text-indent: unset;
  }
  .main_screen .main_blue_text {
    display: none;
  }
  /* .main_screen .main_blue_text:after {
    z-index: -1;
    content: "";
    position: absolute;
    top: -18px;
    right: -11px;
    width: 344px;
    height: 73px;
    border-radius: 344px;
    background: #282828;
    filter: blur(23.350000381469727px);
  } */
  .main_screen .main_sale_box {
    width: 61.07vw;
    height: 143px;
    margin-top: 55.2vw;
    padding: 20px;
    border-radius: 10px;
  }
  .main_screen .sale_title {
    font-size: 14px;
  }
  .main_screen .sale_title .sale_first_word {
    font-size: 18px;
  }
  .main_screen .sale_bottom_text {
    font-size: 12px;
    width: calc(100% - 45px);
  }
  .sale_bottom_box .sale_arrow {
    width: 30px;
    height: 30px;
  }
  .main_screen .main_sub_text {
    /* width: 100%;
    font-size: 14px; */
    display: none;
  }
  .main_screen .main_title {
    width: 326px;
    display: block;
    margin: 0 auto;
    height: fit-content;
  }
  .main_screen .main_subtitle {
    /* top: -44px; */
    /* top: -88px; */
    top: 22.5vw;
    padding: 0 5.33vw;
  }
  .main_screen .main_content_row {
    margin-bottom: 0;
    flex-direction: column;
    gap: 0;
    position: static;
  }
  .parallax_house {
    border-radius: 20px;
    /* bottom: -200px; */
    bottom: -26px;
    background-position: calc(100% + 493px) calc(100%);
  }

  /* Philosophy section */
  .philosophy_section {
    padding: 54px 20px 20px;
  }
  .philosophy_wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .philosophy_left {
    width: 100%;
    gap: 8px;
    justify-content: flex-start;
  }
  .philosophy_heading {
    /* font-size: 54px;
    letter-spacing: -2.7px; */
    display: none;
  }
  .philosophy_traced {
    height: 123px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    margin-bottom: 5px;
  }
  .philosophy_traced svg {
    transform: rotate(90deg);
    height: 83.2vw;
    width: auto;
    flex-shrink: 0;
    margin-right: 8px;
  }
  .philosophy_left_text {
    /* font-size: 16px;
    line-height: 20px; */
    display: none;
  }
  .philosophy_right {
    width: 100%;
    gap: 19px;
  }
  .philosophy_text_block {
    gap: 19px;
  }
  .philosophy_title {
    font-size: 24px;
  }
  .philosophy_columns {
    flex-direction: column;
    gap: 20px;
  }
  .philosophy_col_text {
    font-size: 16px;
    line-height: 20px;
  }
  .philosophy_photo {
    border-radius: 20px;
  }
  .gallery_section {
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
  }
  .gallery_track {
    order: 1;
  }
  .gallery_section .gallery_text {
    order: 0;
    font-size: 14px;
    margin: 20px;
    line-height: 1.22;
  }
  .gallery_card {
    width: 335px;
    height: 445px;
    border-radius: 20px;
  }
  .gallery_arrow {
    display: flex;
    width: 30px;
    height: 30px;
    /* top: 201px; */
    top: 274px;
    bottom: 10px;
    transform: none;
  }
  .gallery_arrow--prev {
    left: 26px;
  }
  .gallery_arrow--next {
    right: 25px;
  }
  .gallery_arrow--next .arrow_next_svg {
    margin: 0;
  }

  /* Houses section */
  .houses_section {
    padding: 0 20px 50px;
  }
  .house_title {
    font-size: 24px;
    padding-bottom: 20px;
  }
  .house_subtitle {
    font-size: 16px;
    padding-bottom: 38px;
    line-height: 1.27;
  }
  .house_row {
    flex-direction: column;
    gap: 20px;
  }
  .house_card {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 870 / 500;
    border-radius: 20px;
  }
  .house_card__bg {
    border-radius: 20px;
  }
  .house_card__name {
    font-size: 20px;
    top: 20px;
    left: 20px;
  }
  .house_card__arrow {
    width: 30px;
    height: 30px;
  }
  .house_card__arrow--prev {
    left: 6px;
  }
  .house_card__arrow--next {
    right: 6px;
  }
  .house_card__dots {
    bottom: 10px;
    width: 275px;
    gap: 6px;
  }
  .house_card__dot {
    flex: 1;
    width: auto;
    height: 1px;
  }
  .house_info__title {
    font-size: 18px;
    letter-spacing: -0.36px;
  }
  .house_feature {
    flex-direction: column;
    gap: 17px;
  }
  .house_feature__label {
    width: auto;
    font-size: 16px;
  }
  .house_feature__items {
    font-size: 16px;
    gap: 11px;
  }
  .house_info {
    gap: 21px;
  }
  .house_features {
    gap: 20px;
  }
  .houses_wrapper {
    gap: 39px;
  }
  .house_row:last-child .house_feature {
    margin-bottom: -1px;
  }
  .house_info_note {
    font-size: 14px;
  }

  /* Map section */
  .map_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    height: auto;
    margin: 0;
    padding-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    /* background-color: rgba(61, 122, 202, 0.15); */
    background-color: #18120d;
  }
  .map_bg {
    position: relative;
    width: 100%;
    height: 208px;
    border-radius: 0;
    overflow: hidden;
    order: 1;
  }
  .map_bg__overlay {
    border-radius: 0;
    background: none;
  }
  .map_bg__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Pins on mobile: 24px */
  .map_pin {
    width: 24px;
    height: 24px;
    z-index: 5;
    margin-left: -12px;
    margin-top: -12px;
  }
  .map_pin:hover {
    z-index: 6;
  }
  .map_pin svg {
    width: 24px;
    height: 24px;
  }
  /* Hover = tap on mobile, card shown centered */
  .map_pin:hover .map_card {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translatex(-50%);
  }
  .map_pin:hover::after {
    display: none;
  }
  /* Compact card on mobile */
  .map_card__photo {
    width: 64vw;
    height: 46.67vw;
  }
  .map_header {
    display: contents;
  }
  .map_header__text {
    position: static;
    width: 335px;
    gap: 20px;
  }
  .map_header__title {
    font-size: 24px;
  }
  .map_header__desc {
    gap: 10px;
  }
  .map_header__subtitle {
    font-size: 18px;
  }
  .map_header__body {
    font-size: 16px;
    line-height: 1.27;
  }
  .map_header__btn {
    padding: 13px 21px 13px;
    gap: 10px;
    height: auto;
    width: auto;
  }
  .map_header__btn span {
    font-size: 14px;
    padding-top: 3px;
  }
  .map_header__btn svg {
    width: 15px;
    height: 15px;
  }
  .map_pin:nth-child(2) {
    top: 70%;
    left: 23.5%;
  }
  .map_pin:nth-child(3) {
    top: 71.7%;
    left: 34%;
  }
  .map_pin:nth-child(4) {
    top: 74%;
  }
  .map_pin:nth-child(5) {
    top: 77.5%;
    left: 68.8%;
  }
  .map_pin:nth-child(6) {
    top: 81.4%;
    left: 84.4%;
  }
  .map_header__btn .map_text_pc_only {
    display: none;
  }
  /* Compare section mobile */
  .compare_section {
    flex-direction: column;
    padding: 80px 20px 0;
    align-items: stretch;
    gap: 18px;
  }
  .compare_table {
    table-layout: fixed;
  }
  .compare_left {
    flex: none;
    gap: 18px;
  }
  .compare_title {
    font-size: 24px;
    margin-bottom: 2px;
  }
  .compare_text {
    font-size: 16px;
  }
  .compare_table_wrap {
    border-radius: 10px;
  }
  .compare_table_wrap::before {
    border-radius: 10px;
  }
  .compare_col--1 {
    width: 30.6%;
  }
  .compare_col--2 {
    width: 31%;
  }
  .compare_col--3 {
    width: 38.3%;
  }
  .compare_thead_top .compare_th {
    font-size: 14px;
    height: 41px;
    padding: 0 10px 0 11px;
  }
  .compare_thead_top .compare_th:first-child {
    border-radius: 10px 0 0 0;
  }
  .compare_thead_top .compare_th:last-child {
    border-radius: 0 10px 0 0;
  }
  .compare_thead_sub .compare_th {
    font-size: 14px;
    height: 42px;
    padding: 0 10px 0 11px;
  }
  .compare_thead_sub .compare_th--icon {
    border-bottom-left-radius: 10px;
    padding-top: 0;
    padding-left: 11px;
  }
  .compare_thead_sub .compare_th--icon svg {
    width: 20px;
    height: 20px;
  }
  .compare_thead_sub .compare_th:last-child {
    border-bottom-right-radius: 10px;
  }
  .compare_td {
    font-size: 12px;
    line-height: 1.2;
    padding: 12px 10px 10px;
    height: auto;
  }
  tr:first-child .compare_td {
    height: auto;
  }
  .compare_td--two_rows {
    padding: 12px;
  }
  .compare_td--one_row {
    padding-right: 12px;
  }
  tr:last-child .compare_td {
    padding-bottom: 14px;
    line-height: 1.23;
  }
  tbody tr:first-child .compare_td {
    padding: 20px 11px 9px;
    line-height: normal;
  }
  .compare_td--label {
    padding: 12px 12px 9px;
    line-height: 1.22;
  }

  /* ── Services section – 375px ── */
  .services_section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 19px;
  }

  .services_image {
    flex: none;
    width: 100%;
    height: 400px;
    border-radius: 20px;
  }

  .services_image__title {
    top: 20px;
    left: 20px;
    width: 219px;
    max-width: calc(100% - 40px);
    font-size: 24px;
  }

  .services_item__icon_box {
    width: 40px;
    height: 40px;
  }

  .services_item__icon_box svg {
    width: 20px;
    height: 20px;
  }

  .services_item__title {
    font-size: 18px;
    line-height: normal;
  }

  .services_item__header {
    padding: 15px 0;
  }

  .services_item--open .services_item__header {
    padding-bottom: 21px;
  }

  .services_item__left {
    gap: 10px;
  }

  .services_list {
    font-size: 16px;
    gap: 10px;
    padding-left: 11px;
  }
  .services_item--open .services_item__body {
    padding-bottom: 20px;
  }
  .services_list li {
    padding-left: 13px;
    /* line-height: 1.3; */
  }

  /* ── Day section – 375px ── */
  .day_section {
    height: 686px;
  }

  .day_header {
    top: 20px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .day_title {
    font-size: 24px;
    white-space: normal;
  }

  .day_desc {
    font-size: 16px;
    flex: none;
    line-height: 1.26;
  }

  .day_circle_wrap {
    margin: 315px 0 0;
  }
  .day_circle_block {
    width: 822px;
    margin-left: calc(50% - 411px);
    transform-origin: 50% 411px;
  }

  .day_circle_overlay {
    width: 822px;
    height: 822px;
  }

  .day_bg_circle {
    width: 822px;
    height: 822px;
    object-position: 50% calc(0% - 39px);
  }
  .day_side_wrap,
  .day_side_wrap_false {
    top: -55px;
    transform-origin: 50% 466px;
    gap: 10px;
  }
  .day_figures_block {
    gap: 8px;
  }

  .day_step_badge {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .day_figures_block .day_figure_circle {
    width: 10px;
    height: 10px;
  }

  .day_active_title {
    font-size: 18px;
  }

  .day_active_desc {
    font-size: 16px;
    width: 333px;
    line-height: 1.25;
  }
  .day_active_text {
    gap: 11px;
  }
  /* ── Who section — mobile ≤375px ── */
  .who_section {
    padding: 81px 0 115px;
    overflow: hidden;
  }
  .who_title {
    font-size: 24px;
    padding: 0 20px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .who_carousel_clip {
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .who_carousel_viewport {
    margin-top: 0;
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .who_carousel_viewport::-webkit-scrollbar {
    display: none;
  }
  .who_carousel_track {
    transform: none;
  }
  .who_carousel_inner {
    gap: 10px;
    /* padding: 0 20px; */
    padding-left: 20px;
    align-items: stretch;
  }
  .who_card {
    width: 335px;
    height: auto;
    border-radius: 20px;
    padding: 20px 20px 0;
    transform: none;
    justify-content: flex-start;
    gap: 20px;
    scroll-snap-align: start;
  }
  .who_card__cat {
    font-size: 18px;
  }
  .who_card__sub {
    font-size: 16px;
    height: auto;
    max-width: 100%;
  }
  .who_card__img_wrap {
    height: auto;
    aspect-ratio: 415 / 297;
    border-radius: 10px;
  }
  .who_card__desc {
    font-size: 16px;
  }
  .who_scroll_hint {
    position: static;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 40px;
  }
  .who_card__img_wrap {
    margin-top: 21px;
  }
  .who_card__desc p {
    line-height: 20px;
  }
  #resp_wraper {
    padding: 40px 20px;
  }
  .resp_title {
    font-size: 24px;
  }
  .resp_row {
    padding: 20px 0 17px;
    gap: 20px;
    flex-wrap: wrap;
    gap: 20px 10px;
  }
  .resp_row {
    padding-bottom: 18px;
  }
  .resp_row_box {
    width: 40px;
    height: 40px;
  }
  .resp_row_box svg {
    width: 20px;
    height: 20px;
  }
  .resp_row__cat {
    width: 138px;
    font-size: 18px;
    flex-wrap: wrap;
  }
  .resp_row__text {
    font-size: 16px;
    min-width: calc(100vw - 40px);
    line-height: 1.26;
  }
  @keyframes resp-slide-in {
    from {
      opacity: 0;
      transform: translateX(80px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* ── FAQ section – 375px ── */
  .faq_section {
    padding: 80px 20px 40px;
  }
  .faq_inner {
    flex-direction: column;
    gap: 19px;
  }
  .faq_left {
    width: 100%;
    min-height: unset;
    aspect-ratio: 802 / 836;
    border-radius: 20px;
  }
  .faq_left_title {
    margin: 20px 0 0 20px;
    font-size: 24px;
    width: 295px;
    max-width: calc(100% - 40px);
  }
  .faq_left_sub {
    bottom: 18px;
    left: 20px;
    right: 20px;
    font-size: 14px;
  }
  .faq_question {
    font-size: 18px;
  }
  .faq_btn {
    padding: 16px 0 1px;
    gap: 20px;
  }
  .faq_item.is-open .faq_btn {
    padding-bottom: 21px;
  }
  .faq_right {
    gap: 0;
  }
  .faq_answer {
    margin-bottom: 14px;
  }
  .faq_answer > p,
  .faq_answer li {
    font-size: 16px;
    line-height: 1.13;
    letter-spacing: -0.01px;
  }
  .faq_answer li {
    padding-left: 13px;
  }
  .faq_answer li:after {
    left: 4px;
    top: 8px;
  }

  /* ── Early section – 375px ── */
  .early_section {
    padding: 40px 0 80px;
  }
  .early_inner {
    padding: 0 20px;
  }
  .early_title {
    width: 100%;
    font-size: 28px;
    margin-bottom: 10px;
  }
  .early_sub {
    font-size: 20px;
    margin-bottom: 39px;
  }
  .early_divider {
    width: calc(100% - 40px);
    margin: 0 20px 41px;
  }
  .early_bottom {
    flex-direction: column;
    gap: 20px;
  }
  .early_message {
    width: 100%;
    font-size: 16px;
    line-height: 1.22;
  }
  .early_form,
  .wpcf7-form {
    width: 100%;
    gap: 40px;
  }
  .wpcf7 {
    width: 100%;
  }
  .early_fields {
    gap: 20px;
  }
  .early_fields_row {
    flex-direction: column;
    gap: 20px;
  }
  .early_btn {
    gap: 11px;
    height: 45px;
  }
  .early_btn span {
    font-size: 14px;
  }
  .early_input {
    padding: 18px 0;
  }
  .early_btn svg {
    width: 15px;
    height: 15px;
  }

  /* ── Footer – 375px ── */
  .footer_section {
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 39px 20px;
  }
  .footer_top {
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .footer_logo {
    width: 202px;
    height: 92px;
  }
  .footer_tagline {
    font-size: 13px;
  }
  .footer_arrow {
    width: 93px;
    height: 93px;
    margin: 0 -2px 0 0;
  }
  .footer_arrow svg {
    width: 100%;
    height: 100%;
  }
  .footer_bottom {
    max-width: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 40px;
  }
  .footer_policy {
    margin: 1px 0 -1px;
  }
  .footer_contacts {
    margin-left: 0;
  }
  .footer_contacts,
  .footer_policy {
    width: 100%;
    gap: 15px;
  }
  .footer_social {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  .footer_copy {
    gap: 13px;
  }
  .footer_contact {
    margin-right: 1px;
  }
  .footer_contact span,
  .footer_policy .footer_contact {
    max-width: calc(100% - 45px);
    font-size: 14px;
    white-space: normal;
  }
  .footer_policy .footer_contact {
    margin-top: 0;
    margin-right: 1px;
  }
  .lightbox__img {
    max-width: 100vw;
    max-height: 100vh;
  }
}
@media (max-width: 800px) and (min-width: 412px) {
  .mobile_menu_nav {
    padding-left: 37px;
    max-width: 392px;
    margin: 0 auto;
    grid-template-columns: unset;
  }
  .mobile_menu_cta {
    width: fit-content;
    margin: 0 auto;
    margin-top: 60px;
  }
  .mobile_menu_item {
    width: 150px;
  }
  /* .sandwich.active .mobile_menu {
    height: calc(100vh - 83px);
  } */
  .mobile_menu_bg {
    height: calc(100vh - 396px);
  }
  .main_screen {
    padding: calc(13.33vw + 88) 5.33vw 10.13vw;
  }
  .parallax_forest,
  .parallax_house {
    background-position: center center;
  }
  .main_screen .main_title {
    width: 86.9vw;
  }
  .main_screen .main_subtitle {
    width: 100%;
    font-size: 5.3vw;
  }
  .main_screen .main_sale_box {
    height: 30vw;
  }
  .main_screen .sale_bottom_box {
    width: 100%;
  }
  .main_screen .sale_title .sale_first_word {
    font-size: 5.04vw;
  }
  .main_screen .sale_title {
    font-size: 3.92vw;
  }
  .main_screen .sale_bottom_text {
    font-size: 3.36vw;
  }
  .philosophy_heading {
    margin: 0 auto;
  }
  .philosophy_traced {
    height: 200px;
  }
  .house_title {
    font-size: 6vw;
  }
  .house_card__name {
    font-size: 5.33vw;
  }
  .house_card__arrow {
    width: 8vw;
    height: 8vw;
  }
  .house_card__dots {
    width: 73.33vw;
  }
  .house_card__dot {
    height: 2px;
  }
  .house_info {
    width: 100%;
  }
  /* .map_bg {
    height: 55.47vw;
  } */
  .map_section {
    position: relative;
    width: 375px;
    margin: 0 auto;
    zoom: calc(100vw / 375px);
    transform-origin: top left;
  }
  .day_active_desc {
    width: 80vw;
  }
  .who_card {
    padding: 20px 20px 10px;
  }
  .footer_social {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 800px) and (min-width: 551px) {
  .day_active_desc {
    width: 70vw;
  }
  .map_pin:hover .map_card {
    transform: translate(-50%, -50%) scale(0.8);
    top: 50%;
    left: 50%;
  }
  .map_header__text {
    width: 270px;
    gap: 7px;
  }
  .map_header__title {
    font-size: 15px;
  }
  .map_header__subtitle {
    font-size: 10px;
  }
  .map_header__body {
    font-size: 10px;
  }
  .map_header__btn {
    padding: 10px 20px;
  }
  .map_header__btn span {
    font-size: 10px;
  }
  .map_header__btn svg {
    width: 11px;
    height: 11px;
  }
  .map_header__desc {
    gap: 5px;
  }
  .map_pin:nth-child(2) {
    top: 60.6%;
  }
  .map_pin:nth-child(3) {
    top: 63.7%;
  }
  .map_pin:nth-child(4) {
    top: 66.5%;
  }
  .map_pin:nth-child(5) {
    top: 71%;
  }
  .map_pin:nth-child(6) {
    top: 76.4%;
  }
}
@media (max-width: 800px) and (min-width: 600px) {
  .map_header__btn {
    transform: scale(0.8);
  }
  .map_pin:hover .map_card {
    transform: translate(-50%, -50%) scale(0.7);
  }
}
@media (max-width: 800px) and (min-width: 450px) {
  .main_screen .main_subtitle {
    font-size: 5vw;
  }
}
@media (max-width: 374px) {
  .map_section {
    width: 375px;
    zoom: calc(100vw / 375px);
    transform-origin: top left;
  }
}
@media (min-width: 1921px) {
  .header {
    max-width: 1920px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    border-bottom-left-radius: 2.08vw;
    border-bottom-right-radius: 2.08vw;
  }
  .header .nav_box {
    max-width: 900px;
  }
  .main_screen,
  .philosophy_wrapper,
  .gallery_section,
  .houses_section,
  .map_section,
  .compare_section,
  .services_section,
  .day_header,
  .who_section,
  .resp_section,
  .faq_section,
  .early_section,
  .footer_section {
    max-width: 1920px;
    margin: 0 auto;
  }
  .gallery_section .gallery_text {
    font-size: 0.833vw;
  }
}
