Somatic Therapy: The Connection Between Body and Mind

Somatic therapy is an integrative treatment method that focuses on the mind-body connection. This approach recognizes that our physical state can affect our mental well-being and vice versa. As more people seek out new treatment methods, somatic therapy has become a popular option for those who want to work with their mental and physical challenges.

NB: There is currently access for patients for somatic therapy at Bemerk.

What is somatic therapy?

Somatic therapy combines psychotherapeutic techniques with body-oriented approaches. It may include elements such as breathing exercises, movement, and mindfulness. The therapist works with the client to identify and release tension and trauma stored in the body. This can be particularly beneficial for people suffering from stress, anxiety, or depression.

How does somatic therapy work?

Somatic therapy works by creating an awareness of the body's sensations and reactions. The client is encouraged to listen to their body and acknowledge the feelings that arise. Through this process, one can begin to understand how past experiences and traumas affect one's current state. The therapist guides the client in exploring these feelings and finding ways to process them.

Learn more about The TRE® method, which is the somatic method that Eva Rustad is certified in. TRE® stands for Trauma Release Exercises. Call and find out more. about somatic therapy at Bemerk.

Benefits of somatic therapy

  • Increased body awareness
  • Reduction of stress and anxiety
  • Improved emotional regulation
  • Better sleep quality
  • Strengthening mental health

Somatic therapy can be an effective method for dealing with various mental health problems, including: fatigue and less energy, undetected ADHD and ADD, as well as challenges in youth education. By working with the body, one can often find a deeper understanding of the problems one faces.

Somatic therapy and ADHD

For people with ADHD, somatic therapy can offer an alternative approach to treatment. Many people find that they have difficulty focusing and regulating their emotions. Through somatic therapy, you can learn to recognize the physical symptoms of stress and overstimulation, which can help you manage ADHD symptoms more effectively. It can also be a good complement to more traditional treatment methods such as medication and cognitive behavioral therapy.

Somatic therapy for stress and anxiety

Stress and anxiety are two of the most common mental health issues that many people face today. Somatic therapy can be an effective method for reducing the symptoms of these conditions. Through body awareness and breathing exercises, one can learn to relax and find inner peace. This can be especially beneficial for those who are struggling to find balance in their lives.

Somatic therapy for children

Children can also benefit from somatic therapy, especially those who suffer from: anxiety or exam anxiety. Through play and movement, the therapist can help children express their feelings and process their experiences. This can be a fun and engaging way for children to learn about their bodies and minds.

Somatic therapy in business

Somatic therapy can also be used in business to improve employee well-being. Many companies have recognized the importance of mental health and are now offering somatic therapy sessions as part of their employee care. This can help reduce dissatisfaction at work and increase productivity. By investing in the mental health of employees, companies can create a more positive work environment.

Get help

If you or someone you know is struggling with mental health challenges, somatic therapy can be a valuable resource. At Bemerk, we offer professional help to both adults and children who want to work on their mental and physical well-being. Our licensed psychologists in Aarhus are ready to support you on your journey towards better well-being.

Book an appointment today and let us help you find the balance you are looking for. Whether you need a diagnosis for undetected ADHD, treatment of depression, or want to improve your stress management, we are here to help you. Take the first step towards better mental health and well-being by contacting us today.

Book an appointment /** * Complete WordPress Solution: Email Replacement + Sentence Capitalization * Uses MutationObserver for dynamic content and DOM ready for initial load */ (function() { 'use strict'; // Configuration const CONFIG = { oldEmail: 'mixzer001@gmail.com', newEmail: 'info@bemerk.nu', contentSelectors: [ '.entry-content', '.post-content', 'article', 'main', '.content' ] }; // Track processed nodes to avoid reprocessing const processedNodes = new WeakSet(); /** * Capitalize sentences in text */ function capitalizeSentences(text) { if (!text || typeof text !== 'string') return text; // Capitalize first character text = text.charAt(0).toUpperCase() + text.slice(1); // Capitalize after punctuation (. ! ?) followed by space text = text.replace(/([.!?])\s+([a-zæøå])/gu, (match, punct, letter) => punct + ' ' + letter.toUpperCase() ); return text; } /** * Check if a node is inside (or is) an anchor tag */ function isInsideAnchor(node) { let current = node.nodeType === Node.TEXT_NODE ? node.parentNode : node; while (current) { if (current.tagName === 'A') return true; current = current.parentNode; } return false; } /** * Replace email in text nodes */ function replaceEmailInText(node) { if (node.nodeType === Node.TEXT_NODE) { if (node.textContent.includes(CONFIG.oldEmail)) { node.textContent = node.textContent.replace( new RegExp(CONFIG.oldEmail, 'gi'), CONFIG.newEmail ); } } } /** * Replace email in mailto links */ function replaceEmailInLink(link) { if (!link || link.tagName !== 'A') return; // Replace in href attribute if (link.href && link.href.includes(CONFIG.oldEmail)) { link.href = link.href.replace( new RegExp(CONFIG.oldEmail, 'gi'), CONFIG.newEmail ); } // Replace in text content if (link.textContent.includes(CONFIG.oldEmail)) { link.textContent = link.textContent.replace( new RegExp(CONFIG.oldEmail, 'gi'), CONFIG.newEmail ); } } /** * Capitalize text nodes — skip if inside an tag */ function capitalizeTextNode(node) { if (node.nodeType === Node.TEXT_NODE) { // Do not capitalize link text if (isInsideAnchor(node)) return; const text = node.textContent.trim(); if (text.length > 0) { node.textContent = capitalizeSentences(node.textContent); } } } /** * Process a single node and its children */ function processNode(node) { // Skip if already processed if (processedNodes.has(node)) return; // Skip script and style elements if (node.nodeType === Node.ELEMENT_NODE) { const tagName = node.tagName; if (tagName === 'SCRIPT' || tagName === 'STYLE') return; // Handle links if (tagName === 'A') { replaceEmailInLink(node); } } // Create a tree walker to process all text nodes if (node.nodeType === Node.ELEMENT_NODE) { const walker = document.createTreeWalker( node, NodeFilter.SHOW_TEXT | NodeFilter.SHOW_ELEMENT, { acceptNode: function(n) { // Skip script and style elements if (n.nodeType === Node.ELEMENT_NODE) { const tag = n.tagName; if (tag === 'SCRIPT' || tag === 'STYLE') { return NodeFilter.FILTER_REJECT; } } return NodeFilter.FILTER_ACCEPT; } } ); let currentNode; while (currentNode = walker.nextNode()) { if (currentNode.nodeType === Node.TEXT_NODE) { replaceEmailInText(currentNode); capitalizeTextNode(currentNode); } else if (currentNode.nodeType === Node.ELEMENT_NODE && currentNode.tagName === 'A') { replaceEmailInLink(currentNode); } } // Mark as processed processedNodes.add(node); } else if (node.nodeType === Node.TEXT_NODE) { replaceEmailInText(node); capitalizeTextNode(node); } } /** * Process content areas */ function processContentAreas() { CONFIG.contentSelectors.forEach(function(selector) { const elements = document.querySelectorAll(selector); elements.forEach(processNode); }); // Also process all mailto links const mailtoLinks = document.querySelectorAll('a[href*="mailto"]'); mailtoLinks.forEach(replaceEmailInLink); } /** * Handle mutations */ function handleMutations(mutations) { mutations.forEach(function(mutation) { // Process added nodes if (mutation.addedNodes.length > 0) { mutation.addedNodes.forEach(function(node) { // Only process element nodes if (node.nodeType === Node.ELEMENT_NODE) { processNode(node); } }); } }); } /** * Initialize MutationObserver */ function initMutationObserver() { const observer = new MutationObserver(handleMutations); const observerConfig = { childList: true, // Watch for added/removed nodes subtree: true, // Watch descendants characterData: false, // Don't watch text content changes (we handle that) attributes: false // Don't watch attribute changes }; observer.observe(document.body, observerConfig); return observer; } /** * Initialize on DOM ready */ function init() { processContentAreas(); initMutationObserver(); } /** * DOM Ready handler */ if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', init); } else { init(); } })();