/* ===== Секция «Связаться с нами» ===== */

.contacts {
  position: relative;
  overflow: hidden;
  padding: 9.8rem 0 23rem;
  background: linear-gradient(180deg, #687f63 0%, #87a580 55%, #8ba578 100%);
  font-family: 'Inter', sans-serif;
}

/* Заголовок секции */
.contacts__title {
  position: relative;
  z-index: 1;
  margin: 0 auto 5.3rem;
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 900;
  font-size: 10rem;
  line-height: 1.16;
  text-align: center;
  color: #ffffff;
}

.contacts__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  max-width: 192rem;
  margin: 0 auto;
}

/* Карточки контактов (заглушки по серым блокам макета) */
.contacts__cards {
  display: flex;
  gap: 6.5rem;
  padding-left: 27rem;
}

.contacts__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-sizing: border-box;
  width: 38.4rem;
  min-height: 12.9rem;
  padding: 1.6rem 2rem;
  background: rgba(89, 75, 75, 0.36);
  text-align: center;
}

.contacts__card-label {
  margin: 0;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #ffffff;
}

.contacts__link {
  font-size: 2.2rem;
  line-height: 1.3;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.contacts__address {
  font-style: normal;
  font-size: 2.2rem;
  line-height: 1.3;
  color: #ffffff;
}

/* Широкое фото под карточками */
.contacts__photo {
  display: block;
  width: 115.9rem;
  height: 39.3rem;
  margin: 6rem 0 0 32.1rem;
  object-fit: cover;
  object-position: 50% 61%;
}

/* Декоративные еловые ветки */
.contacts__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.contacts__decor--branch-tl {
  left: 8.4rem;
  top: 17.6rem;
  width: 27.8rem;
  height: 59.1rem;
  transform: translate(-50%, -50%) rotate(-55.88deg) scaleY(-1);
}

.contacts__decor--branch-br {
  right: 16.6rem;
  bottom: 13.5rem;
  width: 27.8rem;
  height: 59.1rem;
  transform: translate(50%, 50%) rotate(124.12deg) scaleY(-1);
}

.contacts__decor--cones-bl {
  left: 8rem;
  bottom: 13.5rem;
  width: 41.3rem;
  height: 27.5rem;
  transform: translate(-50%, 50%) rotate(-20.41deg) scaleY(-1);
}

.contacts__decor--cones-tr {
  right: 8.6rem;
  top: 13.1rem;
  width: 41.3rem;
  height: 27.5rem;
  transform: translate(50%, -50%) rotate(159.59deg) scaleY(-1);
}

/* ===== Мобильная версия ===== */
@media (max-width: 768px) {
  .contacts {
    padding: 6rem 0 8rem;
  }

  .contacts__title {
    margin-bottom: 3rem;
    font-size: 3.4rem;
  }

  .contacts__cards {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    padding: 0 2rem;
  }

  .contacts__card {
    width: auto;
    min-height: 10rem;
  }

  .contacts__card-label {
    font-size: 1.8rem;
  }

  .contacts__link,
  .contacts__address {
    font-size: 1.7rem;
  }

  .contacts__photo {
    width: calc(100% - 4rem);
    height: 22rem;
    margin: 3rem 2rem 0;
  }

  .contacts__decor--branch-tl {
    left: 2rem;
    top: 4rem;
    width: 11rem;
    height: 23.4rem;
  }

  .contacts__decor--cones-tr {
    right: 1rem;
    top: 3rem;
    width: 16rem;
    height: 10.7rem;
  }

  .contacts__decor--branch-br {
    right: 2rem;
    bottom: 3rem;
    width: 11rem;
    height: 23.4rem;
  }

  .contacts__decor--cones-bl {
    display: none;
  }
}
