/* ============================================================
   footer.css — Site Footer
============================================================ */

.footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  color: var(--dim-grey);
  letter-spacing: 0.1em;
}
.footer-text a {
  color: var(--solar-gold);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-text a:hover { color: var(--gold-bright); }
