Inferno Private Lounge

A private club for cigar smokers in downtown Hillsdale. Individual members keep a humidified locker with their own key, bring guests, and reserve the Conference and Annex rooms when available. Open Thursday through Saturday for smoking, drinking, snacking, and debating.

Dante's flame emblem

Private Lounge Membership

The ultimate sanctuary for the discerning few

Plans available for individuals and corporations

Humidified storage locker and personalized key for individual members

25% discount on full boxes of cigars

Free conference and annex meeting room reservations

$999.95

/year

Limited Availability

Apply for Membership

Membership options

Individual

$999.95

/year

  • Humidified Storage locker and key

  • 25% discount on full boxes of cigars

  • 1 guest per visit

  • Free conference & annex meeting room reservations (when available)

Corporate

$999.95

/year

  • 4 representatives per membership

  • 25% discount on full boxes of cigars

  • 3 guests per visit

  • Free conference & annex meeting room reservations (when available)

By laws

  • Applications assessed within 7 days by the Membership Committee
  • Non-transferable and non-refundable
  • Right to adjust pricing reserved
  • Entry restricted to guests 21 years of age and older
  • Michigan law: only cigar smoking permitted — no marijuana, cigarettes, pipes, or any other combustibles

Apply to be an Inferno Private Lounge member

  • I am at least 21 years of age and will provide valid government-issued photo identification upon request.
  • I understand that membership is subject to the rules, policies, and code of conduct of Dante's Inferno Cigar Lounge, and may be revoked for violations.
  • I understand that annual dues are non-refundable, and that membership benefits — including discounts, lockers, and guest privileges — are as stated at the time of acceptance.
  • I consent to the collection and use of the information provided solely for membership administration and lounge operations.
  • I understand that smoking cigars and exposure to cigar smoke carry health risks, including an increased risk of cancer, heart disease, and respiratory illness. I enter the lounge voluntarily, assume those risks, and accept personal responsibility for my own conduct.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Benefits

Every membership carries the same core privileges. Individual and corporate tiers differ only in how many people they cover and how many guests they admit.

Guest privileges on every visit

25% discount on full boxes of cigars

Free conference and annex meeting room reservations

Frequently Asked Questions

Who can join?

Members must be 21 or older and provide valid government-issued photo identification on request. Applications are reviewed by the Membership Committee within seven days.

What can I smoke in the lounge?

Cigars only. Michigan law prohibits marijuana, cigarettes, pipes, and any other combustibles on the premises.

// 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); }