/* ===== REALTY PROMO ===== */

.realty-promo {
  position: relative;
  background: #f4f1ee;
  padding: 120px 20px;
  overflow: hidden;
}

.realty-promo__inner {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

/* =========================
   IMAGE — BIG HOUSE
   ========================= */

.realty-promo__image {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.realty-promo__image img {
  width: 165%;
  max-width: none;
  height: auto;
  display: block;

  /* старт — далеко справа */
  transform: translateX(150%);
  will-change: transform;
}

/* въезд дома */
.realty-promo.is-visible .realty-promo__image img {
  animation: house-in 1.35s cubic-bezier(.2,.7,.2,1) forwards;
}

/* === КЛЮЧЕВАЯ ЧАСТЬ === */
@keyframes house-in {
  to {
    transform:
      translateX(0%)   /* ← МАКСИМАЛЬНО БЛИЗКО К ТЕКСТУ */
      translateY(0);
  }
}

/* =========================
   CONTENT
   ========================= */

.realty-promo__content {
  max-width: 520px;
  z-index: 2;
}

.realty-promo__badge {
  display: inline-flex;
  align-items: center;
  height: 44px;
  gap: 12px;

  border: 2px solid #000;
  border-radius: 999px;
  padding: 0 16px;

  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 28px;
}

.realty-promo__badge a {
  display: inline-flex;
  align-items: center;
  height: 28px;

  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 0 12px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}

.realty-promo__badge a:hover {
  background: #f63d4a;
}

/* ===== TEXT ===== */

.realty-promo__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 16px;
}

.realty-promo__text {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 28px;
  color: #111;
}

/* ===== CTA ===== */

.realty-promo__cta span {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.realty-promo__cta a {
  display: inline-block;
  border: 2px solid #f63d4a;
  color: #f63d4a;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.realty-promo__cta a:hover {
  background: #f63d4a;
  color: #fff;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1100px) {

  .realty-promo__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .realty-promo__content {
    max-width: 100%;
  }

  /* на планшете дом не так агрессивно */
  .realty-promo__image img {
    width: 140%;
  }
}

/* =========================
   MOBILE — НОРМАЛЬНО И РОВНО
   ========================= */

@media (max-width: 768px) {

  .realty-promo {
    padding: 64px 16px;
  }

  .realty-promo__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .realty-promo__content {
    text-align: center;
  }

  .realty-promo__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .realty-promo__title {
    font-size: 32px;
  }

  .realty-promo__text {
    font-size: 16px;
  }

  .realty-promo__cta a {
    width: 100%;
    text-align: center;
  }

  /* ===== ВАЖНО =====
     На мобилке:
     — без выезда
     — без кривых смещений
  */
  .realty-promo__image img {
    width: 100%;
    max-width: 100%;
    transform: none !important;
    animation: none !important;
  }
}