Host an Event

Reserve one of our spaces for a full day or just a few hours and make your event that much more special.

Spending Minimums

There's no rental fee to host an event. Instead, we have a required spending minimum. We offer a $100 discount if you rent a 4-hour block outside of normal open hours. Please email wine@danteshillsdale.com if you have any inquiries about unique times, smaller or larger groups, or any questions.

Paradiso

Required spending minimum — there is no rental fee.

Sun – Thurs
Fri – Sat
4-hour block
$850
$1,499
Full day (7 hours)
$1,999
$2,699

Inferno

Entire public lounge, Monday – Saturday.

4-hour block
$1,999
Full day (7 hours)
$2,999

Individual rooms

Annex room
$300 / hr
Annex room with dedicated bartender
$450 / hr
Conference room
$150 / hr
Themed room
$50 / hr

Contact Us

If you would like to host an event or simply have questions about hosting one, please get in touch with us using the form below.

Thank you! Your message has been sent!
Oops! Something went wrong while submitting the form.
// If user is not logged in, remove 'hidden' class from .modal and .modal-signup // Function that contains your conditional logic const modal = document.querySelector('.modal') const modalSignUp = document.querySelector('.modal_signup') async function handleMemberStatus() { const memberstack = window.$memberstackDom; try { // Await the result of getCurrentMember() const { data: member } = await memberstack.getCurrentMember(); if (member) { // The member is logged in console.log("Member is logged in:", member.auth.email); // You can now show protected content or redirect them // Example: window.location.href = "/dashboard"; } else { // The member is logged out or doesn't have an account console.log("Member is logged out."); // You can now hide protected content or show a login button modal.classList.toggle('hidden') modalSignUp.classList.toggle('hidden') } } catch (error) { console.error("Error fetching member status:", error); } } // Check if Memberstack is already ready when the script runs if (window.$memberstackReady) { handleMemberStatus(); } else { // If not ready, wait for the 'memberstack.ready' event document.addEventListener("memberstack.ready", handleMemberStatus); }