/* ============================================================
   HOME.CSS — Home page: Hero, Sections, Indian Motifs & Animations
   ============================================================ */

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-cream);
}

@media (min-width: 1024px) {
  .hero { min-height: 92vh; }
}

.hero-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: var(--space-2xl);
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    gap: var(--space-3xl);
    padding: var(--space-3xl) 0;
    align-items: center;
  }
}

/* Hero Text — wider than the photo on desktop (sz2: bold) */
.hero-text {
  text-align: center;
  flex: 1 1 auto;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
    flex: 1.55 1 0;
    max-width: 720px;
  }
}

.hero-supertext {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-sage);
  margin-bottom: var(--space-md);
}

@media (min-width: 1024px) {
  .hero-supertext {
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
  }
}

.hero-supertext-accent {
  color: var(--color-sage);
  font-weight: 600;
  letter-spacing: 0.22em;
}

/* Credibility line — Proud mother of two IITians (sits below the badges) */
.hero-credibility {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: var(--space-lg) 0 0;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-brown-soft);
  background: rgba(212, 168, 83, 0.1);
  border-left: 2px solid var(--color-gold-soft);
  border-radius: 0 6px 6px 0;
  line-height: 1.3;
}

.hero-credibility strong {
  color: var(--color-terracotta);
  font-weight: 700;
  font-style: normal;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

.hero-credibility-mark {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--color-gold-soft);
  flex-shrink: 0;
}

.hero-credibility-mark svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .hero-credibility {
    font-size: 1.2rem;
    padding: 0.55rem 1.1rem;
    margin-top: var(--space-xl);
  }
  .hero-credibility-mark { width: 20px; height: 20px; }
}

@media (max-width: 1023px) {
  .hero-credibility {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
  color: var(--color-charcoal);
}

.hero-heading em {
  font-style: italic;
  color: var(--color-sage-dark);
}

@media (min-width: 640px) {
  .hero-heading { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 4rem;
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1280px) {
  .hero-heading { font-size: 4.75rem; }
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-brown-soft);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 620px;
}

@media (min-width: 1024px) {
  .hero-sub {
    font-size: 1.35rem;
    line-height: 1.65;
    margin-bottom: var(--space-2xl);
    max-width: 640px;
  }
}

@media (min-width: 1280px) {
  .hero-sub { font-size: 1.45rem; }
}

@media (max-width: 1023px) {
  .hero-sub { margin-left: auto; margin-right: auto; }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md) 1.1rem;
  }
}

@media (min-width: 1024px) {
  .hero-ctas { justify-content: flex-start; }
}

/* Quiet text link — sits next to the buttons */
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.hero-text-link:hover {
  color: var(--color-sage);
  border-bottom-color: var(--color-sage);
}

.hero-text-link:hover svg {
  transform: translateX(3px);
}

/* ========== Hero Principles (badges) ========== */
.hero-principles {
  list-style: none;
  margin: var(--space-xl) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) 0.65rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-principles {
    justify-content: flex-start;
    margin-top: var(--space-2xl);
    gap: 0.7rem 0.7rem;
  }
}

.hero-principle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(122, 158, 126, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.hero-principle:hover {
  transform: translateY(-1px);
  border-color: var(--color-sage);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px -10px rgba(90, 126, 94, 0.5);
}

@media (min-width: 1024px) {
  .hero-principle {
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
  }
}

.hero-principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--color-sage-dark);
  flex-shrink: 0;
}

.hero-principle-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .hero-principle-icon {
    width: 20px;
    height: 20px;
  }
}

/* On narrow phones, allow long badges to wrap inside */
@media (max-width: 480px) {
  .hero-principle {
    white-space: normal;
    line-height: 1.25;
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }
}

/* Hero Image — larger & more prominent (p3) */
.hero-image {
  position: relative;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .hero-image { flex: 0 0 auto; }
}

.hero-image-frame {
  width: 260px;
  height: 325px;
  border-radius: var(--radius-xl);
  border: 3px solid var(--color-sage-light);
  background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(45, 42, 38, 0.25);
}

@media (min-width: 1024px) {
  .hero-image-frame {
    width: 440px;
    height: 540px;
  }
}

@media (min-width: 1280px) {
  .hero-image-frame {
    width: 480px;
    height: 590px;
  }
}

.hero-image-placeholder {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-sage-dark);
  text-align: center;
  padding: var(--space-xl);
  font-style: italic;
}

/* Real hero photo */
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* (rangoli corner ornament removed — replaced by hero mandala) */

/* ==================== BACKGROUND DECORATIVE MOTIFS ==================== */

/* Large paisley watermark on hero */
.hero-paisley {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 320px;
  height: 400px;
  color: var(--color-sage);
  opacity: 0.12;
  z-index: 0;
  animation: floatSlow 10s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .hero-paisley {
    width: 500px;
    height: 620px;
    bottom: -60px;
    right: 0;
    opacity: 0.14;
  }
}

/* Floating lotus petals around hero — LARGE & VISIBLE */
.floating-motif {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.floating-lotus-1 {
  top: 12%;
  left: 3%;
  width: 70px;
  height: 70px;
  color: var(--color-sage);
  opacity: 0.5;
  animation: floatLotus1 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .floating-lotus-1 {
    width: 90px;
    height: 90px;
    left: 5%;
  }
}

.floating-lotus-2 {
  top: 55%;
  right: 4%;
  width: 60px;
  height: 60px;
  color: var(--color-terracotta);
  opacity: 0.4;
  animation: floatLotus2 7s ease-in-out infinite 1s;
}

@media (min-width: 1024px) {
  .floating-lotus-2 {
    width: 80px;
    height: 80px;
    right: 6%;
  }
}

.floating-lotus-3 {
  bottom: 12%;
  left: 8%;
  width: 50px;
  height: 50px;
  color: var(--color-gold-soft);
  opacity: 0.45;
  animation: floatLotus3 5.5s ease-in-out infinite 2s;
}

@media (min-width: 1024px) {
  .floating-lotus-3 {
    width: 65px;
    height: 65px;
    left: 15%;
  }
}

/* Floating dots — bigger & brighter */
.floating-dot-1 {
  top: 28%;
  right: 12%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-sage);
  opacity: 0.35;
  animation: floatDot 4s ease-in-out infinite;
}

.floating-dot-2 {
  top: 68%;
  left: 18%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-terracotta);
  opacity: 0.3;
  animation: floatDot 5s ease-in-out infinite 1.5s;
}

.floating-dot-3 {
  top: 22%;
  left: 38%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-gold-soft);
  opacity: 0.4;
  animation: floatDot 6s ease-in-out infinite 3s;
}

/* ==================== FLOATING KEYFRAMES ==================== */
@keyframes floatGentle {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(4px, -8px) rotate(3deg); }
  50%      { transform: translate(0, -14px) rotate(0deg); }
  75%      { transform: translate(-4px, -8px) rotate(-3deg); }
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(8px, -18px) rotate(2deg); }
  66%      { transform: translate(-6px, -10px) rotate(-1.5deg); }
}

@keyframes floatLotus1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(10px, -16px) rotate(5deg); }
  50%      { transform: translate(4px, -24px) rotate(0deg); }
  75%      { transform: translate(-6px, -12px) rotate(-4deg); }
}

@keyframes floatLotus2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(-12px, -20px) rotate(-6deg); }
  66%      { transform: translate(6px, -10px) rotate(3deg); }
}

@keyframes floatLotus3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  30%      { transform: translate(8px, -14px) rotate(4deg); }
  60%      { transform: translate(-5px, -22px) rotate(-3deg); }
  85%      { transform: translate(-8px, -6px) rotate(-1deg); }
}

@keyframes floatDot {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.3); }
}

/* ==================== LIVED, NOT JUST TAUGHT — SONS / FAMILY PROOF ==================== */
.lived-proof {
  position: relative;
  padding: var(--space-xl) 0;
  background:
    radial-gradient(70% 60% at 100% 0%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(122, 158, 126, 0.07) 0%, transparent 65%),
    var(--color-warm-white);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .lived-proof { padding: var(--space-2xl) 0; }
}

.lived-proof-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .lived-proof-inner {
    grid-template-columns: 1fr 320px;
    gap: var(--space-3xl);
  }
}

/* ----- LEFT: TIGHT NARRATIVE ----- */
.lived-proof-narrative { max-width: 620px; }

.lived-proof-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  background: rgba(196, 112, 75, 0.08);
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  margin: 0 0 var(--space-md);
}
.lived-proof-eyebrow svg { width: 12px; height: 12px; }

.lived-proof-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  margin: 0 0 var(--space-md);
}
.lived-proof-heading em {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--color-sage-dark);
  font-weight: 500;
}

@media (min-width: 768px) {
  .lived-proof-heading { font-size: 2.15rem; }
}
@media (min-width: 1024px) {
  .lived-proof-heading { font-size: 2.4rem; }
}

/* Principle chips — bold, can't-miss with icons */
.lived-proof-principles {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.lived-proof-principle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--color-charcoal);
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.18) 0%, rgba(184, 212, 187, 0.22) 100%);
  border: 1.5px solid var(--color-sage);
  border-radius: 999px;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  box-shadow: 0 3px 10px rgba(122, 158, 126, 0.18);
  transition: all 0.25s ease;
}
.lived-proof-principle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 158, 126, 0.28);
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.28) 0%, rgba(184, 212, 187, 0.32) 100%);
}

.lived-proof-principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-sage-dark);
  color: var(--color-warm-white);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(90, 126, 94, 0.35);
}
.lived-proof-principle-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

@media (min-width: 1024px) {
  .lived-proof-principle { font-size: 1.1rem; }
  .lived-proof-principle-icon { width: 36px; height: 36px; }
  .lived-proof-principle-icon svg { width: 19px; height: 19px; }
}

/* Inline son intros — short and rich */
.lived-proof-sons-inline {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: 0 0 var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-warm-white);
  border-left: 3px solid var(--color-sage-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 2px 8px var(--color-shadow);
}

.lived-proof-son {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-brown-soft);
  margin: 0;
}
.lived-proof-son strong {
  color: var(--color-charcoal);
  font-weight: 700;
}
.lived-proof-son em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--color-sage-dark);
  font-size: 1.05em;
}
.lived-proof-son-role {
  font-weight: 600;
  color: var(--color-terracotta);
}

@media (min-width: 1024px) {
  .lived-proof-son { font-size: 1.02rem; }
}

/* "Both IIT Delhi alumni" pill */
.lived-proof-iit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.18), rgba(212, 168, 83, 0.06));
  border: 1px solid rgba(212, 168, 83, 0.45);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(212, 168, 83, 0.18);
}
.lived-proof-iit-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold-soft);
}

/* ----- RIGHT: TALL FAMILY PHOTO (BRIGHTENED) ----- */
.lived-proof-family {
  margin: 0;
  position: relative;
  justify-self: center;
  max-width: 300px;
  width: 100%;
}
.lived-proof-family img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(45, 42, 38, 0.22);
  border: 5px solid var(--color-warm-white);
  transform: rotate(-1deg);
  transition: transform 0.4s ease, filter 0.4s ease;
  /* Brighten the photo */
  filter: brightness(1.18) saturate(1.08) contrast(1.02);
}
.lived-proof-family:hover img {
  transform: rotate(0deg) scale(1.01);
  filter: brightness(1.22) saturate(1.12) contrast(1.03);
}
.lived-proof-family figcaption {
  margin-top: var(--space-sm);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-brown-soft);
  text-align: center;
}

@media (min-width: 1024px) {
  .lived-proof-family { max-width: 290px; }
}

/* ==================== FEATURED PODCAST(S) ==================== */
.featured-podcast {
  background: var(--color-warm-white);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
}

/* Subtle alternating background so back-to-back podcast sections read distinct */
.featured-podcast--reverse {
  background:
    linear-gradient(135deg, rgba(122, 158, 126, 0.06) 0%, rgba(212, 168, 83, 0.04) 100%),
    var(--color-cream);
  border-top: none;
}

@media (min-width: 1024px) {
  .featured-podcast { padding: var(--space-3xl) 0; }
}

.featured-podcast-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .featured-podcast-inner {
    grid-template-columns: 1fr 1.35fr;
    gap: var(--space-3xl);
  }
  /* Reverse layout: video on left, text on right */
  .featured-podcast--reverse .featured-podcast-inner {
    grid-template-columns: 1.35fr 1fr;
  }
}

.featured-podcast-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-terracotta);
  margin: 0 0 var(--space-md);
}

.featured-podcast-eyebrow svg {
  width: 18px;
  height: 18px;
}

.featured-podcast-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  margin: 0 0 var(--space-md);
}

.featured-podcast-heading em {
  font-style: italic;
  color: var(--color-sage-dark);
}

@media (min-width: 768px) {
  .featured-podcast-heading { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .featured-podcast-heading { font-size: 2.75rem; }
}

.featured-podcast-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--color-brown-soft);
  margin: 0 0 var(--space-lg);
  max-width: 560px;
}

@media (min-width: 1024px) {
  .featured-podcast-sub { font-size: 1.2rem; }
}

.featured-podcast-sub strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

.featured-podcast-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-terracotta);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding: 0.4rem 0;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.featured-podcast-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.featured-podcast-link:hover {
  color: var(--color-terracotta-light);
  border-bottom-color: var(--color-terracotta);
}

.featured-podcast-link:hover svg {
  transform: translateX(3px);
}

/* Lite-YouTube facade: real thumbnail + play button, opens on YouTube on click.
   Avoids embed Error 153 entirely and loads instantly. */
.featured-podcast-video-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-charcoal);
  box-shadow: 0 25px 60px -25px rgba(45, 42, 38, 0.4),
              0 0 0 1px rgba(122, 158, 126, 0.15);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.featured-podcast-video-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px -25px rgba(45, 42, 38, 0.5),
              0 0 0 1px rgba(122, 158, 126, 0.25);
}

.featured-podcast-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.featured-podcast-video-frame:hover .featured-podcast-thumb {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.featured-podcast-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 50px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.featured-podcast-play svg {
  width: 100%;
  height: 100%;
  display: block;
}

.featured-podcast-play-bg {
  transition: fill 0.25s ease, fill-opacity 0.25s ease;
}

.featured-podcast-video-frame:hover .featured-podcast-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.featured-podcast-video-frame:hover .featured-podcast-play-bg {
  fill: #C4704B;
  fill-opacity: 1;
}

@media (min-width: 1024px) {
  .featured-podcast-play {
    width: 88px;
    height: 62px;
  }
}

.featured-podcast-cta {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, bottom 0.25s ease;
}

.featured-podcast-video-frame:hover .featured-podcast-cta {
  opacity: 1;
  bottom: 18px;
}

@media (max-width: 767px) {
  .featured-podcast-cta {
    opacity: 1;
    bottom: 12px;
    font-size: 0.72rem;
  }
}

/* ==================== THE BOOK ==================== */
.featured-book {
  background:
    linear-gradient(135deg, rgba(212, 168, 83, 0.05) 0%, rgba(196, 112, 75, 0.06) 100%),
    var(--color-cream);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 1024px) {
  .featured-book { padding: var(--space-3xl) 0; }
}

.featured-book-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  justify-items: center;
}

@media (min-width: 1024px) {
  .featured-book-inner {
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: var(--space-3xl);
    justify-items: stretch;
  }
}

.featured-book-cover-wrap {
  position: relative;
  display: inline-block;
}

.featured-book-cover {
  width: 200px;
  height: 300px;
  border-radius: 4px 6px 6px 4px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    -3px 0 0 rgba(0, 0, 0, 0.06) inset,
    0 25px 50px -20px rgba(45, 42, 38, 0.45),
    0 10px 25px -10px rgba(196, 112, 75, 0.2);
  transform: perspective(1000px) rotateY(-6deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(135deg, var(--color-sage-light), var(--color-cream));
}

@media (min-width: 768px) {
  .featured-book-cover {
    width: 240px;
    height: 360px;
  }
}

@media (min-width: 1024px) {
  .featured-book-cover {
    width: 280px;
    height: 420px;
  }
}

.featured-book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-book-cover img.is-fallback {
  object-position: center;
}

.featured-book-cover:hover {
  transform: perspective(1000px) rotateY(-2deg) translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    -3px 0 0 rgba(0, 0, 0, 0.06) inset,
    0 30px 60px -20px rgba(45, 42, 38, 0.5),
    0 12px 30px -10px rgba(196, 112, 75, 0.25);
}

.featured-book-rating-floating {
  position: absolute;
  bottom: -14px;
  right: -14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px -8px rgba(45, 42, 38, 0.3),
              0 0 0 1px rgba(122, 158, 126, 0.15);
}

@media (min-width: 1024px) {
  .featured-book-rating-floating {
    bottom: -16px;
    right: -20px;
    padding: 0.55rem 0.9rem;
  }
}

.featured-book-stars {
  font-size: 1rem;
  color: var(--color-gold-soft);
  letter-spacing: 0.06em;
  line-height: 1;
}

.featured-book-rating-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brown-soft);
}

.featured-book-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-sage);
  margin: 0 0 var(--space-md);
}

.featured-book-eyebrow svg {
  width: 18px;
  height: 18px;
}

.featured-book-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  margin: 0 0 var(--space-md);
}

.featured-book-subtitle {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-sage-dark);
  margin-top: 0.25rem;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .featured-book-heading { font-size: 2.5rem; }
  .featured-book-subtitle { font-size: 1.45rem; }
}

@media (min-width: 1024px) {
  .featured-book-heading { font-size: 2.75rem; }
  .featured-book-subtitle { font-size: 1.6rem; }
}

.featured-book-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--color-brown-soft);
  margin: 0 0 var(--space-lg);
  max-width: 580px;
}

@media (min-width: 1024px) {
  .featured-book-desc { font-size: 1.15rem; }
}

.featured-book-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: 0 0 var(--space-xl);
}

@media (min-width: 768px) {
  .featured-book-reviews {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

.featured-book-review {
  margin: 0;
  padding: var(--space-lg);
  background: var(--color-warm-white);
  border-left: 3px solid var(--color-gold-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 2px 6px rgba(45, 42, 38, 0.04);
}

.featured-book-review blockquote {
  margin: 0 0 0.85rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--color-charcoal);
}

@media (min-width: 768px) {
  .featured-book-review blockquote { font-size: 1.4rem; }
}

@media (min-width: 1024px) {
  .featured-book-review blockquote { font-size: 1.5rem; }
}

.featured-book-review figcaption {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--color-brown-soft);
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .featured-book-review figcaption { font-size: 1.05rem; }
}

.featured-book-review-stars {
  color: var(--color-gold-soft);
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  line-height: 1;
}

@media (min-width: 1024px) {
  .featured-book-review-stars { font-size: 1.2rem; }
}

.featured-book-review cite {
  font-style: normal;
  font-weight: 600;
}

.featured-book-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) 1.25rem;
}

@media (max-width: 1023px) {
  .featured-book-text { text-align: center; }
  .featured-book-eyebrow,
  .featured-book-ctas { justify-content: center; }
  .featured-book-desc { margin-left: auto; margin-right: auto; }
}

/* ==================== DAILY WISDOM CAROUSEL ==================== */
.daily-wisdom {
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.10) 0%, rgba(196, 112, 75, 0.06) 50%, rgba(212, 168, 83, 0.06) 100%);
  border-top: 2px solid rgba(122, 158, 126, 0.18);
  border-bottom: 2px solid rgba(122, 158, 126, 0.18);
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

/* Decorative corner rangoli on the section */
.daily-wisdom::before,
.daily-wisdom::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1.5px solid var(--color-sage-light);
  border-radius: 50%;
  opacity: 0.12;
}
.daily-wisdom::before {
  top: -40px;
  left: -40px;
  box-shadow: 20px 20px 0 -1px transparent, 20px 20px 0 0 var(--color-sage-light);
}
.daily-wisdom::after {
  bottom: -40px;
  right: -40px;
  box-shadow: -20px -20px 0 -1px transparent, -20px -20px 0 0 var(--color-sage-light);
}

.daily-wisdom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  position: relative;
}

/* ---- Animated Diya ---- */
.daily-wisdom-diya {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin-bottom: var(--space-sm);
}

.daily-wisdom-diya svg {
  width: 100%;
  height: 100%;
  color: var(--color-terracotta);
  position: relative;
  z-index: 2;
}

/* Flame flicker */
.diya-flame {
  animation: flameFlicker 1.2s ease-in-out infinite alternate;
  transform-origin: center bottom;
}

@keyframes flameFlicker {
  0%   { transform: scaleY(1) scaleX(1) rotate(0deg); opacity: 0.9; }
  25%  { transform: scaleY(1.1) scaleX(0.95) rotate(-2deg); opacity: 1; }
  50%  { transform: scaleY(0.95) scaleX(1.05) rotate(1deg); opacity: 0.85; }
  75%  { transform: scaleY(1.08) scaleX(0.97) rotate(-1deg); opacity: 1; }
  100% { transform: scaleY(1) scaleX(1) rotate(0deg); opacity: 0.9; }
}

/* Glow rings behind the diya */
.diya-glow-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.diya-glow-ring-1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(196,112,75,0.25) 0%, transparent 70%);
  animation: diyaPulse1 2.5s ease-in-out infinite;
}

.diya-glow-ring-2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
  animation: diyaPulse2 3.5s ease-in-out infinite 0.5s;
}

.diya-glow-ring-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(196,112,75,0.08) 0%, transparent 70%);
  animation: diyaPulse3 4s ease-in-out infinite 1s;
}

@keyframes diyaPulse1 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
@keyframes diyaPulse2 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%      { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}
@keyframes diyaPulse3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50%      { transform: translate(-50%, -50%) scale(1.12); opacity: 0.6; }
}

/* ---- Section label (acts as the section heading) ---- */
.daily-wisdom-label {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-style: italic;
  color: var(--color-sage-dark);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 var(--space-md);
}

@media (min-width: 768px) {
  .daily-wisdom-label { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .daily-wisdom-label {
    font-size: 3.25rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1280px) {
  .daily-wisdom-label { font-size: 3.75rem; }
}

/* ---- Carousel viewport ---- */
.wisdom-carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 120px;
}

.wisdom-carousel-track {
  position: relative;
  overflow: hidden;
}

.wisdom-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-md);
  animation: wisdomFadeIn 600ms ease both;
}

.wisdom-slide.active {
  display: flex;
}

@keyframes wisdomFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wisdom-slide-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-sm);
}

.wisdom-slide-quote {
  font-family: var(--font-accent);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  max-width: 760px;
}

@media (min-width: 768px) {
  .wisdom-slide-quote { font-size: 2rem; }
}

@media (min-width: 1024px) {
  .wisdom-slide-quote { font-size: 2.35rem; }
}

.wisdom-slide-source {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-brown-soft);
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  margin-top: var(--space-sm);
}

@media (min-width: 768px) {
  .wisdom-slide-source { font-size: 1.4rem; }
}

@media (min-width: 1024px) {
  .wisdom-slide-source { font-size: 1.55rem; }
}

/* ---- Carousel Navigation Arrows ---- */
.wisdom-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-warm-white);
  color: var(--color-sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: all 250ms ease;
  z-index: 5;
}

.wisdom-carousel-nav:hover {
  background: var(--color-sage);
  color: #fff;
  border-color: var(--color-sage);
  transform: translateY(-50%) scale(1.08);
}

.wisdom-carousel-prev { left: -8px; }
.wisdom-carousel-next { right: -8px; }

@media (min-width: 1024px) {
  .wisdom-carousel-prev { left: -56px; }
  .wisdom-carousel-next { right: -56px; }
}

.wisdom-carousel-nav svg {
  width: 20px;
  height: 20px;
}

/* ---- Dot Indicators ---- */
.wisdom-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.wisdom-dot {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-sage-light);
  background: transparent;
  color: var(--color-brown-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease;
  padding: 0;
}

.wisdom-dot:hover {
  border-color: var(--color-sage);
  color: var(--color-sage);
}

.wisdom-dot.active {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.2);
}

/* ---- Progress Bar ---- */
.wisdom-progress {
  width: 100%;
  max-width: 400px;
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  margin: var(--space-md) auto 0;
  overflow: hidden;
}

.wisdom-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-sage), var(--color-sage-dark));
  border-radius: 2px;
  width: 0%;
  transition: none;
}

.wisdom-progress-bar.animating {
  transition: width 15s linear;
  width: 100%;
}

/* ---- CTA Link ---- */
.daily-wisdom-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-sage-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  padding: 0.85rem var(--space-xl);
  border: 1.5px solid var(--color-sage-light);
  border-radius: var(--radius-2xl);
  transition: all 250ms ease;
  min-height: 48px;
}

.daily-wisdom-link svg {
  width: 18px;
  height: 18px;
}

.daily-wisdom-link:hover {
  background: var(--color-sage);
  color: #fff;
  border-color: var(--color-sage);
  transform: translateY(-2px);
}

/* ==================== "WHAT I HELP WITH" SECTION ==================== */
.help-section {
  text-align: center;
}

.help-availability {
  max-width: 720px;
  margin: var(--space-md) auto 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-brown-soft);
}

.help-availability strong {
  color: var(--color-terracotta);
  font-weight: 700;
}

@media (min-width: 768px) {
  .help-availability {
    font-size: 1.2rem;
    margin-top: var(--space-lg);
  }
}

.help-cards {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .help-cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .help-cards { grid-template-columns: 1fr 1fr 1fr; }
}

.help-cards .card {
  text-align: left;
}

/* ==================== FEATURED WISDOM SECTION ==================== */
.wisdom-preview {
  position: relative;
}

.wisdom-preview-grid {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .wisdom-preview-grid { grid-template-columns: 1fr 1fr; }
}

.wisdom-preview-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* Horizontal scroll on small mobile */
@media (max-width: 639px) {
  .wisdom-preview-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/Edge */
  }

  .wisdom-preview-grid::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari */
  }

  .wisdom-preview-grid .wisdom-card {
    min-width: calc(85vw - var(--space-xl));
    max-width: calc(85vw - var(--space-xl));
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}

/* Scroll indicator dots for mobile wisdom cards */
.wisdom-scroll-dots {
  display: none;
}

@media (max-width: 639px) {
  .wisdom-scroll-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
  }

  .wisdom-scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--color-sage-light);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 300ms ease;
    opacity: 0.4;
  }

  .wisdom-scroll-dot.active {
    background: var(--color-sage);
    opacity: 1;
    transform: scale(1.3);
  }

}

/* (swipeHintFade removed — replaced by dot indicators) */

/* ==================== TRUST & CREDENTIALS STRIP ==================== */
.trust-strip {
  background: var(--color-charcoal);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient shimmer across the strip */
.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(122,158,126,0.08) 0%,
    rgba(212,168,83,0.06) 50%,
    rgba(196,112,75,0.05) 100%
  );
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

/* Vertical divider lines between items */
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* Hide vertical dividers on mobile grid (every other item start of row) */
@media (max-width: 767px) {
  .trust-item:nth-child(odd)::before { display: none; }
}

.trust-item-icon {
  width: 56px;
  height: 56px;
  color: var(--color-sage-light);
  margin-bottom: var(--space-xs);
  transition: transform 400ms ease;
}

.trust-item:hover .trust-item-icon {
  transform: scale(1.15) rotate(3deg);
}

.trust-item-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}

@media (min-width: 1024px) {
  .trust-item-number { font-size: var(--text-4xl); }
}

.trust-item-text {
  font-size: var(--text-base);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

@media (min-width: 1024px) {
  .trust-item-text { font-size: var(--text-lg); }
}

/* ==================== TESTIMONIAL SECTION ==================== */
.testimonial-section {
  text-align: center;
  position: relative;
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-warm-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .testimonial-card { padding: var(--space-3xl) var(--space-4xl); }
}

.testimonial-quote-mark {
  font-family: var(--font-accent);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-sage-light);
  position: absolute;
  top: 16px;
  left: 24px;
  opacity: 0.5;
  user-select: none;
}

@media (min-width: 1024px) {
  .testimonial-quote-mark { font-size: 8rem; top: 8px; left: 32px; }
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-charcoal);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .testimonial-text { font-size: var(--text-xl); }
}

.testimonial-attr {
  font-size: var(--text-sm);
  color: var(--color-brown-soft);
  font-weight: 500;
}

.testimonial-link {
  display: inline-block;
  margin-top: var(--space-lg);
  color: var(--color-sage-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: color 200ms ease;
}

.testimonial-link:hover { color: var(--color-sage); }

/* Rangoli ornament on testimonial card */
.testimonial-rangoli {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 130px;
  height: 130px;
  color: var(--color-sage);
  opacity: 0.15;
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ==================== BOTANICAL DIVIDER ==================== */
.botanical-divider {
  display: flex;
  justify-content: center;
  padding: var(--space-md) 0;
  opacity: 0.45;
  color: var(--color-sage);
}

.botanical-divider svg {
  width: min(60%, 400px);
  height: auto;
}

/* ==================== AMBIENT PARTICLES ==================== */
/* Floating glowing orbs always visible across the entire page */
.ambient-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift linear infinite;
}

/* Larger, more visible particles with glow */
.particle:nth-child(1) {
  width: 10px; height: 10px;
  background: radial-gradient(circle, var(--color-sage-light), transparent);
  box-shadow: 0 0 8px var(--color-sage-light);
  left: 8%;
  animation-duration: 14s;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 8px; height: 8px;
  background: radial-gradient(circle, var(--color-terracotta-light), transparent);
  box-shadow: 0 0 6px var(--color-terracotta-light);
  left: 22%;
  animation-duration: 16s;
  animation-delay: 2s;
}
.particle:nth-child(3) {
  width: 12px; height: 12px;
  background: radial-gradient(circle, var(--color-gold-soft), transparent);
  box-shadow: 0 0 10px rgba(212,168,83,0.4);
  left: 45%;
  animation-duration: 13s;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  width: 7px; height: 7px;
  background: radial-gradient(circle, var(--color-sage), transparent);
  box-shadow: 0 0 6px var(--color-sage-light);
  left: 65%;
  animation-duration: 17s;
  animation-delay: 1s;
}
.particle:nth-child(5) {
  width: 9px; height: 9px;
  background: radial-gradient(circle, var(--color-terracotta), transparent);
  box-shadow: 0 0 8px var(--color-terracotta-light);
  left: 80%;
  animation-duration: 15s;
  animation-delay: 6s;
}
.particle:nth-child(6) {
  width: 8px; height: 8px;
  background: radial-gradient(circle, var(--color-sage), transparent);
  box-shadow: 0 0 7px var(--color-sage-light);
  left: 35%;
  animation-duration: 18s;
  animation-delay: 3s;
}
.particle:nth-child(7) {
  width: 10px; height: 10px;
  background: radial-gradient(circle, var(--color-gold-soft), transparent);
  box-shadow: 0 0 8px rgba(212,168,83,0.4);
  left: 55%;
  animation-duration: 14s;
  animation-delay: 8s;
}
.particle:nth-child(8) {
  width: 7px; height: 7px;
  background: radial-gradient(circle, var(--color-sage-light), transparent);
  box-shadow: 0 0 6px var(--color-sage-light);
  left: 12%;
  animation-duration: 16s;
  animation-delay: 5s;
}
.particle:nth-child(9) {
  width: 11px; height: 11px;
  background: radial-gradient(circle, var(--color-sage), transparent);
  box-shadow: 0 0 10px var(--color-sage-light);
  left: 92%;
  animation-duration: 13s;
  animation-delay: 1s;
}
.particle:nth-child(10) {
  width: 9px; height: 9px;
  background: radial-gradient(circle, var(--color-terracotta), transparent);
  box-shadow: 0 0 8px rgba(196,112,75,0.4);
  left: 3%;
  animation-duration: 15s;
  animation-delay: 7s;
}
.particle:nth-child(11) {
  width: 8px; height: 8px;
  background: radial-gradient(circle, var(--color-gold-soft), transparent);
  box-shadow: 0 0 7px rgba(212,168,83,0.4);
  left: 75%;
  animation-duration: 17s;
  animation-delay: 9s;
}
.particle:nth-child(12) {
  width: 10px; height: 10px;
  background: radial-gradient(circle, var(--color-sage-light), transparent);
  box-shadow: 0 0 9px var(--color-sage-light);
  left: 50%;
  animation-duration: 14s;
  animation-delay: 11s;
}

@keyframes particleDrift {
  0% {
    transform: translateY(105vh) scale(0.5);
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.45;
    transform: translateY(50vh) scale(1);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-40px) scale(0.6);
    opacity: 0;
  }
}

/* ==================== ALWAYS-VISIBLE SIDE MOTIFS ==================== */
/* Fixed decorative motifs on left/right edges — visible on all screens */
.side-motif {
  position: fixed;
  z-index: 0;
  pointer-events: none;
}

.side-motif-left {
  left: -20px;
  top: 25%;
  width: 100px;
  height: 150px;
  color: var(--color-sage);
  opacity: 0.15;
  animation: sideMotifLeft 7s ease-in-out infinite;
}

.side-motif-right {
  right: -20px;
  top: 50%;
  width: 90px;
  height: 135px;
  color: var(--color-terracotta);
  opacity: 0.12;
  animation: sideMotifRight 8s ease-in-out infinite 2s;
}

@media (min-width: 1024px) {
  .side-motif-left {
    left: -10px;
    width: 140px;
    height: 210px;
    opacity: 0.18;
  }
  .side-motif-right {
    right: -10px;
    width: 120px;
    height: 180px;
    opacity: 0.15;
  }
}

@media (min-width: 1280px) {
  .side-motif-left {
    left: 10px;
    width: 160px;
    height: 240px;
    opacity: 0.2;
  }
  .side-motif-right {
    right: 10px;
    width: 140px;
    height: 210px;
    opacity: 0.18;
  }
}

@keyframes sideMotifLeft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-30px) rotate(3deg); }
}

@keyframes sideMotifRight {
  0%, 100% { transform: translateY(0) rotate(0deg) scaleX(-1); }
  50%      { transform: translateY(-25px) rotate(-3deg) scaleX(-1); }
}

/* ==================== HERO SPARKLE ACCENTS ==================== */
/* Extra decorative elements in the hero for visual richness */
.hero-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-sparkle-1 {
  top: 10%;
  right: 20%;
  width: 20px;
  height: 20px;
  animation: sparkle 3s ease-in-out infinite;
}

.hero-sparkle-2 {
  top: 75%;
  left: 25%;
  width: 16px;
  height: 16px;
  animation: sparkle 4s ease-in-out infinite 1.5s;
}

.hero-sparkle-3 {
  top: 40%;
  left: 50%;
  width: 14px;
  height: 14px;
  animation: sparkle 3.5s ease-in-out infinite 0.8s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.15;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2) rotate(180deg);
  }
}

/* ==================== HERO MANDALA — top-right of hero ==================== */
.hero-mandala {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  color: var(--color-sage);
  opacity: 0.25;
  animation: mandalaRotate 50s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 640px) {
  .hero-mandala {
    top: -100px;
    right: -60px;
    width: 400px;
    height: 400px;
    opacity: 0.22;
  }
}

@media (min-width: 1024px) {
  .hero-mandala {
    top: -120px;
    right: -40px;
    width: 520px;
    height: 520px;
    opacity: 0.2;
  }
}

@media (min-width: 1280px) {
  .hero-mandala {
    top: -140px;
    right: 0;
    width: 600px;
    height: 600px;
    opacity: 0.18;
  }
}

@keyframes mandalaRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Photo-story + lightbox styles moved to css/about.css */
