292 lines
10 KiB
HTML
292 lines
10 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||
|
|
<title>The Iliopsoas Release | Carlos Tellez</title>
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--warm-bronze: #d4af37;
|
||
|
|
--deep-earth: #2b211a;
|
||
|
|
--copper-light: #c9a227;
|
||
|
|
--stone-gray: #e8e4dc;
|
||
|
|
--olive-night: #1a1f1a;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: 'Georgia', serif;
|
||
|
|
background: var(--olive-night);
|
||
|
|
color: var(--stone-gray);
|
||
|
|
line-height: 1.7;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container {
|
||
|
|
max-width: 900px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 3rem 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
header {
|
||
|
|
border-bottom: 2px solid var(--warm-bronze);
|
||
|
|
padding-bottom: 2rem;
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-size: 2.8rem;
|
||
|
|
color: var(--warm-bronze);
|
||
|
|
margin: 0 0 1rem 0;
|
||
|
|
line-height: 1.2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.subtitle {
|
||
|
|
font-size: 1.3rem;
|
||
|
|
color: var(--copper-light);
|
||
|
|
font-style: italic;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
font-size: 1.9rem;
|
||
|
|
color: var(--warm-bronze);
|
||
|
|
margin-top: 3rem;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
padding-left: 1rem;
|
||
|
|
border-left: 4px solid var(--copper-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
h3 {
|
||
|
|
font-size: 1.4rem;
|
||
|
|
color: var(--stone-gray);
|
||
|
|
margin-top: 2rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
p {
|
||
|
|
font-size: 1.15rem;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
text-align: justify;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step-box {
|
||
|
|
background: rgba(43, 33, 26, 0.7);
|
||
|
|
border: 1px solid var(--copper-light);
|
||
|
|
border-radius: 8px;
|
||
|
|
padding: 2rem;
|
||
|
|
margin: 2rem 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step-number {
|
||
|
|
font-size: 3rem;
|
||
|
|
color: var(--warm-bronze);
|
||
|
|
font-weight: bold;
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step-title {
|
||
|
|
font-size: 1.6rem;
|
||
|
|
color: var(--stone-gray);
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step-desc {
|
||
|
|
font-size: 1.1rem;
|
||
|
|
color: var(--copper-light);
|
||
|
|
line-height: 1.8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.anatomy-diagram {
|
||
|
|
width: 100%;
|
||
|
|
height: 400px;
|
||
|
|
background: linear-gradient(180deg, var(--deep-earth) 0%, var(--olive-night) 100%);
|
||
|
|
border: 2px solid var(--warm-bronze);
|
||
|
|
border-radius: 12px;
|
||
|
|
margin: 2.5rem 0;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.muscle-path {
|
||
|
|
position: relative;
|
||
|
|
width: 60%;
|
||
|
|
height: 80%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.vertebra {
|
||
|
|
position: absolute;
|
||
|
|
background: var(--warm-bronze);
|
||
|
|
border-radius: 50%;
|
||
|
|
box-shadow: 0 0 20px var(--copper-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
.tendon-line {
|
||
|
|
position: absolute;
|
||
|
|
width: 4px;
|
||
|
|
height: 200px;
|
||
|
|
background: linear-gradient(to bottom, var(--warm-bronze), transparent);
|
||
|
|
transform-origin: top center;
|
||
|
|
animation: pulse 4s ease-in-out infinite;
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes pulse {
|
||
|
|
0%, 100% { opacity: 0.7; transform: scaleY(1); }
|
||
|
|
50% { opacity: 1; transform: scaleY(1.05); }
|
||
|
|
}
|
||
|
|
|
||
|
|
.case-story {
|
||
|
|
background: rgba(212, 175, 55, 0.1);
|
||
|
|
border-left: 4px solid var(--warm-bronze);
|
||
|
|
padding: 2rem;
|
||
|
|
margin: 2.5rem 0;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
|
||
|
|
nav.breadcrumbs {
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
font-size: 0.9rem;
|
||
|
|
color: var(--copper-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
nav.breadcrumbs a {
|
||
|
|
color: var(--warm-bronze);
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
nav.breadcrumbs span {
|
||
|
|
margin: 0 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
footer {
|
||
|
|
margin-top: 4rem;
|
||
|
|
padding-top: 2rem;
|
||
|
|
border-top: 1px solid var(--copper-light);
|
||
|
|
text-align: center;
|
||
|
|
font-size: 0.9rem;
|
||
|
|
color: var(--copper-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
.warning-box {
|
||
|
|
background: rgba(255, 100, 50, 0.1);
|
||
|
|
border: 1px solid #ff6432;
|
||
|
|
border-radius: 8px;
|
||
|
|
padding: 1.5rem;
|
||
|
|
margin: 2rem 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.warning-title {
|
||
|
|
color: #ff6432;
|
||
|
|
font-size: 1.2rem;
|
||
|
|
font-weight: bold;
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.photo-caption {
|
||
|
|
font-size: 0.9rem;
|
||
|
|
color: var(--copper-light);
|
||
|
|
text-align: center;
|
||
|
|
margin-top: 0.5rem;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
|
||
|
|
img {
|
||
|
|
max-width: 100%;
|
||
|
|
height: auto;
|
||
|
|
border-radius: 8px;
|
||
|
|
margin: 2rem 0;
|
||
|
|
border: 2px solid var(--warm-bronze);
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<nav class="breadcrumbs">
|
||
|
|
<a href="/">Home</a> <span>›</span>
|
||
|
|
<a href="/the-iliopsoas-release.html">The Iliopsoas Release</a>
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
<header>
|
||
|
|
<h1>The Iliopsoas Release</h1>
|
||
|
|
<p class="subtitle">How a single muscle decides whether you walk to your granddaughter's wedding—or stay seated forever.</p>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<p>In Madera, I've watched this muscle steal a thousand sunsets. The iliopsoas—the deepest flexor in the pelvis—doesn't ask permission. It contracts, hardens, and locks the hip in place. Suddenly, Mrs. Rivera can't rise from her chair. Don't gets out of the truck. The farm worker can't bend to harvest the chile.</p>
|
||
|
|
|
||
|
|
<p>This is not theory. This is the move I've taught forty-seven patients to reclaim their morning coffee, their Sunday mass, their walk to the mercado.</p>
|
||
|
|
|
||
|
|
<div class="anatomy-diagram">
|
||
|
|
<div class="muscle-path">
|
||
|
|
<div class="vertebra" style="top: 10%; left: 45%; width: 20px; height: 20px;" title="L1"></div>
|
||
|
|
<div class="vertebra" style="top: 20%; left: 45%; width: 20px; height: 20px;" title="L2"></div>
|
||
|
|
<div class="vertebra" style="top: 30%; left: 45%; width: 20px; height: 20px;" title="L3"></div>
|
||
|
|
<div class="vertebra" style="top: 40%; left: 45%; width: 20px; height: 20px;" title="L4"></div>
|
||
|
|
<div class="vertebra" style="top: 50%; left: 45%; width: 20px; height: 20px;" title="L5"></div>
|
||
|
|
<div class="tendon-line" style="left: 50%; top: 55%;" title="Iliacus → Psoas Major → Lesser Trochanter"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h2>The Anatomy of Freedom</h2>
|
||
|
|
|
||
|
|
<p>The iliopsoas is two muscles fused by purpose: the <strong>psoas major</strong>, born from lumbar vertebrae L1-L5, and the <strong>iliacus</strong>, draped over the iliac fossa like a bronze shield. They merge, descend past the inguinal ligament, and anchor to the lesser trochanter of the femur.</p>
|
||
|
|
|
||
|
|
<p>When healthy: fluid flexion, a hip that opens like a flower. When seized: a cable pulled taut, turning every step into a negotiation with gravity.</p>
|
||
|
|
|
||
|
|
<div class="case-story">
|
||
|
|
<p><strong>Mrs. Rivera, age 78.</strong> Came to me three weeks before her granddaughter's quinceañera. "Carlos," she whispered, "I cannot stand." Her iliopsoas had contracted so severely that her pelvis tilted backward, locking her in a permanent squat. We didn't cut. We didn't inject. We released—with breath, with patience, with the exact angle of extension that tells the nervous system: <em>You are safe. Unclench.</em></p>
|
||
|
|
<p>At the ceremony, she danced. One song. Then she leaned on her grandson's shoulder and smiled: "That was enough."</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<img src="https://images.pexels.com/photos/27376663/pexels-photo-27376663.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Anatomical model of human hip bone showing pelvic structure and femoral attachment points" />
|
||
|
|
<p class="photo-caption">The architecture of movement: pelvic girdle and proximal femur. Where the iliopsoas anchors, freedom begins.</p>
|
||
|
|
|
||
|
|
<h2>The Protocol</h2>
|
||
|
|
|
||
|
|
<p>This is not a stretch. This is a <strong>neurological reset</strong>. Perform daily, or the contracture wins.</p>
|
||
|
|
|
||
|
|
<div class="step-box">
|
||
|
|
<span class="step-number">I</span>
|
||
|
|
<h3 class="step-title">Supine Position</h3>
|
||
|
|
<p class="step-desc">Lie on your back. Knees bent, feet flat. Hands resting on lower ribs. Breathe into your belly—not your chest. Feel the diaphragm descend, pressing gently on the psoas through the peritoneum. Three breaths. The muscle hears the rhythm before it obeys.</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="step-box">
|
||
|
|
<span class="step-number">II</span>
|
||
|
|
<h3 class="step-title">Hip Extension to Neutral</h3>
|
||
|
|
<p class="step-desc">Slowly extend one leg until the hamstring grazes the floor. Stop when you feel the first whisper of resistance—NOT pain. Hold for six breaths. The goal is not range; it is <strong>safety</strong>. The nervous system must believe the joint won't tear. Exhale on release. Repeat five times per side.</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="step-box">
|
||
|
|
<span class="step-number">III</span>
|
||
|
|
<h3 class="step-title">Pelvic Tilt Cue</h3>
|
||
|
|
<p class="step-desc">Return to knees-bent. Flatten your lower back against the earth by tilting the pubic bone upward. Imagine pouring water out of your pelvis. Hold for ten breaths. This is the signal: <em>We are not fleeing anymore.</em></p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="step-box">
|
||
|
|
<span class="step-number">IV</span>
|
||
|
|
<h3 class="step-title">Standing Integration</h3>
|
||
|
|
<p class="step-desc">Stand tall. Shift weight onto the treated leg. Allow the pelvis to settle into neutral. Walk three steps. Notice the difference: the hip that moves without apology. This is victory.</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="warning-box">
|
||
|
|
<p class="warning-title">⚠️ Contraindications</p>
|
||
|
|
<p>Do NOT attempt if: acute disc herniation (L1-L5), active infection in the pelvic cavity, recent abdominal surgery (<6 months), or uncontrolled hypertension. When in doubt, come to my clinic. I'll put my hand on your hip and tell you the truth.</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h2>Why This Matters Beyond the Clinic</h2>
|
||
|
|
|
||
|
|
<p>I've seen farm workers return to the fields because this move unlocked their stride. I've watched seniors rise from church pews without gripping the armrest. I've felt the moment the iliopsoas surrendered—not to force, but to trust.</p>
|
||
|
|
|
||
|
|
<p>This is not rehabilitation. This is <strong>reclamation</strong>.</p>
|
||
|
|
|
||
|
|
<footer>
|
||
|
|
<p>— Carlos Tellez, Madera, CA · 30 years of hips healed · Always losing keys, never losing hope.</p>
|
||
|
|
</footer>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|