HervaMere

Questions and answers

Frequently asked questions

Who are HervaMere courses for?

They are designed for homeowners, beginners, and small grounds teams who want a clearer approach to lawnmower grass cutting.

Do I need a specific mower?

No. Courses discuss common walk-behind and battery mower situations and encourage learners to follow their own equipment manual.

Are the courses suitable for complete beginners?

Yes. Foundational lessons begin with preparation, controls, route planning, and observation before discussing refinement.

How long does a course take?

Catalog durations range from short 30-minute refreshers to structured practice courses of approximately 150 minutes.

Can I save a course for later?

Yes. Use the Fallows action on a catalog card. Saved course IDs are stored locally in your browser and appear on the Fallows page.

Can I add a course to the cart?

Yes. Add a catalog item to the local cart, then visit Cart to adjust quantities and review the displayed total.

Does HervaMere provide equipment or certification?

HervaMere provides educational content only. It does not provide physical equipment, licensing, or a government certification.

What should I do if conditions are unsuitable?

Pause and assess the lawn, weather, visibility, equipment, and surroundings. The courses support thoughtful decisions rather than rushed completion.

How can a team ask about group learning?

Use the Contact page and describe the team size, lawn context, and learning goals so the support team can respond appropriately.

Browse catalog Ask a question
`; const footerHTML = ` `; document.getElementById('site-header').innerHTML = headerHTML; document.getElementById('site-footer').innerHTML = footerHTML; function initTheme() { const KEY = 'hervamere-theme'; const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches; const saved = localStorage.getItem(KEY); const isDark = saved ? saved === 'dark' : prefersDark; if (isDark) document.documentElement.classList.add('dark'); function toggle() { document.documentElement.classList.toggle('dark'); localStorage.setItem(KEY, document.documentElement.classList.contains('dark') ? 'dark' : 'light'); } const t1 = document.getElementById('theme-toggle'); const t2 = document.getElementById('mobile-theme-toggle'); if (t1) t1.addEventListener('click', toggle); if (t2) t2.addEventListener('click', toggle); } function initModals() { function open(modal) { modal.classList.remove('hidden'); modal.classList.add('flex'); } function close(modal) { modal.classList.remove('flex'); modal.classList.add('hidden'); } document.querySelectorAll('[data-open-login]').forEach(b => b.addEventListener('click', () => open(document.getElementById('login-modal')))); document.querySelectorAll('[data-open-register]').forEach(b => b.addEventListener('click', () => open(document.getElementById('register-modal')))); document.querySelectorAll('[data-close-modal]').forEach(b => b.addEventListener('click', e => { const m = e.target.closest('[id$="-modal"]'); if (m) close(m); })); [document.getElementById('login-modal'), document.getElementById('register-modal')].forEach(m => { if (m) m.addEventListener('click', e => { if (e.target === m) close(m); }); }); } function initMobileMenu() { const btn = document.getElementById('mobile-menu-btn'); const nav = document.getElementById('mobile-nav'); if (btn && nav) { btn.addEventListener('click', () => { const open = nav.classList.toggle('hidden'); btn.setAttribute('aria-expanded', !open); }); } } function initCookies() { const banner = document.getElementById('cookie-banner'); const accept = document.querySelector('[data-accept-cookies]'); const KEY = 'hervamere-cookies'; if (!banner) return; if (localStorage.getItem(KEY) === 'true') banner.style.display = 'none'; else banner.style.display = 'block'; if (accept) accept.addEventListener('click', () => { localStorage.setItem(KEY, 'true'); banner.style.display = 'none'; }); } initTheme(); initModals(); initMobileMenu(); initCookies();