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

.site-footer {
    background-color: var(--color-surface-container-lowest);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-block: var(--space-12);
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    padding-inline: var(--space-8);

    @media (min-width: 768px) {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Brand / copyright ---------------------------------------- */
.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);

    @media (min-width: 768px) {
        align-items: flex-start;
    }
}

.site-footer__brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-footer__logo svg {
    height: 2rem;
    width: 2rem;
    display: block;
    margin-bottom: var(--space-1);
}

.site-footer__copyright {
    font-family: var(--font-label);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #737373;   /* neutral-500 */
}

/* Footer nav ----------------------------------------------- */
.footer-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.footer-menu a {
    font-family: var(--font-label);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #737373;
    text-decoration: none;
    opacity: 0.8;
    transition:
        color var(--transition-slow),
        opacity var(--transition-slow);
}

.footer-menu a:hover {
    color: var(--color-secondary);
    opacity: 1;
}
