Where presence replaces pressure

‎‎

Cordelia’s work helps leaders:

● Restore internal clarity and emotional control

● Reconnect to confidence that doesn’t rely on constant proving

● Strengthen relationships without sacrificing authority

● Replace burnout cycles with sustainable leadership energy

● Lead with ...

As a speaker, Somatic Healer and Intimacy Educator in Charles Town, I bridge the gap between holistic wellness and personal empowerment at Cordelia Gaffar. My mission is simple: to provide women with the tools to embrace joy and pleasure, transforming these elements into the foundation of a fulfilling life. You ...

Embracing change and personal growth can be daunting, yet with Cordelia Gaffar, I offer a unique pathway. My quarterly retreats don't just provide a break; they offer a transformative experience where community and personal exploration converge. Through courses like 'Revealing Your Erotic Self' and 'Reclaim Your ...

From the quiet moments of reflection in my early journey to becoming a beacon for others seeking their light, my story offers both grounding and inspiration. Over the years, I've woven my experiences into a tapestry of empowerment and growth, encouraging each woman to embrace her unique narrative. The decision to ...

// Target a specific iframe by its ID (e.g. "widget50") function disableAutoplay(iframeId) { const iframe = document.getElementById(iframeId); if (!iframe) { console.warn(`No iframe found with id: ${iframeId}`); return; } // Remove 'autoplay' from the allow attribute const allowAttr = iframe.getAttribute('allow') || ''; const updated = allowAttr .split(';') .map(s => s.trim()) .filter(s => s.toLowerCase() !== 'autoplay') .join('; '); iframe.setAttribute('allow', updated); // Also strip autoplay from the src URL (for YouTube embeds) const url = new URL(iframe.src); url.searchParams.set('autoplay', '0'); iframe.src = url.toString(); console.log(`Autoplay disabled for: ${iframeId}`); } // Usage — pass the iframe's id: disableAutoplay('widget50');