Studio Services

Transformative coaching sessions designed to help you find clarity, navigate transitions, and return to your authentic self

No Services Available

Ready to Begin Your Healing Journey?

Experience the transformative power of holistic wellness. Book a consultation to discover personalized healing practices tailored to your unique needs.

+ num.toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, ','); }, sortServices() { // Trigger reactivity this.services = [...this.services]; }, get filteredServices() { let filtered = this.services; // Apply category filter if (this.selectedCategory && this.selectedCategory !== '') { filtered = filtered.filter(service => service.category && service.category === this.selectedCategory ); } // Apply sorting if (this.sortBy) { filtered = [...filtered].sort((a, b) => { switch(this.sortBy) { case 'price-low': return (parseFloat(a.price) || 0) - (parseFloat(b.price) || 0); case 'price-high': return (parseFloat(b.price) || 0) - (parseFloat(a.price) || 0); case 'duration-short': return (parseInt(a.duration) || 0) - (parseInt(b.duration) || 0); case 'duration-long': return (parseInt(b.duration) || 0) - (parseInt(a.duration) || 0); case 'name': return (a.name || '').localeCompare(b.name || ''); default: return 0; } }); } return filtered; } } } __SKIP_BLOCK_13__ __SKIP_BLOCK_14__