// FooterSection — links + TSC mention
function FooterSection() {
  return (
    <footer className="mi-footer">
      <div className="mi-footer__inner">
        <div className="mi-footer__brand">
          <img src="assets/logo-mz.png" alt="" />
          <p>Mélanie Inzirillo · Lectures cosmiques · Fondatrice de The Sunshine Club.</p>
        </div>
        <div className="mi-footer__cols">
          <div>
            <h6>Lectures</h6>
            <a href="#lecture">La méthode</a>
            <a href="#pricing">Tarifs</a>
            <a href="#booking">Réserver</a>
          </div>
          <div>
            <h6>Me suivre</h6>
            <a href="https://www.instagram.com/thesunshineclub.fr/" target="_blank" rel="noopener">Instagram</a>
            <a href="https://www.youtube.com/channel/UCj08G1GeOo21Ia_OZbPcMfA" target="_blank" rel="noopener">YouTube</a>
            <a href="mailto:melaniecoachbusiness@gmail.com">Me contacter</a>
          </div>
        </div>
      </div>
      <div className="mi-footer__bottom">
        <span>© 2026 Mélanie Inzirillo</span>
        <span>Fait avec ☀️ et 🌙 depuis la France</span>
      </div>
    </footer>
  );
}

Object.assign(window, { FooterSection });
