.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--primary);
}

.footer-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 38px 0;
}

.footer-inner strong {
    display: block;
    margin: 0;
    color: var(--white);
    font-size: 1.15rem;
}

.footer-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

@media (max-width: 640px) {
    .footer-brand { gap: 10px; }
    .footer-logo { width: 50px; height: 50px; }
}

.footer-inner p {
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 8px 13px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    font-weight: 800;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
}
