/* Footer override for legal pages, matched to homepage footer */
.footer {
  background: var(--black);
  padding: calc(var(--unit) * 4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--grid-gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.footer-logo {
  font-family: var(--futura);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.footer-logo img {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-right: 8px;
}

.footer-links {
  display: flex;
  gap: calc(var(--unit) * 3);
  align-items: center;
  flex: 0 0 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--gray-mid);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-mid);
  flex: 0 0 auto;
  flex-basis: auto;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: calc(var(--unit) * 2);
    text-align: center;
  }
}
