.contacts-section { padding: 96px 0 84px; }
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.contacts p { color: var(--muted); font-size: 17px; max-width: 610px; }
.email-link {
  display: inline-block;
  margin: 12px 0 22px;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 850;
  letter-spacing: -.04em;
  color: var(--plum);
  border-bottom: 2px solid var(--lavender);
  padding-bottom: 4px;
  overflow-wrap: anywhere;
}

.contact-visual {
  position: relative;
  min-height: 370px;
  border-radius: 34px;
  background: var(--lavender-pale);
  border: 1px solid rgba(73,50,79,.08);
  padding: 34px;
  display: grid;
  place-items: center;
}
.contact-bot {
  width: min(100%, 360px);
  background: #fff;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 65px rgba(73,50,79,.10);
  transform: rotate(-2deg);
}
.contact-bot .top { display: flex; gap: 11px; align-items: center; margin-bottom: 18px; }
.contact-bot .avatar { width: 44px; height: 44px; border-radius: 50% 50% 50% 10px; background: var(--plum); color: #fff; display: grid; place-items: center; font-weight: 900; }
.contact-bot .msg { padding: 14px 15px; background: var(--lavender-soft); border-radius: 16px 16px 16px 5px; font-size: 14px; }

