.site-footer {
    width: 100%;

    padding: 80px 40px 32px;

    box-sizing: border-box;

    background: rgba(245, 244, 241, 0.88);
}


/* ========================================
   FOOTER SHELL
======================================== */

.site-footer__shell {
    width: 100%;
    max-width: 1480px;

    margin: 0 auto;

    padding: 64px 64px 28px;

    box-sizing: border-box;

    background: #ffffff;

    border-radius: 18px;
}


/* ========================================
   MAIN
======================================== */

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;

    gap: 100px;

    padding-bottom: 64px;
}


/* ========================================
   BRAND
======================================== */

.site-footer__brand {
    max-width: 390px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.site-footer__logo-image {
    display: block;

    width: auto;
    height: 36px;

    object-fit: contain;

    transition: opacity 180ms ease;
}

.site-footer__logo:hover .site-footer__logo-image {
    opacity: 0.65;
}

.site-footer__description {
    max-width: 350px;

    margin: 28px 0 0;

    color: #727272;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.75;
}


/* ========================================
   NAVIGATION
======================================== */

.site-footer__navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 180px));

    gap: 70px;
}

.site-footer__column h3 {
    margin: 0 0 24px;

    color: #999;

    font-size: 11px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.site-footer__column nav {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.site-footer__column a {
    width: fit-content;

    color: #181818;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.4;

    text-decoration: none;

    transition:
        opacity 160ms ease,
        transform 180ms ease;
}

.site-footer__column a:hover {
    opacity: 0.5;

    transform: translateX(3px);
}


/* ========================================
   BOTTOM
======================================== */

.site-footer__bottom {
    min-height: 58px;

    padding-top: 26px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    border-top: 1px solid rgba(17, 17, 17, 0.09);

    color: #898989;

    font-size: 12px;
    font-weight: 400;
}

.site-footer__signature {
    color: #5f5f5f;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .site-footer {
        padding:
            64px
            16px
            16px;
    }

    .site-footer__shell {
        padding:
            48px
            32px
            24px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;

        gap: 52px;

        padding-bottom: 50px;
    }

    .site-footer__navigation {
        grid-template-columns: repeat(2, 1fr);

        gap: 32px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 560px) {

    .site-footer {
        padding:
            48px
            12px
            12px;
    }

    .site-footer__shell {
        padding:
            38px
            24px
            22px;

        border-radius: 18px;
    }

    .site-footer__main {
        gap: 44px;

        padding-bottom: 42px;
    }

    .site-footer__logo-image {
        height: 32px;
    }

    .site-footer__description {
        margin-top: 22px;

        font-size: 14px;
        line-height: 1.7;
    }

    .site-footer__navigation {
        grid-template-columns: 1fr 1fr;

        gap: 24px;
    }

    .site-footer__column h3 {
        margin-bottom: 20px;
    }

    .site-footer__column nav {
        gap: 14px;
    }

    .site-footer__column a {
        font-size: 13px;
    }

    .site-footer__bottom {
        min-height: 0;

        padding-top: 22px;

        flex-direction: column;
        align-items: flex-start;

        gap: 8px;

        line-height: 1.5;
    }

}
