/* ==========================================================================
   AAS-FOG — Footer
   ========================================================================== */

.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.55);
    padding: 2.5rem 0 1.5rem;
}

/* --- Footer top (brand + links) --- */

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Brand block --- */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-name {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

.footer-brand-name small {
    display: block;
    font-weight: 400;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Footer links (wp_nav_menu output) --- */

.footer-links {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* --- Footer bottom (copyright) --- */

.footer-bottom {
    text-align: center;
    padding-top: 1.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Responsive --- */

@media (max-width: 600px) {

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
