/* ─── SITE FOOTER ───
   Shared by every public page (see includes/site-footer.php).
   Self-contained: no dependency on any page's CSS variables. */

.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 40px 5% 28px;
    text-align: center;
    margin-top: 0;
}
.site-footer .footer-inner {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 16px;
    max-width: 1100px; margin: 0 auto;
}
.site-footer .footer-logo img {
    height: 50px; width: auto; display: block;
    filter: brightness(0) invert(1);
}
.site-footer .footer-center { text-align: center; flex: 1; }
.site-footer .footer-copy {
    font-size: 0.8rem; color: #999999;
    margin-bottom: 4px;
}
.site-footer .footer-tagline {
    font-size: 0.8rem; color: #555555;
    font-style: italic;
}
.site-footer .footer-linkedin {
    display: inline-flex; align-items: center; gap: 8px;
    color: #999999; text-decoration: none;
    font-size: 0.8rem; font-weight: 500;
    transition: color 0.3s;
}
.site-footer .footer-linkedin:hover { color: #FF6B35; }
.site-footer .footer-linkedin svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 768px) {
    .site-footer .footer-inner { flex-direction: column; align-items: center; gap: 20px; }
    .site-footer .footer-center { order: 2; }
    .site-footer .footer-logo { order: 1; }
    .site-footer .footer-linkedin { order: 3; }
}
