.exact-contact {
  padding: 88px 7vw 24px !important;
}

.contact-title strong {
  font-size: clamp(38px, 3.7vw, 56px) !important;
}

.contact-title p {
  margin-top: 12px !important;
}

.contact-map-layout {
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  height: 440px;
  margin-top: 23px;
  border: 1px solid rgba(26,67,57,.3);
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 55px rgba(31,59,49,.08);
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .75s .34s ease, transform .95s .34s cubic-bezier(.2,.72,.2,1);
}

.exact-contact.is-inview .contact-map-layout {
  opacity: 1;
  transform: none;
}

.contact-map-shell {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(26,67,57,.25);
  background: #dfe6de;
}

.contact-map-head {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  left: 15px;
  display: flex;
  height: 45px;
  padding: 0 8px 0 15px;
  align-items: center;
  justify-content: space-between;
  background: rgba(26,43,53,.92);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10,22,28,.16);
  backdrop-filter: blur(10px);
}

.contact-map-head > span {
  font: 700 8px/1 Arial, sans-serif;
  letter-spacing: .2em;
}

.contact-map-head > div {
  display: flex;
  height: 29px;
  gap: 3px;
}

.contact-map-head button {
  min-width: 72px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 9px;
  cursor: pointer;
  transition: background .25s, color .25s;
}

.contact-map-head button.is-active {
  border-color: #d8c78f;
  background: #d8c78f;
  color: #172631;
}

.contact-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #e3e8e1;
}

.contact-place-list {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.contact-place {
  position: relative;
  padding: 25px 28px 20px;
  border-bottom: 1px solid rgba(26,67,57,.2);
  background: rgba(255,255,255,.8);
  transition: background .3s, color .3s;
}

.contact-place:last-child { border-bottom: 0; }
.contact-place.is-active { background: #263241; color: #fff; }

.contact-place > span {
  color: #748078;
  font: 700 8px/1 Arial, sans-serif;
  letter-spacing: .18em;
}

.contact-place.is-active > span { color: #d8c78f; }

.contact-place h3 {
  margin: 15px 0 0;
  color: #18463e;
  font-size: 23px;
  letter-spacing: -.055em;
}

.contact-place.is-active h3 { color: #fff; }

.contact-place address {
  margin-top: 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.contact-place > p {
  margin: 8px 0 0;
  color: #78817b;
  font-size: 10px;
  line-height: 1.55;
}

.contact-place.is-active > p { color: rgba(255,255,255,.55); }

.contact-place > div {
  display: flex;
  position: absolute;
  right: 28px;
  bottom: 18px;
  left: 28px;
  gap: 7px;
}

.contact-place > div a {
  display: flex;
  height: 31px;
  padding: 0 11px;
  border: 1px solid rgba(31,67,57,.25);
  flex: 1;
  align-items: center;
  justify-content: space-between;
  color: #31564e;
  font-size: 9px;
  font-weight: 600;
  transition: border-color .25s, background .25s, color .25s;
}

.contact-place.is-active > div a {
  border-color: rgba(255,255,255,.24);
  color: rgba(255,255,255,.78);
}

.contact-place > div a:hover {
  border-color: #d8c78f;
  background: #d8c78f;
  color: #172631;
}

.contact-place > div i { font-style: normal; }

.exact-contact .contact-bottom {
  margin-top: 16px !important;
  padding-top: 13px !important;
}

@media (max-width: 880px) {
  .exact-contact {
    min-height: 150svh !important;
    padding: 100px 20px 100px !important;
  }

  .contact-map-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .contact-map-shell {
    height: 55svh;
    border-right: 0;
    border-bottom: 1px solid rgba(26,67,57,.25);
  }

  .contact-map-head {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .contact-map-head > span { display: none; }
  .contact-map-head > div { width: 100%; }
  .contact-map-head button { flex: 1; }
  .contact-place-list { grid-template-rows: repeat(2, 250px); }
  .contact-place { padding: 25px 22px 20px; }
  .contact-place > div { right: 22px; left: 22px; }
}
