.site-footer {
    margin-top: clamp(48px, 7vw, 88px);
    background-color: var(--darkBlue);
    color: var(--white);
    font-family: 'Jost-Regular', sans-serif;

    a {
        transition: 0.3s;
        &:hover {
            opacity: 0.5;
        }
    }
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: clamp(1rem, 5vw, 48px);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(27px, 5vw, 2rem);
}

.site-footer_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 5vw, 24px);
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;

    a {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 5%;
        transition: .8s;
        text-transform: uppercase;
        padding: 8px 12px;
    }
}

.site-footer__label {
    text-transform: uppercase;
    opacity: 0.5;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 5%;
}

.site-footer__work {
    font-size: clamp(1rem, 2vw, 18px);
}

.site-footer__contacts-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: clamp(1rem, 3vw, 26px);

    a {
        font-size: clamp(1rem, 2vw, 18px);
        text-decoration: underline;
        white-space: nowrap;
    }
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.875rem;
    margin-top: auto;
}

.site-footer__copy {
    letter-spacing: 6%;
    word-wrap: break-word;
    text-align: end;
}

.docs-pdn-wrap {
    display: flex;
    gap: clamp(12px, 2vw, 18px);
}



@media (width < 1250px) {
    .site-footer__inner {
        gap: 2rem;
    }
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-footer__brand {
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-nav {
        margin-left: -12px;
    }
    .site-footer__copy {
        text-align: start;
    }
}

@media (width < 700px) {
    .footer-nav,
    .docs-pdn-wrap,
    .site-footer__contacts-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (width < 576px) {
    .site-footer__contacts-wrap {
        margin-top: 30px;
    }
    .site-footer__brand {
        margin-top: 0.25rem;
    }
    .site-footer__copy {
        letter-spacing: -0.025em;
    }
}
