/* ── Footer ── */
.footer {
  margin-top: auto;
  background: rgba(0,0,0,0.75);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.footer__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.footer__logo:hover .footer__logo-img { opacity: 1; }

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.footer__links a:hover { color: #FFD700; }

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}
