/* Footer InterFilm secours — violet / glass */
.site-footer {
  position: relative;
  margin-top: 3rem;
  padding: 0;
  border-top: 1px solid rgba(155, 140, 248, 0.14);
  background:
    radial-gradient(900px 320px at 12% -40%, rgba(155, 140, 248, 0.14), transparent 62%),
    radial-gradient(700px 280px at 88% 120%, rgba(107, 92, 231, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(8, 8, 14, 0.4), rgba(4, 4, 8, 0.95));
}

.footer-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.75rem 1.75rem 1.5rem;
}

.site-footer .footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
}

.footer__col h4 {
  margin: 0 0 0.85rem;
  font-family: var(--font, 'Outfit', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184, 170, 249, 0.85);
}

.footer__col a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s, transform 0.2s;
}

.footer__link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.62;
  color: rgba(184, 170, 249, 0.95);
  transition: opacity 0.2s, color 0.2s;
}

.footer__col a:hover .footer__link-icon {
  opacity: 1;
  color: #d4c8ff;
}

.footer__col a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer__logo-img {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer__brand-name {
  font-family: var(--font-display, 'Instrument Serif', serif);
  font-size: 1.65rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer__brand-accent {
  color: var(--accent-bright, #b8aaf9);
}

.footer__brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.footer__tagline {
  margin: 0 0 1.1rem;
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer__social {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82) !important;
  transform: none !important;
}

.footer__social:hover {
  transform: translateY(-1px) !important;
  color: #fff !important;
}

.footer__social--discord:hover {
  border-color: rgba(88, 101, 242, 0.55);
  background: rgba(88, 101, 242, 0.16);
}

.footer__social--tiktok:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.footer__bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer__copy--muted {
  margin-top: 0.35rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 860px) {
  .site-footer .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-shell {
    padding: 2rem 1.1rem 1.25rem;
  }

  .site-footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
