:root{
  --container: 1600px;
  --container-pad: 40px;

  --header-h: 73px;

  --c-white: #ffffff;
  --c-blue: #2f7df6;
  --c-blue-dark: #102657;
  --c-blue-text: #132958;
  --c-light-blue: #edf5ff;

  --radius-btn: 10px;

  --font-main: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===== Base ===== */

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

html{
  min-height: 100%;
  scroll-behavior: smooth;
}

body{
  min-height: 100%;
  margin: 0;
  font-family: var(--font-main);
  color: var(--c-blue-text);
  background: #ffffff;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select{
  font: inherit;
}

button{
  border: 0;
}

img,
video{
  max-width: 100%;
}

a{
  color: inherit;
}

/* ===== Layout ===== */

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.site-main{
  min-height: 100vh;
}

/* ===== Header ===== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 2px solid #dadada3d;
}

.site-header__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.site-header__left,
.site-header__right{
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header__left{
  justify-content: flex-start;
}

.site-header__right{
  justify-content: flex-end;
}

.site-header__phone{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--c-blue-text);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-logo__img{
  display: block;
  width: 135px;
  height: auto;
}

/* ===== Header buttons ===== */

.header-action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-btn);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.header-action--light{
  color: #2874f0;
  background: var(--c-light-blue);
}

.header-action--blue{
  color: #ffffff;
  background: var(--c-blue);
  padding-left: 17px;
  padding-right: 15px;
}

.header-action__icon{
  position: relative;
  width: 13px;
  height: 10px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.header-action__icon span{
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header-action__icon span:nth-child(2){
  width: 8px;
}

.header-action__chevron{
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

/* ===== Hero ===== */

.hero{
  position: relative;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
  background: #0a2144;
}

.hero--home{
  display: flex;
  align-items: center;
}

.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Затемнение как на макете: читаемый центр, темнее снизу/слева */
.hero__shade{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 28, 52, .18) 0%, rgba(5, 20, 38, .25) 42%, rgba(2, 10, 20, .56) 100%),
    linear-gradient(90deg, rgba(3, 18, 34, .52) 0%, rgba(3, 18, 34, .22) 42%, rgba(3, 18, 34, .18) 100%);
}

.hero__content{
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - var(--header-h));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 54px;
  padding-bottom: 70px;
  text-align: center;
}

.hero__title{
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 4.65vw, 64px);
  line-height: .99;
  font-weight: 700;
}

.hero__tags{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.hero__tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 18px;
  border-radius: 999px;
  color: #142751;
  background: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

/* ===== Responsive ===== */

@media (max-width: 1200px){
  :root{
    --container-pad: 24px;
  }

  .site-header__inner{
    gap: 18px;
  }

  .site-logo__img{
    width: 124px;
  }

  .hero__title{
    max-width: 830px;
  }
}

@media (max-width: 980px){
  :root{
    --header-h: 68px;
    --container-pad: 18px;
  }

  .site-header__inner{
    grid-template-columns: auto 1fr auto;
  }

  .site-logo{
    justify-self: center;
  }

  .site-logo__img{
    width: 112px;
  }

  .site-header__phone{
    display: none;
  }

  .header-action--blue{
    display: none;
  }

  .header-action--callback{
    display: none;
  }

  .hero__content{
    padding-top: 30px;
    padding-bottom: 52px;
  }

  .hero__title{
    max-width: 720px;
    font-size: clamp(38px, 8vw, 58px);
  }

  .hero__tags{
    gap: 12px;
    margin-top: 24px;
  }
}

@media (max-width: 640px){
  :root{
    --header-h: 64px;
    --container-pad: 14px;
  }

  .site-header__inner{
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .header-action{
    height: 34px;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 12px;
  }

  .site-logo__img{
    width: 104px;
  }

  .hero{
    min-height: calc(100svh - var(--header-h));
  }

  .hero__content{
    min-height: calc(100svh - var(--header-h));
    padding-top: 18px;
    padding-bottom: 38px;
  }

  .hero__title{
    max-width: 360px;
    font-size: 42px;
    line-height: 1.02;
  }

  .hero__tags{
    max-width: 330px;
    margin-top: 22px;
    gap: 9px;
  }

  .hero__tag{
    min-height: 28px;
    padding: 0 14px;
    font-size: 11px;
  }
}

@media (max-width: 420px){
  .hero__title{
    font-size: 36px;
  }

  .site-logo__img{
    width: 96px;
  }
}


/* ===== About park ===== */

.about-park{
  padding: 118px 0 100px;
  background: #ffffff;
  color: var(--c-blue-text);
}

.about-park__inner{
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  gap: 92px;
  align-items: start;
}

.about-park__content{
  max-width: 520px;
}

.about-park__title{
  margin: 0 0 32px;
  color: var(--c-blue-text);
  font-size: 52px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: normal;
}

.about-park__text{
  max-width: 470px;
  color: var(--c-blue-text);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 400;
}

.about-park__text p{
  margin: 0;
}

.about-park__text p + p{
  margin-top: 24px;
}

.about-park__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 20px;
}

.about-stat{
  min-height: 197px;
  padding: 30px 24px 26px;
  border-radius: 10px;
  background: #d5f8ef;
  color: var(--c-blue-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.about-stat__value{
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

.about-stat__label{
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
}

.about-stat__line{
  width: 28px;
  height: 2px;
  margin-top: -10px;
  margin-bottom: -10px;
  background: #52a3ff;
  border-radius: 999px;
}

/* ===== About park responsive ===== */

@media (max-width: 1200px){
  .about-park{
    padding: 92px 0 82px;
  }

  .about-park__inner{
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-park__content,
  .about-park__text{
    max-width: 760px;
  }

  .about-park__title{
    font-size: 48px;
  }
}

/* ===== Mobile horizontal stats scroll ===== */

@media (max-width: 760px){
  .about-park__stats{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--container-pad);
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
    margin-left: calc(-1 * var(--container-pad));
    margin-right: calc(-1 * var(--container-pad));
    -webkit-overflow-scrolling: touch;
  }

  .about-park__stats::-webkit-scrollbar{
    display: none;
  }

  .about-park__stats{
    scrollbar-width: none;
  }

  .about-stat{
    flex: 0 0 calc(100vw - var(--container-pad) * 2 - 44px);
    min-height: 86px;
    padding: 16px 18px;
    border-radius: 10px;
    scroll-snap-align: start;
    gap: 10px;
  }

  .about-stat__value{
    font-size: 20px;
  }

  .about-stat__label{
    font-size: 12px;
  }

  .about-stat__line{
    width: 28px;
    height: 2px;
    margin-top: -2px;
    margin-bottom: -2px;
  }
}


/* ===== Location map ===== */

.location-section{
  padding: 38px 0 108px;
  background: #ffffff;
  color: var(--c-blue-text);
}

.location-map{
  position: relative;
  height: 386px;
  overflow: hidden;
  border-radius: 12px;
  background: #e6eef7;
}

.location-map__canvas{
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../img/location-map.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* если подключим настоящую карту, canvas останется тем же контейнером */
.location-map__canvas > ymaps,
.location-map__canvas iframe{
  width: 100% !important;
  height: 100% !important;
}

.location-map__markers{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* заготовки под SVG-логотипы */
.location-marker{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.location-marker svg,
.location-marker img{
  display: block;
  width: 100%;
  height: 100%;
}

.location-marker__placeholder{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(159, 166, 173, .65);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.location-marker--main{
  width: 68px;
  height: 68px;
}

.location-marker--main .location-marker__placeholder{
  background:
    radial-gradient(circle at center, #d7f7da 0 25%, transparent 26%),
    radial-gradient(circle at center, rgba(47, 125, 246, .28) 0 47%, transparent 48%),
    #2f7df6;
  border: 9px solid rgba(47, 125, 246, .9);
}

/* временные позиции, пока не включена координатная расстановка через JS */
.location-marker--main{
  left: 52%;
  top: 49%;
}

.location-marker:nth-child(2){
  left: 47%;
  top: 33%;
}

.location-marker:nth-child(3){
  left: 73%;
  top: 32%;
}

.location-marker:nth-child(4){
  left: 79%;
  top: 70%;
}

.location-marker:nth-child(5){
  left: 36%;
  top: 65%;
}

/* ===== Info card ===== */

.location-card{
  position: absolute;
  left: 26px;
  top: 22px;
  z-index: 3;
  width: 292px;
  min-height: 342px;
  padding: 28px 24px 24px;
  border-radius: 0;
  background: #eaf3ff;
  color: var(--c-blue-text);
}

.location-card__title{
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: normal;
}

.location-card__list{
  display: grid;
  gap: 14px;
}

.location-card__item{
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 23px;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 400;
}

.location-card__dot{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
}

.location-card__dot::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3d86f7;
  transform: translate(-50%, -50%);
}

.location-card__name{
  min-width: 0;
}

.location-card__value{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 43px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.location-card__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 45px;
}

.location-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--c-blue-text);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

/* ===== Location map ===== */

.location-section{
  padding: 38px 0 108px;
  background: #ffffff;
  color: var(--c-blue-text);
}

.location-map{
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 12px;
  background: #e6eef7;
}

.location-map__canvas{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.location-map__canvas > ymaps{
  width: 100% !important;
  height: 100% !important;
}

/* ===== Info card ===== */

.location-card{
  position: absolute;
  left: 32px;
  top: 32px;
  z-index: 3;
  width: 340px;
  min-height: 400px;
  padding: 34px 30px 28px;
  background: #eaf3ff;
  color: var(--c-blue-text);
  pointer-events: auto;
}

.location-card__title{
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: normal;
}

.location-card__list{
  display: grid;
  gap: 18px;
}

.location-card__item{
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 26px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 400;
}

.location-card__dot{
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  flex: 0 0 auto;
}

.location-card__dot::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #3d86f7;
  transform: translate(-50%, -50%);
}

.location-card__name{
  min-width: 0;
}

.location-card__value{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.location-card__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 58px;
}

.location-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--c-blue-text);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

/* ===== Responsive ===== */

@media (max-width: 980px){
  .location-section{
    padding: 20px 0 76px;
  }

  .location-map{
    width: 100%;
    max-width: 360px;
    height: 560px;
    margin: 0 auto;
    border-radius: 10px;
  }

  .location-card{
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 12px;
    width: auto;
    min-height: 280px;
    padding: 24px 22px 22px;
  }

  .location-card__title{
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.25;
  }

  .location-card__list{
    gap: 15px;
  }

  .location-card__item{
    grid-template-columns: 26px 1fr auto;
    gap: 12px;
    min-height: 26px;
    font-size: 12px;
  }

  .location-card__value{
    min-width: 48px;
    height: 26px;
    font-size: 11px;
  }

  .location-card__actions{
    gap: 7px;
    margin-top: 34px;
  }

  .location-card__btn{
    min-height: 34px;
    font-size: 12px;
  }
}

@media (max-width: 420px){
  .location-map{
    max-width: none;
    height: 560px;
  }

  .location-card{
    left: 18px;
    right: 18px;
  }
}


/* ===== Objects section ===== */

.objects-section{
  padding: 68px 0 78px;
  background: #f4f9ff;
  color: var(--c-blue-text);
}

.objects-section__title{
  margin: 0 0 32px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: normal;
}

/* ===== Filter ===== */

.objects-filter{
  display: grid;
  grid-template-columns: 240px 140px minmax(190px, 1fr) minmax(190px, 1fr) minmax(190px, 1fr) 120px;
  gap: 22px;
  align-items: end;
  padding: 28px 32px 30px;
  border-radius: 11px;
  background: #ffffff;
}

.objects-filter__label{
  margin-bottom: 9px;
  color: #8391a8;
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
}

.objects-select{
  width: 100%;
  height: 41px;
  padding: 0 15px;
  border-radius: 10px;
  background: #f3f8ff;
  color: var(--c-blue-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: default;
}

.objects-select__chevron{
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: .65;
  transform: translateY(-2px) rotate(45deg);
  flex: 0 0 auto;
}

.objects-floor{
  display: flex;
  gap: 8px;
}

.objects-floor button{
  width: 41px;
  height: 41px;
  border-radius: 10px;
  background: #eaf3ff;
  color: #2f7df6;
  font-size: 14px;
  font-weight: 700;
  cursor: default;
}

.objects-range{
  height: 41px;
  padding: 8px 14px 0;
  border-radius: 10px;
  background: #f3f8ff;
}

.objects-range__values{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: #718097;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.objects-range__values span:last-child{
  text-align: right;
}

.objects-range__values b{
  color: var(--c-blue-text);
  font-weight: 700;
}

.objects-range__track{
  position: relative;
  height: 13px;
  margin-top: 5px;
}

.objects-range__track::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 1px;
  background: #142751;
  opacity: .55;
}

.objects-range__track::after,
.objects-range__track span::after{
  content: "";
  position: absolute;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #142751;
}

.objects-range__track::after{
  left: 0;
}

.objects-range__track span::after{
  right: 0;
}

.objects-reset{
  height: 41px;
  padding: 0 17px;
  border-radius: 10px;
  background: #eaf3ff;
  color: #2f7df6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.objects-reset__icon{
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  position: relative;
}

.objects-reset__icon::after{
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 5px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(25deg);
}

/* ===== Toolbar ===== */

.objects-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 34px 0 30px;
}

.objects-sort{
  width: 270px;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: #ffffff;
  color: #1b2d57;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: default;
}

.objects-sort__icon{
  color: #8a97ad;
  font-size: 17px;
  line-height: 1;
}

.objects-toggle{
  height: 40px;
  padding: 0 17px;
  border-radius: 10px;
  background: #ffffff;
  color: #1b2d57;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: default;
  user-select: none;
}

.objects-toggle input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.objects-toggle__fake{
  position: relative;
  width: 22px;
  height: 14px;
  border-radius: 999px;
  background: #34d9a6;
}

.objects-toggle__fake::after{
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

/* ===== Cards ===== */

.objects-list{
  display: grid;
  gap: 32px;
}

.objects-card{
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr) 280px 168px;
  align-items: center;
  gap: 48px;
  min-height: 150px;
  padding: 20px 40px 20px 22px;
  border-radius: 9px;
  background: #ffffff;
}

.objects-card.is-hidden{
  display: none;
}

.objects-card__plan{
  width: 112px;
  height: 112px;
  border-radius: 2px;
  background: #f1f7ff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.objects-card__plan img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.objects-card__plan-empty{
  color: #8a97ad;
  font-size: 12px;
}

.objects-card__main{
  min-width: 0;
}

.objects-card__title{
  margin: 0 0 28px;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

.objects-card__params{
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 14px 34px;
}

.objects-param{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 16px;
  color: #6f7d96;
  font-size: 13px;
  line-height: 1.1;
}

.objects-param span{
  white-space: nowrap;
}

.objects-param b{
  color: var(--c-blue-text);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.objects-card__price{
  min-height: 108px;
  padding-left: 55px;
  border-left: 1px solid #dce6f2;
}

.objects-card__price-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.objects-card__price-head h4{
  margin: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

.objects-card__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.objects-card__badge--green{
  background: #35d69f;
  color: #ffffff;
}

.objects-card__badge--violet{
  background: #eee8ff;
  color: #1b2d57;
}

.objects-card__badge--gray{
  background: #edf1f6;
  color: #6f7d96;
}

.objects-card__price-list{
  display: grid;
  gap: 11px;
}

.objects-card__price-list div{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1;
}

.objects-card__price-list span{
  color: #6f7d96;
}

.objects-card__price-list b{
  color: var(--c-blue-text);
  font-weight: 700;
}

.objects-card__actions{
  display: grid;
  justify-items: center;
  gap: 22px;
}

.objects-card__reserve{
  width: 142px;
  height: 40px;
  border-radius: 10px;
  background: #eaf3ff;
  color: #2f7df6;
  font-size: 13px;
  font-weight: 700;
  cursor: default;
}

.objects-card__more{
  background: transparent;
  color: #151515;
  font-size: 13px;
  font-weight: 700;
  cursor: default;
}

.objects-empty{
  padding: 28px;
  border-radius: 10px;
  background: #ffffff;
  color: #6f7d96;
  font-size: 15px;
}

.objects-more{
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.objects-more__btn{
  height: 40px;
  min-width: 132px;
  padding: 0 24px;
  border-radius: 10px;
  background: #2f7df6;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* ===== Objects mobile ===== */

@media (max-width: 1200px){
  .objects-filter{
    grid-template-columns: 1fr 1fr;
  }

  .objects-card{
    grid-template-columns: 110px 1fr;
    gap: 24px;
  }

  .objects-card__price{
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .objects-card__actions{
    grid-column: 2;
    display: flex;
    justify-content: flex-start;
  }
}

@media (max-width: 760px){
  .objects-section{
    padding: 34px 0 56px;
  }

  .objects-section__title{
    max-width: 230px;
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.02;
  }

  .objects-filter{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 12px 16px;
    border-radius: 9px;
  }

  .objects-filter__label{
    margin-bottom: 9px;
    font-size: 10px;
  }

  .objects-select,
  .objects-reset{
    height: 34px;
    font-size: 11px;
  }

  .objects-floor{
    gap: 6px;
  }

  .objects-floor button{
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 12px;
  }

  .objects-range{
    height: 43px;
    padding: 8px 12px 0;
  }

  .objects-range__values{
    font-size: 11px;
  }

  .objects-reset{
    width: 100%;
  }

  .objects-toolbar{
    display: grid;
    gap: 10px;
    margin: 12px 0;
  }

  .objects-sort,
  .objects-toggle{
    width: 100%;
    height: 34px;
    border-radius: 8px;
    font-size: 11px;
  }

  .objects-toggle{
    justify-content: flex-start;
  }

  .objects-list{
    gap: 12px;
  }

  .objects-card{
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 10px 10px 14px;
    border-radius: 9px;
  }

  .objects-card__plan{
    width: 100%;
    height: 126px;
    margin-bottom: 17px;
    border-radius: 2px;
  }

  .objects-card__title{
    margin-bottom: 12px;
    font-size: 16px;
  }

  .objects-card__params{
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .objects-param{
    grid-template-columns: 1fr auto;
    gap: 12px;
    font-size: 10px;
    line-height: 1.1;
  }

  .objects-param b{
    font-size: 10px;
  }

  .objects-card__price{
    grid-column: auto;
    min-height: 0;
    margin-top: 12px;
    padding-left: 0;
    border-left: 0;
  }

  .objects-card__price-head{
    gap: 9px;
    margin-bottom: 10px;
  }

  .objects-card__price-head h4{
    font-size: 16px;
  }

  .objects-card__badge{
    min-height: 16px;
    padding: 0 7px;
    font-size: 8px;
  }

  .objects-card__price-list{
    gap: 7px;
  }

  .objects-card__price-list div{
    grid-template-columns: 1fr auto;
    gap: 12px;
    font-size: 10px;
  }

  .objects-card__actions{
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
  }

  .objects-card__reserve{
    order: 2;
    width: 102px;
    height: 34px;
    border-radius: 8px;
    font-size: 11px;
  }

  .objects-card__more{
    order: 1;
    justify-self: center;
    font-size: 11px;
  }

  .objects-more{
    margin-top: 26px;
  }

  .objects-more__btn{
    height: 36px;
    min-width: 120px;
    border-radius: 9px;
    font-size: 12px;
  }
}




.objects-select.is-disabled{
  cursor: default;
  opacity: 1;
}

.objects-select:disabled{
  color: var(--c-blue-text);
}

.objects-floor button{
  transition: background .15s ease, color .15s ease;
  cursor: pointer;
}

.objects-floor button.is-active{
  background: #2f7df6;
  color: #ffffff;
}

.objects-range{
  position: relative;
}

.objects-range__slider{
  position: relative;
  height: 14px;
  margin-top: 15px;
}

.objects-range__line{
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  height: 1px;
  background: rgba(20, 39, 81, .4);
  pointer-events: none;
}

.objects-range__line span{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #142751;
	margin-bottom: 10px;
}

.objects-range input[type="range"]{
  position: absolute;
  left: -2px;
  right: -2px;
  top: 0;
  width: calc(100% + 4px);
  height: 14px;
  margin: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  z-index: 2;
}

.objects-range input[type="range"]::-webkit-slider-thumb{
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #142751;
  cursor: pointer;
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
}

.objects-range input[type="range"]::-moz-range-thumb{
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #142751;
  cursor: pointer;
  pointer-events: auto;
}

.objects-range input[type="range"]::-webkit-slider-runnable-track{
  height: 14px;
  background: transparent;
}

.objects-range input[type="range"]::-moz-range-track{
  height: 14px;
  background: transparent;
}

.objects-card.is-filtered-hidden{
  display: none;
}

.objects-card.is-hidden{
  display: none;
}





/* ===== CTA + Benefits ===== */

.home-benefits-section{
  padding: 28px 0 66px;
  background: #f4f9ff;
  color: var(--c-blue-text);
}

.home-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 103px;
  padding: 24px 28px 24px 42px;
  border-radius: 12px;
  background: #d5f8ef;
}

.home-cta__text{
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.home-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  background: #2f7df6;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  cursor: default;
}

.home-benefits{
  margin-top: 126px;
}

.home-benefits__title{
  margin: 0 0 36px;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

.home-benefits__cards{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-benefit-card{
  min-height: 194px;
  padding: 34px 28px 28px;
  border-radius: 12px;
  background: #ffffff;
}

.home-benefit-card__title{
  margin: 0 0 18px;
  font-size: 29px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: normal;
}

.home-benefit-card__text{
  max-width: 260px;
  margin: 0;
  font-size: 18px;
  line-height: 1.32;
  font-weight: 400;
}

/* ===== Mobile ===== */

@media (max-width: 980px){
  .home-benefits-section{
    padding: 20px 0 50px;
  }

  .home-cta{
    min-height: 130px;
    padding: 24px 18px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    text-align: center;
    border-radius: 10px;
  }

  .home-cta__text{
    max-width: 260px;
    font-size: 16px;
    line-height: 1.15;
  }

  .home-cta__btn{
    min-width: 122px;
    height: 35px;
    padding: 0 18px;
    border-radius: 9px;
    font-size: 12px;
  }

  .home-benefits{
    margin-top: 58px;
  }

  .home-benefits__title{
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.05;
  }

  .home-benefits__cards{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--container-pad);
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
    margin-left: calc(-1 * var(--container-pad));
    margin-right: calc(-1 * var(--container-pad));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-benefits__cards::-webkit-scrollbar{
    display: none;
  }

  .home-benefit-card{
    flex: 0 0 calc(100vw - var(--container-pad) * 2 - 76px);
    min-height: 156px;
    padding: 18px 18px 20px;
    border-radius: 10px;
    scroll-snap-align: start;
  }

  .home-benefit-card__title{
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.05;
  }

  .home-benefit-card__text{
    max-width: none;
    font-size: 15px;
    line-height: 1.32;
  }
}

@media (max-width: 420px){
  .home-benefit-card{
    flex-basis: calc(100vw - var(--container-pad) * 2 - 84px);
  }
}












/* ===== Gallery section ===== */

.home-gallery-section{
  padding: 26px 0 38px;
  background: #f4f9ff;
  color: var(--c-blue-text);
}

.home-gallery{
  width: 100%;
}

.home-gallery__viewport{
  position: relative;
  height: 630px;
  overflow: hidden;
  border-radius: 8px;
  background: #e6eef7;
}

.home-gallery__track{
  position: relative;
  width: 100%;
  height: 100%;
}

.home-gallery__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.home-gallery__slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

.home-gallery__slide img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gallery__arrow{
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 35px;
  height: 35px;
  border-radius: 9px;
  background: #eaf3ff;
  color: #2f7df6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-50%);
  cursor: pointer;
}

.home-gallery__arrow--prev{
  left: 32px;
}

.home-gallery__arrow--next{
  right: 32px;
}

.home-gallery-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  margin-top: 24px;
  padding: 0 18px 0 18px;
  border-radius: 8px;
  background: #d5f8ef;
  color: var(--c-blue-text);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.home-gallery-cta__icon{
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #2f7df6;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  flex: 0 0 auto;
}

/* ===== Purchase section ===== */

.purchase-section{
  padding: 36px 0 72px;
  background: #ffffff;
  color: var(--c-blue-text);
}

.purchase-section__title{
  margin: 0 0 32px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: normal;
}

.purchase-cards{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.purchase-card{
  min-height: 265px;
  height: 100%;
  padding: 28px 26px 26px;
  border-radius: 8px;
  background: #d5f8ef;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.purchase-card__icon{
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  object-fit: contain;
}

.purchase-card__title{
  margin: 0 0 18px;
  color: var(--c-blue-text);
  font-size: 22px;
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: normal;
}

.purchase-card__text{
  max-width: 255px;
  margin: auto 0 0;
  color: var(--c-blue-text);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
}

/* ===== Gallery + purchase mobile ===== */

@media (max-width: 980px){
  .home-gallery-section{
    padding: 18px 0 30px;
  }

  .home-gallery__viewport{
    height: 188px;
    border-radius: 8px;
  }

  .home-gallery__arrow{
    width: 25px;
    height: 25px;
    border-radius: 7px;
    font-size: 18px;
  }

  .home-gallery__arrow--prev{
    left: 9px;
  }

  .home-gallery__arrow--next{
    right: 9px;
  }

  .home-gallery-cta{
    min-height: 52px;
    margin-top: 10px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 12px;
  }

  .home-gallery-cta__icon{
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 19px;
  }

  .purchase-section{
    padding: 30px 0 50px;
  }

  .purchase-section__title{
    max-width: 310px;
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.03;
  }

  .purchase-cards{
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--container-pad);
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
    margin-left: calc(-1 * var(--container-pad));
    margin-right: calc(-1 * var(--container-pad));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .purchase-cards::-webkit-scrollbar{
    display: none;
  }

  .purchase-card{
    flex: 0 0 calc(100vw - var(--container-pad) * 2 - 64px);
    min-height: 178px;
    height: 178px;
    padding: 18px 16px 16px;
    border-radius: 7px;
    scroll-snap-align: start;
  }

  .purchase-card__icon{
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
  }

  .purchase-card__title{
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.02;
  }

  .purchase-card__text{
    max-width: none;
    font-size: 10px;
    line-height: 1.3;
  }
}

@media (max-width: 420px){
  .purchase-card{
    flex-basis: calc(100vw - var(--container-pad) * 2 - 58px);
  }
}







/* ===== Sales office ===== */

.sales-office-section{
  padding: 42px 0 74px;
  background: #ffffff;
  color: var(--c-blue-text);
}

.sales-office{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.sales-office__card{
  min-height: 310px;
  padding: 36px 34px 32px;
  border-radius: 8px;
  background: #eaf3ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sales-office__title{
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--c-blue-text);
  font-size: 38px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: normal;
}

.sales-office__info{
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
  color: #6f7d96;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 400;
}

.sales-office__info p{
  margin: 0;
}

.sales-office__phone{
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  color: var(--c-blue-text);
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.sales-office__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: auto;
}

.sales-office__btn{
  min-height: 39px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  cursor: default;
}

.sales-office__btn--white{
  background: #ffffff;
  color: #151515;
}

.sales-office__btn--blue{
  background: #2f7df6;
  color: #ffffff;
}

.sales-office__map{
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 0;
  background: #e6eef7;
  border-radius: 8px;
}

.sales-office__map-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sales-office__map-canvas > ymaps{
  width: 100% !important;
  height: 100% !important;
}

/* ===== Sales office mobile ===== */

@media (max-width: 980px){
  .sales-office-section{
    padding: 28px 0 54px;
  }

  .sales-office{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sales-office__card{
    min-height: 0;
    padding: 18px 14px 18px;
    border-radius: 8px;
  }

  .sales-office__title{
    max-width: 250px;
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 1.08;
  }

  .sales-office__info{
    gap: 8px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.3;
  }

  .sales-office__phone{
    margin-bottom: 28px;
    font-size: 18px;
  }

  .sales-office__actions{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sales-office__btn{
    min-height: 39px;
    border-radius: 8px;
    font-size: 14px;
  }

  .sales-office__map{
    min-height: 300px;
    border-radius: 7px;
  }
}

@media (max-width: 420px){
  .sales-office__map{
    min-height: 290px;
  }
}




/* ===== Site menu sidebar ===== */

body.is-menu-open{
  overflow: hidden;
}

.site-menu{
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.site-menu.is-open{
  pointer-events: auto;
}

.site-menu__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .34);
  opacity: 0;
  transition: opacity .25s ease;
}

.site-menu.is-open .site-menu__overlay{
  opacity: 1;
}

.site-menu__panel{
  position: absolute;
  left: 0;
  top: 0;
  width: min(66.666vw, 1180px);
  height: 100%;
  background: #ffffff;
  color: var(--c-blue-text);
  transform: translateX(-100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
}

.site-menu.is-open .site-menu__panel{
  transform: translateX(0);
}

.site-menu__desktop-close{
  position: absolute;
  left: calc(100% + 20px);
  top: 18px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #ffffff;
  color: #222;
  font-size: 31px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
}

.site-menu__mobile-head{
  display: none;
}

.site-menu__desktop-head{
  height: 94px;
  padding: 0 104px;
  border-bottom: 1px solid #e5e9f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-menu__home{
  color: var(--c-blue-text);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.site-menu__body{
  flex: 1;
  padding: 54px 104px 58px;
  display: flex;
  flex-direction: column;
}

.site-menu__main-nav{
  display: grid;
  gap: 3px;
  max-width: 560px;
}

.site-menu__main-nav a{
  width: fit-content;
  color: var(--c-blue-text);
  font-size: 47px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: normal;
  text-decoration: none;
}

.site-menu__main-nav span{
  display: inline-block;
  margin-left: 8px;
  color: #738198;
  font-weight: 400;
}

.site-menu__bottom{
  margin-top: auto;
  padding-top: 70px;
  border-top: 1px solid #d8dde6;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 210px;
  align-items: start;
}

.site-menu__sub-nav{
  display: grid;
  gap: 10px;
}

.site-menu__sub-nav a{
  color: #405174;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 400;
  text-decoration: none;
}

.site-menu__contacts{
  display: grid;
  justify-items: start;
}

.site-menu__phone{
  margin-bottom: 13px;
  color: var(--c-blue-text);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.site-menu__email{
  margin-bottom: 52px;
  color: #8a95aa;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}

.site-menu__actions{
  display: flex;
  gap: 12px;
}

.site-menu__action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-menu__action--blue{
  background: #2f7df6;
  color: #ffffff;
}

.site-menu__action--light{
  background: #eaf3ff;
  color: #2f7df6;
}

.site-menu__action-icon{
  font-size: 17px;
  line-height: 1;
}

/* ===== Site menu mobile ===== */

@media (max-width: 980px){
  .site-menu__overlay{
    display: none;
  }

  .site-menu__panel{
    width: 100%;
    max-width: none;
    transform: translateX(-100%);
  }

  .site-menu__desktop-close,
  .site-menu__desktop-head{
    display: none;
  }

  .site-menu__mobile-head{
    height: 91px;
    padding: 0 22px;
    border-bottom: 1px solid #e5e9f0;
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
    gap: 14px;
  }

  .site-menu__mobile-btn{
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: #eaf3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .site-menu__mobile-btn img{
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .site-menu__mobile-logo{
    justify-self: center;
    display: inline-flex;
    width: 160px;
    text-decoration: none;
  }

  .site-menu__mobile-logo img{
    display: block;
    width: 100%;
    height: auto;
  }

  .site-menu__body{
    padding: 23px 22px 22px;
    overflow-y: auto;
  }

  .site-menu__main-nav{
    gap: 8px;
    max-width: none;
  }

  .site-menu__main-nav a{
    font-size: 31px;
    line-height: 1.17;
  }

  .site-menu__main-nav span{
    margin-left: 7px;
  }

  .site-menu__bottom{
    margin-top: 42px;
    padding-top: 37px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-menu__sub-nav{
    gap: 14px;
  }

  .site-menu__sub-nav a{
    font-size: 16px;
    line-height: 1.1;
  }

  .site-menu__phone{
    margin-bottom: 14px;
    font-size: 20px;
  }

  .site-menu__email{
    margin-bottom: 28px;
    font-size: 16px;
  }

  .site-menu__actions{
    display: grid;
    gap: 13px;
  }

  .site-menu__action{
    width: fit-content;
    min-width: 198px;
    height: 43px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 17px;
  }

  .site-menu__action--light{
    min-width: 243px;
  }
}

@media (max-width: 420px){
  .site-menu__mobile-head{
    padding-left: 15px;
    padding-right: 15px;
    grid-template-columns: 52px 1fr 52px;
  }

  .site-menu__mobile-logo{
    width: 154px;
  }

  .site-menu__body{
    padding-left: 22px;
    padding-right: 17px;
  }

  .site-menu__main-nav a{
    font-size: 30px;
  }
}






/* ===== Footer ===== */

.site-footer{
  padding: 84px 0 34px;
  background: #ffffff;
  color: var(--c-blue-text);
}

.site-footer__top{
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr 180px;
  gap: 110px;
  min-height: 315px;
  padding-bottom: 48px;
  border-bottom: 1px solid #d8dde6;
}

.site-footer__brand{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo{
  display: inline-flex;
  width: 164px;
  margin-bottom: auto;
  text-decoration: none;
}

.site-footer__logo img{
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__contacts{
  display: grid;
  gap: 9px;
  margin-bottom: 27px;
}

.site-footer__phone{
  color: var(--c-blue-text);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}

.site-footer__mail{
  color: #77849b;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}

.site-footer__write{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: #eaf3ff;
  color: #2f7df6;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__nav{
  display: grid;
  grid-template-columns: 160px 210px;
  gap: 86px;
  align-self: start;
  padding-top: 4px;
}

.site-footer__menu{
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu a{
  color: var(--c-blue-text);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  text-decoration: none;
}

.site-footer__menu a:hover{
  color: #2f7df6;
}

.site-footer__socials{
  display: flex;
  align-items: flex-end;
  gap: 9px;
  align-self: end;
  justify-self: start;
}

.site-footer__social{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eaf3ff;
  text-decoration: none;
}

.site-footer__social img{
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.site-footer__up{
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eaf3ff;
  color: var(--c-blue-text);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.site-footer__bottom{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding-top: 47px;
  color: #7d8aa0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.site-footer__bottom a{
  color: inherit;
  text-decoration: none;
}

.site-footer__bottom a:nth-child(2){
  justify-self: center;
}

.site-footer__bottom a:nth-child(3){
  justify-self: end;
}

/* ===== Footer mobile ===== */

@media (max-width: 980px){
  .site-footer{
    padding: 34px 0 26px;
  }

  .site-footer__top{
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding-bottom: 24px;
  }

  .site-footer__brand{
    display: contents;
  }

  .site-footer__logo{
    width: 178px;
    margin-bottom: 23px;
  }

  .site-footer__contacts{
    gap: 14px;
    margin-bottom: 36px;
  }

  .site-footer__phone{
    font-size: 18px;
  }

  .site-footer__mail{
    font-size: 18px;
  }

  .site-footer__write{
    width: fit-content;
    min-width: 164px;
    height: 47px;
    margin-bottom: 32px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 18px;
  }

  .site-footer__nav{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 0;
    margin-bottom: 31px;
  }

  .site-footer__menu{
    gap: 16px;
  }

  .site-footer__menu a{
    font-size: 18px;
    line-height: 1.05;
  }

  .site-footer__socials{
    align-self: auto;
    justify-self: start;
    gap: 14px;
    margin-bottom: 24px;
  }

  .site-footer__social{
    width: 47px;
    height: 47px;
    border-radius: 10px;
  }

  .site-footer__social img{
    width: 22px;
    height: 22px;
  }

  .site-footer__up{
    display: none;
  }

  .site-footer__bottom{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 23px;
    font-size: 16px;
    line-height: 1.2;
  }

  .site-footer__bottom a:nth-child(2),
  .site-footer__bottom a:nth-child(3){
    justify-self: start;
  }
}

@media (max-width: 420px){
  .site-footer__nav{
    gap: 24px;
  }

  .site-footer__menu a{
    font-size: 17px;
  }
}

.site-menu__desktop-close{
  opacity: 0;
  pointer-events: none;
}

.site-menu.is-open .site-menu__desktop-close{
  opacity: 1;
  pointer-events: auto;
}









/* ===== Mobile header like mockup ===== */

.site-header__mobile-phone{
  display: none;
}

/* третий штрих меню по умолчанию скрыт на ПК */
.header-action__icon span:nth-child(3){
  display: none;
}

@media (max-width: 980px){

  :root{
    --header-h: 137px;
    --container-pad: 31px;
  }

  .site-header{
    height: var(--header-h);
    background: #ffffff;
    border-bottom: 1px solid #d8dde6;
  }

  .site-header__inner{
    display: grid;
    grid-template-columns: 82px 1fr 82px;
    align-items: center;
    gap: 14px;
    height: 100%;
  }

  .site-header__left,
  .site-header__right{
    display: flex;
    align-items: center;
    gap: 0;
  }

  .site-header__left{
    justify-content: flex-start;
  }

  .site-header__right{
    justify-content: flex-end;
  }

  .header-action--blue,
  .site-header__phone,
  .header-action--callback{
    display: none;
  }

  .header-action--menu{
    width: 82px;
    height: 82px;
    padding: 0;
    border-radius: 18px;
    background: #eaf3ff;
  }

  .header-action--menu .header-action__text{
    display: none;
  }

  .header-action--menu .header-action__icon{
    width: 30px;
    height: 25px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
  }

  .header-action--menu .header-action__icon span{
    display: block;
    height: 3px;
    border-radius: 999px;
    background: #2f7df6;
  }

  .header-action--menu .header-action__icon span:nth-child(1){
    width: 24px;
  }

  .header-action--menu .header-action__icon span:nth-child(2){
    width: 24px;
  }

  .header-action--menu .header-action__icon span:nth-child(3){
    width: 15px;
  }

  .site-logo{
    justify-self: center;
  }

  .site-logo__img{
    display: block;
    width: 245px;
    height: auto;
  }

  .site-header__mobile-phone{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 18px;
    background: #eaf3ff;
    text-decoration: none;
  }

  .site-header__mobile-phone img{
    display: block;
    width: 35px;
    height: 35px;
    object-fit: contain;
  }
}

@media (max-width: 520px){

  :root{
    --header-h: 137px;
    --container-pad: 24px;
  }

  .site-header__inner{
    grid-template-columns: 82px 1fr 82px;
    gap: 12px;
  }

  .site-logo__img{
    width: 245px;
  }
}

@media (max-width: 420px){

  :root{
    --header-h: 137px;
    --container-pad: 24px;
  }

  .site-header__inner{
    grid-template-columns: 82px 1fr 82px;
    gap: 10px;
  }

  .header-action--menu,
  .site-header__mobile-phone{
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }

  .site-logo__img{
    width: 245px;
  }
}

@media (max-width: 380px){

  :root{
    --header-h: 112px;
    --container-pad: 16px;
  }

  .site-header__inner{
    grid-template-columns: 64px 1fr 64px;
  }

  .header-action--menu,
  .site-header__mobile-phone{
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }

  .site-logo__img{
    width: 190px;
  }

  .site-header__mobile-phone img{
    width: 28px;
    height: 28px;
  }
}


/* ===== Mobile header compact like mobile menu ===== */

@media (max-width: 980px){
  :root{
    --header-h: 91px;
    --container-pad: 22px;
  }

  .site-header__inner{
    grid-template-columns: 52px 1fr 52px;
    gap: 14px;
  }

  .header-action--menu,
  .site-header__mobile-phone{
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .header-action--menu .header-action__icon{
    width: 24px;
    height: 20px;
    gap: 5px;
  }

  .header-action--menu .header-action__icon span{
    height: 2.5px;
  }

  .header-action--menu .header-action__icon span:nth-child(1){
    width: 22px;
  }

  .header-action--menu .header-action__icon span:nth-child(2){
    width: 22px;
  }

  .header-action--menu .header-action__icon span:nth-child(3){
    width: 15px;
  }

  .site-header__mobile-phone img{
    width: 24px;
    height: 24px;
  }

  .site-logo__img{
    width: 160px;
  }
}

@media (max-width: 380px){
  :root{
    --header-h: 86px;
    --container-pad: 15px;
  }

  .site-header__inner{
    grid-template-columns: 50px 1fr 50px;
    gap: 10px;
  }

  .header-action--menu,
  .site-header__mobile-phone{
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .site-logo__img{
    width: 150px;
  }
}





/* ===== Callback modal ===== */

.callback-modal{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.callback-modal.is-open{
  display: flex;
}

.callback-modal__layer{
  position: absolute;
  inset: 0;
  background: transparent;
}

.callback-modal__window{
  position: relative;
  z-index: 1;
  width: min(480px, calc(100vw - 40px));
  border-radius: 10px;
  padding-bottom: 40px;
  background: #ffffff;
  color: var(--c-blue-text);
  box-shadow: 0 20px 70px rgba(19, 41, 88, .16);
}

.callback-modal__close{
  position: absolute;
  top: 31px;
  right: 31px;
  width: 34px;
  height: 34px;
  background: transparent;
  cursor: pointer;
}

.callback-modal__close span{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #a6a6a6;
}

.callback-modal__close span:first-child{
  transform: translate(-50%, -50%) rotate(45deg);
}

.callback-modal__close span:last-child{
  transform: translate(-50%, -50%) rotate(-45deg);
}

.callback-modal__content{
  width: 100%;
  max-width: 354px;
  margin: 0 auto;
  padding-top: 72px;
  text-align: center;
}

.callback-modal__title{
  margin: 0 0 21px;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

.callback-modal__subtitle{
  margin: 0 0 71px;
  color: #8895aa;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
}

.callback-form{
  display: grid;
  gap: 24px;
  text-align: left;
}

.callback-form__field{
  display: grid;
  gap: 10px;
}

.callback-form__field label{
  color: #7f8ca3;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.callback-form__field input{
  width: 100%;
  height: 51px;
  padding: 0 20px;
  border: 0;
  outline: none;
  border-radius: 10px;
  background: #f3f8ff;
  color: var(--c-blue-text);
  font-size: 14px;
  font-weight: 500;
}

.callback-form__field input::placeholder{
  color: #9aa7ba;
}

.callback-form__submit{
  width: 100%;
  height: 52px;
  margin-top: 10px;
  border-radius: 10px;
  background: #2f7df6;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.callback-form__submit:disabled{
  opacity: .65;
  cursor: wait;
}

.callback-form__message{
  display: none;
  margin-top: -4px;
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.callback-form__message.is-visible{
  display: block;
}

.callback-form__message.is-success{
  color: #21b886;
}

.callback-form__message.is-error{
  color: #e24545;
}

.callback-form__agree{
  margin: 7px 0 0;
  color: #a0abbc;
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
}

/* ===== Callback modal mobile ===== */

@media (max-width: 760px){
  .callback-modal{
    align-items: flex-start;
    padding: 4px;
  }

  .callback-modal__window{
    width: 100%;
    min-height: 481px;
    border-radius: 10px;
  }

  .callback-modal__close{
    top: 13px;
    right: 13px;
    width: 25px;
    height: 25px;
  }

  .callback-modal__close span{
    width: 25px;
    height: 2px;
  }

  .callback-modal__content{
    max-width: none;
    padding: 33px 15px 28px;
  }

  .callback-modal__title{
    margin-bottom: 20px;
    font-size: 26px;
  }

  .callback-modal__subtitle{
    max-width: 276px;
    margin: 0 auto 32px;
    font-size: 14px;
    line-height: 1.25;
  }

  .callback-modal__subtitle br{
    display: none;
  }

  .callback-form{
    gap: 21px;
  }

  .callback-form__field{
    gap: 9px;
  }

  .callback-form__field label{
    font-size: 11px;
  }

  .callback-form__field input{
    height: 32px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 12px;
  }

  .callback-form__submit{
    height: 41px;
    margin-top: 13px;
    border-radius: 9px;
    font-size: 13px;
  }

  .callback-form__agree{
    max-width: 280px;
    margin: 10px auto 0;
    font-size: 12px;
    line-height: 1.3;
  }

  .callback-form__agree br{
    display: none;
  }
}







/* ===== Object detail page ===== */

.object-detail-page{
  background: #ffffff;
  color: var(--c-blue-text);
}

.object-detail{
  padding: 38px 0 76px;
}

.object-detail__breadcrumbs{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #8793a8;
  font-size: 12px;
  line-height: 1;
}

.object-detail__breadcrumbs a{
  color: inherit;
  text-decoration: none;
}

.object-detail__page-title{
  margin: 0 0 36px;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

.object-detail__grid{
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 12px;
  align-items: stretch;
}

.object-detail__info,
.object-detail__media{
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  background: #ffffff;
}

.object-detail__info{
  min-height: 400px;
  padding: 26px 26px 24px;
  position: relative;
}

.object-detail__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.object-detail__number{
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.object-detail__price-row{
  display: flex;
  align-items: center;
  gap: 10px;
}

.object-detail__price{
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.object-detail__price-meter{
  margin-top: 8px;
  color: #8793a8;
  font-size: 12px;
  line-height: 1;
}

.object-detail__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.object-detail__badge--green{
  background: #35d69f;
  color: #ffffff;
}

.object-detail__badge--violet{
  background: #eee8ff;
  color: var(--c-blue-text);
}

.object-detail__badge--gray{
  background: #edf1f6;
  color: #6f7d96;
}

.object-detail__icons{
  display: flex;
  gap: 8px;
}

.object-detail__icon-btn{
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #eaf3ff;
  color: #2f7df6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.object-detail__divider{
  width: 100%;
  height: 1px;
  margin: 22px 0 22px;
  background: #e2e8f1;
}

.object-detail__divider--bottom{
  margin-top: 20px;
  margin-bottom: 20px;
}

.object-detail__params{
  display: grid;
  gap: 7px;
}

.object-detail__param{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  font-size: 12px;
  line-height: 1.1;
}

.object-detail__param span{
  color: #6f7d96;
}

.object-detail__param b{
  color: var(--c-blue-text);
  font-weight: 700;
  white-space: nowrap;
}

.object-detail__all{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  padding: 0;
  background: transparent;
  color: var(--c-blue-text);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  cursor: default;
}

.object-detail__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.object-detail__tags span{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  background: #f3f8ff;
  color: var(--c-blue-text);
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
}

.object-detail__actions{
  display: grid;
  gap: 8px;
}

.object-detail__btn{
  height: 41px;
  border-radius: 9px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.object-detail__btn--blue{
  background: #2f7df6;
  color: #ffffff;
}

.object-detail__btn--light{
  background: #eaf3ff;
  color: #2f7df6;
}

.object-detail__copy-message{
  position: absolute;
  right: 26px;
  bottom: 74px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--c-blue-text);
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.object-detail__copy-message.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== Media block ===== */

.object-detail__media{
  min-height: 400px;
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
}

.object-detail__media-frame{
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 3px;
  background: #e6eef7;
}

.object-detail__media-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.object-detail__media-overlay{
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(255, 255, 255, .78);
  display: grid;
  gap: 6px;
  justify-items: center;
  font-size: 12px;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.object-detail__media-icon{
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.object-detail__tabs{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.object-detail__tab{
  min-width: 96px;
  height: 31px;
  padding: 0 14px;
  border-radius: 8px;
  background: #eaf3ff;
  color: #2f7df6;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.object-detail__tab.is-active{
  background: #dcecff;
}

/* ===== Object detail mobile ===== */

@media (max-width: 980px){
  .object-detail{
    padding: 20px 0 42px;
  }

  .object-detail__breadcrumbs{
    margin-bottom: 7px;
    font-size: 10px;
  }

  .object-detail__page-title{
    margin-bottom: 28px;
    font-size: 26px;
  }

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

  .object-detail__media{
    order: 1;
    min-height: 0;
    padding: 10px;
    border-radius: 8px;
  }

  .object-detail__info{
    order: 2;
    min-height: 0;
    padding: 14px 12px 13px;
    border-radius: 8px;
  }

  .object-detail__media-frame{
    height: 162px;
    border-radius: 3px;
  }

  .object-detail__tabs{
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .object-detail__tabs::-webkit-scrollbar{
    display: none;
  }

  .object-detail__tab{
    flex: 0 0 auto;
    min-width: 90px;
    height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 11px;
  }

  .object-detail__top{
    display: grid;
    gap: 12px;
  }

  .object-detail__number{
    margin-bottom: 15px;
    font-size: 15px;
  }

  .object-detail__price{
    font-size: 20px;
  }

  .object-detail__price-meter{
    font-size: 11px;
  }

  .object-detail__icons{
    order: 2;
  }

  .object-detail__icon-btn{
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .object-detail__divider{
    margin: 14px 0;
  }

  .object-detail__params{
    gap: 7px;
  }

  .object-detail__param{
    grid-template-columns: 1fr auto;
    font-size: 12px;
  }

  .object-detail__all{
    margin-top: 12px;
    font-size: 11px;
  }

  .object-detail__tags{
    gap: 7px;
    margin-top: 18px;
  }

  .object-detail__tags span{
    min-height: 25px;
    padding: 0 11px;
    font-size: 10px;
  }

  .object-detail__actions{
    gap: 8px;
  }

  .object-detail__btn{
    height: 38px;
    border-radius: 8px;
    font-size: 12px;
  }

  .object-detail__copy-message{
    right: 12px;
    bottom: 62px;
  }
}

@media (max-width: 420px){
  .object-detail__media-frame{
    height: 162px;
  }
}


.objects-card__more{
  background: transparent;
  color: #151515;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}


/* ===== Catalog page ===== */

.catalog-page{
  background: #ffffff;
  color: var(--c-blue-text);
}

.objects-section--catalog{
  padding: 44px 0 72px;
  background: #ffffff;
}

.catalog-page__breadcrumbs{
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: #8793a8;
  font-size: 12px;
  line-height: 1;
}

.catalog-page__breadcrumbs a{
  color: inherit;
  text-decoration: none;
}

.catalog-page__title{
  margin: 0 0 34px;
  color: var(--c-blue-text);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

.objects-section--catalog .objects-filter{
  border: 1px solid #d9e2ee;
  box-shadow: none;
}

.objects-section--catalog .objects-card{
  border: 1px solid #d9e2ee;
}

.objects-section--catalog .objects-toolbar{
  margin-top: 32px;
}

@media (max-width: 760px){
  .objects-section--catalog{
    padding: 24px 0 48px;
  }

  .catalog-page__breadcrumbs{
    margin-bottom: 12px;
    font-size: 10px;
  }

  .catalog-page__title{
    margin-bottom: 22px;
    font-size: 30px;
    line-height: 1.05;
  }
}






/* ===== Construction page ===== */

.construction-page{
  background:#ffffff;
  color:var(--c-blue-text);
}

.construction{
  padding:42px 0 76px;
}

.construction__breadcrumbs{
  display:flex;
  align-items:center;
  gap:7px;
  margin-bottom:12px;
  color:#8793a8;
  font-size:12px;
  line-height:1;
}

.construction__breadcrumbs a{
  color:inherit;
  text-decoration:none;
}

.construction__title{
  margin:0 0 31px;
  font-size:52px;
  line-height:1;
  font-weight:700;
  letter-spacing:normal;
}

.construction__hero{
  height:360px;
  overflow:hidden;
  border-radius:8px;
  background:#e6eef7;
}

.construction__hero img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.construction__filter{
  margin-top:48px;
  margin-bottom:28px;
}

.construction-filter{
  display:grid;
  gap:9px;
  width:155px;
}

.construction-filter__label{
  color:#8793a8;
  font-size:11px;
  line-height:1;
}

.construction-filter__select-wrap{
  position:relative;
  display:block;
}

.construction-filter__select-wrap::after{
  content:"";
  position:absolute;
  right:13px;
  top:50%;
  width:7px;
  height:7px;
  border-right:1.5px solid #8793a8;
  border-bottom:1.5px solid #8793a8;
  transform:translateY(-65%) rotate(45deg);
  pointer-events:none;
}

.construction-filter__select{
  width:100%;
  height:36px;
  padding:0 34px 0 14px;
  border:0;
  outline:none;
  border-radius:10px;
  background:#f3f8ff;
  color:var(--c-blue-text);
  font-family:var(--font-main);
  font-size:12px;
  font-weight:700;
  appearance:none;
  cursor:pointer;
}

.construction__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.construction-card.is-hidden,
.construction-card.is-filtered-hidden{
  display:none;
}

.construction-card__button{
  position:relative;
  display:block;
  width:100%;
  height:292px;
  overflow:hidden;
  border-radius:8px;
  background:#e6eef7;
  padding:0;
  text-align:left;
  cursor:pointer;
}

.construction-card__button img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.construction-card__button:hover img{
  transform:scale(1.04);
}

.construction-card__shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(2, 22, 45, .18) 0%, rgba(2, 22, 45, .18) 45%, rgba(2, 22, 45, .72) 100%),
    linear-gradient(90deg, rgba(2, 22, 45, .55) 0%, rgba(2, 22, 45, .18) 48%, rgba(2, 22, 45, .1) 100%);
}

.construction-card__count{
  position:absolute;
  left:24px;
  top:24px;
  z-index:2;
  min-height:22px;
  padding:0 11px;
  border-radius:999px;
  background:#ffffff;
  color:var(--c-blue-text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  line-height:1;
  font-weight:700;
}

.construction-card__album-icon{
  position:absolute;
  left:50%;
  top:50%;
  z-index:2;
  width:30px;
  height:30px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:5px;
  transform:translate(-50%, -50%);
}

.construction-card__album-icon::before{
  content:"";
  position:absolute;
  left:7px;
  top:8px;
  width:14px;
  height:10px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:2px;
}

.construction-card__album-text{
  position:absolute;
  left:50%;
  top:calc(50% + 26px);
  z-index:2;
  color:rgba(255,255,255,.62);
  font-size:11px;
  line-height:1;
  white-space:nowrap;
  transform:translateX(-50%);
}

.construction-card__date{
  position:absolute;
  left:24px;
  bottom:24px;
  z-index:2;
  display:grid;
  gap:7px;
  color:#ffffff;
}

.construction-card__date b{
  font-size:16px;
  line-height:1;
  font-weight:700;
}

.construction-card__date span{
  color:rgba(255,255,255,.7);
  font-size:13px;
  line-height:1;
}

.construction-more{
  display:flex;
  justify-content:center;
  margin-top:34px;
}

.construction-more__btn{
  height:40px;
  min-width:142px;
  padding:0 24px;
  border-radius:10px;
  background:#2f7df6;
  color:#ffffff;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.construction-empty{
  grid-column:1 / -1;
  padding:28px;
  border-radius:10px;
  background:#f3f8ff;
  color:#8793a8;
}

/* ===== Construction modal ===== */

.construction-modal{
  position:fixed;
  inset:0;
  z-index:2200;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.construction-modal.is-open{
  display:flex;
}

.construction-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
}

.construction-modal__window{
  position:relative;
  z-index:1;
  width:min(1100px, calc(100vw - 48px));
  height:min(720px, calc(100vh - 48px));
  display:flex;
  align-items:center;
  justify-content:center;
}

.construction-modal__image{
  width:100%;
  height:100%;
  border-radius:10px;
  overflow:hidden;
  background:#0b1020;
}

.construction-modal__image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

.construction-modal__close{
  position:absolute;
  right:-14px;
  top:-14px;
  z-index:3;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#ffffff;
  color:#132958;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.construction-modal__arrow{
  position:absolute;
  top:50%;
  z-index:3;
  width:46px;
  height:46px;
  border-radius:50%;
  background:#ffffff;
  color:#2f7df6;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  transform:translateY(-50%);
}

.construction-modal__arrow--prev{
  left:-64px;
}

.construction-modal__arrow--next{
  right:-64px;
}

.construction-modal__counter{
  position:absolute;
  left:50%;
  bottom:-32px;
  color:#ffffff;
  font-size:13px;
  transform:translateX(-50%);
}

/* ===== Construction mobile ===== */

@media (max-width:980px){
  .construction{
    padding:24px 0 48px;
  }

  .construction__breadcrumbs{
    margin-bottom:10px;
    font-size:10px;
  }

  .construction__title{
    margin-bottom:22px;
    font-size:30px;
    line-height:1.05;
  }

  .construction__hero{
    height:190px;
    border-radius:8px;
  }

  .construction__filter{
    margin-top:28px;
    margin-bottom:18px;
  }

  .construction__grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .construction-card__button{
    height:260px;
  }

  .construction-card__count{
    left:18px;
    top:18px;
  }

  .construction-card__date{
    left:18px;
    bottom:18px;
  }

  .construction-modal{
    padding:12px;
  }

  .construction-modal__window{
    width:100%;
    height:70vh;
  }

  .construction-modal__close{
    right:8px;
    top:8px;
    width:36px;
    height:36px;
    font-size:24px;
  }

  .construction-modal__arrow{
    width:38px;
    height:38px;
    font-size:28px;
  }

  .construction-modal__arrow--prev{
    left:8px;
  }

  .construction-modal__arrow--next{
    right:8px;
  }

  .construction-modal__counter{
    bottom:-28px;
  }
}

@media (max-width:420px){
  .construction-card__button{
    height:232px;
  }
}


/* ===== Documents page ===== */

.documents-page{
  background: #ffffff;
  color: var(--c-blue-text);
}

.documents-section{
  padding: 42px 0 92px;
}

.documents__breadcrumbs{
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: #8793a8;
  font-size: 12px;
  line-height: 1;
}

.documents__breadcrumbs a{
  color: inherit;
  text-decoration: none;
}

.documents__title{
  margin: 0 0 34px;
  color: var(--c-blue-text);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

.documents-list{
  display: grid;
  gap: 20px;
}

.document-card{
  min-height: 91px;
  padding: 0 25px 0 34px;
  border-radius: 10px;
  background: #d5f8ef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.document-card__title{
  margin: 0;
  color: var(--c-blue-text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: normal;
}

.document-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 43px;
  padding: 0 20px;
  border-radius: 9px;
  background: #2f7df6;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  flex: 0 0 auto;
}

/* ===== Documents mobile ===== */

@media (max-width: 760px){
  .documents-section{
    padding: 24px 0 56px;
  }

  .documents__breadcrumbs{
    margin-bottom: 9px;
    font-size: 10px;
  }

  .documents__title{
    margin-bottom: 22px;
    font-size: 30px;
    line-height: 1.05;
  }

  .documents-list{
    gap: 16px;
  }

  .document-card{
    min-height: 85px;
    padding: 12px 12px 12px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }

  .document-card__title{
    max-width: 260px;
    font-size: 14px;
    line-height: 1.2;
  }

  .document-card__btn{
    min-width: 72px;
    width: fit-content;
    height: 35px;
    padding: 0 17px;
    border-radius: 8px;
    font-size: 11px;
  }
}


/* ===== Contacts page ===== */

.contacts-page{
  background: #ffffff;
  color: var(--c-blue-text);
}

.contacts-section{
  padding: 42px 0 82px;
}

.contacts__breadcrumbs{
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: #8793a8;
  font-size: 12px;
  line-height: 1;
}

.contacts__breadcrumbs a{
  color: inherit;
  text-decoration: none;
}

.contacts__title{
  margin: 0 0 34px;
  color: var(--c-blue-text);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

/* ===== Map block ===== */

.contacts-map-wrap{
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 0;
  background: #e6eef7;
}

.contacts-map{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contacts-map__canvas{
  width: 100%;
  height: 100%;
}

.contacts-map__canvas > ymaps{
  width: 100% !important;
  height: 100% !important;
}

/* ===== Contact card over map ===== */

.contacts-card{
  position: absolute;
  left: 36px;
  top: 270px;
  z-index: 3;
  width: 455px;
  min-height: 320px;
  padding: 36px 34px 34px;
  border-radius: 10px;
  background: #eaf3ff;
  color: var(--c-blue-text);
  box-shadow: 0 14px 34px rgba(19, 41, 88, .08);
}

.contacts-card__title{
  max-width: 360px;
  margin: 0 0 19px;
  font-size: 38px;
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: normal;
}

.contacts-card__info{
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  color: #6f7d96;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 400;
}

.contacts-card__info p{
  margin: 0;
}

.contacts-card__phone{
  display: inline-flex;
  width: fit-content;
  margin-bottom: 27px;
  color: var(--c-blue-text);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.contacts-card__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.contacts-card__btn{
  min-height: 39px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.contacts-card__btn--white{
  background: #ffffff;
  color: #151515;
}

.contacts-card__btn--blue{
  background: #2f7df6;
  color: #ffffff;
}

/* ===== Contacts mobile ===== */

@media (max-width: 980px){
  .contacts-section{
    padding: 24px 0 54px;
  }

  .contacts__breadcrumbs{
    margin-bottom: 9px;
    font-size: 10px;
  }

  .contacts__title{
    margin-bottom: 28px;
    font-size: 30px;
    line-height: 1.05;
  }

  .contacts-map-wrap{
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
    background: transparent;
    gap: 16px;
  }

  .contacts-card{
    position: relative;
    left: auto;
    top: auto;
    z-index: 2;
    width: 100%;
    min-height: 0;
    padding: 18px 14px 14px;
    border-radius: 8px;
    background: #eaf3ff;
    box-shadow: none;
  }

  .contacts-card__title{
    max-width: 260px;
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 1.08;
  }

  .contacts-card__info{
    gap: 8px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.3;
  }

  .contacts-card__phone{
    margin-bottom: 25px;
    font-size: 17px;
  }

  .contacts-card__actions{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contacts-card__btn{
    min-height: 39px;
    border-radius: 8px;
    font-size: 13px;
  }

  .contacts-map{
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 7px;
    background: #e6eef7;
  }

  .contacts-map__canvas{
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 420px){
  .contacts-map{
    height: 290px;
  }
}


/* ===== Cookies page ===== */

.cookies-page{
  background: #ffffff;
  color: var(--c-blue-text);
}

.cookies-section{
  padding: 42px 0 92px;
}

.cookies__breadcrumbs{
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: #8793a8;
  font-size: 12px;
  line-height: 1;
}

.cookies__breadcrumbs a{
  color: inherit;
  text-decoration: none;
}

.cookies__title{
  margin: 0 0 38px;
  color: var(--c-blue-text);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: normal;
}

.cookies__content{
  max-width: 1340px;
  color: #405174;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}

.cookies__content p{
  margin: 0;
}

.cookies__content p + p{
  margin-top: 26px;
}

/* ===== Cookies mobile ===== */

@media (max-width: 760px){
  .cookies-section{
    padding: 24px 0 56px;
  }

  .cookies__breadcrumbs{
    margin-bottom: 9px;
    font-size: 10px;
  }

  .cookies__title{
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.05;
  }

  .cookies__content{
    font-size: 14px;
    line-height: 1.38;
  }

  .cookies__content p + p{
    margin-top: 20px;
  }
}


/* ===== Cookies notice ===== */

.cookies-notice{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2100;
  width: min(420px, calc(100vw - 48px));
  padding: 24px;
  border-radius: 16px;
  background: #eaf3ff;
  color: var(--c-blue-text);
  box-shadow: 0 14px 40px rgba(19, 41, 88, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.cookies-notice.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookies-notice__text{
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: normal;
}

.cookies-notice__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 46px;
  padding: 0 24px;
  border-radius: 11px;
  background: #2f7df6;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

/* ===== Cookies notice mobile ===== */

@media (max-width: 760px){
  .cookies-notice{
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 18px;
    border-radius: 14px;
  }

  .cookies-notice__text{
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.3;
  }

  .cookies-notice__text br{
    display: none;
  }

  .cookies-notice__btn{
    width: 100%;
    min-width: 0;
    height: 42px;
    border-radius: 10px;
    font-size: 14px;
  }
}


/* ===== Callback checkboxes ===== */

.callback-form__checks{
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.callback-check{
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
  color: #7f8ca3;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
  cursor: pointer;
}

.callback-check input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.callback-check__box{
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #f3f8ff;
  border: 1px solid #d8e3f2;
  flex: 0 0 auto;
  transition: background .15s ease, border-color .15s ease;
}

.callback-check__box::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity .15s ease;
}

.callback-check input:checked + .callback-check__box{
  background: #2f7df6;
  border-color: #2f7df6;
}

.callback-check input:checked + .callback-check__box::after{
  opacity: 1;
}

.callback-check__text a{
  color: #2f7df6;
  text-decoration: none;
}

.callback-check__text a:hover{
  text-decoration: underline;
}

.callback-check.is-error .callback-check__box{
  border-color: #e24545;
  box-shadow: 0 0 0 3px rgba(226, 69, 69, .08);
}


@media (max-width: 760px){
  .callback-form__checks{
    gap: 10px;
  }

  .callback-check{
    grid-template-columns: 17px 1fr;
    gap: 9px;
    font-size: 10px;
    line-height: 1.35;
  }

  .callback-check__box{
    width: 17px;
    height: 17px;
    border-radius: 5px;
  }

  .callback-check__box::after{
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
  }
}

/* ===== Objects fixes: promo, sort select, title link ===== */

.objects-card__title a{
  color: inherit;
  text-decoration: none;
}

.objects-card__title a:hover{
  color: #2f7df6;
}

.objects-sort{
  position: relative;
  cursor: pointer;
}

.objects-sort__select{
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #1b2d57;
  font: inherit;
  font-weight: 700;
  appearance: none;
  cursor: pointer;
}

.objects-promo-badge{
  position: relative;
  background: #35d69f;
  color: #ffffff;
  cursor: default;
}

.objects-promo-tooltip{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 20;
  width: max-content;
  max-width: 260px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #132958;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 4px);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
  pointer-events: none;
}

.objects-promo-tooltip::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #132958;
  transform: translateX(-50%);
}

.objects-promo-badge:hover .objects-promo-tooltip,
.objects-promo-badge:focus .objects-promo-tooltip{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.object-detail__badge.objects-promo-badge{
  background: #35d69f;
  color: #ffffff;
}

.object-detail__all{
  display: none !important;
}

.objects-card__reserve{
  cursor: pointer;
}

@media (max-width: 760px){
  .objects-promo-tooltip{
    left: auto;
    right: 0;
    max-width: 220px;
    transform: translateY(4px);
  }

  .objects-promo-tooltip::after{
    left: auto;
    right: 16px;
    transform: none;
  }

  .objects-promo-badge:hover .objects-promo-tooltip,
  .objects-promo-badge:focus .objects-promo-tooltip{
    transform: translateY(0);
  }
}




/* ===== Objects params wrapping fix ===== */

.objects-param{
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.objects-param span,
.objects-param b{
  min-width: 0;
}

.objects-param b{
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

@media (max-width: 760px){
  .objects-param{
    grid-template-columns: 1fr auto;
  }

  .objects-param b{
    max-width: 170px;
    text-align: right;
  }
}

/* ===== Objects params wrapping fix ===== */

.objects-param{
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.objects-param span,
.objects-param b{
  min-width: 0;
}

.objects-param b{
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

@media (max-width: 760px){
  .objects-param{
    grid-template-columns: 1fr auto;
  }

  .objects-param b{
    max-width: 170px;
    text-align: right;
  }
}

/* ===== Custom objects sort dropdown ===== */

.objects-sort{
  position: relative;
  width: 270px;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  cursor: default;
}

.objects-sort__button{
  width: 100%;
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #1b2d57;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.objects-sort__current{
  min-width: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.objects-sort__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a97ad;
  font-size: 17px;
  line-height: 1;
}

.objects-sort__chevron{
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: .65;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .16s ease;
}

.objects-sort.is-open .objects-sort__chevron{
  transform: translateY(2px) rotate(225deg);
}

.objects-sort__dropdown{
  position: absolute;
  left: 0;
  top: calc(100% + 7px);
  z-index: 50;
  width: 100%;
  padding: 7px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(19, 41, 88, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.objects-sort.is-open .objects-sort__dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.objects-sort__dropdown button{
  width: 100%;
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #1b2d57;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 600;
  cursor: pointer;
}

.objects-sort__dropdown button:hover,
.objects-sort__dropdown button.is-active{
  background: #eaf3ff;
  color: #2f7df6;
}

@media (max-width: 760px){
  .objects-sort{
    width: 100%;
  }

  .objects-sort__button{
    height: 34px;
    border-radius: 8px;
    font-size: 11px;
  }

  .objects-sort__dropdown{
    top: calc(100% + 5px);
    border-radius: 8px;
  }

  .objects-sort__dropdown button{
    min-height: 32px;
    font-size: 11px;
  }
}

.objects-sort__dropdown{
  display: grid;
  gap: 5px;
}


.objects-toggle{
  cursor: pointer;
}

.objects-toggle__fake{
  background: #ccd6e4;
  transition: background .18s ease;
}

.objects-toggle__fake::after{
  left: 3px;
  right: auto;
  transition: transform .18s ease;
}

.objects-toggle input:checked + .objects-toggle__fake{
  background: #34d9a6;
}

.objects-toggle input:checked + .objects-toggle__fake::after{
  transform: translateX(8px);
}


/* ===== Coming soon page ===== */

.coming-soon-page{
  background: #ffffff;
  color: var(--c-blue-text);
}

.coming-soon{
  min-height: calc(100vh - var(--header-h));
  padding: 42px 0 92px;
  display: flex;
}

.coming-soon .container{
  display: flex;
}

.coming-soon__inner{
  width: 100%;
  min-height: 560px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.coming-soon__breadcrumbs{
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 34px;
  color: #8793a8;
  font-size: 12px;
  line-height: 1;
}

.coming-soon__breadcrumbs a{
  color: inherit;
  text-decoration: none;
}

.coming-soon__content{
  flex: 1;
  min-height: 480px;
  border-radius: 12px;
  background: #eaf3ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 70px 32px;
  text-align: center;
}

.coming-soon__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 0 15px;
  border-radius: 999px;
  background: #ffffff;
  color: #2f7df6;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.coming-soon__title{
  margin: 0;
  color: var(--c-blue-text);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: normal;
}

.coming-soon__text{
  max-width: 520px;
  margin: 24px 0 0;
  color: #6f7d96;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
}

.coming-soon__actions{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.coming-soon__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.coming-soon__btn--blue{
  background: #2f7df6;
  color: #ffffff;
}

.coming-soon__btn--light{
  background: #ffffff;
  color: #2f7df6;
}

/* ===== Coming soon mobile ===== */

@media (max-width: 760px){
  .coming-soon{
    min-height: auto;
    padding: 24px 0 56px;
  }

  .coming-soon__inner{
    min-height: 0;
  }

  .coming-soon__breadcrumbs{
    margin-bottom: 22px;
    font-size: 10px;
  }

  .coming-soon__content{
    min-height: 390px;
    padding: 48px 18px;
    border-radius: 10px;
  }

  .coming-soon__badge{
    min-height: 26px;
    margin-bottom: 18px;
    padding: 0 13px;
    font-size: 11px;
  }

  .coming-soon__title{
    font-size: 31px;
    line-height: 1.05;
  }

  .coming-soon__text{
    max-width: 280px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.35;
  }

  .coming-soon__actions{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px;
  }

  .coming-soon__btn{
    width: 100%;
    height: 39px;
    border-radius: 8px;
    font-size: 13px;
  }
}






/* ===== Object detail media tabs with floor plan polygon ===== */

.object-detail__media-frame{
  position: relative;
  overflow: hidden;
}

.object-detail__media-panel{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.object-detail__media-panel.is-active{
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.object-detail__media-panel > img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.object-detail__floor-plan{
  position: relative;
  width: 100%;
  height: 100%;
}

.object-detail__floor-plan img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.object-detail__floor-svg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.object-detail__floor-svg polygon{
  fill: rgba(47, 125, 246, .28);
  stroke: #2f7df6;
  stroke-width: 8;
  vector-effect: non-scaling-stroke;
}

.object-detail__media-empty{
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eaf3ff;
  color: #8793a8;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 760px){
  .object-detail__floor-svg polygon{
    stroke-width: 5;
  }

  .object-detail__media-empty{
    min-height: 260px;
    font-size: 13px;
  }
}



/* ===== Object detail media fit fix ===== */

.object-detail__media-frame{
  position: relative;
  width: 100%;
  height: 620px;
  max-height: 620px;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f8ff;
}

.object-detail__media-panel{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.object-detail__media-panel.is-active{
  display: block;
}

.object-detail__media-panel > img,
.object-detail__floor-plan img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.object-detail__floor-plan{
  position: relative;
  width: 100%;
  height: 100%;
}

.object-detail__floor-svg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.object-detail__floor-svg polygon{
  fill: rgba(47, 125, 246, .28);
  stroke: #2f7df6;
  stroke-width: 8;
  vector-effect: non-scaling-stroke;
}

@media (max-width: 980px){
  .object-detail__media-frame{
    height: 430px;
    max-height: 430px;
  }
}

@media (max-width: 760px){
  .object-detail__media-frame{
    height: 320px;
    max-height: 320px;
    border-radius: 10px;
  }

  .object-detail__floor-svg polygon{
    stroke-width: 5;
  }
}


.objects-card__plan{
  text-decoration: none;
  cursor: pointer;
}

.objects-card__plan img{
  transition: transform .25s ease;
}

.objects-card__plan:hover img{
  transform: scale(1.03);
}






















/* ===== Objects cards responsive refinement ===== */

/* 
  1) На широких, но уже суженных экранах:
  карточка еще горизонтальная, но параметры делаем в 2 колонки вместо 3.
*/
@media (max-width: 1560px) and (min-width: 1181px){

  .objects-card__params{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
  }

  .objects-param{
    grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
    gap: 8px;
    align-items: start;
  }

  .objects-param b{
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }
}


/* 
  2) Средние экраны:
  список объектов становится сеткой 2 карточки в ряд.
  Внутри карточки вся информация идет вертикально.
*/
@media (max-width: 1180px) and (min-width: 761px){

  .objects-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .objects-card{
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding: 14px;
    border-radius: 12px;
    gap: 14px;
  }

  .objects-card__plan{
    width: 100%;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f8ff;
  }

  .objects-card__plan img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .objects-card__main{
    width: 100%;
    min-width: 0;
  }

  .objects-card__title{
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.1;
  }

  .objects-card__params{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .objects-param{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
  }

  .objects-param span{
    color: #71809a;
    font-size: 12px;
    line-height: 1.25;
  }

  .objects-param b{
    max-width: 230px;
    color: var(--c-blue-text);
    font-size: 12px;
    line-height: 1.25;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .objects-card__price{
    width: 100%;
    min-width: 0;
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid #dfe8f4;
  }

  .objects-card__price-head{
    margin-bottom: 12px;
  }

  .objects-card__price-head h4{
    font-size: 20px;
    line-height: 1.1;
  }

  .objects-card__price-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .objects-card__price-list div{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
  }

  .objects-card__price-list span{
    color: #71809a;
    font-size: 12px;
    line-height: 1.25;
  }

  .objects-card__price-list b{
    font-size: 12px;
    line-height: 1.25;
    text-align: right;
  }

  .objects-card__actions{
    width: 100%;
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .objects-card__reserve,
  .objects-card__more{
    width: 100%;
    min-height: 40px;
    border-radius: 9px;
  }
}


/* 
  3) Мобильная версия:
  1 карточка в ряд, внутри тоже одна колонка.
*/
@media (max-width: 760px){

  .objects-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .objects-card{
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 10px;
    border-radius: 10px;
    gap: 12px;
  }

  .objects-card__plan{
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f8ff;
  }

  .objects-card__plan img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .objects-card__title{
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.1;
  }

  .objects-card__params{
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .objects-param{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
  }

  .objects-param span{
    font-size: 12px;
    line-height: 1.25;
  }

  .objects-param b{
    max-width: 170px;
    font-size: 12px;
    line-height: 1.25;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .objects-card__price{
    width: 100%;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid #dfe8f4;
  }

  .objects-card__price-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .objects-card__price-list div{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
  }

  .objects-card__actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}



/* ===== Fix vertical object card buttons alignment ===== */

@media (max-width: 1180px){

  .objects-card__actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .objects-card__reserve,
  .objects-card__more{
    width: 100%;
    min-height: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    box-sizing: border-box;
    line-height: 1;
  }
}

@media (max-width: 760px){

  .objects-card__actions{
    gap: 8px;
  }

  .objects-card__reserve,
  .objects-card__more{
    min-height: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 12px;
  }
}








/* ===== Objects mobile: same card view, but 1 card per row ===== */

@media (max-width: 760px){

  .objects-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .objects-card{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 12px;
    border-radius: 12px;
    gap: 14px;
  }

  .objects-card__plan{
    width: 100%;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f8ff;
  }

  .objects-card__plan img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .objects-card__main{
    width: 100%;
    min-width: 0;
  }

  .objects-card__title{
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.1;
  }

  .objects-card__params{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .objects-param{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
  }

  .objects-param span{
    color: #71809a;
    font-size: 12px;
    line-height: 1.25;
  }

  .objects-param b{
    max-width: 190px;
    color: var(--c-blue-text);
    font-size: 12px;
    line-height: 1.25;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .objects-card__price{
    width: 100%;
    min-width: 0;
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid #dfe8f4;
  }

  .objects-card__price-head{
    margin-bottom: 12px;
  }

  .objects-card__price-head h4{
    font-size: 20px;
    line-height: 1.1;
  }

  .objects-card__price-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .objects-card__price-list div{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
  }

  .objects-card__price-list span{
    color: #71809a;
    font-size: 12px;
    line-height: 1.25;
  }

  .objects-card__price-list b{
    max-width: 190px;
    font-size: 12px;
    line-height: 1.25;
    text-align: right;
    white-space: normal;
  }

  .objects-card__actions{
    width: 100%;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: stretch;
  }

  .objects-card__reserve,
  .objects-card__more{
    width: 100%;
    min-height: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 9px;
    font-size: 12px;
    line-height: 1;
    box-sizing: border-box;
  }
}

@media (max-width: 380px){

  .objects-card__plan{
    height: 210px;
  }

  .objects-param b,
  .objects-card__price-list b{
    max-width: 160px;
  }
}


@media (max-width: 420px){
  .objects-card__actions{
    grid-template-columns: 1fr;
  }
}























/* ===== Site menu / sidebar fixed version ===== */

.site-menu{
  position: fixed;
  inset: 0;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.site-menu.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .32);
  opacity: 0;
  transition: opacity .25s ease;
}

.site-menu.is-open .site-menu__overlay{
  opacity: 1;
}

.site-menu__panel{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(1120px, calc(100vw - 96px));
  background: #ffffff;
  transform: translateX(-105%);
  transition: transform .32s ease;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.site-menu.is-open .site-menu__panel{
  transform: translateX(0);
}

/* крестик справа от панели на десктопе */

.site-menu__desktop-close{
  position: fixed;
  left: min(1136px, calc(100vw - 78px));
  top: 56px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  color: #1b2d57;
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.site-menu.is-open .site-menu__desktop-close{
  opacity: 1;
  visibility: visible;
}

/* верхняя часть меню */

.site-menu__desktop-head{
  min-height: 104px;
  padding: 0 92px;
  border-bottom: 1px solid #dadada;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-menu__home{
  color: #1b2d57;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

/* тело меню */

.site-menu__body{
  flex: 1;
  padding: 58px 92px 60px;
  display: flex;
  flex-direction: column;
}

.site-menu__main-nav{
  display: grid;
  gap: 8px;
  margin-bottom: 110px;
}

.site-menu__main-nav a{
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #1b2d57;
  font-size: 48px;
  line-height: .98;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: normal;
}

.site-menu__main-nav a span{
  color: #6f7d96;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
}

.site-menu__bottom{
  margin-top: auto;
  padding-top: 54px;
  border-top: 1px solid #dadada;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 250px;
  align-items: start;
}

.site-menu__sub-nav{
  display: grid;
  gap: 10px;
}

.site-menu__sub-nav a{
  color: #354669;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  text-decoration: none;
}

.site-menu__contacts{
  display: grid;
  gap: 10px;
}

.site-menu__phone{
  color: #1b2d57;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  text-decoration: none;
}

.site-menu__email{
  color: #8a97ad;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  text-decoration: none;
}

.site-menu__actions{
  display: flex;
  gap: 14px;
  margin-top: 62px;
}

.site-menu__action{
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #2f7df6;
  background: #eaf3ff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.site-menu__action--blue{
  background: #2f7df6;
  color: #ffffff;
}

.site-menu__action--light{
  background: #eaf3ff;
  color: #2f7df6;
}

.site-menu__action-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* мобильная шапка внутри меню скрыта на десктопе */

.site-menu__mobile-head{
  display: none;
}

/* ===== Site menu mobile ===== */

@media (max-width: 760px){

  .site-menu__overlay{
    display: none;
  }

  .site-menu__panel{
    width: 100%;
    max-width: none;
    transform: translateX(-105%);
  }

  .site-menu.is-open .site-menu__panel{
    transform: translateX(0);
  }

  .site-menu__desktop-close,
  .site-menu__desktop-head{
    display: none;
  }

  .site-menu__mobile-head{
    min-height: 92px;
    padding: 14px 15px;
    border-bottom: 1px solid #dadada;
    display: grid;
    grid-template-columns: 58px 1fr 58px;
    align-items: center;
    gap: 12px;
  }

  .site-menu__mobile-btn{
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #eaf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-menu__mobile-btn img{
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .site-menu__mobile-logo{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .site-menu__mobile-logo img{
    display: block;
    width: 156px;
    height: auto;
  }

  .site-menu__body{
    padding: 24px 15px 24px;
    display: flex;
    flex-direction: column;
  }

  .site-menu__main-nav{
    gap: 12px;
    margin-bottom: 42px;
  }

  .site-menu__main-nav a{
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    font-size: 30px;
    line-height: 1.08;
  }

  .site-menu__main-nav a span{
    font-size: 32px;
  }

  .site-menu__bottom{
    margin-top: 0;
    padding-top: 34px;
    border-top: 1px solid #dadada;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-menu__sub-nav{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 28px;
  }

  .site-menu__sub-nav a{
    font-size: 18px;
    line-height: 1.25;
  }

  .site-menu__contacts{
    gap: 12px;
  }

  .site-menu__phone{
    font-size: 20px;
  }

  .site-menu__email{
    font-size: 16px;
  }

  .site-menu__actions{
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-menu__action{
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    font-size: 16px;
  }
}