.siteFooter {
    padding: 70px 0 28px;
    background: var(--charcoal-950);
    color: var(--white);
}

.footerInner {
    display: grid;
    gap: 50px;
}

.footerBrand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footerBrand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.footerBrand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
}

.footerBrand span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.65rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footerLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footerLinks a,
.footerBottom {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footerLinks a {
    transition: color var(--transition-fast);
}

.footerLinks a:hover {
    color: var(--gold-400);
}

.footerBottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footerBottom p {
    margin: 0;
}

.footerBottom a {
    color: var(--gold-400);
}

@media (max-width: 620px) {
    .footerBottom {
        flex-direction: column;
        gap: 10px;
    }
}


.footerLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}