/**
 * MendozaTodo Master Design System — Micro-Phase CSS-10
 * Global Footer Component (Deep Forest Editorial Footer)
 */

/* Hide legacy Blocksy theme footer */
footer.ct-footer, #footer, .site-footer-legacy {
  display: none !important;
}

.mt-site-footer {
  position: relative !important;
  width: 100% !important;
  background-color: #1F3A2E !important;
  color: #FAF7F2 !important;
  padding-top: 56px !important;
  padding-bottom: 40px !important;
  margin-top: 64px !important;
  box-sizing: border-box !important;
  border-top: 1px solid rgba(200, 161, 90, 0.2) !important;
}

.mt-site-footer__container {
  width: min(calc(100% - 2 * 40px), 1360px) !important;
  margin-inline: auto !important;
}

.mt-site-footer__main-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 48px !important;
  margin-bottom: 44px !important;
}

.mt-site-footer__brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.mt-site-footer__logo {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-decoration: none !important;
  color: #FAF7F2 !important;
  line-height: 1 !important;
  margin-bottom: 14px !important;
}

.mt-site-footer__logo-svg {
  width: 58px !important;
  height: 18px !important;
  margin-bottom: 3px !important;
}

.mt-site-footer__logo-text-mendoza {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  color: #FAF7F2 !important;
  text-transform: uppercase !important;
}

.mt-site-footer__logo-text-todo {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  color: #C8A15A !important;
  text-transform: uppercase !important;
  margin-top: 1px !important;
}

.mt-site-footer__descriptor {
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #E7DAC2 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  max-width: 280px !important;
}

.mt-site-footer__col-heading {
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #C8A15A !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin: 0 0 16px 0 !important;
}

.mt-site-footer__nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.mt-site-footer__nav-link {
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #FAF7F2 !important;
  text-decoration: none !important;
  transition: color 150ms ease-in-out !important;
}

.mt-site-footer__nav-link:hover {
  color: #C8A15A !important;
}

/* Lang Links in Footer */
.mt-site-footer__lang-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 4px !important;
}

.mt-site-footer__lang-link {
  font-family: "Inter", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #E7DAC2 !important;
  text-decoration: none !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  transition: all 150ms ease-in-out !important;
}

.mt-site-footer__lang-link:hover, .mt-site-footer__lang-link--active {
  color: #1F3A2E !important;
  background-color: #C8A15A !important;
}

/* Bottom Legal Bar */
.mt-site-footer__bottom-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(231, 218, 194, 0.15) !important;
}

.mt-site-footer__copyright {
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #A1A1AA !important;
  margin: 0 !important;
}

.mt-site-footer__legal-links {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.mt-site-footer__legal-link {
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #A1A1AA !important;
  text-decoration: none !important;
  transition: color 150ms ease-in-out !important;
}

.mt-site-footer__legal-link:hover {
  color: #FAF7F2 !important;
}

/* Responsive Adaptations for 1024px & 390px Viewports */
@media (max-width: 1024px) {
  .mt-site-footer__container {
    width: min(calc(100% - 2 * 24px), 1360px) !important;
  }
  .mt-site-footer__main-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }
}

@media (max-width: 768px) {
  .mt-site-footer {
    padding-top: 40px !important;
    padding-bottom: 28px !important;
    margin-top: 44px !important;
  }
  .mt-site-footer__container {
    width: min(calc(100% - 2 * 16px), 1360px) !important;
  }
  .mt-site-footer__main-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    margin-bottom: 32px !important;
  }
  .mt-site-footer__descriptor {
    max-width: 100% !important;
  }
  .mt-site-footer__bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  .mt-site-footer__legal-links {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
}
