/* field UI kit, footer with compliance lines */
function Footer() {
  return (
    <footer className="footer">
      <div className="wrap">
        <div className="footer__grid">
          <div>
            <img className="footer__mark" src="/assets/field-wordmark-graphite.svg" alt="field" />
            <p className="footer__tag">Physician-guided vitality, evidence-grounded protocols, transparently sourced.</p>
          </div>
          <div className="footer__col">
            <h4>Programs</h4>
            <a href="/#programs">Regenerative</a>
            <a href="/#programs">Strength</a>
            <a href="/#programs">Immune</a>
            <a href="/#programs">Beauty</a>
          </div>
          <div className="footer__col">
            <h4>Company</h4>
            <a href="/#about">About</a>
            <a href="/#how">How it works</a>
            <a href="/prescription-process.html">Our providers</a>
            <a href="/#manifesto">Journal</a>
          </div>
          <div className="footer__col">
            <h4>Care</h4>
            <a href="#">Start consult</a>
            <a href="/patient-portal.html">Patient portal</a>
            <a href="/prescription-process.html">Prescription process</a>
            <a href="/pharmacy-fulfillment.html">Pharmacy fulfillment</a>
            <a href="/contact.html">Contact</a>
          </div>
        </div>
        <div className="footer__legal">
          Prescription products are available only after an online consultation with a licensed physician who determines
          if a prescription is appropriate. Protocols are dispensed by a LegitScript-certified compounding pharmacy.
          <br />
          © 2026 Floreo Vitality LLC<span className="sep">·</span>fieldvitality.com<span className="sep">·</span>
          <a href="/terms.html">Terms</a><span className="sep">·</span>
          <a href="/privacy.html">Privacy</a><span className="sep">·</span>
          <a href="/refund.html">Refunds</a><span className="sep">·</span>
          <a href="/shipping.html">Shipping</a><span className="sep">·</span>
          This site does not provide medical advice.
        </div>
      </div>
    </footer>
  );
}
Object.assign(window, { Footer });
