<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Kundalini Activation Guide — By Morgane</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap" rel="stylesheet">
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #f7f5f0;
    --warm-white: #fdfcf9;
    --text-dark: #1c1a17;
    --text-mid: #4a4640;
    --text-light: #8a857d;
    --text-faint: #b5b0a8;
    --border: rgba(60,55,45,0.12);
    --border-mid: rgba(60,55,45,0.22);
    --card-bg: #f2efe9;
    --accent: #6b5e4e;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--warm-white);
    color: var(--text-dark);
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    min-height: 100vh;
  }

  .page-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* HERO */
  .hero {
    text-align: center;
    padding: 5rem 1rem 3rem;
    border-bottom: 0.5px solid var(--border);
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
  }

  .hero-divider {
    width: 40px;
    height: 1px;
    background: var(--border-mid);
    margin: 1.25rem auto;
  }

  .hero-sub {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--text-light);
  }

  /* TABS */
  .tabs-wrap {
    position: sticky;
    top: 0;
    background: var(--warm-white);
    z-index: 100;
    border-bottom: 0.5px solid var(--border);
  }

  .tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar { display: none; }

  .tab-btn {
    flex-shrink: 0;
    padding: 1rem 1.1rem;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    background: none;
    border: none;
    border-bottom: 1.5px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }

  .tab-btn.active {
    color: var(--text-dark);
    border-bottom-color: var(--accent);
  }

  .tab-btn:hover:not(.active) { color: var(--text-mid); }

  /* PANELS */
  .panel { display: none; padding: 3.5rem 0 5rem; }
  .panel.active { display: block; }

  /* TYPOGRAPHY */
  .section { margin-bottom: 3rem; }

  .section-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 0.6rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.1rem;
  }

  .body-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-mid);
  }

  .body-text p { margin-bottom: 1.1rem; }
  .body-text p:last-child { margin-bottom: 0; }

  .rule {
    border: none;
    border-top: 0.5px solid var(--border);
    margin: 2.5rem 0;
  }

  .pull-quote {
    border-left: 1.5px solid var(--border-mid);
    padding: 0.4rem 0 0.4rem 1.5rem;
    margin: 2rem 0;
  }

  .pull-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
  }

  /* CARDS */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 0.75rem;
  }

  .card {
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
  }

  .card-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 0.3rem;
  }

  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
  }

  .card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-mid);
  }

  .card-sm-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 0.45rem;
  }

  /* CHECKLIST */
  .checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-top: 0.75rem;
  }

  .checklist li {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
    padding-left: 1.1rem;
    position: relative;
  }

  .checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-faint);
  }

  /* EXPERIENCE GRID */
  .exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0.75rem;
  }

  .exp-item {
    background: var(--warm-white);
    border: 0.5px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
  }

  .exp-item strong {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  /* AFTERCARE GRID */
  .aftercare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 0.75rem;
  }

  .aftercare-card {
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .aftercare-card strong {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 5px;
  }

  /* CHAKRA GRID */
  .chakra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0.75rem;
  }

  .chakra-card {
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
  }

  .chakra-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
  }

  .chakra-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-mid);
  }

  /* HIGHLIGHT ROW */
  .highlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 1rem;
  }

  .highlight-item {
    border: 0.5px solid var(--border);
    border-radius: 8px;
    padding: 0.9rem;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
  }

  .highlight-item strong {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  /* INFO BANNER */
  .info-banner {
    background: var(--card-bg);
    border: 0.5px solid var(--border-mid);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    margin-top: 1.25rem;
  }

  .info-banner-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }

  .info-banner p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-mid);
  }

  /* STEPS */
  .step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0.75rem;
  }

  .step-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
  }

  .step-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0.5px solid var(--border-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 1px;
  }

  /* FAQ */
  .faq-list {
    border: 0.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0.75rem;
  }

  .faq-item { border-bottom: 0.5px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
    transition: background 0.15s;
  }

  .faq-q:hover { background: var(--card-bg); }

  .faq-arrow {
    flex-shrink: 0;
    font-size: 11px;
    color: var(--text-faint);
    transition: transform 0.2s;
  }

  .faq-item.open .faq-arrow { transform: rotate(180deg); }

  .faq-a {
    display: none;
    padding: 0 1.25rem 1.1rem;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-mid);
  }

  .faq-item.open .faq-a { display: block; }

  /* CLOSING */
  .closing {
    text-align: center;
    padding-top: 1.5rem;
  }

  .closing p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
  }

  .closing .sig {
    margin-top: 1rem;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
  }

  /* RESPONSIVE */
  @media (max-width: 580px) {
    .two-col,
    .checklist,
    .exp-grid,
    .chakra-grid,
    .highlight-row { grid-template-columns: 1fr; }
    .aftercare-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding: 3rem 0.5rem 2rem; }
    .panel { padding: 2.5rem 0 4rem; }
  }

  @media (max-width: 400px) {
    .aftercare-grid { grid-template-columns: 1fr; }
  }
</style>
</head>
<body>

<div class="page-wrap">
  <div class="hero">
    <p class="hero-eyebrow">By Morgane</p>
    <h1>The Kundalini Activation Guide</h1>
    <div class="hero-divider"></div>
    <p class="hero-sub">Everything you need to know, prepare, and integrate</p>
  </div>
</div>

<div class="tabs-wrap">
  <div class="page-wrap">
    <div class="tabs">
      <button class="tab-btn active" onclick="showTab('kundalini', this)">What is Kundalini</button>
      <button class="tab-btn" onclick="showTab('inperson', this)">In person</button>
      <button class="tab-btn" onclick="showTab('online', this)">Online</button>
      <button class="tab-btn" onclick="showTab('aftercare', this)">Aftercare</button>
      <button class="tab-btn" onclick="showTab('faq', this)">FAQ</button>
    </div>
  </div>
</div>

<div class="page-wrap">

  <!-- WHAT IS KUNDALINI -->
  <div class="panel active" id="panel-kundalini">

    <div class="section">
      <p class="section-label">The basics</p>
      <h2 class="section-title">So, what actually is Kundalini?</h2>
      <div class="body-text">
        <p>Kundalini is your own life force energy. It lives inside every single one of us. It is not something external, not something I give you, and not something you have to earn or learn. It is already there. It has always been there. It is just waiting for the right conditions to wake up.</p>
        <p>In ancient traditions, this energy is described as a coiled serpent resting at the base of your spine, curled up three and a half times, completely dormant, until something calls it to rise. That something might be a life experience, a spiritual practice, or a facilitated activation like the ones I hold.</p>
        <p>She is often called the Divine Mother energy. Powerful, intelligent, loving, and fierce all at once. When she begins to move, she starts to clear out everything you no longer need. Old emotions that have been stuck for years. Patterns you inherited that were never yours to begin with. The heaviness of things you have been carrying without even realising. She knows exactly where to go and what to do. You do not need to guide her. You just need to get out of her way.</p>
        <p>This is why the experience looks so different for everyone. For some people she moves like a wave through the whole body. For others it is subtle at first, a tingling, a warmth, a deep stillness. Some people cry. Some laugh. Some feel nothing in the session at all and then notice everything shifting in the days that follow. There is no right way. Only your way.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">The symbol</p>
      <h2 class="section-title">Why a snake?</h2>
      <div class="body-text">
        <p>The serpent is one of the oldest spiritual symbols in the world, found across ancient traditions in India, Egypt, Greece, and beyond. And the reason it is used for Kundalini is actually really simple when you understand what the energy feels like.</p>
        <p>When Kundalini moves through the body, people describe it as a wave. A coiling. A current rising up the spine. It feels serpentine. Fluid and undulating. That is not coincidence. That is just an honest description of what the energy actually does.</p>
        <p>The snake also represents transformation. A snake sheds its skin and comes out completely renewed. It releases what no longer serves it and emerges fresh. That is exactly what Kundalini does for you. She is not here to destroy you. She is here to help you shed everything that was never really you in the first place.</p>
        <p>In the classical image you may have seen, two serpents coil around a central staff. This represents the two energy channels on either side of the spine weaving together as the energy rises through the centre. You might recognise this as the caduceus, the symbol still used in medicine today. The connection is not a coincidence either.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">Two very different paths</p>
      <h2 class="section-title">Kundalini activation vs Kundalini yoga</h2>
      <div class="body-text" style="margin-bottom: 1.25rem;">
        <p>People often ask if this is the same as Kundalini yoga. It is not, and the difference is really important to understand.</p>
      </div>
      <div class="two-col">
        <div class="card">
          <p class="card-label">The masculine path</p>
          <p class="card-title">Kundalini yoga</p>
          <p>A practice. You show up, you do the work. Specific breathwork, postures, mantras, and meditations designed to build and move Kundalini energy over time through discipline and consistent effort. You are actively doing something to cultivate the energy. It is a beautiful path, but it is a doing path.</p>
        </div>
        <div class="card">
          <p class="card-label">The feminine path</p>
          <p class="card-title">Kundalini activation</p>
          <p>A surrender. You lie down, you let go, and you allow. There is no practice, no postures, no mantras, nothing to learn or get right. The energy moves through the elevated frequency held in the space. Your only job is to receive. It is the feminine path of surrender, and it can open things in one session that might take years of practice to reach.</p>
        </div>
      </div>
      <div class="body-text" style="margin-top: 1.25rem;">
        <p>Neither is better than the other. They are simply different. But if you have ever found yourself exhausted by the pressure to always be doing, always working on yourself, always striving, then the activation path might feel like the most profound relief you have ever experienced.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">The pathway she travels</p>
      <h2 class="section-title">The chakras</h2>
      <div class="body-text" style="margin-bottom: 1.25rem;">
        <p>As Kundalini rises she moves through the seven energy centres of the body, known as chakras. Each one holds different things. And as she passes through, she begins to clear what has been stored there. This is why a session can bring up so much. Whatever has been sitting in those centres starts to move.</p>
      </div>
      <div class="chakra-grid">
        <div class="chakra-card"><p class="chakra-title">Root chakra</p><p>At the base of the spine. Safety, survival, belonging, and our connection to the physical world. Where Kundalini begins her journey.</p></div>
        <div class="chakra-card"><p class="chakra-title">Sacral chakra</p><p>In the lower belly. Creativity, sensuality, pleasure, and emotional flow. Often where deep ancestral patterns and emotional material is held.</p></div>
        <div class="chakra-card"><p class="chakra-title">Solar plexus chakra</p><p>Above the navel. Personal power, will, and self-worth. Where we hold our sense of who we are and what we believe we deserve.</p></div>
        <div class="chakra-card"><p class="chakra-title">Heart chakra</p><p>Centre of the chest. Love, grief, compassion, and connection. The bridge between the lower and upper chakras.</p></div>
        <div class="chakra-card"><p class="chakra-title">Throat chakra</p><p>At the throat. Truth, voice, and authentic expression. Where we hold the things we have never said and the parts of ourselves we have kept hidden.</p></div>
        <div class="chakra-card"><p class="chakra-title">Third eye chakra</p><p>Between the eyebrows. Intuition, inner vision, and expanded perception. As this opens, clarity and insight deepen.</p></div>
        <div class="chakra-card"><p class="chakra-title">Crown chakra</p><p>Top of the head. Connection to Source, to something greater than yourself. Where the experience of oneness becomes possible.</p></div>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">What to expect</p>
      <h2 class="section-title">What happens when you start working with her?</h2>
      <div class="body-text">
        <p>When you begin working with Kundalini, you are starting a process of real and lasting change. She does not do it all at once. She works in layers, always moving at the pace your nervous system can actually handle. She will never give you more than you are ready for.</p>
        <p>Some people feel the shift immediately. More alive in their body. A tingling or warmth that was not there before. A greater sensitivity to their own energy and to the energy of others around them.</p>
        <p>Emotionally, things that have been buried for a long time may start to come up. Old grief. Anger that never had space to move. Fear that has been sitting in the body for years. This can feel unsettling at first, but it is actually a really good sign. What comes up is coming up so it can finally leave.</p>
        <p>Over time people notice profound things changing in their lives. They find their voice. They leave what is no longer aligned. They feel more connected to their intuition, their purpose, their body. Synchronicities start happening. They feel more like themselves than they ever have. More real. More free.</p>
        <p>It is not always a smooth ride. There are periods of deep clearing that can feel heavy or disorienting. This is often called the dark night of the soul, and it is a completely normal part of the journey. It is not a sign that something is wrong. It is a sign that something is shifting.</p>
        <p>Kundalini does not make your life easier. She makes it more true.</p>
      </div>
    </div>

    <div class="pull-quote">
      <p>She does not give you anything you do not already have. She simply burns away everything that was never truly you.</p>
    </div>

  </div>

  <!-- IN PERSON -->
  <div class="panel" id="panel-inperson">

    <div class="section">
      <p class="section-label">Before your session</p>
      <h2 class="section-title">Preparing physically and energetically</h2>
      <div class="body-text" style="margin-bottom: 1rem;">
        <p>The more intentionally you prepare, the more space you create for this energy to move.</p>
      </div>
      <ul class="checklist">
        <li>Stay well hydrated in the 24 hours before</li>
        <li>Avoid alcohol or anything that clouds your awareness</li>
        <li>Do not eat heavily at least 2 hours before</li>
        <li>Rest and arrive feeling nourished</li>
        <li>Wear comfortable, loose clothing</li>
        <li>Set an intention, then release the outcome</li>
        <li>Approach with openness and curiosity</li>
        <li>Trust that your body knows what to do</li>
      </ul>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">Nervous system support</p>
      <h2 class="section-title">Dropping in before we begin</h2>
      <div class="body-text" style="margin-bottom: 1rem;">
        <p>If you are feeling anxious or unsettled before your session, these practices will help you regulate and arrive more fully in your body.</p>
      </div>
      <div class="two-col">
        <div class="card"><p class="card-sm-title">4-7-8 breathing</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Inhale through your nose for 4. Hold for 7. Exhale slowly through your mouth for 8. Repeat 3 to 4 times.</p></div>
        <div class="card"><p class="card-sm-title">Grounding touch</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">One hand on your heart, one on your lower belly. Close your eyes, breathe, and imagine warm light flowing from your hands into your body.</p></div>
        <div class="card"><p class="card-sm-title">Somatic sigh</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Big inhale through the nose, then a second shorter inhale on top. Exhale fully through the mouth with a sigh. Repeat 3 to 5 times.</p></div>
        <div class="card"><p class="card-sm-title">Body shaking</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Stand up and shake out your hands, arms, and legs. Let your body move however it needs to. Discharges stagnant energy and signals safety.</p></div>
        <div class="card"><p class="card-sm-title">Butterfly hug</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Cross your arms over your chest and tap gently on each shoulder, alternating sides. Eyes closed, breathe slowly, 1 to 2 minutes.</p></div>
        <div class="card"><p class="card-sm-title">Vagus nerve humming</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Hand on heart. Inhale deeply and hum on the exhale. Let the sound vibrate through your chest. Repeat for a few minutes.</p></div>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">During the session</p>
      <h2 class="section-title">What to expect</h2>
      <div class="body-text">
        <p>You will be invited to lie down flat for the duration of the activation. This signals safety to the brain and allows you to drop more deeply into the experience. Cushions and props are always welcome.</p>
        <p>I play a curated playlist of tribal, shamanic, and emotive music that rises and falls in waves. The music is dynamic and intentional, helping shift energy and support your nervous system in letting go.</p>
        <p>There is nothing you need to do. Simply lie down, soften, and allow. Your body knows exactly what to do. In person sessions typically run for around 90 minutes, including time to integrate and share afterwards. Sharing is optional but often deeply powerful.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">What you may feel</p>
      <h2 class="section-title">Every experience is valid</h2>
      <div class="body-text" style="margin-bottom: 1rem;"><p>There is no right or wrong way to experience this energy. Only your way.</p></div>
      <div class="exp-grid">
        <div class="exp-item"><strong>Physical sensations</strong>Tingling, heat, cold, vibrations, pressure, or trembling</div>
        <div class="exp-item"><strong>Emotional release</strong>Tears, laughter, grief, rage, or waves of joy</div>
        <div class="exp-item"><strong>Spontaneous movement</strong>Stretching, shaking, mudras forming naturally</div>
        <div class="exp-item"><strong>Sound release</strong>Sighs, yawns, toning, or spontaneous Light Language</div>
        <div class="exp-item"><strong>Visionary states</strong>Colours, light codes, past life memories, expanded awareness</div>
        <div class="exp-item"><strong>Deep stillness</strong>Floating, timelessness, profound peace and oneness</div>
        <div class="exp-item"><strong>Spiritual connection</strong>Ancestors, messages, or feeling held by something greater</div>
        <div class="exp-item"><strong>Nothing obvious</strong>Still valid. The real shifts often arrive in the days after.</div>
      </div>
    </div>

    <div class="pull-quote">
      <p>Kundalini always meets you exactly where you are. Trust what is unfolding within.</p>
    </div>

  </div>

  <!-- ONLINE -->
  <div class="panel" id="panel-online">

    <div class="section">
      <p class="section-label">Online sessions</p>
      <h2 class="section-title">How distance activation works</h2>
      <div class="body-text">
        <p>Kundalini energy is not bound by physical location. Energy moves beyond the limitations of time and space, and an online session can be just as powerful and transformative as being in the room together.</p>
        <p>When we connect, I raise my own Kundalini frequency and hold the energetic field between us. Your energy recognises this and begins to respond in exactly the same way it would in person. Distance does not diminish the depth of what is possible here.</p>
        <p>Many people find the comfort and familiarity of their own home actually allows them to drop in even more deeply. Your nervous system already feels safe there, and that can be a real gift. Online sessions typically run for around 60 minutes.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">The platform</p>
      <h2 class="section-title">We meet on Zoom</h2>
      <div class="body-text" style="margin-bottom: 1rem;">
        <p>Sessions are held on Zoom. You will receive a link in advance. Please make sure you have the Zoom app downloaded and your account set up before we begin. I play the music through Spotify on my laptop and it comes through the Zoom call directly to you, which is why your headphones matter so much.</p>
      </div>
      <div class="highlight-row">
        <div class="highlight-item"><strong>Zoom app</strong>Download and set up the Zoom app before the session. Do not rely on the browser version.</div>
        <div class="highlight-item"><strong>Headphones</strong>Wear headphones or earphones for the entire session. This is essential.</div>
        <div class="highlight-item"><strong>Connection</strong>Use a stable wifi connection. Sit close to your router if you can.</div>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">A note on headphones</p>
      <h2 class="section-title">Why headphones matter</h2>
      <div class="body-text">
        <p>The music used in a Kundalini activation is deeply intentional. It is tribal, shamanic, and emotive, and it is designed to move through your body and shift your nervous system. When you listen through headphones or earphones, the sound travels directly into your system in a way that laptop or phone speakers simply cannot replicate.</p>
        <p>Please wear headphones for the full session if you possibly can. Over-ear headphones are ideal, but earphones work well too. The more immersed you are in the sound, the more deeply you will be able to receive the activation.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">Setting up your space</p>
      <h2 class="section-title">Creating a sacred container at home</h2>
      <div class="body-text" style="margin-bottom: 1rem;">
        <p>Your environment matters. A little preparation beforehand sends a signal to your body that something sacred is about to happen.</p>
      </div>
      <ul class="checklist">
        <li>Choose a room where you will not be disturbed</li>
        <li>Let anyone at home know you need uninterrupted time</li>
        <li>Put your phone on silent, aside from using it for Zoom</li>
        <li>Lay out a mat, blanket, and pillow to lie on</li>
        <li>Dim the lights or draw the curtains to soften the space</li>
        <li>Light a candle or incense if that feels right</li>
        <li>Have a glass of water nearby for after</li>
        <li>Go to the toilet beforehand so you are fully settled</li>
      </ul>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">Before your session</p>
      <h2 class="section-title">Preparing your body and energy</h2>
      <ul class="checklist" style="margin-top: 0.5rem;">
        <li>Stay well hydrated in the 24 hours before</li>
        <li>Avoid alcohol or anything that clouds your awareness</li>
        <li>Do not eat heavily at least 2 hours before</li>
        <li>Rest and arrive feeling nourished</li>
        <li>Wear comfortable, loose clothing</li>
        <li>Set an intention, then release the outcome</li>
        <li>Log on a few minutes early to settle in</li>
        <li>Have your headphones on and ready before we start</li>
      </ul>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">Nervous system support</p>
      <h2 class="section-title">Dropping in before we begin</h2>
      <div class="two-col" style="margin-top: 0.5rem;">
        <div class="card"><p class="card-sm-title">4-7-8 breathing</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Inhale through your nose for 4. Hold for 7. Exhale slowly through your mouth for 8. Repeat 3 to 4 times.</p></div>
        <div class="card"><p class="card-sm-title">Grounding touch</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Hand on heart, hand on lower belly. Close your eyes, breathe slowly, and feel yourself arrive in your body.</p></div>
        <div class="card"><p class="card-sm-title">Somatic sigh</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Big inhale through the nose, second shorter inhale on top, full exhale through the mouth with a sigh. Repeat 3 to 5 times.</p></div>
        <div class="card"><p class="card-sm-title">Grounding into the earth</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Visualise roots growing from the base of your spine deep into the earth. Inhale her grounding energy upward. Exhale tension down.</p></div>
        <div class="card"><p class="card-sm-title">Butterfly hug</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Cross your arms and tap alternately on each shoulder. Eyes closed, slow breath, 1 to 2 minutes.</p></div>
        <div class="card"><p class="card-sm-title">Vagus nerve humming</p><p style="font-size:13px;line-height:1.65;color:var(--text-mid)">Hand on heart. Inhale and hum on the exhale. Feel the vibration in your chest for a few minutes.</p></div>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">How the session runs</p>
      <h2 class="section-title">What to expect step by step</h2>
      <ul class="step-list">
        <li><span class="step-num">1</span><span>We connect on Zoom and I take a few minutes to check in with you, answer any last questions, and help you settle. Your camera stays on throughout the session so I can hold space for you and be aware of what is moving through you.</span></li>
        <li><span class="step-num">2</span><span>Once we are both ready, I guide you to lie down in your prepared space. Take a moment to get fully comfortable. Use your pillow, blanket, or any props you need. Make sure you are warm and settled before the music begins.</span></li>
        <li><span class="step-num">3</span><span>I guide you through a short opening to drop you into your body and set the space. Then the music starts. From this point, simply close your eyes, breathe naturally, and allow. There is nothing you need to do.</span></li>
        <li><span class="step-num">4</span><span>The music plays for the duration of the activation. I am with you the whole time, holding the energetic field. You may feel a lot, you may feel very little. Both are completely valid. Trust whatever arises.</span></li>
        <li><span class="step-num">5</span><span>When the music ends, I gently guide you back. Take your time. Do not rush to sit up. Let yourself land fully before we share and integrate together.</span></li>
      </ul>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">Your position</p>
      <h2 class="section-title">How to lie during the activation</h2>
      <div class="body-text">
        <p>Lie flat on your back with your arms resting at your sides, palms facing up. This is the most open and receptive position for the energy to move through you. Your legs can be straight or with a very slight bend in the knees if that is more comfortable for your lower back.</p>
        <p>If lying flat causes discomfort, place a rolled blanket or pillow beneath your knees. Do not cross your arms or legs during the activation as this can create energetic blocks. If you feel an urge to move, stretch, or shake, follow it. Your body knows what it needs.</p>
      </div>
      <div class="info-banner">
        <p class="info-banner-title">Position your device carefully</p>
        <p>Set up your device so your camera can see your body, ideally from above or to the side. Make sure it is fully charged or plugged in and will not lock or go to sleep during the session.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">What you may feel</p>
      <h2 class="section-title">Every experience is valid</h2>
      <div class="exp-grid">
        <div class="exp-item"><strong>Physical sensations</strong>Tingling, heat, cold, vibrations, pressure, or trembling</div>
        <div class="exp-item"><strong>Emotional release</strong>Tears, laughter, grief, rage, or waves of joy</div>
        <div class="exp-item"><strong>Spontaneous movement</strong>Stretching, shaking, mudras forming naturally</div>
        <div class="exp-item"><strong>Sound release</strong>Sighs, yawns, toning, or spontaneous Light Language</div>
        <div class="exp-item"><strong>Visionary states</strong>Colours, light codes, past life memories, expanded awareness</div>
        <div class="exp-item"><strong>Deep stillness</strong>Floating, timelessness, profound peace</div>
        <div class="exp-item"><strong>Spiritual connection</strong>Ancestors, messages, or feeling held by something greater</div>
        <div class="exp-item"><strong>Nothing obvious</strong>Still valid. The real shifts often arrive in the days after.</div>
      </div>
    </div>

    <div class="pull-quote">
      <p>Energy has no limits. She will find you wherever you are.</p>
    </div>

  </div>

  <!-- AFTERCARE -->
  <div class="panel" id="panel-aftercare">

    <div class="section">
      <p class="section-label">Integration</p>
      <h2 class="section-title">The session does not end when the music stops</h2>
      <div class="body-text">
        <p>After a Kundalini activation, your system keeps processing. In many ways, the real integration begins in the days that follow. The Divine Mother energy knows exactly what needs to shift, and sometimes that brings things to the surface you were not expecting, physically, emotionally, and spiritually.</p>
        <p>You might feel incredible. Buzzing, light, expansive, full of love and clarity. Or you might feel tired, tender, emotional, or ungrounded. Both are completely valid. Both mean the energy is doing exactly what it needs to do.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">What may come up</p>
      <h2 class="section-title">Common experiences after a session</h2>
      <div class="exp-grid">
        <div class="exp-item"><strong>Emotional waves</strong>Unexpected tears, laughter, joy, or sadness arising in the days after</div>
        <div class="exp-item"><strong>Physical symptoms</strong>Tiredness, body aches, or flu-like sensations as the body clears</div>
        <div class="exp-item"><strong>Heightened sensitivity</strong>Feeling more open, raw, or emotionally tender than usual</div>
        <div class="exp-item"><strong>Vivid dreams</strong>Sleep disruption or unusual, meaningful dreams as energy moves at night</div>
        <div class="exp-item"><strong>Spontaneous activations</strong>Sudden energy surges in the days following. This is completely normal.</div>
        <div class="exp-item"><strong>Shifting appetite</strong>Craving lighter, cleaner foods as your body adjusts</div>
        <div class="exp-item"><strong>Light language</strong>Spontaneous sounds, movements, or symbols arising without warning</div>
        <div class="exp-item"><strong>Expanding awareness</strong>Feeling more connected, more magnetic, more yourself</div>
      </div>
      <div class="pull-quote" style="margin-top: 1.5rem;">
        <p>Everything that rises is rising so it can finally leave. You are not going backwards.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">How to support yourself</p>
      <h2 class="section-title">Your integration toolkit</h2>
      <div class="body-text" style="margin-bottom: 1rem;"><p>How you care for yourself in the days after will shape how deeply the shifts land.</p></div>
      <div class="aftercare-grid">
        <div class="aftercare-card"><strong>Rest</strong>Give yourself space to land. Resist the urge to rush back into busy-ness.</div>
        <div class="aftercare-card"><strong>Hydrate</strong>Drink plenty of water to support your system as it processes and clears.</div>
        <div class="aftercare-card"><strong>Ground</strong>Barefoot time on the earth, time in nature, slow deep breaths.</div>
        <div class="aftercare-card"><strong>Journal</strong>Write down what came up. Dreams, emotions, images, insights. Writing anchors integration.</div>
        <div class="aftercare-card"><strong>Move gently</strong>Slow walks, stretching, or shaking keep the energy flowing.</div>
        <div class="aftercare-card"><strong>Nourish</strong>Root vegetables, healthy fats, warm slow cooked meals.</div>
        <div class="aftercare-card"><strong>Salt bath</strong>Helps clear your energetic field and brings you back into your body.</div>
        <div class="aftercare-card"><strong>Supplements</strong>Magnesium glycinate and B vitamins support energy, sleep, and regulation.</div>
        <div class="aftercare-card"><strong>Protect your energy</strong>Avoid crowds, heavy stimulation, intense conversations for 48 hours.</div>
      </div>
    </div>

    <hr class="rule">

    <div class="section">
      <p class="section-label">The deeper journey</p>
      <h2 class="section-title">Shedding the old you</h2>
      <div class="body-text">
        <p>Sometimes working with Kundalini initiates a spiritual awakening. At first this often feels euphoric, like everything is clicking into place. But sometimes what follows is a phase where things begin to fall away. Old identities, beliefs, patterns, and relationships that no longer belong to who you are becoming begin to dissolve.</p>
        <p>This is often called the dark night of the soul. It is not a punishment. It is a recalibration. You are not falling apart. You are being reshaped.</p>
        <p>Healing is not always light and bliss. Sometimes it is raw, tender, and deeply real. But the discomfort is not the opposite of healing. It is part of it. The doorway through which your freedom lives.</p>
        <p>When things feel messy, you are not broken. You are breaking through.</p>
        <p>Kundalini will strip away what is false. She will also show you your purpose with a clarity you may never have felt before. The more you trust her, the more your life begins to reflect who you truly are.</p>
      </div>
    </div>

    <hr class="rule">

    <div class="closing">
      <p>This is a path of liberation.<br>A sacred remembrance of who you truly are.<br>You are not alone on it.</p>
      <p class="sig">With love, Morgane</p>
    </div>

  </div>

  <!-- FAQ -->
  <div class="panel" id="panel-faq">

    <div class="section">
      <p class="section-label">Frequently asked questions</p>
      <h2 class="section-title">Everything you might be wondering</h2>
      <div class="body-text" style="margin-bottom: 1.5rem;">
        <p>If you have a question that is not covered here, please reach out directly. I am always happy to help you feel prepared and at ease before your session.</p>
      </div>

      <div class="faq-list">

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">Do I need any experience with energy work or meditation?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">Not at all. You do not need any prior experience with meditation, yoga, or energy work. Kundalini activation is not something you do with your mind. It is something that happens through your body. All you need to bring is an open mind, a willingness to surrender, and the ability to lie still. The energy will do the rest.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">What if I do not feel anything during the session?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">This is completely normal, especially in a first session. For some people, the initial session is simply about creating safety in the body and building the trust needed for the energy to move. You may not feel much at all during the session and then notice significant shifts in the days that follow. Not feeling anything obvious does not mean nothing happened. The energy is always working.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">Is it safe?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">Facilitated Kundalini activation is designed to be safe and gradual. Unlike a spontaneous Kundalini awakening, which can be sudden and overwhelming, a facilitated session works with your nervous system at its own pace. Kundalini will never give you more than you can handle. That said, if you have a serious mental health condition, psychosis, or are in a particularly vulnerable place, please reach out before booking so we can have a conversation about whether this is the right time for you.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">Can I be touched during an in person session?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">Light, intuitive touch may be used to support energy release and clear blockages, but only ever with your full consent. You will always be asked before any touch is offered, and you are completely free to decline. Your boundaries are respected fully at all times.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">What is Light Language and will it happen to me?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">Light Language is a form of spontaneous vocal or physical expression that can arise when the energy is moving strongly. It may sound like tones or syllables that do not belong to any known language, or it may appear as hand gestures or body movements. It is not something you control or decide to do. It simply arises. Not everyone experiences it, and it is not a sign that your session was more or less powerful than anyone else's. It is simply one of the ways the energy can express itself through you.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">How often should I have a session?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">This is very personal and depends on where you are in your journey. Some people come monthly, others more frequently when they are in a period of deeper clearing. I generally recommend giving yourself at least a week or two between sessions to allow for full integration before bringing in more energy. Listening to your body is always the best guide. If you feel called back sooner, trust that.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">Can I have a session if I am on medication or have a health condition?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">In most cases, yes. Many people who work with Kundalini energy are also managing health conditions or taking medication and find the sessions deeply supportive. However, if you have a serious physical or mental health condition, or if you are pregnant, please get in touch before booking so we can discuss what is right for you.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">What should I do if I feel overwhelmed during the session?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">You are never alone in this experience. If at any point you feel overwhelmed, you can open your eyes, place your hands on your belly, and take slow steady breaths. Grounding yourself back into your body is always available to you. In an online session you can speak to me directly and I will support you. In an in person session I am right there with you. There is no such thing as going too far. You are always safe to slow down or pause.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">Will I remember the session afterwards?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">Most people are fully conscious throughout the session, though the state is often deeply altered and dream-like. You may remember everything vividly, or some parts may feel hazy afterwards, similar to trying to recall a dream. This is why journalling immediately after a session is so valuable. Writing down what came up, even fragments, helps anchor the experience and gives you something to return to as the integration unfolds over the following days.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">Is this the same as Kundalini yoga?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">No. Kundalini yoga is a practice involving specific breathwork, movements, mantras, and meditations designed to build Kundalini energy over time. It is the masculine path of discipline and consistent effort. A Kundalini activation is the feminine path of surrender. You simply lie down and receive. There is no practice involved, no postures, no mantras, and no prior experience required. They are both beautiful paths, but they are very different from each other.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">What is the difference between a Kundalini activation and a Kundalini awakening?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">A spontaneous Kundalini awakening can happen suddenly and without warning, often triggering the energy to rise through all the chakras at once. This can be intensely overwhelming if the nervous system is not prepared. A facilitated Kundalini activation works gradually and safely, meeting your system exactly where it is. It prepares the body over time, clearing layer by layer, rather than opening everything at once. This is why regular sessions are so valuable.</div>
        </div>

        <div class="faq-item">
          <button class="faq-q" onclick="toggleFaq(this)">How long does integration take?<span class="faq-arrow">▼</span></button>
          <div class="faq-a">There is no set timeline. Some people feel fully integrated within a few days. For others, a single session can initiate shifts that continue to unfold for weeks or even months. The deeper the clearing, the longer the integration often takes. This is not something to rush. The aftercare practices in this guide will help you move through it as gently and effectively as possible. If you feel like you need support during integration, please reach out.</div>
        </div>

      </div>
    </div>

    <div class="closing" style="margin-top: 2rem;">
      <p>Still have a question?<br>Reach out and I will be happy to help.</p>
      <p class="sig">With love, Morgane</p>
    </div>

  </div>

</div>

<script>
  function showTab(name, el) {
    document.querySelectorAll('.tab-btn').forEach(function(t) { t.classList.remove('active'); });
    document.querySelectorAll('.panel').forEach(function(p) { p.classList.remove('active'); });
    el.classList.add('active');
    document.getElementById('panel-' + name).classList.add('active');
    window.scrollTo({ top: 0, behavior: 'smooth' });
  }

  function toggleFaq(btn) {
    var item = btn.parentElement;
    var wasOpen = item.classList.contains('open');
    document.querySelectorAll('.faq-item').forEach(function(i) { i.classList.remove('open'); });
    if (!wasOpen) item.classList.add('open');
  }
</script>

</body>
</html>