✦ Upcoming Gatherings

Events & Experiences

Live sessions, workshops, retreats, and sound baths — in person and online.

April 2026
5 events
Sound Bath
In-Person
12
Apr
Sound Healing · Breathwork
Sound Bath & Breathwork Evening
Maya
Hosted by Maya Rosenberg · Verified Practitioner
An immersive evening of Himalayan singing bowls, crystal bowls, and guided breathwork. Come as you are — no experience needed. Limited to 20 participants for an intimate experience.
🕖 7:00 PM – 9:00 PM PDT
📍 The Healing Space, 1234 Sunset Blvd, Los Angeles
👥 8 spots remaining
Breathwork
Virtual
15
Apr
Breathwork · Online
Conscious Connected Breathwork — Live Online
Preethy
Hosted by Preethy Padmanabhan · Art of Living Instructor
A 90-minute online breathwork journey designed to release emotional blocks, increase energy, and reconnect you with your inner clarity. Suitable for all levels. Zoom link sent upon registration.
🕗 7:00 PM – 8:30 PM PDT
💻 Live on Zoom
👥 32 registered · Unlimited spots
Sound Bath
Virtual
18
Apr
Sound Healing · Live Stream
Tibetan Bowl Sound Bath — Live Stream
Maya
Hosted by Maya Rosenberg · Sound Healer
Join from anywhere in the world for a 60-minute live sound healing session with crystal and Tibetan bowls. Headphones recommended for the full immersive experience.
🕗 7:30 PM – 8:30 PM PDT
💻 Live on Zoom
👥 18 registered
Retreat
Retreat
20
Apr
Meditation · Day Retreat
Spring Equinox Meditation Retreat
Arnold
Hosted by Arnold Tayam · Qigong Master
A full-day immersive retreat in the hills of Topanga Canyon. Morning Qigong, silent walking meditation, I Ching reading circle, and a closing fire ceremony. Vegetarian lunch included.
🕘 9:00 AM – 5:00 PM PDT
📍 Topanga Canyon, California
👥 2 spots remaining
Ayurveda
In-Person
26
Apr
Ayurveda · Workshop
Ayurveda & Seasonal Eating Workshop
Priya
Hosted by Priya Nair · Ayurvedic Practitioner
Learn to align your diet with the seasons and your unique constitution through the lens of Ayurvedic wisdom. Includes a dosha assessment, seasonal recipe guide, and herbal tea tasting.
🕑 2:00 PM – 5:00 PM PDT
📍 Nourish Studio, 890 Market St, San Francisco
👥 12 spots remaining
May 2026
3 events
Somatic
In-Person
3
May
Somatic Healing · Workshop
Somatic Healing Workshop — Half Day
Serena
Hosted by Serena Walsh · Somatic Therapist
A half-day immersive experience in body-based trauma release, breathwork, and movement. This workshop is trauma-informed and suitable for anyone who has felt stuck in their healing journey.
🕙 10:00 AM – 2:00 PM PDT
📍 Embodied Arts Studio, Los Angeles
👥 16 spots remaining
New Moon
Virtual · Free
10
May
Meditation · Community
New Moon Meditation Circle
Luna
Hosted by Luna Park · Meditation Teacher
A live guided session to release what no longer serves you and set intentions for the cycle ahead. This monthly gathering is open to all — no experience required. A love offering is welcome but not required.
🕗 7:00 PM – 8:30 PM PDT
💻 Live on Zoom
👥 Open to all
Retreat
Weekend Retreat
17
May
Qigong · Weekend Retreat
Qigong & I Ching Weekend Immersion
Arnold
Hosted by Arnold Tayam · Qigong Master
Two days of deep Qigong practice, I Ching consultation, and community in the Santa Cruz Mountains. Accommodation and all meals included. Limited to 12 participants for an intimate experience.
📅 May 17–18, 2026
📍 Santa Cruz Mountains, California
👥 4 spots remaining
<= daysInMonth; d++) { const btn = document.createElement('button'); btn.className = 'cal-day'; btn.textContent = d; const dateStr = `${viewYear}-${String(viewMonth+1).padStart(2,'0')}-${String(d).padStart(2,'0')}`; if (d === today.getDate() && viewMonth === today.getMonth() && viewYear === today.getFullYear()) btn.classList.add('today'); if (selectedDate === dateStr) btn.classList.add('selected'); if (eventDates.includes(dateStr)) btn.classList.add('has-event'); btn.onclick = () => selectDate(dateStr, d); container.appendChild(btn); } const total = firstDay + daysInMonth; const remaining = total % 7 === 0 ? 0 : 7 - (total % 7); for (let i = 1; i <= remaining; i++) { const btn = document.createElement('button'); btn.className = 'cal-day other-month'; btn.textContent = i; container.appendChild(btn); } } function changeMonth(dir) { viewMonth += dir; if (viewMonth > 11) { viewMonth = 0; viewYear++; } if (viewMonth < 0) { viewMonth = 11; viewYear--; } renderCalendar(); } function selectDate(dateStr, day) { selectedDate = selectedDate === dateStr ? null : dateStr; renderCalendar(); filterByDate(); } function filterByDate() { const cards = document.querySelectorAll('.event-card'); const label = document.getElementById('selectedDateLabel'); if (!selectedDate) { cards.forEach(c => c.style.display = ''); label.textContent = ''; return; } const d = new Date(selectedDate + 'T00:00:00'); const opts = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }; label.textContent = d.toLocaleDateString('en-US', opts); let found = 0; cards.forEach(c => { const show = c.dataset.date === selectedDate; c.style.display = show ? '' : 'none'; if (show) found++; }); if (found === 0) label.textContent += ' — No events scheduled'; } // ── TYPE FILTER ─────────────────────────────────────────────────── let activeType = 'all'; function setTypeFilter(type, btn) { activeType = type; document.querySelectorAll('.type-pill').forEach(b => b.classList.remove('active')); btn.classList.add('active'); const cards = document.querySelectorAll('.event-card'); cards.forEach(c => { const t = c.dataset.type || ''; c.style.display = (type === 'all' || t.includes(type)) ? '' : 'none'; }); } function toggleMenu() { document.getElementById('hamburger').classList.toggle('open'); document.getElementById('mobileMenu').classList.toggle('open'); document.body.style.overflow = document.getElementById('mobileMenu').classList.contains('open') ? 'hidden' : ''; } // Init renderCalendar(); // Set today as default selected const todayStr = `${today.getFullYear()}-${String(today.getMonth()+1).padStart(2,'0')}-${String(today.getDate()).padStart(2,'0')}`; document.getElementById('selectedDateLabel').textContent = '';