  .bg-mandala {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 520px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
  }

  .bg-floral-left {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
  }

  .bg-floral-right {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
  }

  .section-with-bg {
    position: relative;
    overflow: hidden;
  }

  .section-content {
    position: relative;
    z-index: 10;
  }

  /* Base animation state */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* When visible */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slight stagger helper */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
