.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--outline);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.footer-brand img {
  width: 22px;
  opacity: 0.6;
}

.footer-brand-name {
  font-family: var(--font-d);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--dim);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

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

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
