Reclaim Your Energy.
Redesign Your Wellness.
Small habits. Big shifts. Designed for women balancing career, motherhood, and their well-being.
What You’ll Transform With The Wellness Shift
Balanced Energy
Build sustainable habits that restore your metabolism, support your hormones, and lift your energy naturally.
Less Stress
Learn micro-rituals that calm your nervous system, reduce overwhelm, and create more breathing room in your day.
A Reset Mindset
Develop the confidence and clarity to take care of yourself consistently — without guilt, pressure, or perfection.
* ================================
SECTION 2 — BENEFITS GRID
The Wellness Shift
================================ */
.benefits-wrapper {
padding: 100px 40px;
max-width: 1200px;
margin: auto;
text-align: center;
background-color: #ffffff00;
}
.benefits-heading {
font-family: "Cormorant Garamond", serif;
font-size: 44px;
margin-bottom: 60px;
color: #2B2B2D; /* Charcoal */
letter-spacing: -0.3px;
opacity: 0;
animation: fadeInUp 1.5s ease forwards;
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}
.benefit-item {
padding: 20px;
border-radius: 6px;
opacity: 0;
animation: fadeInUp 2s ease forwards;
animation-delay: 0.3s;
}
.benefit-icon {
font-size: 40px;
margin-bottom: 20px;
color: #C47A63; /* Terracotta accent */
}
.benefit-title {
font-family: "Montserrat", sans-serif;
font-size: 22px;
font-weight: 600;
color: #2B2B2D;
margin-bottom: 10px;
}
.benefit-text {
font-family: "Inter", sans-serif;
font-size: 16px;
color: #3E342D;
line-height: 1.6;
max-width: 340px;
margin: 0 auto;
}
@keyframes fadeInUp {
0% { opacity: 0; transform: translateY(20px);}
100% { opacity: 1; transform: translateY(0);}
}
/* MOBILE */
@media (max-width: 767px) {
.benefits-grid {
grid-template-columns: 1fr;
gap: 50px;
}
}