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

.site-footer {
    position: relative;

    padding: 90px 0 32px;

    background:
        linear-gradient(
            180deg,
            #070707,
            #050505
        );

    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.site-footer::before {
    content: "";

    position: absolute;
    top: 0;
    left: 15%;

    width: 70%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 100, 30, 0.38),
            transparent
        );

    box-shadow:
        0 0 24px rgba(255, 90, 20, 0.13);
}

.site-footer__top {
    display: grid;
    grid-template-columns:
        minmax(270px, 0.85fr)
        minmax(0, 1.15fr);

    gap: 90px;

    padding-bottom: 70px;
}

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

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

    color: #ffffff;

    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.site-footer__logo span {
    width: 12px;
    height: 12px;

    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--orange)
        );

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(255, 95, 25, 0.08),
        0 0 21px rgba(255, 95, 25, 0.6);
}

.site-footer__brand p {
    margin: 23px 0 0;

    color: rgba(255, 255, 255, 0.4);

    font-size: 0.92rem;
    line-height: 1.7;
}

.site-footer__navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}

.site-footer__column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
}

.site-footer__column > span {
    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.28);

    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__column a {
    color: rgba(255, 255, 255, 0.58);

    font-size: 0.85rem;
    font-weight: 550;

    transition:
        color 180ms ease,
        transform 180ms ease;
}

.site-footer__column a:hover {
    color: #ffffff;

    transform: translateX(4px);
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;

    padding-top: 27px;

    color: rgba(255, 255, 255, 0.27);

    font-size: 0.7rem;

    border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.site-footer__bottom > p {
    margin: 0;
}

.site-footer__bottom > a {
    justify-self: end;

    color: rgba(255, 255, 255, 0.4);

    font-weight: 650;

    transition: color 180ms ease;
}

.site-footer__bottom > a:hover {
    color: #ff982d;
}

.site-footer__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.site-footer__status p {
    margin: 0;
}

.site-footer__status span {
    width: 6px;
    height: 6px;

    background: #ff8a1e;

    border-radius: 50%;

    box-shadow:
        0 0 13px rgba(255, 138, 30, 0.7);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 16px;
    }

    .site-footer__status {
        justify-content: flex-start;
    }

    .site-footer__bottom > a {
        justify-self: start;
    }

}

@media (max-width: 600px) {

    .site-footer {
        padding-top: 70px;
    }

    .site-footer__navigation {
        grid-template-columns: 1fr 1fr;
        gap: 42px 25px;
    }

}