.contacts {
    max-width: 1480px;
    margin: 0 auto;
    padding: 48px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", Arial;
    color: #0F172A;
}

/* HEADER */
.contacts__header {
    margin-bottom: 28px;
}

.contacts__header h1 {
    font-size: 36px;
    margin: 0;
}

.contacts__header p {
    margin-top: 6px;
    color: #64748B;
}

/* GRID */
.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* CARD */
.contacts__card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* COMPANY */
.contacts__company {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ROWS */
.contacts__row {
    margin-bottom: 14px;
}

.contacts__label {
    font-size: 15px;
    color: #64748B;
}

.contacts__value {
    font-size: 15px;
    margin-top: 2px;
    color: #0F172A;
}

/* ACTIONS */
.contacts__actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

/* PRIMARY (зелёный muted) */
.btn--primary {
    background: #2F7D6B;
    color: #fff;
}

.btn--primary:hover {
    background: #276B5C;
    transform: translateY(-1px);
}

/* SECONDARY (фиолетовый outline) */
.btn--secondary {
    background: #F4F3FB;
    color: #5A50C8;
    border-color: #D6D2F3;
}

.btn--secondary:hover {
    background: #E9E7FA;
}

/* MAP */
.contacts__map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

#contacts-map {
    width: 100%;
    height: 420px;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .contacts__grid {
        grid-template-columns: 1fr;
    }

    .contacts__map {
        order: -1;
        height: 320px;
    }
}