/* ============================================================
   SAMINA MUQARAB — Pray. Plan. Proceed.
   World-Class Website Stylesheet
   Aesthetic: Refined Luxury Editorial — warm pinks + sage green
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* === CSS Variables === */
:root {
  --rose:       #E8A0B4;
  --rose-deep:  #C96B8B;
  --rose-light: #F9EEF2;
  --blush:      #F4D6E1;
  --sage:       #7A9E87;
  --sage-deep:  #4E7460;
  --sage-light: #EBF2ED;
  --cream:      #FDF8F5;
  --warm-white: #FFFBF8;
  --ink:        #1A1016;
  --ink-soft:   #3D2B35;
  --ink-muted:  #7A6270;
  --gold:       #C4933F;
  --gold-light: #F0E2C8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 140px);
  --max-w: 1260px;
  --radius: 4px;
  --shadow-card: 0 4px 40px rgba(26,16,22,0.08);
  --shadow-lift: 0 16px 60px rgba(26,16,22,0.14);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === Utility === */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.eyebrow.light { color: var(--rose); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* === Noise texture overlay === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(26,16,22,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-brand span { color: var(--rose-deep); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: var(--rose-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.nav-cta:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(78,116,96,0.35);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 85vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -8px 0 60px rgba(26,16,22,0.15);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--blush);
}
.drawer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.drawer-brand span { color: var(--rose-deep); }
.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--rose-light);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--ink-muted);
  transition: background 0.2s;
}
.drawer-close:hover { background: var(--blush); }
.mobile-drawer nav {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--rose-light);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-drawer nav a:hover { color: var(--rose-deep); padding-left: 6px; }
.mobile-drawer nav a .nav-arrow { opacity: 0.4; transition: opacity 0.2s; }
.mobile-drawer nav a:hover .nav-arrow { opacity: 1; }
.mobile-drawer-footer {
  margin-top: auto;
  padding: 28px;
}
.mobile-drawer-footer .nav-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  font-size: 0.85rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,16,22,0.4);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-101%);
  transition: transform 0.3s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,107,139,0.3);
}
.btn-primary:hover {
  background: var(--ink-soft);
  box-shadow: 0 8px 30px rgba(61,43,53,0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--ink-soft);
}
.btn-secondary:hover {
  background: var(--ink-soft);
  color: var(--warm-white);
  transform: translateY(-2px);
}
.btn-sage {
  background: var(--sage-deep);
  color: #fff;
  box-shadow: 0 4px 20px rgba(78,116,96,0.3);
}
.btn-sage:hover {
  background: var(--ink-soft);
  box-shadow: 0 8px 30px rgba(61,43,53,0.3);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Decorative background */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at top right, var(--blush) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -5%; left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at bottom left, var(--sage-light) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 120px) clamp(20px, 7vw, 100px);
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.hero-tag-pill {
  padding: 5px 14px;
  background: var(--rose-light);
  border: 1px solid var(--rose);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.hero-tag-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--rose-deep);
}
.hero-h1 .hero-word-accent {
  display: inline-block;
  position: relative;
}
.hero-h1 .hero-word-accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--sage) 100%);
  border-radius: 2px;
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 42ch;
  margin-bottom: 2.4rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--rose-light);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.03); }

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lift);
  max-width: 240px;
  z-index: 2;
}
.hero-float-card .eyebrow { margin-bottom: 8px; }
.hero-float-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-soft);
}

.hero-trinity {
  position: absolute;
  top: 40px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.trinity-badge {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.trinity-badge.pray { background: var(--rose-deep); color: white; }
.trinity-badge.plan { background: var(--sage-deep); color: white; }
.trinity-badge.proceed { background: var(--gold); color: white; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--ink);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   BOOK SHOWCASE SECTION
   ============================================================ */
.book-section {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.book-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.book-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.book-bg-shape {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse, var(--blush) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.book-img-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.6s var(--ease-out);
  filter: drop-shadow(0 30px 60px rgba(201,107,139,0.3));
}
.book-img-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.book-img-frame img { border-radius: 4px; }

.book-copy { position: relative; }
.book-copy .eyebrow { margin-bottom: 1rem; }
.book-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  color: var(--ink);
}
.book-copy h2 em { font-style: italic; color: var(--rose-deep); }
.book-copy > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}
.trinity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.trinity-card {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 20px 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.trinity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 8px 8px 0 0;
}
.trinity-card.pray::before { background: var(--rose-deep); }
.trinity-card.plan::before { background: var(--sage-deep); }
.trinity-card.proceed::before { background: var(--gold); }
.trinity-card:hover {
  border-color: var(--blush);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.trinity-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.trinity-card span {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.book-amazon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  border-bottom: 1.5px solid var(--sage);
  padding-bottom: 2px;
  transition: color 0.2s, gap 0.2s;
}
.book-amazon-link:hover { color: var(--rose-deep); gap: 14px; }

/* ============================================================
   IMMERSIVE QUOTE SECTION
   ============================================================ */
.immersive-quote {
  padding: var(--section-pad) 0;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.immersive-quote::before {
  content: '"';
  position: absolute;
  top: -0.3em; left: 5%;
  font-family: var(--font-display);
  font-size: clamp(16rem, 25vw, 30rem);
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.immersive-quote .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.iq-left {
  position: relative;
  z-index: 1;
}
.iq-left .eyebrow { color: var(--rose); margin-bottom: 1.5rem; }
.iq-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
}
.iq-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 50ch;
  margin-bottom: 2rem;
}
.iq-right {
  position: relative;
  z-index: 1;
}
.iq-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.iq-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s, border-color 0.3s;
}
.iq-pill:hover { background: rgba(232,160,180,0.12); border-color: rgba(232,160,180,0.3); }
.iq-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}
.iq-pill-dot.sage { background: var(--sage); }
.iq-pill span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ============================================================
   LEGACY / LANTERN SECTION
   ============================================================ */
.legacy-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.legacy-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.legacy-header .eyebrow { margin-bottom: 1rem; }
.legacy-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}
.legacy-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-muted);
}
.legacy-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-bottom: 4rem;
}
.legacy-story-text {
  padding-right: 20px;
}
.legacy-story-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-muted);
  margin-bottom: 1.2rem;
}
.legacy-story-text p strong { color: var(--ink-soft); font-weight: 600; }
.legacy-highlight {
  background: var(--rose-light);
  border-left: 3px solid var(--rose-deep);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-top: 1.5rem;
}
.legacy-highlight p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}
.resource-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.resource-card {
  background: white;
  border: 1px solid var(--blush);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out), border-color 0.3s;
}
.resource-card:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}
.resource-card-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--rose-light);
  -webkit-text-stroke: 1.5px var(--rose);
}
.resource-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.resource-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* What Readers Will Learn */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
}
.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--blush);
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.learn-item:hover { border-color: var(--sage); box-shadow: 0 4px 20px rgba(122,158,135,0.1); }
.learn-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.learn-icon svg { width: 14px; height: 14px; color: var(--sage-deep); }
.learn-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ============================================================
   SUBSCRIBE / FREE GIFT SECTION
   ============================================================ */
.subscribe-section {
  padding: var(--section-pad) 0;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.subscribe-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.subscribe-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.subscribe-inner .eyebrow { margin-bottom: 1rem; }
.subscribe-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}
.subscribe-inner > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}
.subscribe-freebies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.5rem;
}
.freebie-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: white;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 2px 8px rgba(201,107,139,0.12);
}
.freebie-tag::before { content: '✦'; color: var(--rose-deep); font-size: 0.6rem; }

.email-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(201,107,139,0.2);
}
.email-form input {
  flex: 1;
  padding: 1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: none;
  background: white;
  color: var(--ink);
  outline: none;
}
.email-form input::placeholder { color: var(--ink-muted); }
.email-form button {
  padding: 1rem 1.6rem;
  background: var(--rose-deep);
  color: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s;
}
.email-form button:hover { background: var(--sage-deep); }
.subscribe-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
}
.subscribe-success {
  display: none;
  background: white;
  border: 1.5px solid var(--sage);
  border-radius: 8px;
  padding: 20px 28px;
  text-align: center;
  color: var(--sage-deep);
  font-weight: 500;
}

/* ============================================================
   WHO IS THIS BOOK FOR
   ============================================================ */
.readers-section {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.readers-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.readers-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 0.8rem;
}
.readers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.reader-card {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s var(--ease-out);
  cursor: default;
}
.reader-card:hover {
  background: white;
  border-color: var(--rose-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.reader-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.reader-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-muted);
  padding-top: 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.praise-section {
  padding: var(--section-pad) 0;
  background: var(--sage-light);
  position: relative;
  overflow: hidden;
}
.praise-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%237A9E87' opacity='0.15'/%3E%3C/svg%3E") repeat;
}
.praise-inner {
  position: relative;
  z-index: 1;
}
.praise-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.praise-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 0.8rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial {
  background: white;
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.testimonial:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--rose-light);
  line-height: 0.8;
  margin-bottom: 1rem;
  display: block;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-style: italic;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.testimonial-cite {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cite-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}
.cite-badge.rose { background: var(--rose-deep); }
.cite-badge.sage { background: var(--sage-deep); }
.testimonial-cite strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-cite span {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-bg {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 85%;
  height: 85%;
  background: var(--sage-light);
  border-radius: 12px;
  z-index: 0;
}
.about-photo-accent {
  position: absolute;
  top: -20px; left: -20px;
  width: 50%;
  height: 50%;
  background: var(--blush);
  border-radius: 8px;
  z-index: 0;
}
.about-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lift);
}
.about-copy .eyebrow { margin-bottom: 1rem; }
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.about-copy h2 em { font-style: italic; color: var(--rose-deep); }
.about-copy p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--ink-muted);
  margin-bottom: 1.2rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 2rem;
}
.about-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--blush);
}
.about-pillar-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.about-pillar-dot.rose { background: var(--rose-deep); }
.about-pillar-dot.sage { background: var(--sage-deep); }
.about-pillar-dot.gold { background: var(--gold); }
.about-pillar span { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--ink-soft) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.final-cta .eyebrow.light { margin-bottom: 1.2rem; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}
.final-cta p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 55ch;
  margin: 0 auto 2.5rem;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.final-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.final-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.final-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}
.final-step span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
}
.footer-brand span { color: var(--rose); }
.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-back-top:hover { color: var(--rose); }

/* ============================================================
   NEWSLETTER SERVICE INFO (top of subscribe)
   ============================================================ */
.newsletter-tip {
  background: var(--sage-light);
  border-left: 3px solid var(--sage-deep);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 2.5rem;
  text-align: left;
}
.newsletter-tip p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--sage-deep);
}
.newsletter-tip strong { color: var(--ink-soft); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: clamp(100px, 12vw, 140px) clamp(20px, 6vw, 60px) clamp(40px, 6vw, 60px);
  }
  .hero-right {
    height: 60vw;
    max-height: 560px;
    min-height: 400px;
  }
  .hero-float-card { left: 20px; bottom: 20px; }
  .hero-trinity { top: 20px; right: 20px; }

  .book-section-inner { grid-template-columns: 1fr; }
  .book-img-frame { max-width: 320px; transform: none; margin: 0 auto; }
  .trinity-cards { grid-template-columns: 1fr 1fr 1fr; }

  .immersive-quote .container { grid-template-columns: 1fr; }
  .iq-left h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

  .legacy-story-block { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 480px; margin: 0 auto; }

  .final-steps { gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-right { height: 75vw; max-height: 420px; }
  .hero-float-card { display: none; }
  .hero-trinity { top: 16px; right: 16px; }
  .trinity-badge { padding: 6px 12px; font-size: 0.6rem; }
  .hero-h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }

  .trinity-cards { grid-template-columns: 1fr; }

  .iq-right-grid { grid-template-columns: 1fr; }

  .email-form {
    flex-direction: column;
    border-radius: 8px;
    overflow: visible;
  }
  .email-form input { border-radius: 8px 8px 0 0; }
  .email-form button {
    border-radius: 0 0 8px 8px;
    padding: 1rem;
  }

  .readers-grid { grid-template-columns: 1fr; }

  .about-pillars { grid-template-columns: 1fr; }

  .final-steps {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions .btn { width: 100%; max-width: 320px; }

  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-left { padding-left: 20px; padding-right: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.wave-divider {
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--rose-deep), var(--sage-deep));
  z-index: 2000;
  transition: width 0.1s;
}


/* ============================================================
   FINAL CUSTOM UPDATES
   ============================================================ */

.hero-pray-plan {
  display: inline;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* Quote card fix: prevents clipped text on image */
.hero-float-card {
  left: 20px !important;
  right: 20px !important;
  bottom: 34px !important;
  width: auto !important;
  max-width: 460px !important;
  overflow: visible !important;
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px !important;
  padding: 24px 28px !important;
  z-index: 3 !important;
}

.hero-float-card .eyebrow,
.hero-float-card p {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

.hero-float-card .eyebrow {
  letter-spacing: 0.18em !important;
  line-height: 1.5 !important;
  margin-bottom: 0.8rem !important;
}

.hero-float-card p {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem) !important;
  line-height: 1.55 !important;
}

.free-gift-section {
  background: var(--blush);
}

.free-gift-download {
  margin-top: 0.8rem;
}

.newsletter-section {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
  position: relative;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(232,160,180,0.18), transparent 28rem),
    radial-gradient(circle at 82% 75%, rgba(122,158,135,0.14), transparent 26rem);
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(36px, 6vw, 70px);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--blush);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.newsletter-inner .eyebrow { margin-bottom: 1rem; }

.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}

.newsletter-inner > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 2.3rem;
}

/* Refined cursor */
body { cursor: default; }
a, button, .btn, .nav-links a, .nav-cta { cursor: pointer; }

/* Mobile header/sidebar safety */
@media (max-width: 900px) {
  .nav-links,
  .nav .nav-cta {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
  }

  .mobile-drawer {
    display: flex !important;
  }

  .hero-pray-plan {
    display: inline-block;
    margin-top: 0.35rem;
  }
}

@media (max-width: 768px) {
  .hero-float-card {
    left: 16px !important;
    right: 16px !important;
    bottom: 18px !important;
    max-width: none !important;
    padding: 18px 20px !important;
  }

  .hero-float-card p {
    font-size: 1.03rem !important;
    line-height: 1.5 !important;
  }

  .hero-float-card .eyebrow {
    font-size: 0.64rem !important;
    letter-spacing: 0.15em !important;
  }

  .newsletter-inner {
    padding: 30px 20px;
    border-radius: 16px;
  }
}


/* ============================================================
   FINAL V2 UPDATES: Fused Lantern Hour Free Gift + Testimonials
   ============================================================ */

.lantern-free-gift-section {
  background: var(--cream);
}

.lantern-free-gift-section .legacy-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.lantern-free-gift-section .legacy-header .eyebrow {
  margin-bottom: 1rem;
}

.lantern-free-gift-section .legacy-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}

.lantern-free-gift-section .legacy-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-muted);
}

.lantern-download-block {
  margin-bottom: 0 !important;
}

.download-card .btn {
  margin-top: 1rem;
  width: fit-content;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.final-cta-actions .btn {
  min-width: 260px;
}

@media (max-width: 768px) {
  .lantern-free-gift-section .legacy-header {
    text-align: left;
    margin-bottom: 2.2rem;
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .download-card .btn {
    width: 100%;
  }
}


/* ============================================================
   FINAL V3 FIXES: Hero Image Stability + PDF Opens in New Tab
   ============================================================ */

.hero-right,
.hero-right img {
  transform: none !important;
}

.hero-right:hover img {
  transform: none !important;
}

.hero-right img {
  will-change: auto !important;
  object-position: center top !important;
}


/* Final V4 - Subscribe CTA button */
.tertiary-btn{
  background:#f3d2df;
  color:#3d2b35;
  border:1px solid rgba(61,43,53,0.18);
}

.tertiary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}
