My approach to breathwork is integrative, trauma-informed and deeply transformational. I guide both groups and individuals through carefully structured sessions that blend ancient breath traditions with modern science, supporting nervous system regulation, emotional release, and optimal human performance. I work across a range of modalities, including Conscious Connected Breathing, Holotropic/Breakthrough-style trauma-informed breathwork, Heart Coherence techniques, and CO₂ tolerance development. These practices are tailored not only for personal growth and healing but also to support athletes and high performers in building resilience, recovery capacity, and mental focus. My facilitation is grounded in the work of leading thinkers in breathwork, trauma and physiology—drawing inspiration from Buteyko, Patrick McKeown, Stephen Porges, Peter Levine, Bessel van der Kolk, and Dr Gabor Maté. Their research shapes how I understand and teach breath as a tool for deep healing and long-term wellbeing. What sets my practice apart is not just the breathwork itself, but the integration and education that comes with it—supporting people to reclaim agency, clarity and calm, and to carry these tools into everyday life. Clients often describe the experience as life-changing—“like seven years of therapy in one.” Many say they were able to connect with their body and breath for the first time in their life, accessing deep clarity, emotional release, and a profound sense of reconnection. I hold space with care, clarity, and structure—prioritising safety, agency, and integration in every session. I am fully insured and hold current First Aid and CPR certification, maintaining high standards of safety and professionalism in all aspects of my work.
| Professional Summary | BiographyContactLocation |
| Professional Summary | BiographyContactLocation |
/*--------------------- MAP ---------------------*/ // jQuery('.member-list-detail-kc_role_s:first').children().remove(); if (jQuery('.member-list-detail-kc_role_s:first').text().includes('s2member_level3') || jQuery('.member-list-detail-kc_role_s:first').text().includes('s2member_level2')) { jQuery('.member-list-detail-kc_role_s').hide(); jQuery('table#school-member').hide(); jQuery('table#school-member #map').remove(); } else { jQuery('.member-list-detail-kc_role_s').hide(); jQuery('table#profesional-member').hide(); jQuery('table#profesional-member #map').remove(); } var map; var service; var infowindow; function initMap() { var ShowAddres = true; if(!jQuery('.member-list-detail-worldmap_yes_no').length && (jQuery('.member-list-detail-kc_role_s:first').text() == ' s2member_level3' || jQuery('.member-list-detail-kc_role_s:first').text() == ' s2member_level4')) ShowAddres = false; else if(jQuery('.member-list-detail-zip_city_level2').length) ShowAddres = false;
const sydney = new google.maps.LatLng(-33.867, 151.195);
infowindow = new google.maps.InfoWindow(); map = new google.maps.Map(document.getElementById("map"), { center: sydney, zoom: (ShowAddres) ? 12 : 7 });
var request if(!ShowAddres) request = { query: jQuery('.member-list-detail-country_code:first').html(), fields: ["name", "geometry"], }; else request = { query: jQuery('.member-list-detail-zip_code:first').html()+" "+jQuery('.member-list-detail-city_name:first').html()+" "+jQuery('.member-list-detail-country_code:first').html(), fields: ["name", "geometry"], };
service = new google.maps.places.PlacesService(map); service.findPlaceFromQuery(request, (results, status) => { if (status === google.maps.places.PlacesServiceStatus.OK && results) { /* for (let i = 0; i < results.length; i++) { createMarker(results[i]); } */ //alert("Found IT! "+jQuery('.member-list-detail-zip_code:first').html()+" "+jQuery('.member-list-detail-city_name:first').html()+" "+jQuery('.member-list-detail-country_code:first').html()); createMarker(results[0]); map.setCenter(results[0].geometry.location); } }); } function createMarker(place) { if (!place.geometry || !place.geometry.location) return; const marker = new google.maps.Marker({ map, position: place.geometry.location, }); google.maps.event.addListener(marker, "click", () => { infowindow.setContent(place.name || ""); infowindow.open(map); }); }
window.initMap = initMap;
