/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--gradient-brand);
  padding: 48px 0;
}
.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.4px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background 0.2s;
}
.footer-social-btn svg {
  width: 17px;
  height: 17px;
}
.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.footer-privacy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}
