/* ── Ice Bath Day Retreat — cool teal / slate ── */

.ib-page {
  --ib-deep: #132a32;
  --ib-ink: #1a3640;
  --ib-muted: #5a737a;
  --ib-accent: #3d7a88;
  --ib-accent-soft: #5a9aaa;
  --ib-mist: #e8f1f3;
  --ib-frost: #f3f8f9;
  --ib-surface: #f7fbfc;
  --ib-line: rgba(30, 58, 66, 0.14);
  --ib-glow: rgba(90, 154, 170, 0.35);
  --ib-cold: #d9eef5;
  --ib-warm: #f3e6d4;
  --ib-blush: #f6ebe6;
  --bg-temp: #f3f8f9;
  --ib-enter-x: 1.4rem;
  background-color: var(--bg-temp);
  color: var(--ib-ink);
  transition: background-color 0.45s ease;
}

html[dir="rtl"] .ib-page {
  --ib-enter-x: -1.4rem;
}

.ib-main {
  min-height: 100vh;
}

/* ── Hero — full-bleed atmospheric plane ── */
.ib-hero {
  position: relative;
  min-height: calc(100svh - 3.5rem);
  max-height: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  color: #f3f8f9;
}

/* Photo plane — under mist / atmosphere / scrim */
.ib-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1a3640;
}

.ib-hero__media picture,
.ib-hero__photo {
  display: block;
  width: 100%;
  height: 100%;
}

.ib-hero__photo {
  object-fit: cover;
  object-position: 18% 45%;
  transform-origin: center center;
  animation: ib-ken-burns 22s linear infinite alternate;
}

@media (min-width: 768px) {
  .ib-hero__photo {
    object-position: center 45%;
  }
}

@keyframes ib-ken-burns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

/* Teal mist wash over the photo (no longer a standalone gradient field) */
.ib-hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 18% 12%, rgba(255, 255, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 70% 55% at 88% 28%, rgba(90, 154, 170, 0.28), transparent 55%),
    linear-gradient(
      165deg,
      rgba(30, 58, 66, 0.42) 0%,
      rgba(42, 85, 95, 0.28) 42%,
      rgba(61, 122, 136, 0.22) 68%,
      rgba(26, 54, 64, 0.45) 100%
    );
  animation: ib-hero-drift 22s ease-in-out infinite alternate;
}

.ib-hero__atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 40%, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(circle at 62% 55%, rgba(232, 241, 243, 0.08), transparent 32%);
  opacity: 0.9;
  pointer-events: none;
}

.ib-hero__atmosphere::after {
  content: none;
}

/* Dark bottom scrim — text legibility between overlay and copy */
.ib-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(19, 42, 50, 0.2) 0%,
    rgba(19, 42, 50, 0.08) 32%,
    rgba(19, 42, 50, 0.45) 62%,
    rgba(19, 42, 50, 0.82) 100%
  );
}

/* Drifting mist / fog between photo and teal wash */
.ib-hero__mist,
.ib-cta__mist {
  position: absolute;
  inset: -20% -10%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(ellipse 42% 28% at 12% 40%, rgba(255, 255, 255, 0.28), transparent 70%),
    radial-gradient(ellipse 38% 32% at 78% 22%, rgba(200, 230, 236, 0.2), transparent 68%),
    radial-gradient(ellipse 50% 36% at 48% 78%, rgba(255, 255, 255, 0.14), transparent 72%),
    radial-gradient(ellipse 30% 22% at 62% 52%, rgba(180, 215, 222, 0.16), transparent 70%);
  filter: blur(28px);
  animation: ib-mist-drift 28s ease-in-out infinite alternate;
}

@keyframes ib-hero-drift {
  from {
    filter: saturate(1) brightness(1);
    opacity: 1;
  }
  to {
    filter: saturate(1.06) brightness(1.03);
    opacity: 0.92;
  }
}

@keyframes ib-mist-drift {
  from {
    transform: translate3d(-3%, 1%, 0) scale(1.02);
  }
  to {
    transform: translate3d(4%, -2%, 0) scale(1.08);
  }
}

.ib-hero__back {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 248, 249, 0.28);
  background: rgba(243, 248, 249, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.8rem;
  font-weight: 500;
  color: #f3f8f9;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.ib-hero__back:hover {
  background: rgba(243, 248, 249, 0.22);
  border-color: rgba(243, 248, 249, 0.45);
  opacity: 1;
}

.ib-hero__inner {
  position: relative;
  z-index: 5;
  width: min(100%, 40rem);
  margin-inline: auto;
  padding: 2.5rem 1.25rem 2.75rem;
  text-align: center;
}

.ib-hero__brand {
  margin: 0 0 0.85rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 241, 243, 0.88);
}

.ib-hero__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.28;
  color: #f7fbfc;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

.ib-hero__word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.ib-hero__divider {
  width: 3rem;
  height: 1px;
  margin: 1rem auto 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(90, 154, 170, 0.9), transparent);
}

.ib-hero__meta {
  display: grid;
  gap: 0.35rem;
  margin: 0 auto 1.35rem;
  max-width: 24rem;
}

.ib-hero__meta-row {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(243, 248, 249, 0.88);
}

.ib-hero__meta-row--date {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #dcecef;
}

.ib-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: min(100%, 15rem);
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 241, 243, 0.45);
  background: linear-gradient(180deg, #e8f1f3 0%, #c5dde3 100%);
  color: var(--ib-deep);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.ib-hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.ib-hero__health {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  padding: 0.35rem 0.25rem;
  color: rgba(232, 241, 243, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 241, 243, 0.35);
  transition: color 200ms ease, border-color 200ms ease;
}

.ib-hero__health:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

/* Idle breath pulse — inhale / exhale */
.ib-hero__cta.ib-cta--breathe {
  animation: ib-cta-breathe 4.8s ease-in-out infinite;
}

@keyframes ib-cta-breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.025);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.2),
      0 0 0 6px rgba(232, 241, 243, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }
}

.ib-hero__cta.ib-cta--breathe:hover {
  animation-play-state: paused;
}

/* CSS fallback entrance (used when GSAP unavailable / reduced motion) */
.ib-hero__fade {
  opacity: 0;
  transform: translateY(22px);
  animation: ib-fade-up 1000ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ib-hero__fade--1 { animation-delay: 120ms; }
.ib-hero__fade--2 { animation-delay: 280ms; }
.ib-hero__fade--3 { animation-delay: 420ms; }

.ib-page--motion .ib-hero__fade {
  animation: none;
  opacity: 0;
  transform: none;
}

@keyframes ib-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Shared section shell ── */
.ib-section {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
}

.ib-wrap {
  width: min(100%, 68rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.ib-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ib-accent);
}

.ib-section-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--ib-ink);
  line-height: 1.25;
}

.ib-section-lead {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ib-muted);
  max-width: 36rem;
}

/* ── Limited intro ── */
.ib-intro {
  background: color-mix(in srgb, var(--ib-mist) 78%, var(--bg-temp) 22%);
  border-block: 1px solid var(--ib-line);
}

.ib-intro__inner {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}

.ib-intro__title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--ib-ink);
  line-height: 1.4;
}

.ib-intro__text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ib-muted);
}

.ib-intro__venue {
  margin: 1.15rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ib-ink);
}

.ib-waze {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ib-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 122, 136, 0.35);
  transition: color 160ms ease, border-color 160ms ease;
}

.ib-waze:hover {
  color: var(--ib-deep);
  border-color: var(--ib-deep);
}

.ib-intro__guide {
  margin: 1.15rem 0 0;
}

.ib-intro__guide-link {
  color: var(--ib-accent);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 122, 136, 0.35);
}

.ib-intro__guide-link:hover {
  border-bottom-color: var(--ib-accent);
}

/* ── Program timeline ── */
.ib-program {
  background: color-mix(in srgb, var(--ib-frost) 72%, var(--bg-temp) 28%);
}

.ib-program__head {
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.ib-timeline {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.ib-timeline::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  inset-inline-start: 0.55rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(61, 122, 136, 0.12),
    rgba(61, 122, 136, 0.5),
    rgba(61, 122, 136, 0.12)
  );
}

/* Scroll-scrubbed progress glow */
.ib-timeline__progress {
  position: absolute;
  top: 0.6rem;
  inset-inline-start: 0.45rem;
  width: 3px;
  height: 0;
  max-height: calc(100% - 1.2rem);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(90, 154, 170, 0.25),
    rgba(90, 154, 170, 0.95),
    rgba(61, 122, 136, 1)
  );
  box-shadow:
    0 0 10px rgba(90, 154, 170, 0.55),
    0 0 22px rgba(90, 154, 170, 0.28);
  z-index: 0;
  pointer-events: none;
  transform-origin: top center;
}

.ib-stop {
  position: relative;
  padding-inline-start: 2.25rem;
  padding-bottom: 2.15rem;
}

.ib-stop:last-child {
  padding-bottom: 0;
}

.ib-stop__row {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .ib-stop__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.75rem;
  }

  /* Alternate media to inline-end on even stops (direction-aware via row-reverse) */
  .ib-stop:nth-child(even) .ib-stop__row {
    flex-direction: row-reverse;
  }

  .ib-stop__media {
    flex: 0 0 min(44%, 18.5rem);
    width: min(44%, 18.5rem);
  }

  .ib-stop__content {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.ib-stop__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 0.2rem 0.85rem 0.2rem 0.85rem;
  background: linear-gradient(145deg, #d8e8ec, #eef4f5 55%, #e4ddd4);
  isolation: isolate;
  transform-origin: center center;
}

.ib-stop__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ib-stop__media--placeholder {
  display: grid;
  place-items: center;
}

.ib-stop__ph-label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ib-muted);
  opacity: 0.75;
  text-align: center;
  padding: 0.5rem;
}

/* Temperature grades per stop */
.ib-stop__media--arrival img {
  filter: saturate(0.92) brightness(1.04);
  object-position: 30% 40%;
}

.ib-stop__media--breath img {
  filter: saturate(0.9) brightness(1.02) contrast(0.98);
  object-position: center 25%;
}

.ib-stop__media--ice img {
  filter: saturate(0.82) contrast(1.08) hue-rotate(8deg) brightness(0.97);
  object-position: center 35%;
}

.ib-stop__media--ice::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(120, 180, 200, 0.22), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ib-stop__media--sauna img {
  filter: saturate(1.05) contrast(0.95) sepia(0.12) brightness(1.02);
  object-position: center 40%;
}

.ib-stop__media--sauna::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(210, 150, 90, 0.2), transparent 60%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ib-stop__media--lunch img {
  filter: saturate(1.02) brightness(1.03);
  object-position: center 30%;
}

.ib-stop__media--flower img {
  filter: saturate(0.95) brightness(1.04);
  object-position: center 40%;
}

.ib-stop__media--lunch,
.ib-stop__media--flower,
.ib-stop__media--breath {
  aspect-ratio: 3 / 4;
}

.ib-stop__marker {
  position: absolute;
  top: 0.35rem;
  inset-inline-start: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--ib-surface);
  border: 2px solid var(--ib-accent-soft);
  box-shadow: 0 0 0 4px rgba(90, 154, 170, 0.12);
  z-index: 1;
  transition: box-shadow 400ms ease, border-color 400ms ease, background 400ms ease;
}

.ib-stop.is-active .ib-stop__marker {
  border-color: var(--ib-accent);
  box-shadow:
    0 0 0 5px rgba(90, 154, 170, 0.2),
    0 0 16px rgba(90, 154, 170, 0.35);
}

.ib-stop__time {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ib-accent);
}

.ib-stop__title {
  margin: 0 0 0.55rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 2.6vw, 1.35rem);
  font-weight: 600;
  color: var(--ib-ink);
  line-height: 1.35;
}

.ib-stop__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ib-muted);
  white-space: pre-line;
}

.ib-stop__list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.ib-stop__list li {
  position: relative;
  padding-inline-start: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ib-ink);
}

.ib-stop__list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  inset-inline-start: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--ib-accent-soft);
}

/* Ice / Sauna — keep markers aligned with the shared timeline track */


/* ── Includes ── */
.ib-includes {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--ib-mist) 75%, var(--bg-temp) 25%),
    color-mix(in srgb, var(--ib-frost) 70%, var(--bg-temp) 30%)
  );
}

.ib-includes__head {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.ib-includes__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: 40rem;
  margin-inline: auto;
}

.ib-includes__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ib-ink);
}

.ib-includes__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(61, 122, 136, 0.12);
  color: var(--ib-accent);
}

.ib-includes__check svg {
  width: 0.8rem;
  height: 0.8rem;
  overflow: visible;
}

.ib-includes__check path {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
}

.ib-includes__item.is-drawn .ib-includes__check path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Dress ── */
.ib-dress {
  background: var(--ib-surface);
  border-block: 1px solid var(--ib-line);
  text-align: center;
}

.ib-dress__options {
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.ib-dress__option {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ib-ink);
}

.ib-dress__or {
  margin: 0;
  align-self: center;
  font-size: 0.85rem;
  color: var(--ib-muted);
}

/* ── Pricing ── */
.ib-pricing__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ib-pricing__grid {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .ib-pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ib-price {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.45rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--ib-line);
}

@media (min-width: 640px) {
  .ib-price {
    border-bottom: 0;
    border-inline-end: 1px solid var(--ib-line);
  }

  .ib-price:last-child {
    border-inline-end: 0;
  }
}

.ib-price__label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ib-muted);
}

.ib-price__amount {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-weight: 600;
  color: var(--ib-accent);
  line-height: 1.1;
  transform-origin: center center;
}

.ib-pricing__note {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ib-muted);
}

/* ── For / Not for ── */
.ib-audience {
  background: color-mix(in srgb, var(--ib-frost) 80%, var(--bg-temp) 20%);
}

.ib-audience__grid {
  display: grid;
  gap: 2.5rem;
  max-width: 44rem;
  margin-inline: auto;
}

@media (min-width: 800px) {
  .ib-audience__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.ib-audience__block-title {
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ib-ink);
}

.ib-audience__lead {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ib-muted);
}

.ib-audience__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.ib-audience__list li {
  position: relative;
  padding-inline-start: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ib-ink);
}

.ib-audience__list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  inset-inline-start: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--ib-accent-soft);
}

.ib-audience--caution {
  /* Safety block stays calm — no glow motion */
  opacity: 1;
}

.ib-audience--caution .ib-audience__list li::before {
  background: #8a6a5a;
}

.ib-audience__note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ib-muted);
}

.ib-audience__hint {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ib-muted);
}

.ib-health-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(61, 122, 136, 0.45);
  background: transparent;
  color: var(--ib-deep);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.ib-health-btn:hover {
  background: rgba(61, 122, 136, 0.08);
  border-color: var(--ib-accent);
  color: var(--ib-accent);
}

/* ── Why ── */
.ib-why {
  background: color-mix(in srgb, var(--ib-mist) 75%, var(--bg-temp) 25%);
  border-block: 1px solid var(--ib-line);
}

.ib-why__head {
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.ib-why__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.75rem;
  max-width: 40rem;
  margin-inline: auto;
  counter-reset: ib-why;
}

.ib-why__item {
  counter-increment: ib-why;
  padding-inline-start: 3rem;
  position: relative;
}

.ib-why__item::before {
  content: counter(ib-why);
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ib-accent);
  line-height: 1.2;
}

.ib-why__title {
  margin: 0 0 0.45rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ib-ink);
  line-height: 1.35;
}

.ib-why__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ib-muted);
}

/* ── Final CTA ── */
.ib-cta {
  position: relative;
  overflow: hidden;
  min-height: clamp(18rem, 42vw, 24rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f3f8f9;
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(90, 154, 170, 0.35), transparent 55%),
    linear-gradient(165deg, #1e3a42 0%, #2a555f 50%, #132a32 100%);
}

.ib-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ib-cta__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 45%;
  opacity: 0.28;
  filter: saturate(0.85);
}

@media (min-width: 768px) {
  .ib-cta__photo {
    object-position: center 45%;
  }
}

.ib-cta__mist {
  z-index: 1;
  opacity: 0.45;
}

.ib-cta__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 36rem);
  padding: 3rem 1.25rem;
}

.ib-cta__title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 4.5vw, 2.15rem);
  font-weight: 600;
  line-height: 1.3;
  color: #f7fbfc;
}

.ib-cta__text {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(243, 248, 249, 0.88);
}

.ib-cta__note {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(232, 241, 243, 0.72);
}

.ib-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.ib-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: min(100%, 16rem);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: #e8f1f3;
  color: var(--ib-deep);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: background 200ms ease, transform 200ms ease, box-shadow 280ms ease, border-color 200ms ease;
}

.ib-cta__btn:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 0 6px rgba(232, 241, 243, 0.18),
    0 0 28px rgba(90, 154, 170, 0.45);
}

.ib-cta__btn--secondary {
  background: transparent;
  color: #e8f1f3;
  border: 1.5px solid rgba(232, 241, 243, 0.45);
  box-shadow: none;
}

.ib-cta__btn--secondary:hover {
  background: rgba(232, 241, 243, 0.1);
  color: #fff;
  border-color: rgba(232, 241, 243, 0.75);
  box-shadow: none;
}

/* Reveal helpers — fallback when GSAP is off; GSAP owns motion when .ib-page--motion */
.ib-page .animate-content,
.ib-page .animate-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
  filter: blur(2px);
}

.ib-page .animate-content.in-view,
.ib-page .animate-section.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.ib-page .ib-stop.animate-content {
  transform: translateY(18px);
}

.ib-page .ib-stop.animate-content.in-view {
  transform: translateY(0);
}

.ib-page .ib-why__item.animate-content {
  transform: translateY(18px);
}

.ib-page .ib-why__item.animate-content.in-view {
  transform: translateY(0);
}

/* GSAP takes over — section shells visible; content blocks wait for GSAP */
.ib-page--motion .animate-section,
.ib-page--motion .animate-section.in-view {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.ib-page--motion .animate-content,
.ib-page--motion .animate-content.in-view {
  opacity: 0;
  transform: none;
  filter: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .ib-hero__atmosphere,
  .ib-hero__mist,
  .ib-cta__mist,
  .ib-hero__fade,
  .ib-hero__cta,
  .ib-hero__photo,
  .ib-cta__btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .ib-hero__mist,
  .ib-cta__mist {
    opacity: 0.35;
    filter: blur(18px);
  }

  .ib-includes__check path {
    stroke-dashoffset: 0;
  }

  .ib-page .animate-content,
  .ib-page .animate-section {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .ib-page {
    transition: none;
  }
}

/* RTL typography */
html[dir="rtl"] .ib-page {
  font-family: "Scheherazade New", serif;
}

html[dir="rtl"] .ib-page :is(
  .ib-hero__brand,
  .ib-hero__title,
  .ib-hero__meta-row--date,
  .ib-section-title,
  .ib-intro__title,
  .ib-stop__title,
  .ib-price__amount,
  .ib-dress__option,
  .ib-audience__block-title,
  .ib-why__title,
  .ib-why__item::before,
  .ib-cta__title
) {
  font-family: Amiri, serif;
  font-weight: 700;
}

html[dir="rtl"] .ib-page :is(.ib-kicker, .ib-hero__brand, .ib-stop__time) {
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .ib-page :is(
  .ib-stop__body,
  .ib-intro__text,
  .ib-includes__item,
  .ib-cta__text,
  .ib-why__body,
  .ib-audience__list li
) {
  line-height: 1.85;
}

html[dir="rtl"] .ib-hero__back svg {
  transform: scaleX(-1);
}

