/* ===== Contacts ===== */
.ms-contacts {
    padding: clamp(48px, 8vw, 90px) 16px;
    background: radial-gradient(900px 600px at 120% -10%, rgba(255, 61, 124, .08), transparent 60%),
    var(--bg);
    border-top: 1px solid var(--border);
}

.ms-contacts__inner {
    display: grid;
    gap: clamp(18px, 3vw, 28px);
    grid-template-columns: 1.1fr 1.4fr;
    align-items: start;
}

@media (max-width: 920px) {
    .ms-contacts__inner {
        grid-template-columns: 1fr;
    }
}

/* Левая колонка */
.ms-contacts__info .ms-title {
    margin-bottom: 6px;
}

.ms-contacts__info .ms-subtitle {
    color: var(--muted);
    margin: 0 0 14px;
    text-align: center;
}

.ms-contacts__list {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

.ms-contacts__row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}

.ms-contacts__row:last-child {
    border-bottom: 0;
}

.ms-ico {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.ms-contacts__label {
    font-size: .85rem;
    color: var(--muted);
}

.ms-contacts__value a {
    color: var(--text);
    text-decoration: none;
}

.ms-contacts__value a:hover {
    text-decoration: underline;
}

.ms-contacts__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.ms-contacts__note {
    margin-top: 10px;
    color: var(--muted);
    font-size: .9rem;
}

/* Правая колонка: карта */
.ms-contacts__map {
    width: 100%;
}

.ms-map__shell {
    position: relative;
    width: 100%;
    height: 420px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), transparent);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.ms-map__loader {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: radial-gradient(1000px 700px at 20% -10%, rgba(255, 106, 61, .08), transparent 60%),
    var(--panel);
    color: #fff;
    border: 0;
    cursor: pointer;
    font-weight: 700;
}

.ms-map__loader:hover {
    filter: brightness(1.05);
}

.ms-map__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* QR внутри модалки */
.ms-qr{
  display:grid; place-items:center;
  padding: 10px; border:1px solid var(--border);
  border-radius:14px; background:var(--panel);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  margin: 10px 0 6px;
}
.ms-qr__hint{ color: var(--muted); font-size:.9rem; text-align:center; margin: 4px 0 0; }
