Wrken (short for “work-in”) centers the felt experience—blending movement, breath, and sensorial awareness to create a life that’s not only stronger, but steadier and more alive.
Make well-being simple with Wrken
Wrken practitioners report experiencing a wide range of personal health and vitality benefits.
INCREASED ENERGY
MENTAL CLARITY
EASE IN THE BODY
IMPROVED FOCUS
INCREASED EMPOWERMENT
INCREASED ENERGY
MENTAL CLARITY
EASE IN THE BODY
IMPROVED FOCUS
EMPOWERMENT
The truth about vitality
Most of us are hungry for more energy, clarity, and joy. We know vitality fuels everything—from our relationships to our sense of purpose. So we chase it: hopping from one wellness trend to the next.
But that chase often leads to burnout, fragmentation, and overwhelm.
Vitality isn’t something you find. It’s something you cultivate.
Wrken is a new curriculum for living—rooted in ancient wisdom, guided by breath and rhythm, and designed to restore your relationship to yourself.
We’ve been conditioned to believe health is about doing more—more cold plunges, more workouts, more control. But true well-being isn’t found in extremes. It’s found in balance.
Wrken offers a personalized and evolving approach that integrates movement, breath, and connection—tailored to your specific body, lifestyle, and season of life.
We’ve been conditioned to believe health is about doing more—more cold plunges, more workouts, more control. But true well-being isn’t found in extremes. It’s found in balance.
Wrken offers a personalized and evolving approach that integrates movement, breath, and connection—tailored to your specific body, lifestyle, and season of life.
We’ve been conditioned to believe health is about doing more—more cold plunges, more workouts, more control. But true well-being isn’t found in extremes. It’s found in balance.
Wrken offers a personalized and evolving approach that integrates movement, breath, and connection—tailored to your specific body, lifestyle, and season of life.
Please provide your email to start the application process. You’ll be redirected to the next step once you submit this form.
Don’t have time to complete your application now? No worries—you’ll receive a link in your inbox to pick up where you left off.
document.addEventListener('DOMContentLoaded', function() {
// Open new tab immediately on submit button click (to bypass popup blockers)
const popupForm = document.querySelector('#elementor-popup-modal-3798 form.elementor-form');
if (!popupForm) {
console.warn('Popup form not found');
return;
}
const submitButton = popupForm.querySelector('button[type="submit"]');
if (!submitButton) {
console.warn('Submit button not found');
return;
}
submitButton.addEventListener('click', function() {
const redirectField = popupForm.querySelector('input[name="form_fields[coaching_redirect]"]');
if (redirectField) {
const url = redirectField.value;
console.log('Opening redirect URL on submit click:', url);
window.open(url, '_blank');
}
});
// Detect when Elementor form shows success message or hides the form (indicating submission)
const observer = new MutationObserver(function(mutations) {
mutations.forEach(mutation => {
// Check if popupForm has a class indicating success, or form is hidden
if (popupForm.classList.contains('elementor-form-submitted') ||
popupForm.style.display === 'none') {
// Close the popup if elementorPro API is available
if (typeof elementorPro !== 'undefined' && elementorPro.modules.popup) {
console.log('Closing popup after submission');
elementorPro.modules.popup.closePopup();
}
observer.disconnect(); // stop observing after success
}
});
});
observer.observe(popupForm, { attributes: true, attributeFilter: ['class', 'style'] });
});