.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-logo {
  width: 125px;
  max-height: 115px;
  object-fit: contain;
  margin-bottom: 22px;
}

.contact-panel h3,
.map-head h3 {
  font-size: 1.35rem;
  color: var(--secondary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 17px;
  padding: 13px;
  border-radius: 13px;
  background: var(--soft);
  transition: .22s;
}

a.contact-item:hover {
  transform: translateX(3px);
  background: var(--soft-2);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(99, 39, 79, .07);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
}

.contact-item span:last-child {
  min-width: 0;
}

.contact-item small,
.contact-item b {
  display: block;
}

.contact-item small {
  color: var(--muted);
  font-size: .7rem;
}

.contact-item b {
  margin-top: 2px;
  color: var(--ink);
  font-size: .88rem;
  overflow-wrap: anywhere;
}

.social-title {
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--secondary);
  font-size: .82rem;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a,
.social-links button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  cursor: pointer;
  transition: .22s;
}

.social-links a:hover,
.social-links button:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: currentColor;
}

.map-panel {
  display: flex;
  flex-direction: column;
}

.map-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}

.map-head .kicker {
  margin-bottom: 7px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-weight: 800;
  font-size: .84rem;
}

.map-link svg {
  width: 17px;
  height: 17px;
}

.map-frame {
  flex: 1;
  min-height: 350px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

.map-note {
  margin-top: 12px;
  font-size: .76rem;
}

@media(max-width:820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:580px) {
  .contact-panel,
  .map-panel {
    padding: 22px;
  }

  .map-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
