/* ============================================================================
   JANICE MANN WORLDWIDE — SITE LAYOUT
   Navigation, hero, sections, cards, footer, carousel, responsive.
   ============================================================================ */

/* ---------- Body background with paper grain ---------- */
body {
  background: linear-gradient(180deg,
    var(--jm-warm-white) 0%,
    var(--jm-pale-purple) 35%,
    var(--jm-soft-cream) 65%,
    var(--jm-pale-purple) 100%
  );
  /* Note: background-attachment: fixed removed — causes rendering freezes
     on some browsers and screenshot tools, and poor mobile performance */
}


/* ============================================================================
   NAVIGATION
   ============================================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background var(--jm-duration-normal) var(--jm-ease-default),
              box-shadow var(--jm-duration-normal) var(--jm-ease-default);
}
.site-nav.scrolled {
  background: rgba(26, 10, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.site-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-nav__brand {
  font-family: var(--jm-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__links a {
  font-family: var(--jm-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  padding: 6px 0;
  position: relative;
  transition: color var(--jm-duration-fast) var(--jm-ease-default);
}
.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--jm-warm-gold);
  transition: width var(--jm-duration-normal) var(--jm-ease-default);
}
.site-nav__links a:hover { color: #fff; }
.site-nav__links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--jm-warm-gold);
  color: var(--jm-dark-bg) !important;
  font-weight: 700 !important;
  padding: 8px 22px;
  border-radius: var(--jm-radius-pill);
  font-size: 0.78rem !important;
  letter-spacing: 0.06em;
  transition: background var(--jm-duration-normal) var(--jm-ease-default),
              box-shadow var(--jm-duration-normal) var(--jm-ease-default);
}
.nav-cta:hover {
  background: #D4B65E;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.4);
}
.nav-cta::after { display: none !important; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}


/* ============================================================================
   HERO
   ============================================================================ */
.hero {
  position: relative;
  min-height: clamp(400px, 60vh, 650px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0D0620;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(255, 255, 255, 0.07) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 60%, #5C2D82 0%, #3D1559 30%, #1A0A2E 55%, #0D0620 80%);
}

.hero__horizon {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 160%;
  height: 50%;
  background: radial-gradient(ellipse at 50% 0%, rgba(92, 45, 130, 0.5) 0%, transparent 50%);
  border-radius: 50% 50% 0 0;
}

/* The star: bright, large, pulsing — THE focal point */
.hero__star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 30px 12px rgba(255, 255, 255, 1),
    0 0 80px 35px rgba(255, 255, 255, 0.85),
    0 0 150px 60px rgba(255, 240, 200, 0.6),
    0 0 250px 100px rgba(201, 168, 76, 0.4),
    0 0 400px 180px rgba(201, 168, 76, 0.2),
    0 0 600px 280px rgba(200, 162, 224, 0.12),
    0 0 800px 400px rgba(123, 63, 160, 0.06);
  animation: starPulse 5s ease-in-out infinite;
  z-index: 1;
}

@keyframes starPulse {
  0%, 100% { box-shadow:
    0 0 30px 12px rgba(255, 255, 255, 1),
    0 0 80px 35px rgba(255, 255, 255, 0.85),
    0 0 150px 60px rgba(255, 240, 200, 0.6),
    0 0 250px 100px rgba(201, 168, 76, 0.4),
    0 0 400px 180px rgba(201, 168, 76, 0.2),
    0 0 600px 280px rgba(200, 162, 224, 0.12),
    0 0 800px 400px rgba(123, 63, 160, 0.06);
  }
  50% { box-shadow:
    0 0 40px 18px rgba(255, 255, 255, 1),
    0 0 100px 45px rgba(255, 255, 255, 0.9),
    0 0 180px 75px rgba(255, 240, 200, 0.7),
    0 0 300px 130px rgba(201, 168, 76, 0.5),
    0 0 480px 220px rgba(201, 168, 76, 0.25),
    0 0 700px 320px rgba(200, 162, 224, 0.15),
    0 0 900px 450px rgba(123, 63, 160, 0.08);
  }
}

.hero__rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: conic-gradient(
    from 250deg at 50% 70%,
    transparent 0deg,
    rgba(201, 168, 76, 0.06) 5deg, transparent 10deg,
    transparent 20deg,
    rgba(200, 162, 224, 0.05) 25deg, transparent 30deg,
    transparent 40deg,
    rgba(201, 168, 76, 0.07) 45deg, transparent 50deg,
    transparent 55deg,
    rgba(255, 255, 255, 0.04) 60deg, transparent 65deg,
    transparent 75deg,
    rgba(201, 168, 76, 0.06) 80deg, transparent 85deg,
    transparent 95deg,
    rgba(200, 162, 224, 0.05) 100deg, transparent 105deg,
    transparent 115deg,
    rgba(201, 168, 76, 0.08) 118deg, transparent 122deg,
    transparent 132deg,
    rgba(255,255,255,0.03) 135deg, transparent 140deg,
    transparent 150deg,
    rgba(201, 168, 76, 0.05) 155deg, transparent 160deg,
    transparent 170deg,
    rgba(200, 162, 224, 0.04) 175deg, transparent 180deg,
    transparent 190deg,
    rgba(201, 168, 76, 0.06) 195deg, transparent 200deg,
    transparent 210deg,
    rgba(255,255,255,0.04) 215deg, transparent 220deg,
    transparent 230deg,
    rgba(201, 168, 76, 0.05) 235deg, transparent 240deg,
    transparent 250deg
  );
  opacity: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Additional bright radial rays for more dramatic light */
.hero__rays::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 90%,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(201, 168, 76, 0.05) 30%,
    transparent 60%
  );
}

/* Bright radial light burst — fills the center with warm light */
.hero__light-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 240, 200, 0.1) 15%,
    rgba(200, 180, 255, 0.06) 30%,
    transparent 55%
  );
  pointer-events: none;
}

/* Main warm glow — breathing, centered */
.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 900px;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(255, 248, 230, 0.18) 0%,
    rgba(201, 168, 76, 0.22) 12%,
    rgba(201, 168, 76, 0.1) 30%,
    rgba(200, 162, 224, 0.05) 50%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowBreathe 5s ease-in-out infinite;
}

@keyframes glowBreathe {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero__earth-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to top, rgba(45, 90, 61, 0.12) 0%, transparent 100%);
  pointer-events: none;
}

/* Lotus figure — small decorative element at bottom */
.hero__figure {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: auto;
  opacity: 0.7;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.25)) drop-shadow(0 0 40px rgba(200, 162, 224, 0.1));
  animation: lotusBreathe 8s ease-in-out infinite;
}

@keyframes lotusBreathe {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.02); }
}

/* Caption — centered in the hero, emerging from the light */
.hero__caption {
  position: relative;
  text-align: center;
  z-index: 3;
  white-space: nowrap;
  padding-bottom: 60px;
}
.hero__caption h1 {
  font-family: var(--jm-font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1.15;
}
.hero__caption h1 .gold {
  color: var(--jm-warm-gold);
  font-weight: 400;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.6), 0 0 80px rgba(201, 168, 76, 0.3), 0 0 120px rgba(201, 168, 76, 0.15);
}
.hero__caption h1 .light-text {
  color: rgba(255,255,255,0.92);
  font-weight: 300;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.15);
}

/* Staggered text reveal animation */
.hero__caption h1 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: textReveal 0.8s ease-out forwards;
}
.hero__caption h1 span:nth-child(1) { animation-delay: 0.3s; }
.hero__caption h1 span:nth-child(2) { animation-delay: 0.7s; }
.hero__caption h1 span:nth-child(3) { animation-delay: 1.1s; }

@keyframes textReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero__tagline {
  font-family: var(--jm-font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  margin-top: 16px;
  font-style: italic;
  opacity: 0;
  animation: textReveal 0.8s ease-out 1.5s forwards;
}

.hero__cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  z-index: 4;
  opacity: 0;
  animation: textReveal 0.8s ease-out 1.8s forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: scrollBounce 2.5s ease-in-out 2.5s infinite, textReveal 0.6s ease-out 2.5s forwards;
}
.hero__scroll span {
  font-family: var(--jm-font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero__scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid rgba(255,255,255,0.25);
  border-bottom: 1.5px solid rgba(255,255,255,0.25);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* Golden particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--jm-warm-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0% { opacity: 0; transform: translateY(0); }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-100vh); }
}


/* ============================================================================
   BOOK CAROUSEL
   ============================================================================ */
.carousel-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(180deg, var(--jm-dark-bg) 0%, #4A1A6B 15%, #5C2D82 50%, #3D6B4A 100%);
  overflow: hidden;
}

/* Smooth gradient fade from hero into carousel — no hard line */
.carousel-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, #0D0620, transparent);
  pointer-events: none;
  z-index: 1;
}

/* Smooth gradient fade from carousel into light section below */
.carousel-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--jm-warm-white));
  pointer-events: none;
  z-index: 1;
}

.carousel-section__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3Ccircle cx='40' cy='40' r='24' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3Ccircle cx='40' cy='40' r='10' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
}

.carousel__viewport {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.carousel__container {
  display: flex;
  gap: 24px;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  min-height: 320px;
}

.carousel__slide-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 700px;
  width: 100%;
}

.carousel__slide-image {
  width: 180px;
  height: 260px;
  flex-shrink: 0;
  border-radius: var(--jm-radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jm-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 20px;
  line-height: 1.3;
}

.carousel__slide-content {
  flex: 1;
  color: #fff;
}
.carousel__slide-content h3 {
  font-family: var(--jm-font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.3;
}
.carousel__slide-content p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 8px;
}
.carousel__slide-price {
  font-family: var(--jm-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--jm-warm-gold);
  margin: 12px 0 20px;
}

/* Carousel controls */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--jm-duration-fast) var(--jm-ease-default);
}
.carousel__btn:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.carousel__dots {
  display: flex;
  gap: 8px;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--jm-duration-fast) var(--jm-ease-default);
}
.carousel__dot.active {
  background: var(--jm-warm-gold);
}


/* ============================================================================
   DAILY AFFIRMATION
   ============================================================================ */
.affirmation {
  text-align: center;
  padding: 48px 0;
}

.affirmation__card {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 40px;
}

.affirmation__label {
  font-family: var(--jm-font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jm-warm-gold-text);
  margin-bottom: 16px;
}

.affirmation__text {
  font-family: var(--jm-font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--jm-deep-purple);
  line-height: 1.5;
  margin-bottom: 16px;
}

.affirmation__line {
  width: 0;
  height: 2px;
  background: var(--jm-gradient-gold-accent);
  margin: 0 auto;
  animation: lineGrow 1.5s var(--jm-ease-default) 1s forwards;
}

@keyframes lineGrow {
  to { width: 80px; }
}

.affirmation__source {
  font-size: 0.75rem;
  color: var(--jm-soft-gray);
  margin-top: 12px;
}

.affirmation__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.affirmation__btn {
  font-family: var(--jm-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jm-deep-purple);
  background: transparent;
  border: 1px solid rgba(74, 26, 107, 0.25);
  border-radius: var(--jm-radius-sm, 6px);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.25s var(--jm-ease-default, ease);
}

.affirmation__btn:hover,
.affirmation__btn:focus-visible {
  background: var(--jm-deep-purple);
  color: #fff;
  border-color: var(--jm-deep-purple);
  outline: none;
}

.affirmation__btn--today {
  color: var(--jm-warm-gold-text);
  border-color: rgba(181, 140, 62, 0.35);
}

.affirmation__btn--today:hover,
.affirmation__btn--today:focus-visible {
  background: var(--jm-warm-gold, #b58c3e);
  color: #fff;
  border-color: var(--jm-warm-gold, #b58c3e);
}


/* ============================================================================
   HELP CARDS
   ============================================================================ */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.help-card {
  background: #fff;
  border: 1px solid #e8e0ec;
  border-top: 3px solid transparent;
  border-radius: var(--jm-radius-lg);
  padding: 32px 28px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow var(--jm-duration-normal) var(--jm-ease-default),
              transform var(--jm-duration-normal) var(--jm-ease-default),
              border-color var(--jm-duration-normal) var(--jm-ease-default);
}
.help-card:hover {
  box-shadow: var(--jm-shadow-lg);
  transform: translateY(-4px);
}

/* Per-condition hover accents */
.help-card[data-condition="grief"]:hover { border-top-color: var(--jm-accent-grief); }
.help-card[data-condition="anxiety"]:hover { border-top-color: var(--jm-accent-anxiety); }
.help-card[data-condition="depression"]:hover { border-top-color: var(--jm-accent-depression); }
.help-card[data-condition="addiction"]:hover { border-top-color: var(--jm-accent-addiction); }
.help-card[data-condition="spiritual"]:hover { border-top-color: var(--jm-accent-spiritual); }
.help-card[data-condition="energy"]:hover { border-top-color: var(--jm-accent-energy); }

.help-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-card__icon svg {
  width: 36px;
  height: 36px;
}

.help-card__title {
  font-family: var(--jm-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--jm-deep-purple);
  margin-bottom: 8px;
}

.help-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--jm-soft-gray);
  line-height: 1.6;
}


/* ============================================================================
   MY STORY TEASER
   ============================================================================ */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
}

.story-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--jm-pale-purple) 0%, #e4d4f0 50%, rgba(122, 158, 126, 0.2) 100%);
  border-radius: var(--jm-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.story-photo__placeholder {
  font-family: var(--jm-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jm-medium-purple);
  opacity: 0.6;
}
.story-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(74, 26, 107, 0.08) 0%, transparent 100%);
}

.story-text h2 {
  font-family: var(--jm-font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--jm-deep-purple);
  margin-bottom: 20px;
  line-height: 1.2;
}
.story-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--jm-charcoal);
  margin-bottom: 14px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--jm-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jm-medium-purple);
  margin-top: 8px;
  transition: color var(--jm-duration-fast) var(--jm-ease-default);
}
.story-link:hover { color: var(--jm-deep-purple); }
.story-link svg { transition: transform var(--jm-duration-fast) var(--jm-ease-default); }
.story-link:hover svg { transform: translateX(4px); }


/* ============================================================================
   SOCIAL PROOF BAND
   ============================================================================ */
.proof-band {
  background: var(--jm-deep-purple);
  padding: 40px 0;
  overflow: hidden;
}
.proof-band__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 48px;
}
.proof-stat { text-align: center; padding: 8px 0; }
.proof-stat__number {
  font-family: var(--jm-font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--jm-warm-gold);
  display: block;
}
.proof-stat__label {
  font-family: var(--jm-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}


/* ============================================================================
   BOOK SHOWCASE
   ============================================================================ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.book-card {
  background: #fff;
  border: 1px solid #e8e0ec;
  border-radius: var(--jm-radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--jm-duration-normal) var(--jm-ease-default),
              transform var(--jm-duration-normal) var(--jm-ease-default);
}
.book-card:hover {
  box-shadow: var(--jm-shadow-lg);
  transform: translateY(-2px);
}

.book-card__cover {
  width: 130px;
  height: 190px;
  margin: 0 auto 20px;
  border-radius: var(--jm-radius-sm);
  box-shadow: var(--jm-shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jm-font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 16px;
  line-height: 1.3;
}
.book-card__cover--1 { background: linear-gradient(145deg, var(--jm-deep-purple), var(--jm-medium-purple)); }
.book-card__cover--2 { background: linear-gradient(145deg, var(--jm-deep-green), var(--jm-sage-green)); }
.book-card__cover--3 { background: linear-gradient(145deg, #3D1559, var(--jm-rose)); }
.book-card__cover--4 { background: linear-gradient(145deg, #2a1245, var(--jm-deep-purple)); }

/* When a real cover image is provided, it fills the container */
.book-card__cover { overflow: hidden; padding: 0; }
.book-card__cover img,
.carousel__slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel__slide-image { overflow: hidden; padding: 0; }

.book-card__title {
  font-family: var(--jm-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--jm-deep-purple);
  margin-bottom: 6px;
  line-height: 1.3;
}
.book-card__price {
  font-family: var(--jm-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--jm-warm-gold-text);
  margin-bottom: 10px;
}
.book-card__subtitle {
  font-size: 0.78rem;
  color: var(--jm-soft-gray);
  margin-bottom: 14px;
}
.book-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--jm-medium-purple);
  padding: 8px 18px;
  border: 1.5px solid var(--jm-light-purple);
  border-radius: var(--jm-radius-pill);
  transition: all var(--jm-duration-fast) var(--jm-ease-default);
}
.book-card__link:hover {
  background: var(--jm-deep-purple);
  color: #fff;
  border-color: var(--jm-deep-purple);
}


/* ============================================================================
   TESTIMONIALS
   ============================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.testimonial {
  background: var(--jm-pale-purple);
  border-radius: var(--jm-radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--jm-font-heading);
  font-size: 4rem;
  color: var(--jm-light-purple);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial__text {
  font-family: var(--jm-font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--jm-deep-purple);
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  font-family: var(--jm-font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--jm-soft-gray);
}
.testimonial__placeholder {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(123, 63, 160, 0.1);
  color: var(--jm-medium-purple);
  padding: 2px 10px;
  border-radius: var(--jm-radius-pill);
  margin-top: 4px;
}


/* ============================================================================
   LEAD MAGNET / NEWSLETTER
   ============================================================================ */
.lead-magnet {
  background: var(--jm-gradient-subtle);
  border-left: 4px solid var(--jm-warm-gold);
  border-radius: 0 var(--jm-radius-lg) var(--jm-radius-lg) 0;
  padding: 36px 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.lead-magnet__text h3 {
  font-family: var(--jm-font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--jm-deep-purple);
  margin-bottom: 4px;
}
.lead-magnet__text p {
  font-size: 0.85rem;
  color: var(--jm-soft-gray);
}
.lead-magnet__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lead-magnet__input {
  padding: 12px 18px;
  border: 1px solid #e8e0ec;
  border-radius: var(--jm-radius-pill);
  font-family: var(--jm-font-body);
  font-size: 0.85rem;
  color: var(--jm-charcoal);
  background: #fff;
  min-width: 240px;
  outline: none;
  transition: border-color var(--jm-duration-fast) var(--jm-ease-default);
}
.lead-magnet__input:focus {
  border-color: var(--jm-medium-purple);
  box-shadow: 0 0 0 3px rgba(123, 63, 160, 0.12);
}


/* ============================================================================
   FINAL CTA
   ============================================================================ */
.cta-section {
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section .section-heading--light { font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-section .section-sub--light { margin: 0 auto 36px; max-width: 480px; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================================
   SVG WAVE DIVIDERS
   ============================================================================ */
.wave-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
  line-height: 0;
}


/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
  background: var(--jm-dark-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  font-family: var(--jm-font-heading);
  font-size: 1.15rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--jm-font-heading);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 600;
  transition: background var(--jm-duration-fast) var(--jm-ease-default),
              color var(--jm-duration-fast) var(--jm-ease-default);
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: #fff; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color var(--jm-duration-fast) var(--jm-ease-default);
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-crisis {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 24px;
}
.footer-crisis a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-crisis a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-bottom a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--jm-duration-fast) var(--jm-ease-default);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }


/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel__slide { padding: 32px 40px; }
  .carousel__slide-inner { gap: 28px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .site-nav { padding: 0 24px; }

  .site-nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(26, 10, 46, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }
  .site-nav__links.open { display: flex; }
  .nav-toggle { display: block; }

  .hero { min-height: 55vh; }
  .hero__caption h1 { letter-spacing: 0.06em; font-size: clamp(2rem, 8vw, 3rem); }
  .hero__caption { padding-bottom: 40px; }
  .hero__figure { width: 100px; bottom: 1%; opacity: 0.5; }
  .hero__rays { width: 600px; height: 600px; }
  .hero__cta-row {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .hero__cta-row .btn-primary,
  .hero__cta-row .btn-ghost {
    font-size: 0.7rem;
    padding: 9px 18px;
  }

  .section { padding: 32px 0; }

  /* Bump mobile text size for readability */
  body { font-size: 16.5px; }
  .section-sub { font-size: 1rem; }
  .help-card__desc { font-size: 0.9rem; }
  .book-card__subtitle { font-size: 0.85rem; }
  .testimonial__text { font-size: 1.05rem; }
  .footer-links a { font-size: 0.85rem; }

  .help-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .story-section { grid-template-columns: 1fr; gap: 32px; }
  .story-photo { max-height: 320px; }

  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .lead-magnet { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .lead-magnet__input { min-width: 180px; }

  .proof-band__inner { gap: 8px 32px; }
  .footer-inner { flex-direction: column; }

  .carousel-section { padding: 36px 0; }
  .carousel-section::before { top: -30px; height: 40px; }
  .carousel-section::after { bottom: -20px; height: 30px; }
  .carousel__slide { padding: 24px; min-height: 280px; }
  .carousel__slide-inner { flex-direction: column; text-align: center; gap: 24px; }
  .carousel__slide-image { width: 140px; height: 200px; }
}

@media (max-width: 480px) {
  .help-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .hero { min-height: 50vh; }
  .hero__figure { width: 80px; opacity: 0.4; }
  .hero__rays { width: 400px; height: 400px; }
  .lead-magnet__form { width: 100%; flex-direction: column; }
  .lead-magnet__input { width: 100%; min-width: unset; }
  .btn-primary--gold.btn-primary--lg { width: 100%; }
}

/* ============================================================================
   SACRED ADORNMENTS — filter sidebar + product grid
   ============================================================================ */
.adornments-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .adornments-layout { grid-template-columns: 1fr; gap: 24px; }
}

.adornments-filters {
  position: sticky;
  top: 100px;
  background: var(--jm-gradient-subtle, #faf7fb);
  border-radius: var(--jm-radius-lg, 12px);
  padding: 24px;
  border: 1px solid #e8e0ec;
}

@media (max-width: 860px) {
  .adornments-filters { position: static; }
}

.adornments-filters__title {
  font-family: var(--jm-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jm-warm-gold-text);
  margin: 0 0 16px 0;
}

.adornments-filter-group {
  border-top: 1px solid rgba(74, 26, 107, 0.1);
  padding: 14px 0;
}

.adornments-filter-group__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--jm-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--jm-deep-purple);
  cursor: pointer;
  text-align: left;
}

.adornments-filter-group__header::after {
  content: "−";
  font-size: 1.2rem;
  color: var(--jm-warm-gold-text);
}

.adornments-filter-group.collapsed .adornments-filter-group__header::after {
  content: "+";
}

.adornments-filter-group__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.adornments-filter-group.collapsed .adornments-filter-group__body {
  display: none;
}

.adornments-filter-group__body button {
  background: transparent;
  border: 0;
  text-align: left;
  padding: 6px 8px;
  font-family: var(--jm-font-body);
  font-size: 0.85rem;
  color: var(--jm-charcoal);
  cursor: pointer;
  border-radius: var(--jm-radius-sm, 6px);
  transition: all 0.2s ease;
}

.adornments-filter-group__body button:hover,
.adornments-filter-group__body button:focus-visible {
  background: rgba(74, 26, 107, 0.06);
  color: var(--jm-deep-purple);
  outline: none;
}

.adornments-filter-group__body button.active {
  background: var(--jm-deep-purple);
  color: #fff;
  font-weight: 500;
}

.adornments-header {
  font-family: var(--jm-font-body);
  font-size: 0.8rem;
  color: var(--jm-soft-gray);
  margin-bottom: 24px;
  text-align: right;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: var(--jm-radius-lg, 12px);
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 26, 107, 0.12);
  border-color: rgba(181, 140, 62, 0.35);
  outline: none;
}

.product-card__image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #faf7fb, #efe6f2);
  border-radius: var(--jm-radius-md, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.product-card__image img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.product-card__name {
  font-family: var(--jm-font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--jm-deep-purple);
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.product-card__price {
  font-family: var(--jm-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--jm-warm-gold-text);
  margin-bottom: 10px;
}

.product-card__meaning {
  font-family: var(--jm-font-heading);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--jm-soft-gray);
  line-height: 1.5;
  margin: 0;
}
