/* ==========================================================================
   Female Energy — Design Tokens
   ========================================================================== */
:root {
  /* Rosé / Roségold Markenwelt */
  --cream: #f7ece9;
  --cream-2: #fbf5f3;
  --blush: #f0d9d4;
  --rose: #c98a83;
  --rose-deep: #a85f5a;
  --rose-dark: #6e3a38;
  --ink: #2c1e1d;
  --ink-soft: #5a4442;
  --gold: #cba36a;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", "Playfair Display", serif;
  --font-sans: "Jost", "Poppins", sans-serif;

  --radius: 18px;
  --shadow-soft: 0 20px 60px rgba(110, 58, 56, 0.12);
  --shadow-card: 0 10px 30px rgba(110, 58, 56, 0.10);

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--rose-dark);
}
p { line-height: 1.7; color: var(--ink-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 18px;
}
.section-label .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(168, 95, 90, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(168, 95, 90, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--rose-dark);
  border: 1.5px solid var(--rose-deep);
}
.btn-ghost:hover { background: rgba(168, 95, 90, 0.08); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--rose-dark);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.15); }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 236, 233, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 95, 90, 0.12);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rose-dark);
  letter-spacing: 0.02em;
}
.logo span { color: var(--rose); }
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span { width: 26px; height: 2px; background: var(--rose-dark); border-radius: 2px; }

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--rose-dark), var(--rose-deep));
  z-index: 200;
  color: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.mobile-panel.open { display: flex; }
.mobile-panel a { color: var(--white); }
.mobile-close {
  position: absolute;
  top: 26px; right: 26px;
  font-size: 1.8rem;
  background: none; border: none; color: var(--white); cursor: pointer;
}
body.nav-open { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 10%, var(--blush) 0%, var(--cream) 55%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--rose-dark);
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero p.lead { font-size: 1.15rem; max-width: 46ch; margin-bottom: 32px; }
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--blush), var(--rose));
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}
.trust-row {
  margin-top: 46px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-row .stat { font-family: var(--font-display); font-size: 2rem; color: var(--rose-dark); }
.trust-row .stat + span { font-size: 0.8rem; color: var(--ink-soft); }
.trust-item { display: flex; flex-direction: column; }

/* ==========================================================================
   Generic Section Shells (alternating styles)
   ========================================================================== */
.section { padding: 110px 0; position: relative; }
.section-cream { background: var(--cream); }
.section-white { background: var(--cream-2); }
.section-dark {
  background: linear-gradient(155deg, var(--rose-dark) 0%, #4a2422 100%);
  color: var(--cream);
}
.section-dark h2, .section-dark h3, .section-dark .section-label { color: var(--blush); }
.section-dark p { color: rgba(247, 236, 233, 0.75); }
.section-dark .section-label .num { background: var(--gold); }
.section-blush { background: var(--blush); }

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head.left { margin: 0 0 60px; text-align: left; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.section-head p { font-size: 1.05rem; }

/* Pain point section — split image/text */
.pain-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.pain-visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, var(--blush), var(--blush) 20px, var(--cream) 20px, var(--cream) 40px);
  box-shadow: var(--shadow-card);
}
.pain-points { display: grid; gap: 26px; margin-top: 30px; }
.pain-point {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
.pain-point .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.pain-point h4 { margin-bottom: 6px; font-size: 1.05rem; }
.pain-point p { margin: 0; font-size: 0.95rem; }

/* Method / 3 Pillars — dark, card row */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.pillar:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.pillar .num-badge {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Testimonial videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.video-thumb {
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, var(--rose), var(--rose-dark));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-dark);
  font-size: 1.4rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}
.video-caption { padding: 18px 20px; }
.video-caption .name { font-family: var(--font-display); font-size: 1.1rem; color: var(--rose-dark); }
.video-caption .role { font-size: 0.85rem; color: var(--ink-soft); }

/* Booking / Pricing (Stripe / Termin) — blush band */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.booking-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 46px 40px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.booking-card.featured { border: 2px solid var(--rose); }
.booking-card .badge {
  position: absolute;
  top: -14px; right: 30px;
  background: var(--rose);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.booking-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--rose-dark);
}
.booking-card ul { padding-left: 20px; margin: 0; color: var(--ink-soft); }
.booking-card li { margin-bottom: 8px; }

/* FAQ — accordion, cream */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rose-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}
.faq-question .plus { transition: transform 0.3s ease; font-size: 1.4rem; color: var(--rose); }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }

/* Contact section (no form) — dark */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.contact-card .icon { font-size: 1.8rem; margin-bottom: 14px; }
.contact-card a, .contact-card p { color: var(--cream); }
.contact-card .label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--gold); margin-bottom: 10px; display:block; }

/* Ebook teaser strip (homepage -> opt-in pages) */
.ebook-strip { background: var(--cream-2); }
.ebook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ebook-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.ebook-card:hover { transform: translateY(-6px); }
.ebook-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--blush), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  padding: 20px;
}
.ebook-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ebook-body h4 { margin: 0; }
.ebook-body .btn { margin-top: auto; align-self: flex-start; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(247,236,233,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h5 {
  color: var(--cream);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--rose); }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; color: var(--cream); margin-bottom: 14px; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Opt-in Pages (single viewport, no scroll)
   ========================================================================== */
.optin-body { height: 100dvh; overflow: hidden; background: var(--cream); }
.optin-wrap {
  height: 100dvh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.optin-video {
  position: relative;
  background: linear-gradient(160deg, var(--rose-dark), var(--rose-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  padding: 40px;
}
.optin-video video, .optin-video .video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.optin-video .video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.optin-back {
  position: absolute;
  top: 26px; left: 26px;
  color: var(--white);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.optin-form-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow-y: auto;
}
.optin-form-inner { max-width: 420px; width: 100%; }
.optin-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 14px;
}
.optin-form-inner h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.optin-form-inner p.lead { margin-bottom: 30px; font-size: 1rem; }
.optin-form { display: grid; gap: 16px; }
.optin-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-dark);
  margin-bottom: 6px;
  display: block;
}
.optin-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--blush);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
}
.optin-form input:focus { outline: none; border-color: var(--rose); }
.optin-form .btn { width: 100%; margin-top: 6px; }
.optin-fineprint { margin-top: 18px; font-size: 0.78rem; color: var(--ink-soft); }
.optin-book-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blush);
  color: var(--rose-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 22px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/10; }
  .pain-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ebook-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .optin-wrap { grid-template-columns: 1fr; height: auto; overflow: auto; }
  .optin-body { height: auto; overflow: auto; }
  .optin-video { min-height: 42vh; }
}
@media (max-width: 620px) {
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}
