.lcontacts {
}

.lcontacts__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 50%);
    align-items: start;
    background: #F4F4F4;
    margin-bottom: -110px;
    z-index: 2;
    position: relative;
}

.lcontacts__content {
    padding: 80px;
}

.lcontacts__title {
    margin: 0 0 clamp(1px,1vw,13px);
    color: var(--gold);
}

.lcontacts__subtitle {
    max-width: 480px;
    margin-bottom: clamp(18px, 3vw, 24px);
    font-size: 17px;
    line-height: 1.3;
    color: #363636;
}

.lcontacts__offices {
    display: flex;
    gap: 14px;
    max-width: 480px;
    margin-bottom: clamp(24px, 3vw, 36px);
}

.lcontacts__office {
    min-width: 150px;
    max-width: 200px;
}

.lcontacts__office-city {
    margin-bottom: 5px;
    font-size: clamp(18px, 1.5vw, 20px);
    color: #353535;
    line-height: 1.15;
}

.lcontacts__office-addr {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.12;
    color: rgb(53, 53, 53, 0.8);
}

.lcontacts__office-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #686868;
    text-decoration: none;
    transition: 0.3s;
}

.lcontacts__callback {
    font-size: 18px;
    color: var(--gold);
    line-height: 1;
}

.lcontacts__office-link:hover,
.lcontacts__callback:hover {
    opacity: 0.75;
}

.lcontacts__phone-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.lcontacts__phone {
    font-size: 28px;
    color: #363636;
    text-decoration: none;
}

.lcontacts__messengers {
    display: flex;
    gap: 6px;
}

.lcontacts__messenger {
    color: #3e3e3e;
    line-height: 0;
    transition: 0.3s;
}

.lcontacts__messenger:hover {
    color: var(--gold);
}

.lcontacts__photo {
    align-self: stretch;
}

.lcontacts__photo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lcontacts__map iframe,
.lcontacts__map img {
    display: block;
    width: 100%;
    height: clamp(280px, 30vw, 420px);
    border: 0;
}

@media (width < 992px) {
    .lcontacts {
        background: #F4F4F4;
    }
    .lcontacts__top {
        grid-template-columns: 1fr;
    }

    .lcontacts__photo {
        order: -1;
    }

    .lcontacts__photo-img {
        height: clamp(220px, 50vw, 320px);
    }

    .lcontacts__content {
        padding: clamp(15px, 4vw, 40px) 0;
    }

    .lcontacts__top {
        margin-bottom: 0;
    }
}

@media (width < 768px) {
    .lcontacts__subtitle {
        font-size: 18px;
    }
}

@media (width < 480px) {
    .lcontacts__offices {
        flex-direction: column;
        gap: 26px;
    }
}
