/* =========================
   CONTACTS PAGE
========================= */

.contactsHero{
  padding: clamp(44px, 5vw, 78px) 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f8 100%);
}

.contactsHero__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.contactsHero__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: rgba(15, 23, 42, 0.95);
}

.contactsHero__subtitle{
  margin: 0 0 16px;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.72);
}

/* Contact info cards */
.contactsInfo{
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.contactItem{
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;

  padding: 12px 12px;
  border-radius: 18px;

  text-decoration: none;

  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.contactItem:hover{
  transform: translateY(-2px);
  border-color: rgba(255, 138, 76, 0.35);
  background: rgba(255, 138, 76, 0.07);
  box-shadow: 0 16px 52px rgba(15, 23, 42, 0.09);
}

.contactItem:focus-visible{
  outline: 3px solid rgba(255, 138, 76, 0.35);
  outline-offset: 2px;
}

.contactItem__icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;

  display: grid;
  place-items: center;

  background: rgba(255, 138, 76, 0.12);
  border: 1px solid rgba(255, 138, 76, 0.22);

  grid-row: 1 / span 2;
}

.contactItem__icon img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.contactItem__label{
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.72);
  letter-spacing: -0.1px;
}

.contactItem__value{
  font-weight: 700;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.92);
}

/* Map */
.contactsHero__map{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.86);
}

.contactsHero__map iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Form section */
.contactsSection{
  padding: clamp(52px, 6vw, 86px) 0;
  background: #fff;
}

.contactsFormWrap{
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  padding: clamp(18px, 3vw, 26px);
}

.contactsHeader{
  text-align: center;
  max-width: 780px;
  margin: 0 auto 18px;
}

.contactsH2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: rgba(15, 23, 42, 0.94);
}

.contactsLead{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.70);
}

/* Fields */
.formGrid{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.field{
  display: grid;
  gap: 6px;
}

.field--full{
  grid-column: 1 / -1;
}

.field__label{
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.72);
}

.field__control{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;

  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.75);

  font-size: 14px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.92);

  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.field__control--textarea{
  resize: vertical;
  min-height: 140px;
}

.field__control:focus{
  border-color: rgba(255, 138, 76, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 138, 76, 0.16);
  background: rgba(255, 255, 255, 0.90);
}

/* Actions */
.formActions{
  margin-top: 14px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.btn--wide{
  width: min(420px, 100%);
}

.formHint{
  margin: 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.60);
  max-width: 64ch;
}

/* Responsive */
@media (min-width: 900px){
  .contactsHero__inner{
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
  }

  .contactsHero__map iframe{
    height: 420px;
  }

  .formGrid{
    grid-template-columns: 1fr 1fr;
  }
}
.contactsCtaInclude{
  /* небольшой “воздух”, если cta.html уже имеет свой фон/паддинги — будет нормально */
  padding: 0;
}