

Row Layout:
1 Column (Centered)

Modules to Use:

Rich Text

Button (2 buttons)

Image (Headshot – circular styling)

Image Module (Top)
Upload headshot and apply:

Image Style Settings

Width: 220px

Border Radius: 50%

Border: 6px solid #B11226

Alignment: Center

Rich Text Module
H1:
THE TRANSFORMATION EXPERIENCE

Subheadline:
An 8‑Week Coaching Experience for Clarity, Peace & Spiritual Power in Who You’re Becoming

Body Copy:
You’re not “losing it.” You’re in a new season.
And in this Experience, you learn how to lead yourself through it—intentionally.

If peri/menopause has brought brain fog, emotional surges, fatigue, sleep disruption, cravings, anxiety, or a quiet loss of confidence… this is where you rebuild from the inside out.

Core mantra:
Intentional women don’t drift—we decide.

Micro trust line (small font):
This is coaching and education—not medical care.

Button Module (2 Buttons Side‑by‑Side)
Primary Button:

Text: Join the Group ($997)

Link: https://bit.ly/8weekmenoreset

Color: #B11226

Text Color: White

Secondary Button:

Text: Apply for Private (1:1)

Link: (Insert HubSpot Application URL)
/* Sticky header */
.stickybar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid rgba(198,184,166,.35);
}

/* One-line layout */
.stickybar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
}

/* Brand stays left, can shrink */
.brand{
  flex:0 1 auto;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-weight:700;
  font-size:14px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#2b2b2b;
  opacity:.9;
}

/* Buttons area takes remaining space */
.sticky-actions{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:nowrap;      /* keep one row */
  min-width:0;
}

/* ✅ Equal-width buttons */
.sticky-actions .btn{
  flex:1 1 0;            /* equal widths */
  min-width:0;
  justify-content:center;
  text-align:center;

  padding:8px 10px;      /* tighter */
  font-size:12px;
  line-height:1;
}

/* If it gets too tight, keep one row + allow scroll */
@media (max-width: 820px){
  .sticky-actions{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .sticky-actions::-webkit-scrollbar{ display:none; }
  .sticky-actions .btn{
    flex:0 0 auto;       /* allow scrolling instead of squishing */
  }
}