/* ===== MAXIE SITEWIDE FOOTER =====
   Single source of truth. Linked from every page and every generated page.
   Centred stack on mobile, split row from 768px up. */

.footer {
  background: linear-gradient(135deg, #00695C, #00897B);
  color: #fff;
}
.footer a { color: inherit; text-decoration: none; }
.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.footer-logo img { width: 2rem; height: 2rem; border-radius: 0.5rem; }
.footer-logo span { font-size: 1.25rem; font-weight: 700; color: #fff; }
.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .footer-logo { justify-content: flex-start; }
}
