:root {
    --footer-bg: #ffffff;
    --footer-border: #e5e7eb;
    --footer-text: #374151;
    --footer-muted: #6b7280;
    --footer-link: #059669;
    --footer-link-hover: #047857;
    --footer-blue-bg: #eff6ff;
    --footer-blue-border: #bfdbfe;
    --footer-blue-text: #1d4ed8;
    --footer-heart: #ef4444;
}

.site-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    margin-top: 3rem;
}

.site-footer__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-footer__logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--footer-text);
    font-size: 0.95rem;
}

.site-footer__logo {
    width: 40px;
    height: 40px;
}

.site-footer__heart {
    color: var(--footer-heart);
    font-weight: 600;
}

.site-footer__attribution {
    font-size: 0.8rem;
    color: var(--footer-muted);
    line-height: 1.5;
}

.site-footer__attribution a {
    color: var(--footer-link);
    text-decoration: underline;
}

.site-footer__attribution a:hover {
    color: var(--footer-link-hover);
}

.site-footer__disclaimer {
    border-top: 1px solid var(--footer-border);
    padding-top: 1.5rem;
}

.site-footer__disclaimer-card {
    background: var(--footer-blue-bg);
    border: 1px solid var(--footer-blue-border);
    color: var(--footer-blue-text);
    border-radius: 0.75rem;
    padding: 1.25rem;
    font-size: 0.8rem;
    line-height: 1.6;
}

.site-footer__disclaimer-card strong {
    font-weight: 600;
}

.site-footer__disclaimer-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.site-footer__links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--footer-muted);
}

.site-footer__links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: var(--footer-blue-text);
}

.site-footer__copyright {
    font-size: 0.75rem;
    color: #9ca3af;
}

@media (max-width: 640px) {
    .site-footer__inner {
        padding: 2rem 1rem;
    }

    .site-footer__logo-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .site-footer__links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
