/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    width: 100%;
    background-color: #000000;
    color: #878787;
}

.contact-section__container {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.contact-section__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.contact-section__links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-section__links a {
    color: #878787;
    font-size: clamp(1.3rem, 2vw, 2rem);
    line-height: 1.2;
    text-decoration: none;
    transition: color 250ms ease;
}

.contact-section__links a:hover {
    color: #ffffff;
}

.contact-section__email {
    margin-top: 2rem;
}

.contact-section__email i {
    font-size: 0.8em;
}

.contact-section__title {
    margin: 0;
    color: #878787;
    font-size: clamp(3rem, 5.5vw, 6rem);
    font-family: "SF Pro Display";
    font-weight: var(--fw-medium);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}


/* =========================================================
   CONTACT -  MOBILE
========================================================= */
@media (max-width: 767.98px) {

    .contact-section__container {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .contact-section__content {
        flex-direction: column;
        align-items: stretch;
        gap: 3.5rem;
        width: 100%;
    }

    .contact-section__title {
        order: 1;
        width: 100%;
        max-width: none;
        margin: 0;
        font-size: clamp(2.4rem, 10vw, 3.4rem);
        line-height: 0.92;
        text-align: center;
    }

    .contact-section__links {
        order: 2;
        align-items: flex-start;
        width: 100%;
    }

    .contact-section__links a {
        font-size: clamp(1.05rem, 5vw, 1.35rem);
        line-height: 1.35;
    }

    .contact-section__email {
        margin-top: 2rem;
        font-size: clamp(1rem, 4.5vw, 1.2rem) !important;
        overflow-wrap: anywhere;
    }
}