/* === Footer – cinema_noir === */

.footer {
  border-top: 1px solid rgba(75, 85, 99, 0.9);
  background: radial-gradient(circle at top, #020617 0, #020617 60%, #000000 100%);
}

.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 20px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: #9ca3af;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 0, #facc15, #eab308, #92400e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
}

.footer__name {
  font-weight: 600;
  color: #f9fafb;
}

.footer__copy,
.footer__motto {
  display: block;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer__nav a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer__nav a:hover {
  color: #facc15;
  text-decoration: underline;
}

@media (max-width: 840px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
