/* ── LOCAL FONTS ────────────────────────────────────────── */
@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Regular.woff') format('woff');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Italic.woff') format('woff');
  font-weight: 300 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Soul Home Funnel – Stylesheet
   Soul Mind Mama © 2025
   ─────────────────────────────────────── */


:root {
  --sand:      #D7CBBF;
  --sand-lt:   #EAE0D5;
  --sand-dk:   #BFB0A0;
  --magenta:   #C424AD;
  --mag-lt:    #E060CC;
  --brown:     #3E2410;
  --brown-md:  #633C1C;
  --brown-lt:  #8B5E3C;
  --brown-xs:  #B8916A;
  --cream:     #F5EFE8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(196,36,173,0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(196,36,173,0); }
}
@keyframes linegrow {
  from { width: 0; } to { width: 60px; }
}

.fade-up { opacity:0; animation: fadeUp 0.9s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.6s; }
.d5 { animation-delay: 0.8s; }

/* ── LAYOUT ── */
.wrap  { max-width: 720px;  margin: 0 auto; padding: 0 2rem; }
.wrap-w { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

/* ── STICKY HEADER ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(215,203,191,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(62,36,16,0.1);
  padding: 0.9rem 2rem;
}
.hdr {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: 'Lora', serif;
  font-size: 1rem; letter-spacing: 0.18em;
  color: var(--brown); font-weight: 400;
}
.brand span { color: var(--magenta); }
.btn-sm {
  background: var(--magenta); color: #fff;
  border: none; padding: 0.55rem 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer;
  border-radius: 2px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-sm:hover { background: var(--mag-lt); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: var(--brown);
  padding: 9rem 2rem 7rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(196,36,173,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(196,36,173,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--mag-lt); margin-bottom: 2rem;
  border-bottom: 1px solid rgba(196,36,173,0.4);
  padding-bottom: 0.5rem;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 300; line-height: 1.05;
  color: var(--sand-lt); margin-bottom: 2rem;
}
.hero h1 em { color: var(--magenta); font-style: italic; }
.hero h1 .light { color: var(--sand-dk); }

.hero-opener {
  font-family: 'Lora', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-style: italic; font-weight: 300;
  color: var(--sand-dk);
  max-width: 600px; margin: 0 auto 3.5rem;
  line-height: 1.75;
}
.hero-opener strong { color: var(--sand-lt); font-style: normal; font-weight: 400; }

.btn-hero {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--magenta); color: #fff;
  padding: 1.15rem 3rem; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  font-family: 'Poppins', sans-serif; font-weight: 500;
  animation: pulse 2.5s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s;
}
.btn-hero:hover { background: var(--mag-lt); transform: translateY(-2px); }
.btn-note {
  display: block; margin-top: 1rem;
  font-size: 0.78rem; color: var(--sand-dk);
  font-style: italic;
}

/* ── MIRROR SECTION – Schmerz ── */
.mirror {
  background: var(--sand);
  padding: 7rem 2rem;
}
.mirror .wrap { text-align: center; }
.section-tag {
  display: block; font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 1.2rem;
}
.mirror h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 300; color: var(--brown);
  line-height: 1.25; margin-bottom: 1.5rem;
}
.mirror h2 em { color: var(--magenta); font-style: italic; }
.mirror-lead {
  font-size: 1rem; color: var(--brown-lt);
  max-width: 540px; margin: 0 auto 3.5rem;
  line-height: 1.9; font-weight: 300;
}
.mirror-lead strong { color: var(--brown-md); font-weight: 500; }

.pain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--sand-dk);
  border: 1px solid var(--sand-dk); border-radius: 4px; overflow: hidden;
  text-align: left; margin-bottom: 3rem;
}
.pain-item {
  background: var(--cream);
  padding: 1.8rem 1.6rem;
  transition: background 0.2s;
}
.pain-item:hover { background: #fff; }
.pain-icon { font-size: 1.1rem; margin-bottom: 0.7rem; }
.pain-item p {
  font-family: 'Lora', serif;
  font-size: 1.1rem; font-style: italic; font-weight: 300;
  color: var(--brown-md); line-height: 1.6;
}

.mirror-close {
  font-family: 'Lora', serif;
  font-size: 1.25rem; font-style: italic; font-weight: 300;
  color: var(--brown-md); max-width: 520px;
  margin: 0 auto; line-height: 1.7;
}
.mirror-close strong { color: var(--magenta); font-style: normal; }

/* ── TRUTH SECTION ── */
.truth {
  background: var(--magenta);
  padding: 6rem 2rem;
  text-align: center;
}
.truth h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 300; color: #fff;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.truth h2 em { font-style: italic; opacity: 0.85; }
.truth-body {
  font-size: 1rem; color: rgba(255,255,255,0.88);
  max-width: 540px; margin: 0 auto;
  line-height: 1.9; font-weight: 300;
}
.truth-body strong { color: #fff; font-weight: 500; }

/* ── ABOUT / BRIDGE ── */
.bridge {
  background: var(--cream);
  padding: 7rem 2rem;
}
.bridge-inner {
  max-width: 680px; margin: 0 auto;
  display: grid; gap: 2.5rem;
}
.bridge-quote {
  border-left: 3px solid var(--magenta);
  padding: 1.5rem 2rem;
  background: var(--sand-lt);
  border-radius: 0 4px 4px 0;
}
.bridge-quote blockquote {
  font-family: 'Lora', serif;
  font-size: 1.4rem; font-style: italic; font-weight: 300;
  color: var(--brown); line-height: 1.65;
}
.bridge-quote cite {
  display: block; margin-top: 1rem;
  font-size: 0.75rem; color: var(--magenta);
  letter-spacing: 0.15em; text-transform: uppercase;
  font-style: normal;
}
.bridge-text {
  font-size: 1rem; color: var(--brown-lt);
  line-height: 1.9; font-weight: 300;
}
.bridge-text strong { color: var(--brown-md); font-weight: 500; }
.bridge-text p + p { margin-top: 1rem; }

/* ── PROGRAM WEEKS ── */
.program {
  background: var(--sand);
  padding: 7rem 2rem;
}
.program .wrap-w { text-align: center; }
.program h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 300; color: var(--brown);
  margin-bottom: 0.5rem;
}
.program-lead {
  color: var(--brown-lt); font-size: 0.95rem;
  margin-bottom: 3.5rem; font-weight: 300;
}
.weeks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem; text-align: left;
}
.week {
  background: var(--cream);
  border-radius: 4px; padding: 2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.week:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(62,36,16,0.1);
}
.week::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--magenta);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.week:hover::before { transform: scaleX(1); }
.week-num {
  font-size: 0.64rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--magenta);
  font-weight: 500; margin-bottom: 0.6rem;
}
.week h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--brown); margin-bottom: 0.7rem;
  line-height: 1.3;
}
.week p {
  font-size: 0.88rem; color: var(--brown-lt);
  line-height: 1.75; font-weight: 300;
}

/* ── INCLUDED ── */
.included {
  background: var(--brown);
  padding: 7rem 2rem;
  text-align: center;
}
.included h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 300; color: var(--sand-lt);
  margin-bottom: 0.5rem;
}
.included-lead {
  color: var(--sand-dk); font-size: 0.93rem;
  margin-bottom: 3.5rem; font-weight: 300;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: rgba(255,255,255,0.06);
  max-width: 800px; margin: 0 auto 3rem;
  border-radius: 4px; overflow: hidden;
}
.included-item {
  background: rgba(255,255,255,0.04);
  padding: 2rem 1.5rem; text-align: left;
  transition: background 0.2s;
}
.included-item:hover { background: rgba(196,36,173,0.1); }
.inc-icon { font-size: 1.3rem; margin-bottom: 0.8rem; }
.inc-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem; font-weight: 400;
  color: var(--sand-lt); margin-bottom: 0.4rem;
}
.inc-desc {
  font-size: 0.82rem; color: var(--sand-dk);
  line-height: 1.65; font-weight: 300;
}

/* ── FOR WHOM ── */
.forwhom {
  background: var(--cream); padding: 7rem 2rem;
}
.forwhom .wrap { display: grid; gap: 3rem; }
.forwhom-header { text-align: center; }
.forwhom-header h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 300; color: var(--brown);
  margin-bottom: 0.6rem;
}
.forwhom-header h2 em { color: var(--magenta); font-style: italic; }
.forwhom-header p {
  color: var(--brown-lt); font-size: 0.95rem;
  font-weight: 300; max-width: 480px; margin: 0 auto;
}
.yes-no {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.yn-col { border-radius: 4px; padding: 2rem; }
.yn-yes { background: var(--sand); border-top: 3px solid var(--magenta); }
.yn-no  { background: #fff; border-top: 3px solid var(--sand-dk); }
.yn-label {
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 1.2rem;
  font-weight: 500;
}
.yn-yes .yn-label { color: var(--magenta); }
.yn-no  .yn-label { color: var(--sand-dk); }
.yn-col li {
  list-style: none; padding: 0.5rem 0;
  font-size: 0.9rem; color: var(--brown-lt);
  border-bottom: 1px solid rgba(62,36,16,0.07);
  line-height: 1.5; font-weight: 300;
}
.yn-col li:last-child { border-bottom: none; }
.yn-col li::before {
  margin-right: 0.5rem;
}
.yn-yes li::before { content: '✦'; color: var(--magenta); font-size: 0.65rem; }
.yn-no  li::before { content: '–'; color: var(--sand-dk); }

@media (max-width: 540px) {
  .yes-no { grid-template-columns: 1fr; }
}

/* ── URGENCY ── */
.urgency {
  background: var(--sand-lt);
  padding: 5rem 2rem; text-align: center;
  border-top: 1px solid var(--sand-dk);
  border-bottom: 1px solid var(--sand-dk);
}
.urgency h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300; color: var(--brown);
  margin-bottom: 1rem; line-height: 1.25;
}
.urgency h2 em { color: var(--magenta); font-style: italic; }
.urgency p {
  max-width: 520px; margin: 0 auto;
  font-size: 0.98rem; color: var(--brown-lt);
  line-height: 1.85; font-weight: 300;
}
.urgency p strong { color: var(--brown-md); font-weight: 500; }

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--sand);
  padding: 7rem 2rem;
}
.testimonials h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 300; color: var(--brown);
  text-align: center; margin-bottom: 3rem;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.testi {
  background: var(--cream);
  padding: 2.2rem; border-radius: 4px;
  position: relative;
}
.testi::before {
  content: '"';
  position: absolute; top: 1rem; left: 1.5rem;
  font-family: 'Lora', serif;
  font-size: 4rem; color: var(--magenta); opacity: 0.18;
  line-height: 1;
}
.testi q {
  font-family: 'Lora', serif;
  font-size: 1.1rem; font-style: italic; font-weight: 300;
  color: var(--brown-md); line-height: 1.65;
  display: block; margin-bottom: 1.2rem;
  quotes: none;
}
.testi-name {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--magenta);
  font-weight: 500;
}

/* ── INVESTMENT ── */
.investment {
  background: var(--cream); padding: 7rem 2rem;
  text-align: center;
}
.investment h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 300; color: var(--brown);
  margin-bottom: 3rem;
}
.price-card {
  max-width: 480px; margin: 0 auto;
  background: var(--sand);
  border-radius: 4px; padding: 3rem;
  border-top: 3px solid var(--magenta);
  position: relative;
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--magenta); color: #fff;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.35rem 1.2rem;
  border-radius: 20px; white-space: nowrap;
}
.price-name {
  font-family: 'Lora', serif;
  font-size: 1.6rem; font-weight: 300;
  color: var(--brown); margin-bottom: 0.3rem;
}
.price-sub {
  font-size: 0.85rem; color: var(--brown-lt);
  margin-bottom: 2rem; font-weight: 300;
}
.price-amount {
  font-family: 'Lora', serif;
  font-size: 3.5rem; font-weight: 600;
  color: var(--magenta); line-height: 1;
  margin-bottom: 0.3rem;
}
.price-amount span { font-size: 1.5rem; vertical-align: super; font-weight: 300; }
.price-period {
  font-size: 0.8rem; color: var(--brown-lt);
  margin-bottom: 2rem; font-weight: 300;
}
.price-includes {
  list-style: none; text-align: left;
  margin-bottom: 2.5rem;
}
.price-includes li {
  padding: 0.55rem 0;
  font-size: 0.9rem; color: var(--brown-lt);
  border-bottom: 1px solid var(--sand-dk);
  font-weight: 300; display: flex; gap: 0.6rem;
}
.price-includes li:last-child { border: none; }
.price-includes li::before { content: '✦'; color: var(--magenta); font-size: 0.6rem; margin-top: 0.3rem; flex-shrink: 0; }
.btn-main {
  display: block; width: 100%;
  background: var(--magenta); color: #fff;
  padding: 1.1rem; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  font-family: 'Poppins', sans-serif; font-weight: 500;
  cursor: pointer; border: none;
  animation: pulse 2.5s ease-in-out infinite;
  transition: background 0.2s;
}
.btn-main:hover { background: var(--mag-lt); }
.price-note {
  margin-top: 1.2rem; font-size: 0.78rem;
  color: var(--brown-xs); font-style: italic; line-height: 1.6;
}

/* ── FAQ ── */
.faq { background: var(--sand); padding: 7rem 2rem; }
.faq h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 300; color: var(--brown);
  text-align: center; margin-bottom: 3rem;
}
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--sand-dk);
  padding: 1.3rem 0;
}
.faq-q {
  font-family: 'Lora', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--brown); cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  user-select: none;
}
.faq-q::after {
  content: '+'; font-size: 1.4rem; color: var(--magenta);
  flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 0.8rem; }
.faq-a p {
  font-size: 0.92rem; color: var(--brown-lt);
  line-height: 1.8; font-weight: 300;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--brown);
  padding: 8rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196,36,173,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 300; color: var(--sand-lt);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.final-cta h2 em { color: var(--magenta); font-style: italic; }
.final-cta p {
  max-width: 520px; margin: 0 auto 3rem;
  font-size: 1rem; color: var(--sand-dk);
  line-height: 1.85; font-weight: 300;
}
.final-cta p strong { color: var(--sand-lt); font-weight: 400; }

/* ── FOOTER ── */
footer {
  background: var(--brown);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem; text-align: center;
}
footer p {
  font-size: 0.78rem; color: var(--brown-xs);
  font-weight: 300;
}
footer a { color: var(--magenta); text-decoration: none; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  .hero { padding: 6rem 1.5rem 5rem; }
  .yes-no { grid-template-columns: 1fr; }
}
