/* ─── Global Footer ─── */
.site-footer {
    margin-top: 60px;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 60px 24px 24px;
    font-family: inherit;
}

.footer-content {
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-brand img {
    display: block;
    margin-bottom: 16px;
    transition: opacity var(--transition-fast);
}

.footer-brand img:hover {
    opacity: 0.8;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: all var(--transition-fast);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: var(--content-max);
    margin: 60px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Ensure footer padding accounts for bottom nav on mobile */
@media (max-width: 767px) {
    .site-footer {
        padding-bottom: calc(var(--bottom-nav-height) + 40px);
    }
}
