/* ─── Site Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
    padding: var(--space-3) var(--space-4) var(--space-4);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    width: 100%;
    max-width: 480px;
}

.footer-disclaimer {
    color: var(--muted);
    font-size: 0.6875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer strong {
    color: var(--brand-green-hover);
    font-weight: 700;
}

html[data-theme="dark"] .footer-disclaimer strong {
    color: var(--success-bright);
}

/* ─── Legal Nav ──────────────────────────────────────────────────────────────── */
.footer-legal-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-1) var(--space-2);
}

.footer-legal-btn {
    background: none;
    border: none;
    color: var(--muted-light);
    font-size: 0.6875rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
    line-height: 1.5;
    min-height: 32px;
}

.footer-legal-btn:hover {
    color: var(--brand-green-hover);
}

.footer-legal-btn:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 2px;
}

html[data-theme="dark"] .footer-legal-btn:hover {
    color: var(--success-bright);
}

.footer-legal-sep {
    color: var(--border-medium);
    font-size: 0.75rem;
    user-select: none;
    line-height: 1.5;
}

/* ─── Copyright ──────────────────────────────────────────────────────────────── */
.footer-copy {
    color: var(--muted-light);
    font-size: 0.625rem;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ─── Legal Modal Body (scrollable content area) ─────────────────────────────── */
.legal-modal-body {
    max-height: 55vh;
    overflow-y: auto;
    scrollbar-width: thin;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--text-2);
    font-size: var(--font-sm);
    line-height: 1.72;
}

.legal-modal-body p {
    margin: 0;
}

.legal-modal-body strong {
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

html[data-theme="dark"] .legal-modal-body {
    color: #c7d7ef;
}

html[data-theme="dark"] .legal-modal-body strong {
    color: var(--text);
}
