Helpful answers

Plan with fewer unknowns.

Here are clear answers to the questions hosts and planners ask most often.

How is rental pricing calculated?

Catalog prices show a one-day rate for each piece. Delivery, collection, staffing, and venue requirements are reviewed separately in your event plan.

Can I save pieces while I compare options?

Yes. Use the heart control on catalog cards to save products to Fallows in your browser.

How early should I contact you?

Earlier is helpful for larger events, but we welcome shortlists whenever you are ready to discuss availability.

Do you deliver and collect furniture?

Delivery and collection can be coordinated according to venue access, event timing, and the final quantity.

Can furniture be used outdoors?

Only pieces marked for covered outdoor use should be placed outside, and weather protection remains the host's responsibility.

How do I choose quantities?

Start with guest count, room zones, and the kind of movement you want. Our team can review a draft list with you.

Can I change my shortlist?

Shortlists are planning tools. Contact us before confirming so we can check availability and update the event plan.

What happens if a piece is unavailable?

We will identify a comparable alternative with a similar capacity, footprint, and visual role.

How should rented pieces be cared for?

Keep food, drinks, candles, and adhesives away from surfaces unless specifically approved, and report accidental damage promptly.

`; const footerHTML = ` `; document.querySelector('header').innerHTML = headerHTML; document.querySelector('footer').innerHTML = footerHTML; // full interactive scripts const style = document.createElement('style'); style.textContent = '.dark body,.dark main,.dark .bg-white{background:#111827;color:#e2e8f0} .dark .bg-orange-50{background:#111827} .dark .border-orange-200{border-color:#334155}'; document.head.appendChild(style); const toggle = document.querySelector('[data-theme-toggle]'); if (toggle) { toggle.onclick = () => { document.documentElement.classList.toggle('dark'); } } const mobileBtn = document.querySelector('[data-mobile-toggle]'); const mobileMenu = document.querySelector('[data-mobile-menu]'); if (mobileBtn && mobileMenu) { mobileBtn.onclick = () => { mobileMenu.classList.toggle('hidden'); } } const loginBtn = document.querySelector('[data-open-login]'); const loginModal = document.querySelector('[data-login-modal]'); const closeLogin = document.querySelector('[data-close-login]'); if (loginBtn && loginModal) { loginBtn.onclick = () => { loginModal.hidden = false; } } if (closeLogin && loginModal) { closeLogin.onclick = () => { loginModal.hidden = true; } } if (loginModal) { loginModal.onclick = (e) => { if (e.target === loginModal) loginModal.hidden = true; } } const banner = document.querySelector('[data-cookie-banner]'); const accept = document.querySelector('[data-accept-cookies]'); const dismiss = document.querySelector('[data-dismiss-cookie]'); const key = 'ember-cookie-consent'; function hide() { if (banner) banner.classList.add('hidden'); } function show() { if (banner) banner.classList.remove('hidden'); } if (!localStorage.getItem(key)) setTimeout(show, 1100); if (accept) accept.onclick = () => { localStorage.setItem(key,'true'); hide(); } if (dismiss) dismiss.onclick = () => { localStorage.setItem(key,'true'); hide(); } })();