/* Site footer — same paper as the page, no dark band */
:root {
    --sf-ink: #15261a;
    --sf-muted: rgba(21, 38, 26, 0.52);
    --sf-forest: #205A28;
    --sf-gold: #b08d3e;
    --sf-line: rgba(21, 38, 26, 0.1);
    --sf-font-display: var(--site-font-display, "Literata", "Noto Serif SC", "Songti SC", Georgia, serif);
    --sf-font-ui: var(--site-font-ui, "Manrope", "Noto Sans SC", "PingFang SC", "Segoe UI", sans-serif);
}

@keyframes sfRise {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    footer.site-footer *,
    footer.site-footer *::before,
    footer.site-footer *::after {
        animation: none !important;
        transition: none !important;
    }
}

footer.site-footer,
footer.site-footer.bg-light {
    position: relative;
    overflow: visible;
    margin-top: 2.5rem !important;
    padding: 2rem 1.25rem 1.6rem !important;
    color: var(--sf-ink);
    font-family: var(--sf-font-ui);
    border-top: none;
    box-shadow: none;
    background: transparent !important;
}

.site-footer-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    animation: sfRise 0.45s ease both;
}

.site-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: inherit;
}

.site-footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.site-footer-name {
    font-family: var(--sf-font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.15;
    color: var(--sf-ink);
}

.site-footer-tagline {
    margin: 0.75rem 0 0;
    font-family: var(--sf-font-display);
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(21, 38, 26, 0.72);
}

.site-footer-slogan {
    margin: 0.35rem 0 0;
    font-size: 0.86rem;
    letter-spacing: 0.1em;
    color: var(--sf-muted);
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.35rem;
    margin: 1.2rem 0 0;
}

.site-footer-nav a {
    color: rgba(21, 38, 26, 0.58) !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.2rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer-nav a:hover,
.site-footer-nav a:focus-visible {
    color: var(--sf-forest) !important;
    border-bottom-color: var(--sf-forest);
}

.site-footer-legal {
    margin-top: 1.2rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--sf-line);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.1rem;
    align-items: baseline;
}

.site-footer-copy,
.site-footer-icp {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: var(--sf-muted) !important;
}

.site-footer-icp {
    text-decoration: none;
}

.site-footer-icp:hover,
.site-footer-icp:focus-visible {
    color: var(--sf-forest) !important;
}

@media (max-width: 576px) {
    footer.site-footer,
    footer.site-footer.bg-light {
        margin-top: 1.75rem !important;
        padding: 1.6rem 1rem 1.35rem !important;
    }

    .site-footer-logo {
        width: 40px;
        height: 40px;
    }

    .site-footer-nav {
        gap: 0.2rem 1rem;
    }

    .site-footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
    }
}
