


/* CONTACT LOCATION */
.contact-location{
  margin: clamp(18px, 3vw, 34px) 0;
}
.contact-location__wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(14px, 2vw, 20px);
}
.contact-location__head{
  margin-bottom: 24px;
}
.contact-location__title{
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
    font-weight: 600;
}
.contact-location__subtitle{
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  opacity: .85;
  max-width: 80ch;
}

.contact-location__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.contact-location__card{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  padding: 14px;
}

.contact-location__cardHead{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-location__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.05);
  flex: 0 0 auto;
}

.contact-location__name{
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 3px;
}
.contact-location__addr{
  font-size: 14px;
  line-height: 1.35;
  opacity: .85;
}

.contact-location__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-bottom: 0;
}



.contact-location__badge{
  font-size: clamp(12px, 2vw, 16px);
  line-height: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f9f9fb;
  opacity: .95;
}

.contact-location__actions{
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.contact-location__btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.contact-location__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.18);
}
.contact-location__btn--ghost{
  background: #f7f7f9;
}



.contact-location__card--steps{
  padding-top: 16px;
}

.contact-location__stepsTitle{
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.contact-location__steps{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  opacity: .9;
}

.contact-location__mini{
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f7f7f9;
  border: 1px solid rgba(0,0,0,.06);
}
.contact-location__miniTitle{
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact-location__miniText{
  font-size: 14px;
  line-height: 1.45;
  opacity: .88;
}



/* 2 колонки на ширине */
@media (min-width: 900px){
  .contact-location__grid{
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
  }
}



/* Дополнения для блока Email (не ломают существующие стили) */
.contact-location__btn[type="button"]{
  cursor: pointer;
  font: inherit;
}
.contact-location__btn:disabled{
  opacity: .65;
  cursor: default;
}

/* Статус копирования */
.contact-email-status{
  font-size: 13px;
  line-height: 1.45;
  opacity: .75;
  padding-left: 2px;
}



