const b=document.querySelector('.menu'),l=document.querySelector('.links');if(b)b.addEventListener('click',()=>l.classList.toggle('open')); const f=document.querySelector('#inquiry-form');if(f)f.addEventListener('submit',e=>{e.preventDefault();const d=new FormData(f);const s=`Website inquiry: ${d.get('interest')}`;const body=`Name: ${d.get('name')}\nEmail: ${d.get('email')}\nPhone: ${d.get('phone')}\nInterest: ${d.get('interest')}\nPreferred contact: ${d.get('contact')}\n\nHorse, program, or project details:\n${d.get('message')}`;window.location.href=`mailto:Deanamarie@loveyoumoreequestrian.com?subject=${encodeURIComponent(s)}&body=${encodeURIComponent(body)}`;document.querySelector('#form-status').textContent='Your email application should now open. Please send the prepared message to complete your inquiry.';});