/* Footer styles for brand block, navigation, and legal bottom bar. */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.32);
}

.footer-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 60px 0 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-tagline {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .footer-body {
    flex-direction: column;
    padding: 44px 0 30px;
    gap: 24px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
