footer { background: var(--surface2); border-top: 1px solid var(--border); padding: 36px 64px; display: flex; flex-direction: column; gap: 0; }
.footer-inner { max-width: 1048px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 0; }
.footer-divider { border: none; border-top: 1px solid var(--border2); margin: 24px 0; }

/* Row shared */
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Row 1 */
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; color: var(--text); display: flex; align-items: center; }
.footer-logo-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; margin-left: 4px; }
.footer-logo-img {
  height: 26px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
}
.footer-socials { display: flex; align-items: center; gap: 9px; }
.footer-social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border2); background: transparent; color: var(--muted); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s, border-color .2s, color .2s; }
.footer-social-link svg { width: 15px; height: 15px; }
.footer-social-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Row 2 */
.footer-row-2 { align-items: flex-start; flex-wrap: wrap; gap: 36px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; min-width: 110px; }
.footer-col-title { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 1.5px; color: var(--text); margin-bottom: 2px; }
.footer-col a { font-size: 13.5px; font-weight: 300; color: var(--muted2); text-decoration: none; transition: color .2s; line-height: 1.4; }
.footer-col a:hover { color: var(--blue); }

/* Row 3 */
.footer-copy { font-size: 12.5px; color: var(--muted2); }
.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a { font-size: 12.5px; color: var(--muted2); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--blue); }
.footer-legal-sep { width: 3px; height: 3px; background: var(--muted2); border-radius: 50%; opacity: .5; }

@media (max-width: 768px) {
footer { padding: 28px 20px; }
  .footer-row-1 { flex-wrap: wrap; gap: 16px; }
  .footer-row-2 { gap: 28px; }
  .footer-row-3 { flex-direction: column; align-items: flex-start; gap: 12px; }
}