/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-section);
    padding-block: clamp(2rem, 4vw, 3rem);
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}
.footer__link {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--color-gold); }

.footer__contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
}
.footer__contact-label { color: var(--color-text-muted); font-weight: 600; }
.footer__emails { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer__email { color: var(--color-gold); }
.footer__email:hover { text-decoration: underline; }

.footer__payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.25rem;
}
.footer__payment {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.footer__responsible {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 640px;
}
.footer__age {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-danger);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
}
.footer__responsible-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer__copy {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer__responsible { flex-direction: row; text-align: left; }
}
