/*
 * effect.css — Section 4-B: The Best Year Yet® Effect
 * Background: brand organic circles (teal, red, screen blue)
 */

.section-effect {
  background: var(--color-off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.effect-organics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Organic circle shapes — same language as transformation photo bubble / hero */
.effect-organic {
  position: absolute;
  border-radius: 47% 53% 52% 48% / 48% 47% 53% 52%;
}

.effect-organic-teal {
  width: clamp(200px, 28vw, 320px);
  height: clamp(200px, 28vw, 320px);
  background: var(--color-teal);
  opacity: 0.14;
  top: -6%;
  left: -8%;
  border-radius: 52% 48% 44% 56% / 48% 52% 48% 52%;
}

.effect-organic-red {
  width: clamp(160px, 22vw, 260px);
  height: clamp(160px, 22vw, 260px);
  background: var(--color-red);
  opacity: 0.1;
  bottom: -4%;
  right: -5%;
  border-radius: 44% 56% 52% 48% / 55% 45% 50% 50%;
}

.effect-organic-blue {
  width: clamp(120px, 16vw, 200px);
  height: clamp(120px, 16vw, 200px);
  background: var(--color-screen-blue);
  opacity: 0.09;
  top: 42%;
  right: 10%;
  border-radius: 48% 52% 50% 50% / 52% 48% 52% 48%;
}

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

.effect-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.effect-header {
  margin-bottom: 32px;
}

.effect-title {
  margin: 0;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.effect-copy {
  text-align: center;
}

.effect-body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.75;
  color: var(--color-text-primary);
  margin: 0 auto;
  max-width: 640px;
}

.effect-closer {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-navy);
  margin: 28px auto 0;
  padding-top: 28px;
  max-width: 560px;
  border-top: 2px solid rgba(126, 198, 184, 0.55);
}

.effect-closer em {
  font-style: italic;
  color: inherit;
  font-weight: 600;
}

@media (max-width: 768px) {
  .section-effect {
    padding: 72px 0;
  }

  .effect-body {
    font-size: 18px;
  }

  .effect-closer {
    padding-top: 24px;
    font-size: 20px;
    margin-top: 24px;
  }

  .effect-organic-blue {
    right: -4%;
    opacity: 0.07;
  }
}

@media (max-width: 480px) {
  .effect-organic-teal,
  .effect-organic-red {
    opacity: 0.08;
  }
}
