/* Footer */

.footer {
  background: #090910;
  padding: 44px 24px;
  text-align: center;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-amber);
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.32);
}

/* Responsive */
@media (max-width: 480px) {
  .footer {
    padding: 32px 24px;
  }

  .footer-links {
    gap: 16px;
    font-size: 0.8rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
  }
}
