function Footer() {
  return (
    <footer className="footer">
      <div className="container footer-grid">
        <div className="logo footer-logo">
          <img src="/gutters/assets/logo-buzybee.png" alt="BuzyBee Roofing" className="logo-img" style={{maxHeight:60, width:'auto'}} />
        </div>
        <div style={{display:'flex', gap:24, flexWrap:'wrap', alignItems:'center'}}>
          <span>Licensed · Bonded · Insured · WA</span>
          <span>© {new Date().getFullYear()} BuzyBee Roofing</span>
          <button
            type="button"
            onClick={() => document.dispatchEvent(new CustomEvent('open-privacy'))}
            style={{
              background:'none',
              border:'none',
              color:'var(--ink-3)',
              textDecoration:'underline',
              fontSize:13,
              cursor:'pointer',
              padding:0,
              font:'inherit',
            }}
          >Privacy Policy</button>
        </div>
      </div>
      <div className="container" style={{marginTop:16, paddingTop:16, borderTop:'1px solid var(--line)'}}>
        <p style={{fontSize:11, color:'var(--ink-3)', lineHeight:1.6, margin:0, maxWidth:680}}>
          This site is not a part of the Facebook™ website or Facebook™ Inc. Additionally, this site is NOT endorsed by Facebook™ in any way. FACEBOOK™ is a trademark of FACEBOOK™, Inc.
        </p>
      </div>
    </footer>
  );
}
window.Footer = Footer;
