<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rachel — Hypnothérapie & Accompagnement | Centre Mbongi</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brown-dark: #3D1F0A;
    --brown-mid: #6B3A1F;
    --brown-warm: #8B5A2B;
    --brown-light: #C4956A;
    --beige-dark: #D4B896;
    --beige-mid: #E8D5BC;
    --beige-light: #F5EDE0;
    --beige-pale: #FAF5EE;
    --gold: #B8860B;
    --gold-light: #D4A843;
    --text-dark: #1A0A00;
    --text-mid: #4A2C10;
    --text-muted: #7A5C3A;
    --text-light: #A08060;
    --white: #FFFDF9;
    --border: rgba(139, 90, 43, 0.15);
    --border-mid: rgba(139, 90, 43, 0.25);
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--beige-pale);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  .page-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    min-height: 100vh;
  }

  /* TOP BAR */
  .top-bar {
    padding: 1rem 2.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
  }

  .top-bar-back {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
  }

  .top-bar-back:hover { color: var(--brown-warm); }

  .top-bar-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brown-dark);
    text-decoration: none;
  }

  /* HERO */
  .hero {
    padding: 4rem 2.5rem 3rem;
    background: var(--beige-pale);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brown-warm), var(--gold-light), var(--brown-warm));
  }

  .hero-inner {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }

  .hero-photo {
    width: 140px;
    height: 180px;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    flex-shrink: 0;
    filter: sepia(10%) contrast(1.02);
  }

  .hero-photo-placeholder {
    width: 140px;
    height: 180px;
    background: var(--beige-mid);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
    padding: 1rem;
  }

  .hero-text { flex: 1; }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: block;
  }

  .hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--brown-dark);
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .hero-title-line {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 300;
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--brown-warm);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    display: inline-block;
    padding: 11px 24px;
    background: var(--brown-dark);
    color: var(--beige-pale);
    text-decoration: none;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.05em;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
  }

  .btn-primary:hover { background: var(--brown-mid); }

  .btn-secondary {
    display: inline-block;
    padding: 10px 22px;
    background: transparent;
    color: var(--brown-dark);
    text-decoration: none;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.05em;
    border: 1px solid var(--border-mid);
    transition: all 0.2s;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
  }

  .btn-secondary:hover {
    background: var(--beige-light);
    border-color: var(--brown-light);
  }

  /* SECTIONS */
  .section {
    padding: 3rem 2.5rem;
    border-bottom: 1px solid var(--border);
  }

  .section-alt {
    background: var(--beige-pale);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--brown-dark);
    margin-bottom: 1.25rem;
  }

  .section-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
  }

  .section-text:last-child { margin-bottom: 0; }

  /* PERSONA */
  .persona-box {
    background: var(--beige-light);
    border-left: 2px solid var(--brown-warm);
    padding: 1.5rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: 1.25rem;
  }

  .persona-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--text-mid);
  }

  /* OFFRES */
  .offers { display: flex; flex-direction: column; gap: 1rem; }

  .offer-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    transition: border-color 0.2s;
  }

  .offer-card:hover { border-color: var(--brown-light); }

  .offer-card.featured {
    border-color: var(--brown-warm);
    background: var(--beige-pale);
  }

  .offer-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    background: var(--brown-warm);
    color: var(--beige-pale);
    border-radius: 2px;
    margin-bottom: 0.75rem;
  }

  .offer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 0.25rem;
  }

  .offer-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 300;
  }

  .offer-price {
    font-size: 2rem;
    font-weight: 300;
    color: var(--brown-dark);
    font-family: 'Cormorant Garamond', serif;
  }

  .offer-price-note {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 1rem;
  }

  .offer-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
  }

  .offer-includes {
    list-style: none;
    margin-bottom: 1.25rem;
  }

  .offer-includes li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 0 4px 1.25rem;
    position: relative;
    line-height: 1.5;
    font-weight: 300;
  }

  .offer-includes li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--brown-light);
    font-size: 11px;
  }

  .offer-savings {
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: block;
  }

  /* QUOTE */
  .quote-section {
    padding: 3.5rem 2.5rem;
    text-align: center;
    background: var(--brown-dark);
    border-bottom: none;
  }

  .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 400;
    color: var(--beige-mid);
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto 1rem;
  }

  .quote-author {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--brown-light);
    text-transform: uppercase;
  }

  /* TÉMOIGNAGE */
  .testimonial-box {
    background: var(--beige-light);
    border-radius: 4px;
    padding: 1.75rem;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1rem;
  }

  .testimonial-author {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* PROCESSUS */
  .steps { display: flex; flex-direction: column; gap: 1.25rem; }

  .step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--beige-dark);
    line-height: 1;
    min-width: 2rem;
    flex-shrink: 0;
  }

  .step-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 0.2rem;
  }

  .step-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* FOOTER */
  .footer {
    padding: 3rem 2.5rem;
    text-align: center;
    background: var(--beige-pale);
  }

  .footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
  }

  .footer-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.7;
  }

  .footer-note {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 1.5rem;
    line-height: 1.8;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .social-links a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
  }

  .social-links a:hover { color: var(--brown-warm); }

  /* RESPONSIVE */
  @media (max-width: 480px) {
    .hero { padding: 3rem 1.5rem 2.5rem; }
    .hero-inner { flex-direction: column; align-items: center; text-align: center; }
    .hero-photo { width: 120px; height: 150px; }
    .section { padding: 2.5rem 1.5rem; }
    .quote-section { padding: 3rem 1.5rem; }
    .footer { padding: 2.5rem 1.5rem; }
    .top-bar { padding: 1rem 1.5rem; }
  }
</style>
</head>
<body>

<div class="page-wrapper">

  <!-- TOP BAR -->
  <div class="top-bar">
    <a href="https://centrembongi.com/" class="top-bar-back">← Centre Mbongi</a>
    <a href="https://centrembongi.com/" class="top-bar-logo">Centre Mbongi</a>
  </div>

  <!-- HERO -->
  <div class="hero">
    <div class="hero-inner">
      <img
        src="https://centrembongi.com/wp-content/uploads/2024/11/Centre-Mbongi-Rachel-.jpg"
        alt="Rachel, hypnothérapeute au Centre Mbongi"
        class="hero-photo"
        onerror="this.style.display='none'; this.nextElementSibling.style.display='flex';"
      >
      <div class="hero-photo-placeholder" style="display:none;">
        Photo de Rachel
      </div>
      <div class="hero-text">
        <span class="eyebrow">Centre Mbongi</span>
        <h1 class="hero-name">Rachel</h1>
        <p class="hero-title-line">Hypnothérapeute • Espace de transformation</p>
        <p class="hero-tagline">"Un espace pour te déposer<br>et repartir différemment"</p>
        <a href="https://info-centrembongitherapie.zohobookings.com/#/centrembongi" class="btn-primary">Séance découverte gratuite</a>
      </div>
    </div>
  </div>

  <!-- POUR QUI -->
  <div class="section">
    <span class="eyebrow">pour qui ?</span>
    <h2 class="section-title">Tu te reconnais ici ?</h2>
    <div class="persona-box">
      <p class="persona-text">"Je suis entourée mais je me sens seule. Je porte beaucoup. Il m'arrive de ne pas savoir comment aller mieux — juste que quelque chose ne va pas. J'ai commencé un chemin sur moi-même, mais je sens qu'il me manque un espace pour vraiment me déposer."</p>
    </div>
    <p class="section-text">J'accompagne les femmes noires afrodescendantes et afro-caribéennes prêtes à explorer en profondeur. Celles qui ont déjà commencé leur chemin — mais qui cherchent un espace vraiment safe, sans jugement, adapté à ce qu'elles vivent vraiment.</p>
  </div>

  <!-- À PROPOS -->
  <div class="section section-alt">
    <span class="eyebrow">qui suis-je ?</span>
    <h2 class="section-title">Mon approche</h2>
    <p class="section-text">Je suis thérapeute holistique et hypnothérapeute certifiée. Au fil des années, j'ai développé une approche qui allie hypnose, pleine conscience et écoute profonde — pas comme des méthodes rigides, mais comme des portes.</p>
    <p class="section-text">Ce qui me guide dans chaque séance c'est de créer un espace où tu peux vraiment te déposer. Sans te juger. Sans te presser. Avec profondeur et légèreté à la fois.</p>
    <p class="section-text">Je n'applique pas un protocole. J'adapte chaque séance à ce dont tu as besoin ce jour-là.</p>
  </div>

  <!-- PROCESSUS -->
  <div class="section">
    <span class="eyebrow">comment ça se passe</span>
    <h2 class="section-title">Le processus</h2>
    <div class="steps">
      <div class="step">
        <div class="step-num">1</div>
        <div class="step-content">
          <h4>Séance découverte gratuite — 20 min</h4>
          <p>On se rencontre en ligne. Tu me parles de là où tu en es. Je t'explique comment je travaille. Ensemble on voit si c'est le bon moment et le bon format pour toi. Sans engagement, sans pression.</p>
        </div>
      </div>
      <div class="step">
        <div class="step-num">2</div>
        <div class="step-content">
          <h4>On choisit ce qui te correspond</h4>
          <p>Une séance unique, un forfait pour aller en profondeur, ou un accompagnement régulier. Ce qui te convient à toi — pas un format imposé.</p>
        </div>
      </div>
      <div class="step">
        <div class="step-num">3</div>
        <div class="step-content">
          <h4>On commence</h4>
          <p>Les séances se font en ligne, en français. Hypnose, pleine conscience, écoute profonde — j'adapte chaque séance à ce qui émerge.</p>
        </div>
      </div>
    </div>
  </div>

  <!-- OFFRES -->
  <div class="section section-alt">
    <span class="eyebrow">les offres</span>
    <h2 class="section-title">Travailler avec moi</h2>
    <p class="section-text" style="margin-bottom: 1.5rem;">Toutes les séances se font en ligne. La durée s'adapte à toi — entre 60 et 90 minutes selon ce qui émerge.</p>

    <div class="offers">

      <div class="offer-card">
        <div class="offer-name">Séance individuelle</div>
        <div class="offer-desc">Pour un moment ponctuel, une question précise, ou simplement voir comment on travaille ensemble.</div>
        <div class="offer-price">123$</div>
        <span class="offer-price-note">CAD par séance</span>
        <div class="offer-divider"></div>
        <ul class="offer-includes">
          <li>1 séance en ligne de 60 à 90 min</li>
          <li>Hypnose, pleine conscience ou écoute profonde selon ce qui émerge</li>
          <li>Entièrement adapté à toi</li>
        </ul>
        <a href="https://info-centrembongitherapie.zohobookings.com/#/centrembongi" class="btn-secondary" style="display: block; text-align: center;">Réserver</a>
      </div>

      <div class="offer-card featured">
        <div class="offer-badge">Le plus choisi</div>
        <div class="offer-name">Forfait 4 séances</div>
        <div class="offer-desc">Pour aller en profondeur. Quand tu sens que quelque chose est à déverrouiller et que tu veux prendre le temps de le faire vraiment.</div>
        <div class="offer-price">460$</div>
        <span class="offer-price-note">CAD — valable 8 semaines</span>
        <span class="offer-savings">Économie de 32$ vs séances à l'unité</span>
        <div class="offer-divider"></div>
        <ul class="offer-includes">
          <li>4 séances en ligne de 60 à 90 min</li>
          <li>Suivi WhatsApp entre les séances</li>
          <li>Valable 8 semaines</li>
          <li>Chaque séance adaptée à ce qui émerge</li>
        </ul>
        <a href="https://info-centrembongitherapie.zohobookings.com/#/centrembongi" class="btn-primary" style="display: block; text-align: center;">Réserver le forfait</a>
      </div>

      <div class="offer-card">
        <div class="offer-name">Abonnement mensuel</div>
        <div class="offer-desc">Pour celles qui veulent un espace régulier dans leur vie. Un rendez-vous mensuel avec toi-même — guidé par moi.</div>
        <div class="offer-price">219$</div>
        <span class="offer-price-note">CAD par mois</span>
        <span class="offer-savings">Économie de 27$ par mois vs séances à l'unité</span>
        <div class="offer-divider"></div>
        <ul class="offer-includes">
          <li>2 séances par mois en ligne</li>
          <li>Suivi WhatsApp continu</li>
          <li>Sans engagement — tu continues tant que ça t'apporte</li>
          <li>Priorité de réservation</li>
        </ul>
        <a href="https://info-centrembongitherapie.zohobookings.com/#/centrembongi" class="btn-secondary" style="display: block; text-align: center;">Commencer l'abonnement</a>
      </div>

    </div>
  </div>

  <!-- QUOTE -->
  <div class="quote-section">
    <p class="quote">"Je crée l'espace.<br>Tu trouves les réponses."</p>
    <p class="quote-author">— Rachel, Centre Mbongi</p>
  </div>

  <!-- TÉMOIGNAGE -->
  <div class="section">
    <span class="eyebrow">elles témoignent</span>
    <h2 class="section-title">Ce qu'elles disent</h2>
    <div class="testimonial-box">
      <p class="testimonial-text">"Rachel a une aura véritablement bienveillante. On ne se sent jamais jugé — même dans les choses les plus intimes. C'est rare et précieux."</p>
      <p class="testimonial-author">— Cliente, accompagnement individuel</p>
    </div>
  </div>

  <!-- FOOTER -->
  <div class="footer">
    <h3 class="footer-title">Prête à commencer ?</h3>
    <p class="footer-sub">La séance découverte est gratuite et sans engagement.<br>20 minutes pour voir si on est faites pour travailler ensemble.</p>
    <a href="https://info-centrembongitherapie.zohobookings.com/#/centrembongi" class="btn-primary">Réserver ma séance découverte</a>
    <p class="footer-note">
      Toutes les séances se déroulent en ligne • En français<br>
      Questions ? Écris-moi sur Instagram <strong>@centre_mbongi</strong>
    </p>
    <div class="social-links">
      <a href="https://www.instagram.com/centre_mbongi">Instagram</a>
      <a href="https://www.tiktok.com/@centrembongi">TikTok</a>
      <a href="https://www.facebook.com/centrembongi">Facebook</a>
    </div>
  </div>

</div>

</body>
</html>