.site-footer {
    padding: var(--space-4) 0;
    border-top: 1px solid var(--color-surface-border);
    background: var(--color-bg-alt);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    text-align: center;
    color: var(--color-text-faint);
}
.footer-inner img { max-height: 40px; width: auto; }
.footer-links { display: flex; gap: var(--space-2); }
.footer-links a { color: var(--color-text-faint); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: #fff; }

/* GDPR cookie-banner */
.cookie-consent {
    position: fixed;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    max-width: 640px;
    margin: 0 auto;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-surface-border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    z-index: 800;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
}
.cookie-consent--visible { transform: translateY(0); opacity: 1; }
.cookie-consent--hidden { transform: translateY(120%); opacity: 0; }
.cookie-consent-text strong { display: block; margin-bottom: .3rem; font-family: var(--font-heading); font-style: italic; }
.cookie-consent-text p { font-size: .82rem; color: var(--color-text-muted); margin: 0; max-width: 420px; }
.cookie-consent-actions { display: flex; gap: .6rem; flex-shrink: 0; }
@media (max-width: 560px) {
    .cookie-consent { flex-direction: column; align-items: stretch; }
    .cookie-consent-actions { justify-content: stretch; }
    .cookie-consent-actions button { flex: 1; }
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: .9rem;
    color: var(--color-text-muted);
    margin: .4rem 0 0;
}
