Evenplane Herbarium

Studio desk

Let’s choose a thoughtful next step.

Send a clear question about course level, format, materials, or access. Our team replies during studio hours with practical information rather than pressure.

Field Note

`; const footerHTML=``; document.getElementById('site-header').innerHTML=headerHTML; document.getElementById('site-footer').innerHTML=footerHTML; const notes=["Oak leaves retain their structure longest when pressed between linen sheets.","Moss samples from northern slopes hold moisture differently than those from open fields.","Dried fern fronds curl inward when humidity drops below forty percent.","Elderflower clusters dry evenly when hung in single layers with good airflow.","Bark rubbings reveal growth rings most clearly on paper sized to the specimen width."]; document.getElementById('field-note').textContent=notes[Math.floor(Math.random()*notes.length)]; const form=document.getElementById('contact-form'); const modal=document.getElementById('error-modal'); const errText=document.getElementById('error-text'); form.addEventListener('submit',e=>{const f=e.currentTarget,errors=[];if(f.name.value.trim().length<2)errors.push('Enter your name using at least two characters.');if(!f.email.validity.valid)errors.push('Enter a valid email address.');if(f.message.value.trim().length<15)errors.push('Write at least 15 characters so we can understand your question.');if(errors.length){e.preventDefault();errText.textContent=errors.join(' ');modal.classList.replace('hidden','flex')}}); document.getElementById('close-error').addEventListener('click',()=>modal.classList.replace('flex','hidden')); if(localStorage.getItem('eh-theme')==='dark')document.body.classList.add('bg-[#081426]');