/* === FOOTER === */
.site-footer {
  background-color: #171024;
  border-top: 1px solid #2F2540;
  padding: 40px 20px;
  color: #C7C9D6;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
  gap: 24px;
}
.footer-logo {
  color: #A78BFA;
  font-size: 22px;
  margin-bottom: 4px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.footer-links a {
  color: #D5D8E6;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: #A78BFA; }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.footer-socials img {
  width: 32px;
  height: 32px;
  filter: brightness(0.9);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.footer-socials a:hover img {
  filter: brightness(1.3);
  transform: scale(1.1);
}

/* === Responsive === */
@media (max-width: 700px) {
  .creator-quote { font-size: 18px; }
  .footer-inner { text-align: center; grid-template-columns: 1fr; }
}