/* =============================================================
   footer.css
   Minimal dark footer.
   ============================================================= */

.footer {
  background: #1A1A1A;
  color: #fff;
  padding: 56px 0 48px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__brand {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 14px;
  color: #999;
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: #fff;
}

.footer__icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

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