/* FOOTER — DISCREET, MINIMAL */

.footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
}

.footer__nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--primary);
}

.footer__contact {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__contact a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--primary);
}

.footer__bottom {
  max-width: var(--container);
  margin: 1.5rem auto 0;
  padding: 1.25rem 1.25rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 640px) {
  .footer__container {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    gap: 1.25rem;
  }
}
