/* ==================================================
  Footer
================================================== */
.site-footer { padding: 3rem 0; background: var(--bg-soft); color: var(--text-muted); border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { height: 40px; opacity: 0.8; transition: var(--transition); }
.footer-brand:hover img { opacity: 1; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* Responsive Footer */
@media (max-width: 700px) {
  .footer-content { flex-direction: column; text-align: center; gap: 1.5rem; }
  .footer-links { flex-direction: column; gap: 1rem; }
}
