/* ============================================================
   KORSAR — Контакты
   ============================================================ */

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.contacts__info .eyebrow { color: var(--c-sand); }

.contacts__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.85);
}
.contacts__place {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-white);
}

.contacts__phone {
  display: inline-block;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 2rem;
  transition: color var(--t-fast) var(--ease);
}
.contacts__phone:hover { color: var(--c-sand); }

.contacts__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

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