.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--color-navy-950);
    color: var(--color-white);
}

.site-footer__backdrop {
    position: absolute;
    z-index: -2;
    inset: 0 0 124px;
    background: url("/assets/artwork/hero-phoenix-home-v1.png") center 62% / cover no-repeat;
    filter: saturate(.72) brightness(.48);
}

.site-footer::after {
    position: absolute;
    z-index: -1;
    inset: 0 0 124px;
    background:
        linear-gradient(90deg, rgb(4 18 31 / 94%), rgb(4 18 31 / 72%) 58%, rgb(4 18 31 / 62%)),
        linear-gradient(180deg, rgb(4 18 31 / 50%), rgb(4 18 31 / 94%));
    content: "";
    pointer-events: none;
}

.site-footer__primary {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.55fr);
    gap: clamp(60px, 8vw, 140px);
    padding-block: clamp(76px, 8vw, 118px);
}

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

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--color-white);
    text-decoration: none;
}

.footer-brand img {
    width: 92px;
    height: 92px;
}

.footer-brand span {
    display: flex;
    align-items: baseline;
    letter-spacing: .06em;
}

.footer-brand strong {
    font-size: 1.15rem;
}

.footer-brand b {
    color: #ff3038;
    font-size: .78rem;
}

.site-footer__brand > p {
    margin: 24px 0;
    color: rgb(255 255 255 / 80%);
    font-size: 1rem;
}

.site-footer__brand .button {
    min-width: 250px;
    gap: 12px;
}

.site-footer__brand .site-footer__location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    font-size: .82rem;
}

.site-footer__location i {
    color: #ff454b;
}

.site-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.site-footer__social span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 50%;
    background: rgb(255 255 255 / 7%);
    color: rgb(255 255 255 / 86%);
    transition: border-color var(--motion-fast) ease, background var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.site-footer__social span:hover {
    border-color: #ff3038;
    background: rgb(239 21 27 / 16%);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.footer-nav section {
    padding: 8px clamp(24px, 3vw, 50px);
    border-left: 1px solid rgb(255 255 255 / 16%);
}

.footer-nav h2 {
    margin: 0 0 24px;
    font-size: 1.1rem;
}

.footer-nav ul {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgb(255 255 255 / 80%);
    font-size: .92rem;
    text-decoration: none;
    transition: color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.footer-nav a:hover {
    color: var(--color-white);
    transform: translateX(3px);
}

.footer-nav a i {
    color: #ff3038;
    font-size: .7rem;
}

.site-footer__boundary {
    border-top: 1px solid rgb(255 255 255 / 16%);
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    background: rgb(6 23 41 / 68%);
    backdrop-filter: blur(10px);
}

.site-footer__boundary .section__inner {
    display: flex;
    max-width: 920px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 126px;
}

.site-footer__boundary i {
    color: #ff3038;
    font-size: 2.4rem;
}

.site-footer__boundary p {
    margin: 0;
    color: rgb(255 255 255 / 82%);
}

.site-footer__boundary strong {
    display: block;
    color: var(--color-white);
}

.site-footer__legal {
    background: #03090f;
}

.site-footer__legal .section__inner {
    display: flex;
    min-height: 124px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer__legal p {
    margin: 0;
    color: rgb(255 255 255 / 62%);
    font-size: .82rem;
}

.site-footer__legal nav {
    display: flex;
    gap: 0;
}

.site-footer__legal a {
    padding: 0 24px;
    border-right: 1px solid rgb(239 21 27 / 55%);
    color: rgb(255 255 255 / 72%);
    font-size: .82rem;
    text-decoration: none;
}

.site-footer__legal a:last-child {
    padding-right: 0;
    border-right: 0;
}

.site-footer__legal a:hover {
    color: var(--color-white);
}

@media (max-width: 1050px) {
    .site-footer__primary {
        grid-template-columns: 1fr;
        gap: 54px;
    }
}

@media (max-width: 700px) {
    .site-footer__primary {
        padding-block: 68px;
    }

    .footer-brand img {
        width: 72px;
        height: 72px;
    }

    .footer-brand strong {
        font-size: .88rem;
    }

    .footer-brand b {
        font-size: .62rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-nav section {
        padding: 26px 0;
        border-top: 1px solid rgb(255 255 255 / 16%);
        border-left: 0;
    }

    .site-footer__boundary .section__inner {
        align-items: flex-start;
        padding-block: 28px;
    }

    .site-footer__legal .section__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 28px;
    }

    .site-footer__legal a {
        padding-inline: 12px;
    }

    .site-footer__legal a:first-child {
        padding-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-nav a {
        transition: none;
    }

    .site-footer__social span {
        transition: none;
    }
}
