/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #000;
    color: #fff;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/* ========================================
   MAIN FOOTER
======================================== */

.footer-main {
    width: min(1400px, 92%);
    margin: 0 auto;

    padding: 80px 0;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;
}


/* ========================================
   BRAND
======================================== */

.footer-brand img {
    width: 150px;
    height: auto;
}

.footer-brand p {
    margin-top: 30px;

    font-size: 12px;
    font-weight: 900;

    line-height: 1.5;
    letter-spacing: 3px;
}


/* ========================================
   CONTACT
======================================== */

.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 35px;
}

.footer-contact-item span,
.footer-links > span {
    display: block;

    margin-bottom: 10px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item a,
.footer-contact-item p {
    font-size: 15px;
    font-weight: 700;

    line-height: 1.6;
}

.footer-contact-item a:hover {
    opacity: 0.5;
}


/* ========================================
   FOOTER LINKS
======================================== */

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 800;

    text-transform: uppercase;

    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.5;
}


/* ========================================
   BOTTOM
======================================== */

.footer-bottom {
    width: min(1400px, 92%);
    margin: 0 auto;

    padding: 20px 0;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.4);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .footer-main {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 60px 0;
    }

    .footer-brand img {
        width: 130px;
    }

    .footer-contact {
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

}