/* ============================================================
   FOOTER
   ============================================================ */
.mf-custom-footer {
  background: var(--color-ocean-deep) !important;
  border-top: 3px solid var(--color-primary);
  padding: 40px 0 !important;
}

.mf-footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.mf-footer-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mf-footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.mf-footer-copyright {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: var(--color-mist);
  margin: 0;
  line-height: 1.5;
}

.mf-footer-developer {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--color-seafoam);
  margin: 0;
  line-height: 1.5;
}

.mf-footer-developer a {
  color: #4ECDC4 !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(78,205,196,0.4);
  transition: color 0.2s, border-color 0.2s;
}

.mf-footer-developer a:hover {
  color: var(--color-white) !important;
  border-bottom-color: var(--color-white);
}

.mf-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.mf-footer-menu li a {
  font-family: var(--font-accent) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--color-mist) !important;
  transition: color 0.25s !important;
}

.mf-footer-menu li a:hover {
  color: var(--color-accent) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .mf-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .mf-footer-menu {
    gap: 14px;
  }
}

/* ============================================================
   FOOTER HEIGHT — CONSISTENCY FIX
   ============================================================ */
body.mf-music .site-footer,
body.mf-music #colophon,
body.mf-resources .site-footer,
body.mf-resources #colophon,
body.mf-contact .site-footer,
body.mf-contact #colophon {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}

body.mf-music .ast-footer-copyright,
body.mf-resources .ast-footer-copyright,
body.mf-contact .ast-footer-copyright {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}