.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #050505;
    padding: 1.3rem var(--space-md);
}

.site-footer .container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

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

.footer-logo {
    width: 40px;
    height: auto;
}

.footer-text {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--steel-gray);
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 0.6rem;
}

.footer-social-link {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.footer-social-link:hover {
    background: var(--power-red);
    color: var(--white-pure);
}

@media (max-width: 640px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
