footer {
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-logo {
  font-size: 1.2rem;
}
.section-cta-gap {
  margin-top: 2rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 960px) {
  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
