// privacy-page.jsx — Privacy Policy page for Elevate Noir Gala const pv = obsidianStyles; // ───────────────────────────────────────────────────────────────────── // NAV // ───────────────────────────────────────────────────────────────────── function PrivacyNav() { const { mobile } = useMobile(); const px = mobile ? 24 : 56; const [scrolled, setScrolled] = React.useState(false); const [menuOpen, setMenuOpen] = React.useState(false); React.useEffect(() => { const on = () => setScrolled(window.scrollY > 32); window.addEventListener('scroll', on, { passive: true }); on(); return () => window.removeEventListener('scroll', on); }, []); const navLinks = [ ['The Evening', 'index.html#about', false], ['About', 'About.html', false], ['Experience', 'index.html#experience', false], ['Partner', 'index.html#sponsors', false], ['Contact', 'index.html#footer', false], ]; return (<> {mobile && setMenuOpen(false)} s={pv} links={navLinks} cta={Reserve Tickets} />} ); } // ───────────────────────────────────────────────────────────────────── // LEGAL SECTION COMPONENT // ───────────────────────────────────────────────────────────────────── function PrivacySection({ number, title, children }) { return (
{number}

{title}

{children}
); } // ───────────────────────────────────────────────────────────────────── // PRIVACY CONTENT // ───────────────────────────────────────────────────────────────────── function PrivacyContent() { return (
{/* Header */}
Legal

Privacy
Policy

LAST UPDATED — MAY 27, 2026

Party & Bash Balloon Co. ("we," "us," or "our") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your personal information when you visit our website, purchase tickets, register as a sponsor, or attend the Elevate Noir Gala (the "Event"). By using our services, you consent to the practices described in this policy.

Information you provide directly:

  • Full name, email address, and phone number when purchasing tickets or registering
  • Payment information (credit card number, billing address) — processed and stored exclusively by Stripe; we do not store your full payment details on our servers
  • Dietary restrictions or accessibility requirements you voluntarily provide
  • Business name, logo, and contact information for sponsorship inquiries
  • Email address when subscribing to our mailing list or reserving early access

Information collected automatically:

  • Browser type, operating system, and device information
  • IP address and approximate geographic location
  • Pages visited, time spent on site, and referring URLs
  • Cookies and similar tracking technologies (see Section 07)

We use your personal information for the following purposes:

  • Processing ticket purchases and issuing confirmation emails
  • Managing sponsorship agreements and deliverables
  • Communicating Event details, updates, and changes
  • Responding to inquiries and providing customer support
  • Sending promotional communications about the Event and future events (with your consent)
  • Improving our website, services, and Event experience
  • Complying with legal obligations

All payment transactions are processed through Stripe, a PCI-DSS compliant payment processor. When you make a purchase:

  • Your payment information is transmitted directly to Stripe via encrypted connection
  • We receive only a transaction confirmation, the last four digits of your card, and billing address for our records
  • We never have access to your full credit card number
  • Stripe's privacy policy governs their handling of your payment data

We do not sell your personal information. We may share your information with:

  • Service providers — Stripe (payment processing), email service providers, and website hosting providers who assist in operating our services, bound by confidentiality agreements
  • Event venue — Guest lists and necessary attendee information for event management and security
  • Legal requirements — When required by law, court order, or governmental authority
  • Business transfers — In connection with a merger, acquisition, or sale of assets, your information may be transferred as part of that transaction

We retain your personal information for as long as necessary to fulfill the purposes outlined in this policy, unless a longer retention period is required by law. Specifically:

  • Transaction records: 7 years (as required by Canadian tax law)
  • Marketing preferences and mailing list data: Until you unsubscribe
  • Website analytics data: 26 months

Our website uses cookies and similar technologies to:

  • Remember your preferences and settings
  • Analyze website traffic and usage patterns
  • Facilitate the ticket purchase process

You can control cookies through your browser settings. Disabling cookies may limit some functionality of our website.

Under applicable Canadian privacy legislation (including PIPEDA), you have the right to:

  • Access — Request a copy of the personal information we hold about you
  • Correction — Request correction of inaccurate or incomplete information
  • Withdrawal of consent — Withdraw consent for marketing communications at any time
  • Deletion — Request deletion of your personal information, subject to legal retention requirements
  • Complaint — File a complaint with the Office of the Privacy Commissioner of Canada

We implement reasonable technical and organizational measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction. These measures include encrypted data transmission (SSL/TLS), secure server infrastructure, and access controls limiting data access to authorized personnel only. However, no method of transmission over the Internet is 100% secure, and we cannot guarantee absolute security.

Our website may contain links to third-party websites, including social media platforms and sponsor websites. We are not responsible for the privacy practices of these external sites. We encourage you to review the privacy policies of any third-party sites you visit.

Our services are not directed to individuals under the age of 19. We do not knowingly collect personal information from minors. If we become aware that we have collected information from a minor, we will take steps to delete it promptly.

We may update this Privacy Policy from time to time. Changes will be posted on this page with an updated "Last Updated" date. We encourage you to review this policy periodically. Continued use of our services after any changes constitutes acceptance of the revised policy.

For questions or requests regarding your personal information, contact our Privacy Officer:

Party & Bash Balloon Co.

Email: Hello@elevatenoirgala.com

{/* Cross-link */}

See also our Terms of Service.

); } // ───────────────────────────────────────────────────────────────────── // APP // ───────────────────────────────────────────────────────────────────── function PrivacyApp() { return ( <> ); } ReactDOM.createRoot(document.getElementById('root')).render();