.site-footer {
  background: #000;
  border-top: 1px solid #111;
}

.site-footer .footer-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.site-footer .footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.site-footer .footer-links a {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer .footer-links a:hover {
  color: #c38ad2;
  opacity: 1;
  text-decoration: none;
}

.site-footer .footer-social {
  justify-content: flex-end;
  margin-top: 0;
  gap: clamp(16px, 2vw, 24px);
}

.site-footer .footer-social a {
  width: clamp(72px, 9vw, 102px);
  height: clamp(72px, 9vw, 102px);
}

.site-footer .footer-social svg {
  width: clamp(36px, 4vw, 48px);
  height: clamp(36px, 4vw, 48px);
}

@media (max-width: 900px) {
  .site-footer .footer-shell {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
  }

  .site-footer .footer-links {
    order: 1;
  }

  .site-footer .footer-social {
    order: 2;
    justify-content: center;
  }

  .site-footer .footer-copy {
    order: 3;
  }
}
