/* =========================================
   Footer – Matmoe Modern Premium
   DSGVO-konform: keine externen Assets
   ========================================= */

.site-footer {
    position: relative;
    margin-top: 0;
    padding: 72px 0 30px;
    color: rgba(255,255,255,0.78);
    background:
        radial-gradient(circle at top left, rgba(144,192,39,0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(144,192,39,0.08), transparent 34%),
        linear-gradient(180deg, #111827 0%, #050505 100%);
    overflow: hidden;
}

.site-footer,
.site-footer * {
    box-sizing: border-box;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0));
    pointer-events: none;
}

.site-footer-inner {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 42px;
}

.footer-brand {
    max-width: 430px;
}

.footer-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--matmoe-primary, #90C027);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-brand h2,
.footer-column h3 {
    margin: 0 0 16px;
    color: #ffffff;
}

.footer-brand h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.footer-brand h2 span {
    color: var(--matmoe-primary, #90C027);
}

.footer-brand p {
    margin: 0;
    color: rgba(255,255,255,0.74);
    font-size: 16px;
    line-height: 1.75;
}

.footer-column h3 {
    font-size: 17px;
    line-height: 1.2;
}

.footer-links,
.footer-contact-list,
.footer-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-contact-list li,
.footer-legal-links li {
    margin: 0 0 11px;
}

.footer-links a,
.footer-contact-list a,
.footer-legal-links a {
    color: rgba(255,255,255,0.76);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact-list a:hover,
.footer-legal-links a:hover {
    color: var(--matmoe-primary, #90C027);
}

.footer-privacy-box {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.10);
}

.footer-privacy-box p {
    margin: 0;
    color: rgba(255,255,255,0.70);
    font-size: 14px;
    line-height: 1.65;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.58);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal-links li {
    margin: 0;
}

.footer-legal-links a {
    font-size: 14px;
}

@media (max-width: 900px) {
    .site-footer {
        padding: 58px 0 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}