footer {
  position: relative;
  z-index: 1;
  padding: 28px clamp(20px, 5vw, 60px) 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 255, 255, .015);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand-red);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.footer-contact strong {
  color: var(--white);
  font-size: 14px;
}

.footer-contact a {
  color: var(--text);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--brand-red);
}

.footer-contact .contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(188, 11, 16, .08);
  border: 1px solid rgba(188, 11, 16, .16);
  position: relative;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
}

.footer-contact .contact-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .38) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer-contact 2.4s linear infinite;
  pointer-events: none;
}

.footer-contact .contact-chip i {
  font-size: 14px;
  line-height: 1;
  color: var(--brand-red);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .15));
}

.footer-contact .contact-chip span {
  position: relative;
  z-index: 1;
  font-weight: 700;
  color: var(--white);
}

@keyframes shimmer-contact {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 640px) {
  footer {
    padding: 24px 16px 28px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
