function Footer() {
  return (
    <footer className="footer">
      <div className="container footer-grid">
        <div className="logo footer-logo">
          <img src="assets/logo.png" alt="New Day Construction" className="logo-img" />
        </div>
        <div style={{display:'flex', gap:24, flexWrap:'wrap', alignItems:'center'}}>
          <span>Licensed · Bonded · Insured · WA</span>
          <span>© {new Date().getFullYear()} New Day Construction</span>
          <a href="https://www.newdayconstruction.co/privacy-policy/" target="_blank" rel="noopener noreferrer" style={{color:'var(--ink-3)', textDecoration:'underline', fontSize:13}}>Privacy Policy</a>
        </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;
