.contact-page {
    background: #fff;
}

.contact-page__article {
    padding: clamp(76px, 8vw, 120px) 0 clamp(82px, 8vw, 124px);
}

.contact-page__layout {
    display: grid;
    grid-template-columns: minmax(420px, .78fr) minmax(0, 1.35fr);
    gap: clamp(48px, 6vw, 94px);
    align-items: center;
}

.contact-page__content {
    max-width: 520px;
}

.contact-page__content h1 {
    margin: 0 0 28px;
    color: #17191b;
    font-family: 'Oswald Medium', 'Oswald Regular', sans-serif;
    font-size: clamp(64px, 5.5vw, 80px);
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: .94;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-page__intro {
    max-width: 500px;
    color: #4d5156;
    font-size: 18px;
    line-height: 1.55;
}

.contact-page__intro > :last-child {
    margin-bottom: 0;
}

.contact-page__list {
    display: grid;
    gap: 22px;
    margin: 38px 0 42px;
    padding: 0;
    list-style: none;
}

.contact-page__list li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.contact-page__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #842AF9;
    color: #fff;
    font-size: 20px;
}

.contact-page__list a,
.contact-page__list strong {
    display: inline-block;
    color: #17191b;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.contact-page__list a:hover,
.contact-page__list a:focus {
    color: #842AF9;
}

.contact-page__list p {
    margin: 3px 0 0;
    color: #6d7177;
    font-size: 14px;
    line-height: 1.4;
}

.contact-page__cta {
    min-height: 64px;
    width: min(100%, 340px);
    display: inline-grid;
    grid-template-columns: 24px 1fr 24px;
    gap: 14px;
    align-items: center;
    justify-items: center;
    padding: 16px 22px;
    border: 2px solid #842AF9;
    background: #842AF9;
    color: #fff;
    font-family: 'Oswald Medium', 'Oswald Regular', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .025em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.contact-page__cta:hover,
.contact-page__cta:focus {
    background: transparent;
    color: #842AF9;
    transform: translateY(-2px);
}

.contact-map {
    min-width: 0;
    border: 1px solid #ececef;
    background: #f5f5f6;
}

.contact-map__frame {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background: #e9ecef;
}

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

.contact-map__caption {
    min-height: 104px;
    display: grid;
    grid-template-columns: minmax(140px, .55fr) minmax(0, 1.7fr);
    align-items: center;
    gap: 34px;
    padding: 22px 30px;
    background: #fff;
}

.contact-map__label {
    margin: 0;
    padding-right: 30px;
    border-right: 1px solid #b9bbc0;
    color: #17191b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .28em;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-map__caption strong {
    display: block;
    color: #17191b;
    font-size: 16px;
    line-height: 1.35;
}

.contact-map__caption p:not(.contact-map__label) {
    margin: 3px 0 0;
    color: #6d7177;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 1199px) {
    .contact-page__layout {
        grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr);
        gap: 48px;
    }

    .contact-map__frame {
        min-height: 510px;
    }
}

@media (max-width: 991px) {
    .contact-page__article {
        padding-top: 68px;
    }

    .contact-page__layout {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .contact-page__content {
        max-width: 680px;
    }

    .contact-page__content h1 {
        white-space: normal;
    }

    .contact-map__frame {
        min-height: 520px;
    }
}

@media (max-width: 575px) {
    .contact-page__article {
        padding: 52px 0 70px;
    }

    .contact-page__layout {
        gap: 46px;
    }

    .contact-page__content h1 {
        margin-bottom: 22px;
        font-size: 58px;
    }

    .contact-page__intro {
        font-size: 16px;
    }

    .contact-page__list {
        gap: 20px;
        margin: 32px 0 36px;
    }

    .contact-page__list li {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
    }

    .contact-page__icon {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .contact-page__list a,
    .contact-page__list strong {
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .contact-page__cta {
        width: 100%;
        font-size: 17px;
    }

    .contact-map__frame {
        min-height: 420px;
    }

    .contact-map__caption {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px;
    }

    .contact-map__label {
        padding: 0 0 14px;
        border-right: 0;
        border-bottom: 1px solid #b9bbc0;
    }
}
