/* ============================================================
   KRAXELBANDE – Footer (shared across all pages)
   ============================================================ */

.site-footer {
    position: relative;
    margin-top: 0;
}

.footer-wave {
    position: relative;
    line-height: 0;
    margin-bottom: -2px;
}

.footer-wave svg {
    width: 100%;
    height: auto;
    min-height: 60px;
}

.footer-body {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: var(--space-3xl);
    padding-block: var(--space-3xl);
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: var(--fs-sm);
    line-height: 1.7;
    opacity: 0.8;
    max-width: 300px;
}

.footer-heading {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.footer-links li+li {
    margin-top: var(--space-sm);
}

.footer-links a {
    font-size: var(--fs-sm);
    opacity: 0.7;
    transition: all var(--duration-fast) ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-1);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent-1);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    opacity: 0.7;
}

.footer-contact li+li {
    margin-top: var(--space-md);
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--color-accent-1);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--duration-fast) var(--ease-out);
}

.social-link:hover {
    background: var(--color-accent-1);
    color: var(--color-text);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(164, 189, 30, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding-block: var(--space-lg);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
}

.footer-legal a {
    opacity: 0.5;
    transition: opacity var(--duration-fast) ease;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--color-accent-1);
}

.footer-dot {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .footer-desc {
        max-width: none;
        margin-inline: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}