/* ============================================================
   FOOTER — PROFESSIONAL
   ============================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(244,114,182,.12);
  position: relative; overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(244,114,182,.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  position: relative; z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 3rem;
  padding: 3rem 0 2.5rem;
}
.footer-brand {}
.footer-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: .65rem; font-weight: 400;
  color: #fff; line-height: 1;
  display: inline-block; margin-bottom: 1rem;
}
.footer-logo span { color: var(--violet-glow); }
.footer-tagline {
  font-size: .82rem; color: rgba(255,255,255,.35);
  line-height: 1.7; max-width: 280px;
}
.footer-nav {
  display: flex; gap: 3.5rem;
}
.footer-nav-col h4 {
  font-size: .62rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-nav-col a {
  font-size: .82rem; color: rgba(255,255,255,.45);
  transition: color .2s; font-weight: 500;
}
.footer-nav-col a:hover { color: var(--violet-glow); }

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(244,114,182,.15), transparent);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; gap: 1rem; flex-wrap: wrap;
}
.footer-copy {
  font-size: .75rem; color: rgba(255,255,255,.22);
  font-weight: 500;
}
.footer-copy strong { color: rgba(255,255,255,.5); font-weight: 700; }
.footer-socials {
  display: flex; gap: .6rem;
}
.footer-social-btn {
  width: 34px; height: 34px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: all .15s;
  box-shadow: 2px 2px 0 0 rgba(0,0,0,.2);
}
.footer-social-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-social-btn:hover {
  border-color: rgba(244,114,182,.5);
  color: var(--violet-glow);
  background: rgba(244,114,182,.08);
  box-shadow: 3px 3px 0 0 rgba(244,114,182,.2);
  transform: translate(-1px,-1px);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
