.site-footer {
  background: #3d1a5b;
  color: #fff;
  text-align: center;
  padding-block: 2.5rem 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.social__icons__footer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.social__icons__footer a {
  color: #fff;
  font-size: 1.4rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s;
}
.social__icons__footer a:hover {
  background: linear-gradient(135deg, var(--aqua), var(--purple));
  color: #2b2140;
  border-color: transparent;
  transform: translateY(-3px);
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-nav a {
  color: #eee;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--aqua);
}
.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}