/* ==========================================================
   Footer — deep raspberry band, cream logo, socials
   ========================================================== */

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    margin-top: 0;
}

.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(52px, 7vw, 84px) 24px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.footer__logo-link {
    display: block;
    line-height: 0;
}

.footer__logo {
    width: clamp(200px, 24vw, 280px);
    height: auto;
}

.footer__tagline {
    max-width: 520px;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--footer-text);
    opacity: 0.92;
}

/* --- Socials --- */
.footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--footer-text);
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.footer__social-link:hover {
    background: var(--footer-text);
    color: var(--footer-bg);
    border-color: var(--footer-text);
    transform: translateY(-2px);
}

/* --- Legal row --- */
.footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    margin-top: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    max-width: 720px;
}

.footer__copyright {
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--footer-text-soft);
}

.footer__legal-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer__legal-link {
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--footer-text);
    transition: color 0.2s ease;
}

.footer__legal-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer__link-divider {
    color: var(--footer-text-soft);
}

@media (max-width: 600px) {
    .footer__legal {
        flex-direction: column;
    }
}
