/* =====================================================
   JJ Family Entertainer — Stylesheet
   Theme: Magical purple, pink & gold
   ===================================================== */

:root {
  --purple-900: #1a0635;
  --purple-800: #2a0b4d;
  --purple-700: #3a1366;
  --purple-600: #4a1a7f;
  --purple-500: #6c2bd9;
  --purple-400: #8b3fff;
  --purple-300: #b07cff;
  --pink-600: #d81b8c;
  --pink-500: #ff2db5;
  --pink-300: #ff8dd6;
  --pink-100: #ffe6f4;
  --gold-500: #ffd54a;
  --gold-400: #ffe27a;
  --cream: #fff7e6;

  --text: #1a0635;
  --text-soft: #5b3a86;
  --white: #ffffff;

  --shadow-sm: 0 4px 14px rgba(26, 6, 53, 0.08);
  --shadow-md: 0 12px 30px rgba(26, 6, 53, 0.14);
  --shadow-lg: 0 22px 60px rgba(26, 6, 53, 0.22);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --container: 1180px;

  --section-space-sm: clamp(28px, 4vw, 40px);
  --section-space-md: clamp(48px, 7vw, 72px);
  --section-space-lg: clamp(64px, 9vw, 96px);

  --header-offset: 78px;

  --font-display: "Fredoka", "Poppins", system-ui, sans-serif;
  --font-script: "Pacifico", "Fredoka", cursive;
  --font-body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #fdf3ff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: var(--shadow-md);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  box-shadow: 0 8px 22px rgba(216, 27, 140, 0.35);
}

.btn-book {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  padding: 11px 22px;
  box-shadow: 0 8px 22px rgba(216, 27, 140, 0.35);
  font-size: 14px;
}
.btn-book .star {
  color: var(--gold-400);
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15));
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

/* ---------- Header ---------- */

.site-header {
  position: relative;
  z-index: 100;
  overflow: visible;
  color: #fff;
}

.site-header__logo-band {
  position: relative;
  z-index: 110;
  height: 0;
  overflow: visible;
  pointer-events: none;
}

.site-header__logo-band .site-logo {
  pointer-events: auto;
}

.site-header__bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 6, 53, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.header-wrap {
  position: relative;
  overflow: visible;
}

.header-wrap--logo {
  position: relative;
}

.site-logo {
  position: absolute;
  top: -18px;
  left: -80px;
  z-index: 110;
  display: block;
  padding-top: 30px;
  line-height: 0;
  text-decoration: none;
}

.site-logo__img {
  display: block;
  width: clamp(150px, 17vw, 230px);
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}

.site-logo:hover .site-logo__img,
.site-logo:focus-visible .site-logo__img {
  transform: scale(1.04);
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-height: 56px;
  padding: 10px 0 10px clamp(160px, 19vw, 240px);
}

/* ---------- Desktop navigation ---------- */

.desktop-nav {
  margin-left: 0;
  margin-right: auto;
  flex: 1;
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}

.desktop-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 5px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.desktop-nav__list > li {
  position: relative;
}

.desktop-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.desktop-nav__link:hover,
.desktop-nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}

.desktop-nav__link.is-active {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  box-shadow: 0 6px 18px rgba(216, 27, 140, 0.35);
}

.desktop-nav__chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.desktop-nav__trigger[aria-expanded="true"] .desktop-nav__chevron {
  transform: rotate(180deg);
}

.desktop-nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: rgba(26, 6, 53, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.desktop-nav__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(26, 6, 53, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateX(-50%) rotate(45deg);
}

.desktop-nav__menu::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.desktop-nav__menu[hidden] {
  display: none;
}

.desktop-nav__menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.15s ease, color 0.15s ease;
}

.desktop-nav__menu a:hover,
.desktop-nav__menu a:focus-visible {
  background: rgba(255, 45, 181, 0.2);
  color: #fff;
  outline: none;
}

.desktop-nav__menu li + li {
  margin-top: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: var(--gold-400);
  background: var(--purple-800);
  border: 2px solid var(--gold-400);
  padding: 4px 12px 6px;
  border-radius: 10px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-script);
  font-size: 22px;
  color: #fff;
}
.brand-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--pink-300);
  background: var(--pink-600);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  margin-top: 4px;
  text-align: center;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 18px;
  background: var(--purple-800);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: auto;
}
.mobile-menu a {
  color: #fff;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu__label {
  display: block;
  padding: 14px 6px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.mobile-menu__sub {
  padding-left: 18px !important;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85) !important;
}
.btn-book--mobile {
  align-self: flex-start;
  margin-top: 12px;
}

/* ---------- Hero (rebuilt around stage artwork) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(48px, 6vw, 72px) 0 88px;
  min-height: clamp(680px, 92vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Stage artwork — CSS fallback if the <img> fails to load */
  background-color: var(--purple-900);
  background-image: image-set(
    url("../images/hero-stage-bg.webp") type("image/webp"),
    url("../images/hero-stage-bg.jpg") type("image/jpeg")
  );
  background-image: url("../images/hero-stage-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Full-bleed stage: curtains, spotlights, stars & floor */
.hero__stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Soft vignette — keeps text readable without hiding the artwork */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 4, 28, 0.4) 0%, rgba(12, 4, 28, 0.06) 42%, transparent 58%),
    linear-gradient(180deg, rgba(12, 4, 28, 0.25) 0%, transparent 28%, transparent 72%, rgba(12, 4, 28, 0.2) 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  overflow: visible;
}

.hero__headline {
  margin: 0 0 12px;
  line-height: 0;
  overflow: visible;
}

.hero__headline-img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  max-height: none;
  overflow: visible;
  margin-inline: auto;
  margin-bottom: 0;
}

.hero__tagline {
  display: inline-block;
  margin: 12px 0 20px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  box-shadow: 0 10px 28px rgba(216, 27, 140, 0.45);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  letter-spacing: 0.12em;
}

.hero__text {
  max-width: min(100%, 520px);
  margin: 0 auto 24px;
  font-size: clamp(0.9rem, 1.4vw, 0.95rem);
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: min(100%, 520px);
  margin-inline: auto;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.hero__btn:hover {
  transform: translateY(-2px);
}

.hero__btn:active {
  transform: translateY(0);
}

.hero__btn--primary {
  background: linear-gradient(180deg, #ff3fc0 0%, var(--pink-600) 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 0 #9e1068, 0 10px 28px rgba(216, 27, 140, 0.45);
}

.hero__btn--primary:hover {
  box-shadow: 0 8px 0 #9e1068, 0 14px 32px rgba(216, 27, 140, 0.5);
}

.hero__btn-star {
  font-size: 18px;
  line-height: 1;
  color: var(--gold-500);
  text-shadow: 0 1px 0 #c9a020, 0 2px 4px rgba(0, 0, 0, 0.25);
}

.hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 45, 181, 0.85);
  box-shadow: 0 0 18px rgba(255, 45, 181, 0.25), inset 0 0 12px rgba(255, 45, 181, 0.08);
}

.hero__btn--ghost:hover {
  background: rgba(255, 45, 181, 0.12);
  border-color: var(--pink-500);
  box-shadow: 0 0 24px rgba(255, 45, 181, 0.35), inset 0 0 14px rgba(255, 45, 181, 0.1);
}

.hero__btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: #fff;
}

.hero__btn-play svg {
  display: block;
}

/* Hero feature image (JJ + puppet) */
.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 42vw, 480px);
}

.hero__feature {
  margin: 0;
  width: min(100%, 420px);
}

.hero__feature img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.4));
}

@media (min-width: 821px) {
  .hero {
    justify-content: flex-end;
  }

  .hero > .container.hero__grid {
    flex: 1;
    align-items: end;
    padding-bottom: 12px;
  }

  .hero__copy {
    align-self: center;
  }

  .hero__media {
    align-items: flex-end;
    justify-content: center;
    min-height: 0;
  }

  .hero__feature {
    width: min(100%, 546px);
    margin-left: -30px;
    margin-bottom: 0;
  }
}

.hero__badge {
  position: absolute;
  right: 0;
  bottom: 8%;
  top: auto;
  z-index: 2;
  width: 8.5rem;
  height: 8.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  border: 3px dashed #fff;
  background: var(--pink-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.hero__badge-lg {
  font-size: 0.78rem;
  margin: 2px 0;
}

/* Cloud transition into the services section */
.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.hero__wave-svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 72px);
}

/* ---------- Services ---------- */

.services {
  position: relative;
  z-index: 4;
  background: linear-gradient(180deg, #fff 0%, #fdf3ff 100%);
  margin-top: -1px;
  padding: clamp(24px, 3vw, 36px) 0 clamp(32px, 4vw, 48px);
}

.services .container {
  width: min(100% - 24px, 1320px);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.service-card {
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: clamp(12px, 1.5vw, 20px) clamp(8px, 1vw, 14px);
  text-align: center;
  box-shadow: none;
  border: none;
  transition: background 0.2s ease;
}

.service-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  right: 0;
  width: 1px;
  background: #e4e4e4;
}

.service-card:hover {
  transform: none;
  background: rgba(108, 43, 217, 0.04);
  box-shadow: none;
  border-color: transparent;
}

.service-card__icon {
  width: clamp(64px, 6.5vw, 80px);
  height: clamp(64px, 6.5vw, 80px);
  margin: 0 auto clamp(10px, 1.2vw, 14px);
  display: grid;
  place-items: center;
  background: none;
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__icon {
  transform: scale(1.05);
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-card__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(11px, 1.05vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card__title--purple {
  color: #553284;
}

.service-card__title--pink {
  color: #db1570;
}

.service-card__desc {
  margin: 0;
  font-size: clamp(10px, 0.85vw, 12px);
  line-height: 1.4;
  color: var(--text-soft);
}

/* ---------- Upcoming events (backend-driven) ---------- */

.upcoming-events {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--purple-600) 0%, var(--purple-900) 100%);
  padding: clamp(48px, 6vw, 72px) 0;
  color: #fff;
}

.upcoming-events__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.upcoming-events__sparkles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      2px 2px at 6% 18%,
      #ffd54a,
      transparent 50%
    ),
    radial-gradient(1.5px 1.5px at 14% 62%, #ff8dd6, transparent 50%),
    radial-gradient(2px 2px at 24% 34%, #fff, transparent 50%),
    radial-gradient(1.5px 1.5px at 32% 82%, #ffe27a, transparent 50%),
    radial-gradient(2px 2px at 44% 12%, #ff2db5, transparent 50%),
    radial-gradient(1.5px 1.5px at 52% 58%, #fff, transparent 50%),
    radial-gradient(2px 2px at 61% 28%, #ffd54a, transparent 50%),
    radial-gradient(1.5px 1.5px at 70% 76%, #ff8dd6, transparent 50%),
    radial-gradient(2px 2px at 78% 16%, #fff, transparent 50%),
    radial-gradient(1.5px 1.5px at 86% 48%, #ffe27a, transparent 50%),
    radial-gradient(2px 2px at 94% 68%, #ff2db5, transparent 50%),
    radial-gradient(1.5px 1.5px at 18% 88%, #ffd54a, transparent 50%),
    radial-gradient(2px 2px at 88% 86%, #fff, transparent 50%),
    radial-gradient(1.5px 1.5px at 48% 92%, #ff8dd6, transparent 50%),
    radial-gradient(2px 2px at 8% 42%, #fff, transparent 50%),
    radial-gradient(1.5px 1.5px at 22% 72%, #ffd54a, transparent 50%),
    radial-gradient(2px 2px at 36% 48%, #ff8dd6, transparent 50%),
    radial-gradient(1.5px 1.5px at 58% 38%, #ffe27a, transparent 50%),
    radial-gradient(2px 2px at 72% 58%, #fff, transparent 50%),
    radial-gradient(1.5px 1.5px at 92% 32%, #ffd54a, transparent 50%),
    radial-gradient(2px 2px at 4% 96%, #ff2db5, transparent 50%),
    radial-gradient(1.5px 1.5px at 66% 88%, #fff, transparent 50%),
    radial-gradient(2px 2px at 38% 8%, #ffe27a, transparent 50%),
    radial-gradient(1.5px 1.5px at 82% 72%, #ff8dd6, transparent 50%);
  opacity: 0.85;
}

.upcoming-events__sparkles--alt {
  background-image: radial-gradient(
      1.5px 1.5px at 12% 28%,
      #fff,
      transparent 50%
    ),
    radial-gradient(2px 2px at 28% 18%, #ffd54a, transparent 50%),
    radial-gradient(1.5px 1.5px at 46% 68%, #ff8dd6, transparent 50%),
    radial-gradient(2px 2px at 54% 22%, #ffe27a, transparent 50%),
    radial-gradient(1.5px 1.5px at 68% 42%, #fff, transparent 50%),
    radial-gradient(2px 2px at 76% 82%, #ff2db5, transparent 50%),
    radial-gradient(1.5px 1.5px at 90% 52%, #ffd54a, transparent 50%),
    radial-gradient(2px 2px at 16% 52%, #ff8dd6, transparent 50%),
    radial-gradient(1.5px 1.5px at 34% 78%, #fff, transparent 50%),
    radial-gradient(2px 2px at 62% 12%, #ffe27a, transparent 50%),
    radial-gradient(1.5px 1.5px at 84% 28%, #ffd54a, transparent 50%),
    radial-gradient(2px 2px at 42% 58%, #fff, transparent 50%),
    radial-gradient(1.5px 1.5px at 96% 78%, #ff8dd6, transparent 50%),
    radial-gradient(2px 2px at 2% 68%, #ffe27a, transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 82%, #ffd54a, transparent 50%),
    radial-gradient(2px 2px at 74% 8%, #fff, transparent 50%);
  opacity: 0.65;
}

.upcoming-events__stars-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.68;
}

.upcoming-events__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.upcoming-events__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 24px);
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.8vw, 38px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.upcoming-events__rays {
  display: flex;
  align-items: center;
  gap: 5px;
}

.upcoming-events__rays span {
  display: block;
  width: 4px;
  height: clamp(20px, 3vw, 32px);
  border-radius: 3px;
  background: linear-gradient(180deg, #ff8dd6 0%, #ff2db5 100%);
  box-shadow: 0 0 10px rgba(255, 45, 181, 0.45);
}

.upcoming-events__rays--left span:nth-child(1) {
  transform: skewX(-22deg) rotate(-8deg);
  height: 85%;
}

.upcoming-events__rays--left span:nth-child(2) {
  transform: skewX(-14deg);
}

.upcoming-events__rays--left span:nth-child(3) {
  transform: skewX(-6deg) rotate(6deg);
  height: 90%;
}

.upcoming-events__rays--right span:nth-child(1) {
  transform: skewX(22deg) rotate(8deg);
  height: 85%;
}

.upcoming-events__rays--right span:nth-child(2) {
  transform: skewX(14deg);
}

.upcoming-events__rays--right span:nth-child(3) {
  transform: skewX(6deg) rotate(-6deg);
  height: 90%;
}

.upcoming-events__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 16px);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.7vw, 18px);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.upcoming-events__star {
  color: var(--gold-500);
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 213, 74, 0.55);
}

.events-showcase {
  position: relative;
  z-index: 1;
  margin-top: clamp(28px, 4vw, 40px);
}

.events-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
}

.events-slider__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
}

.events-slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.events-slider__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.events-slider__arrow:hover,
.events-slider__arrow:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 213, 74, 0.45);
  transform: scale(1.05);
}

.events-slider__arrow span {
  display: block;
  margin-top: -2px;
}

.events-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.events-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.events-slider__dot.is-active,
.events-slider__dot[aria-selected="true"] {
  background: var(--gold-500);
  transform: scale(1.15);
}

.events-loading,
.events-empty {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.events-card {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.events-card--featured {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 213, 74, 0.28);
}

.events-card__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
  aspect-ratio: 16 / 11;
}

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

.events-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--purple-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.events-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: clamp(4px, 1vw, 8px) 0;
}

.events-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0 0 16px;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.events-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.events-card__meta-item {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.3;
}

.events-card__desc {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.9);
}

.events-card .btn {
  margin-top: auto;
}

@media (max-width: 820px) {
  .events-slider {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .events-slider__arrow {
    display: none;
  }

  .events-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }

  .events-card__body {
    align-items: center;
    text-align: center;
  }

  .events-card__meta {
    justify-content: center;
  }

  .events-card__desc {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-slider__track {
    transition: none;
  }
}

/* ---------- As seen at (venue logos) ---------- */

.as-seen-at {
  position: relative;
  padding: clamp(36px, 5vw, 52px) 0;
  background: linear-gradient(180deg, #fff 0%, #faf5ff 100%);
  border-top: 1px solid rgba(108, 43, 217, 0.08);
  border-bottom: 1px solid rgba(108, 43, 217, 0.08);
}

.as-seen-at__header {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.as-seen-at__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.as-seen-at__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.as-seen-at__track {
  display: flex;
  gap: clamp(40px, 6vw, 72px);
  width: max-content;
  animation: jj-as-seen-at-scroll var(--as-seen-at-duration, 30s) linear infinite;
}

.as-seen-at__track:hover {
  animation-play-state: paused;
}

.as-seen-at__group {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
  padding-inline: clamp(20px, 4vw, 40px);
}

.as-seen-at__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-seen-at__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.as-seen-at__logo-link:hover,
.as-seen-at__logo-link:focus-visible {
  transform: scale(1.04);
}

.as-seen-at__logo {
  width: auto;
  height: clamp(36px, 5vw, 52px);
  max-width: min(42vw, 200px);
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.as-seen-at__logo-link:hover .as-seen-at__logo,
.as-seen-at__logo-link:focus-visible .as-seen-at__logo,
.as-seen-at__item:hover .as-seen-at__logo {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes jj-as-seen-at-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .as-seen-at__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
    padding-bottom: 8px;
  }

  .as-seen-at__track {
    animation: none;
    width: auto;
  }

  .as-seen-at__group[aria-hidden="true"] {
    display: none;
  }

  .as-seen-at__item {
    scroll-snap-align: center;
  }
}

/* ---------- Homepage SEO content ---------- */

.home-seo {
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 45, 181, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(108, 43, 217, 0.1), transparent 50%),
    linear-gradient(180deg, #fff 0%, #fdf3ff 100%);
}

.home-seo__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.home-seo__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 676px;
  --home-seo-visual-width: min(100%, 442px);
}

.home-seo__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: var(--home-seo-visual-width);
}

.home-seo__photo {
  width: 100%;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 18px 32px rgba(26, 6, 53, 0.28));
}

.home-seo__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  margin-top: -18px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-seo__stat {
  min-width: 130px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.home-seo__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--purple-800);
  line-height: 1.1;
}

.home-seo__stat-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.home-seo__trust {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  width: var(--home-seo-visual-width);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-seo__trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(74, 26, 127, 0.1);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-800);
  line-height: 1.2;
}

.home-seo__trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(216, 27, 140, 0.22);
}

.home-seo__google-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  width: var(--home-seo-visual-width);
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(74, 26, 127, 0.1);
  box-shadow: var(--shadow-md);
  color: var(--purple-900);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.home-seo__google-badge:hover,
a.home-seo__google-badge:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(108, 43, 217, 0.22);
  box-shadow: 0 16px 34px rgba(74, 26, 127, 0.14);
}

.home-seo__google-badge-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-seo__google-badge-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.home-seo__google-badge-stars {
  color: #f4b400;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

.home-seo__google-badge-rating {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--purple-900);
  line-height: 1.2;
}

.home-seo__google-badge-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
}

.home-seo__google-badge-link {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-600);
  white-space: nowrap;
}

.home-seo__content {
  min-width: 0;
}

.home-seo__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(108, 43, 217, 0.12), rgba(255, 45, 181, 0.14));
  border: 1px solid rgba(74, 26, 127, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-700);
}

.home-seo__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  color: var(--purple-900);
  letter-spacing: 0.5px;
}

.home-seo__lead {
  margin: 0 0 24px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--text-soft);
}

.home-seo__lead strong {
  color: var(--purple-800);
  font-weight: 700;
}

.home-seo__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.home-seo__card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.08);
  box-shadow: var(--shadow-sm);
}

.home-seo__card-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--purple-800);
  letter-spacing: 0.3px;
}

.home-seo__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.home-seo__highlights {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.home-seo__highlights li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(74, 26, 127, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-800);
  line-height: 1.5;
}

.home-seo__highlights li::before {
  content: "★";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-500);
  font-size: 14px;
}

.home-seo__bio {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

.home-seo__callout {
  margin: 0 0 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--pink-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(90deg, rgba(255, 45, 181, 0.08), rgba(255, 255, 255, 0.5));
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  color: var(--purple-900);
  line-height: 1.6;
}

.home-seo__contact-line {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.home-seo__contact-line a {
  color: var(--pink-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-seo__contact-line a:hover {
  color: var(--purple-700);
}

.home-seo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-ghost {
  background: transparent;
  color: var(--purple-700);
  border: 2px solid rgba(74, 26, 127, 0.2);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--purple-500);
}

/* ---------- About ---------- */

.about {
  padding: 30px 0 60px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
.card-soft {
  background: var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.section-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--purple-800);
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.section-title--left {
  text-align: left;
}
.section-title--sm {
  font-size: 18px;
}
.title-deco {
  color: var(--gold-500);
  margin: 0 10px;
}
.section-sub {
  text-align: center;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 30px;
}
.about-lead {
  color: var(--text-soft);
  font-size: 14px;
  margin: 0 0 18px;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checks li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: var(--text);
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--pink-500);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-photo svg,
.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-aside .aside-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--purple-800);
  margin: 0 0 14px;
  text-align: center;
  letter-spacing: 1px;
}
.perfect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perfect-list li {
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--purple-800);
  box-shadow: var(--shadow-sm);
}
.perfect-ic {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  border-radius: 50%;
  color: #fff;
}

/* ---------- Packages ---------- */

.packages {
  padding: 50px 0;
  background: #fdf3ff;
  position: relative;
}
.packages::after {
  content: "";
  position: absolute;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--purple-300) 0 6px,
    transparent 6px 14px
  );
  left: 8%;
  right: 8%;
  bottom: 24px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
  position: relative;
}
.package-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.package-card--featured {
  outline: 3px solid var(--gold-400);
  transform: translateY(-6px);
}
.package-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 132px;
  height: 132px;
  overflow: hidden;
  pointer-events: none;
}

.package-ribbon__text {
  position: absolute;
  top: 30px;
  right: -36px;
  width: 176px;
  padding: 7px 0;
  background: linear-gradient(135deg, var(--gold-500), #e0a800);
  color: var(--purple-800);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  line-height: 1.2;
}
.package-photo {
  display: block;
  aspect-ratio: 8 / 5;
  background: var(--purple-700);
  overflow: hidden;
}
.package-photo svg,
.package-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.package-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.package-name {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0;
  color: var(--purple-800);
  letter-spacing: 0.5px;
}

.package-name a {
  color: inherit;
  text-decoration: none;
}

.package-name a:hover {
  color: var(--pink-600);
}

.package-meta {
  display: inline-block;
  align-self: flex-start;
  background: var(--pink-100);
  color: #8e0c5c; /* darker than --pink-600 for WCAG AA contrast on pink-100 */
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.package-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-soft);
}
.package-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink-500);
}
.package-footer {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 8px;
}

.package-summary {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.packages__full-page {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
}

.packages__full-page a {
  color: var(--purple-700);
  font-weight: 600;
  text-decoration: none;
}

.packages__full-page a:hover {
  color: var(--pink-600);
  text-decoration: underline;
}

.package-card[id] {
  scroll-margin-top: 110px;
}

.packages-note {
  text-align: center;
  margin-top: 26px;
  color: var(--text-soft);
  font-size: 14px;
}

/* ---------- Reviews + FAQ combined ---------- */

.reviews-faq {
  padding: 56px 0;
  background: linear-gradient(180deg, #fdf3ff 0%, #fff 55%, #fdf8ff 100%);
}

.reviews-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.reviews-faq__reviews,
.reviews-faq__faq {
  min-width: 0;
}

.reviews-faq__reviews .reviews {
  max-height: min(780px, 85vh);
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-300) transparent;
}

.reviews-faq__faq .faq__header {
  margin-bottom: 20px;
}

.reviews-faq__faq .faq__lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.reviews-faq__faq .faq__list {
  max-width: none;
  margin-inline: 0;
}

.reviews-faq__faq .faq__cta {
  text-align: left;
  margin-top: 18px;
}

.reviews-faq__faq .faq__question {
  padding: 16px 18px;
  font-size: clamp(15px, 1.5vw, 17px);
}

.reviews-faq__faq .faq__answer {
  padding: 0 18px 16px;
}

/* ---------- Event + Reviews ---------- */

.event-reviews {
  padding: 30px 0 60px;
}
.event-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
  max-width: 720px;
  margin-inline: auto;
}

.reviews--full {
  width: 100%;
}
.event-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--purple-600), var(--purple-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.event-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(74, 26, 127, 0.86),
    rgba(26, 6, 53, 0.92)
  );
}
.event-card > *:not(.event-photo) {
  position: relative;
  z-index: 2;
}
.stars-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      1.5px 1.5px at 10% 12%,
      var(--gold-400),
      transparent 50%
    ),
    radial-gradient(2px 2px at 80% 18%, #fff, transparent 50%),
    radial-gradient(1.5px 1.5px at 25% 80%, var(--gold-400), transparent 50%),
    radial-gradient(2px 2px at 70% 75%, #fff, transparent 50%),
    radial-gradient(1.5px 1.5px at 92% 50%, var(--gold-400), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}
.event-eyebrow {
  font-family: var(--font-display);
  color: var(--gold-400);
  letter-spacing: 3px;
  font-size: 12px;
}
.event-see {
  margin-top: 8px;
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--pink-300);
}
.event-title {
  font-family: var(--font-display);
  font-size: 44px;
  margin: 6px 0 16px;
  letter-spacing: 1.5px;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.event-desc {
  font-size: 14px;
  margin: 0 auto 20px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.85);
}

.reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 50px 16px 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.review-avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-100);
  box-shadow: var(--shadow-sm);
}
.review-body {
  flex: 1;
  min-width: 0;
}
.stars-row {
  color: var(--gold-500);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 4px;
}
.review p {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--text);
}
.review-author {
  color: var(--text-soft);
  font-size: 12px;
}
.reviews-source {
  margin: 4px 0 0;
  text-align: center;
  font-size: 13px;
}
.reviews-source a {
  color: var(--purple-700);
  font-weight: 600;
  text-decoration: none;
}
.reviews-source a:hover {
  text-decoration: underline;
}
.heart {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  font-size: 20px;
  color: var(--pink-500);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.heart:hover {
  transform: translateY(-50%) scale(1.2);
}
.heart.liked {
  color: var(--pink-600);
}

/* ---------- Trust + CTA ---------- */

.trust-cta {
  padding: 56px 0;
}

.trust-cta__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(74, 26, 127, 0.1);
}

.trust-cta__badges {
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(160deg, #fff 0%, #fdf6ff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-cta__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-600);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(74, 26, 127, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 43, 217, 0.16);
  box-shadow: 0 10px 26px rgba(74, 26, 127, 0.1);
}

.trust-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  color: #fff;
  box-shadow: 0 6px 16px rgba(216, 27, 140, 0.22);
}

.trust-item__icon svg {
  display: block;
}

.trust-item__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple-900);
  line-height: 1.25;
}

.trust-item__text span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.35;
}

.trust-cta__action {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(145deg, var(--purple-700) 0%, var(--purple-900) 100%);
  overflow: hidden;
}

.trust-cta__stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      1.5px 1.5px at 12% 14%,
      var(--gold-400),
      transparent 50%
    ),
    radial-gradient(2px 2px at 88% 22%, rgba(255, 255, 255, 0.9), transparent 50%),
    radial-gradient(1.5px 1.5px at 28% 82%, var(--gold-400), transparent 50%),
    radial-gradient(2px 2px at 76% 78%, rgba(255, 255, 255, 0.85), transparent 50%),
    radial-gradient(1.5px 1.5px at 52% 38%, var(--gold-400), transparent 50%);
  opacity: 0.55;
  pointer-events: none;
}

.trust-cta__spark {
  position: absolute;
  right: 22px;
  top: 18px;
  margin: 0;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold-400);
  opacity: 0.9;
}

.trust-cta__title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

.trust-cta__lead {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.trust-cta__btn {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

/* ---------- FAQ ---------- */

.faq {
  padding: 56px 0;
  background: #fff;
}

.faq__header {
  margin-bottom: 28px;
}

.faq__list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff 0%, #fdf8ff 100%);
  border: 1px solid rgba(74, 26, 127, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq__item[open] {
  border-color: rgba(255, 45, 181, 0.25);
  box-shadow: var(--shadow-md);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  color: var(--purple-800);
  line-height: 1.4;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  box-shadow: 0 6px 14px rgba(216, 27, 140, 0.25);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  padding: 0 20px 18px;
}

.faq__answer p {
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid rgba(74, 26, 127, 0.08);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.faq__cta {
  margin: 24px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-soft);
}

.faq__cta a {
  color: var(--pink-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__cta a:hover {
  color: var(--purple-700);
}

/* ---------- Contact / enquiry form ---------- */

.contact {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff 0%, #fdf3ff 100%);
}

.contact__header {
  margin-bottom: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.contact-info__title,
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--purple-800);
  margin: 0 0 12px;
}

.contact-info__lead {
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__list li {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--purple-600);
  flex-shrink: 0;
  line-height: 0;
}

.contact-info__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-info__list strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-700);
  margin-bottom: 4px;
}

.contact-info__list a,
.contact-info__list li > div span {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.contact-info__list a:hover {
  color: var(--pink-600);
}

.contact-info__note {
  margin-top: 4px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--text-soft) !important;
}

.contact-info__tips h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--purple-800);
}

.contact-info__tips ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.08);
}

.contact-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.contact-notice--success {
  background: #e8f8ef;
  color: #17663a;
  border: 1px solid #b9e6cb;
}

.contact-notice--error {
  background: #fff0f3;
  color: #9b1c3f;
  border: 1px solid #ffc9d6;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  gap: 16px;
}

.contact-form__row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-800);
}

.contact-form__field label span {
  color: var(--pink-600);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(74, 26, 127, 0.15);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--pink-500);
  box-shadow: 0 0 0 3px rgba(255, 45, 181, 0.12);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 4px;
}

.contact__full-page {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
}

.contact__full-page a {
  color: var(--purple-700);
  font-weight: 600;
  text-decoration: none;
}

.contact__full-page a:hover {
  color: var(--pink-600);
  text-decoration: underline;
}

/* ---------- Contact page ---------- */

.contact-page {
  background: #fdf3ff;
}

.area-hero--contact .area-hero__title {
  max-width: none;
}

.area-hero--contact .area-hero__lead {
  max-width: 58ch;
}

.contact-page__main {
  padding: 56px 0 48px;
  margin-top: -1px;
  background: linear-gradient(180deg, #fdf3ff 0%, #fff 42%, #fdf3ff 100%);
}

.contact-page__header {
  margin-bottom: 28px;
}

.contact-page__trust {
  padding: 0 0 48px;
}

.contact-page__trust-panel {
  padding: clamp(24px, 4vw, 32px);
  background: linear-gradient(135deg, #fff 0%, #faf4ff 100%);
  border: 1px solid rgba(74, 26, 127, 0.08);
}

.contact-page__trust-eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-600);
  text-align: center;
}

.contact-page__trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-page__trust-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(74, 26, 127, 0.06);
  text-align: center;
}

.contact-page__trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--purple-800);
}

.contact-page__trust-item span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
}

.contact-page__links {
  padding: 0 0 64px;
}

.contact-page__links-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-900) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.contact-page__links-copy {
  max-width: 520px;
}

.contact-page__links-copy .area-section-title {
  color: #fff;
  margin-bottom: 10px;
}

.contact-page__links-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.contact-page__links-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-page__links-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.contact-page__links-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ---------- Packages page ---------- */

.packages-page {
  background: #fdf3ff;
}

.area-hero--packages .area-hero__title {
  max-width: none;
}

.area-hero--packages .area-hero__lead {
  max-width: 62ch;
}

.packages-page__main {
  padding: 56px 0 40px;
  margin-top: -1px;
  background: #fdf3ff;
}

.packages-page__main .package-grid {
  margin-top: 0;
}

.packages-page__header {
  margin-bottom: 28px;
}

.packages-page__note {
  margin: 28px auto 0;
  max-width: 58ch;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}

.packages-page__flow {
  padding: 0 0 56px;
}

.packages-page__flow-lead {
  margin: 0 0 28px;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.packages-page__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.packages-page__timeline-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.packages-page__timeline-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--pink-500) 100%);
  box-shadow: var(--shadow-sm);
}

.packages-page__timeline-content {
  padding: 20px 22px;
}

.packages-page__timeline-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--purple-800);
}

.packages-page__timeline-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.packages-page__cta {
  padding: 0 0 64px;
}

.packages-page__cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-900) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.packages-page__cta-copy {
  max-width: 520px;
}

.packages-page__cta-copy .area-section-title {
  color: #fff;
  margin-bottom: 10px;
}

.packages-page__cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.packages-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.packages-page__cta-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.packages-page__cta-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ---------- Single package page ---------- */

.package-page {
  background: #fdf3ff;
}

.area-hero--package .area-hero__title {
  max-width: none;
}

.area-hero__meta {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  text-shadow: 0 1px 8px rgba(12, 4, 28, 0.45);
}

.package-page__badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-400), #f6c453);
  color: var(--purple-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.package-page__intro {
  padding: 56px 0;
  margin-top: -1px;
}

.package-page__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.package-page__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 32px);
  position: sticky;
  top: 100px;
}

.package-page__feature {
  margin: 0;
  align-self: center;
  width: min(100%, 400px);
}

.package-page__feature img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 44px rgba(74, 26, 127, 0.18));
}

.package-page__feature--photo {
  width: 100%;
  max-width: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.package-page__feature--photo img {
  filter: none;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.package-page__copy p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.package-page__copy p:last-child {
  margin-bottom: 0;
}

.package-page__includes h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--purple-800);
}

.package-page__includes .package-features {
  margin-bottom: 18px;
}

.package-page__duration {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

.package-page__duration strong {
  color: var(--purple-800);
}

.package-page__ideal {
  padding: 0 0 48px;
}

.package-page__ideal-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.package-page__ideal-item {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-800);
}

.package-page__others {
  padding-block: var(--section-space-md) 48px;
}

.package-page__highlights.area-services {
  padding-block: var(--section-space-md);
}

.package-page__includes-cta {
  margin-top: 4px;
}

.package-page__lead-copy {
  font-size: 16px;
  color: var(--purple-800);
  font-weight: 500;
}

.package-page__upgrade {
  padding-block: var(--section-space-md);
}

.package-page__upgrade-panel {
  max-width: 48rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.package-page__upgrade-panel .area-section-title {
  margin-bottom: 0.75rem;
}

.package-page__upgrade-panel p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.package-page__faq {
  padding-block: var(--section-space-md);
}

.package-page__others-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.area-package-card__link {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-600);
}

.package-page__cta {
  padding: 0 0 64px;
}

/* ---------- Show landing pages ---------- */

.show-section {
  padding-block: var(--section-space-md);
}

.show-section--light {
  background: #fff;
}

.show-section--tint {
  background: linear-gradient(180deg, #fdf3ff 0%, #f7ecff 100%);
}

.show-section--dark {
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-900) 100%);
  color: #fff;
}

.show-section .section-sub {
  margin-bottom: clamp(24px, 4vw, 36px);
}

/* Adjacent sections sharing a background read as one band, not a seam */
.show-section--light + .show-section--light,
.show-section--tint + .show-section--tint {
  padding-top: 0;
}

/* Hero stat chips */

.show-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.show-hero__stat {
  min-width: 108px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  text-align: center;
}

.show-hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold-400);
}

.show-hero__stat-label {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* Highlights */

.show-page__highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.show-page__highlight-card {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-page__highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.show-page__highlight-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--purple-800);
}

.show-page__highlight-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* Packages */

.show-page__packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.show-page__package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-page__package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.show-page__package-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.show-page__package-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  flex: 1;
}

.show-page__package-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--purple-900);
}

.show-page__package-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Video */

.show-page__video-title {
  color: #fff;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.show-page__video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--purple-900);
}

.show-page__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Copy + image split */

.show-page__content-image-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.show-page__content-image-copy p {
  color: var(--text-soft);
  line-height: 1.75;
}

.show-page__content-image-photo {
  margin: 0;
}

.show-page__content-image-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Gallery */

.show-page__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.show-page__gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.show-page__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.show-page__gallery-item:hover img {
  transform: scale(1.04);
}

/* Featured review */

.show-page__review-card {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--pink-100);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.show-page__review-card .stars-row {
  font-size: 20px;
  letter-spacing: 3px;
}

.show-page__review-quote {
  margin: 14px 0 22px;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.8;
  color: var(--text-soft);
  font-style: italic;
}

.show-page__review-quote::before {
  content: "“";
}

.show-page__review-quote::after {
  content: "”";
}

.show-page__review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--purple-800);
}

.show-page__review-author > div {
  text-align: center;
}

.show-page__review-location {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

/* Client logo marquee */

.show-page__clients {
  padding-block: clamp(32px, 5vw, 48px);
  background: linear-gradient(180deg, #fff 0%, #faf5ff 100%);
  border-top: 1px solid rgba(108, 43, 217, 0.08);
  border-bottom: 1px solid rgba(108, 43, 217, 0.08);
}

.show-page__clients-title {
  margin: 0 0 clamp(20px, 3vw, 28px);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.show-page__clients-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.show-page__clients-track {
  display: flex;
  width: max-content;
  animation: jj-as-seen-at-scroll var(--show-clients-duration, 30s) linear infinite;
}

.show-page__clients-track:hover {
  animation-play-state: paused;
}

.show-page__clients-group {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding-inline: clamp(18px, 3vw, 32px);
}

.show-page__client-logo {
  flex: 0 0 auto;
  width: auto;
  height: clamp(34px, 4.5vw, 48px);
  max-width: min(40vw, 170px);
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.show-page__client-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* FAQ list on show pages */

.show-page__faq-list {
  max-width: 860px;
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .show-page__clients-track {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .show-page__highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .show-page__packages-grid,
  .show-page__gallery-grid,
  .show-page__content-image-grid {
    grid-template-columns: 1fr;
  }

  .show-page__content-image-photo img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .show-page__highlights-grid {
    grid-template-columns: 1fr;
  }

  .show-hero__stat {
    flex: 1 1 44%;
    min-width: 0;
  }
}

.show-page [id] {
  scroll-margin-top: 150px;
}

.service-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card--link:focus-visible {
  outline: 2px solid var(--pink-500);
  outline-offset: 3px;
}

.package-page__cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-900) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.package-page__cta-copy {
  max-width: 520px;
}

.package-page__cta-copy .area-section-title {
  color: #fff;
  margin-bottom: 10px;
}

.package-page__cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.package-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.package-page__cta-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.package-page__cta-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ---------- Areas covered ---------- */

.areas-covered {
  padding: 0 0 56px;
  background: linear-gradient(180deg, #fdf3ff 0%, #f7ebff 100%);
}

.areas-covered__header {
  margin-bottom: 24px;
}

.areas-covered__panel {
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.08);
}

.areas-covered__intro {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.areas-covered__pin {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink-100);
  font-size: 22px;
  flex-shrink: 0;
}

.areas-covered__subtitle {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--purple-800);
}

.areas-covered__intro p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.areas-covered__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas-covered__list li {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(108, 43, 217, 0.08), rgba(255, 45, 181, 0.1));
  border: 1px solid rgba(74, 26, 127, 0.1);
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-800);
}

.areas-covered__note {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
}

.areas-covered__note a {
  color: var(--pink-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.areas-covered__note a:hover {
  color: var(--purple-700);
}

.areas-covered__regions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.areas-covered__region-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.1);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.areas-covered__region-card:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 43, 217, 0.2);
  box-shadow: 0 12px 28px rgba(74, 26, 127, 0.12);
}

.areas-covered__region-pin {
  font-size: 20px;
  line-height: 1;
}

.areas-covered__region-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--purple-900);
}

.areas-covered__region-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-600);
}

/* ---------- Area landing pages ---------- */

.area-page,
.areas-index {
  background: #fdf3ff;
}

.area-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(48px, 5vw, 64px) 0 clamp(72px, 8vw, 96px);
  background-color: var(--purple-900);
  background-image: image-set(
    url("../images/hero-stage-bg.webp") type("image/webp"),
    url("../images/hero-stage-bg.jpg") type("image/jpeg")
  );
  background-image: url("../images/hero-stage-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (min-width: 821px) {
  .area-hero {
    /* Clear the oversized header logo that overhangs into the hero */
    padding-top: clamp(120px, 12vw, 160px);
  }
}

.area-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 4, 28, 0.45) 0%, rgba(12, 4, 28, 0.08) 45%, transparent 62%),
    linear-gradient(180deg, rgba(12, 4, 28, 0.28) 0%, transparent 30%, transparent 75%, rgba(12, 4, 28, 0.12) 100%);
  pointer-events: none;
}

.area-hero__inner {
  position: relative;
  z-index: 2;
}

.area-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.area-hero__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border: 3px solid rgba(255, 255, 255, 0.18);
}

.area-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.area-hero__photo--cutout {
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  align-self: end;
  width: min(100%, 420px);
  margin-inline: auto;
}

.area-hero__photo--cutout img {
  min-height: 0;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.4));
}

@media (min-width: 821px) {
  .area-hero__photo--cutout {
    width: min(100%, 546px);
    margin-left: -30px;
    margin-inline: 0 auto;
  }
}

.jj-show-page--family-attraction-entertainment .area-hero__photo--cutout,
.jj-show-page--family-festival-entertainment .area-hero__photo--cutout {
  width: min(100%, 210px);
}

@media (min-width: 821px) {
  .jj-show-page--family-attraction-entertainment .area-hero__photo--cutout,
  .jj-show-page--family-festival-entertainment .area-hero__photo--cutout {
    width: min(100%, 273px);
    margin-left: -15px;
  }
}

.area-hero--index .area-hero__layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.area-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.area-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.area-breadcrumb a:hover {
  text-decoration: underline;
}

.area-hero__title {
  margin: 0 0 14px;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(12, 4, 28, 0.55);
}

.area-hero__lead {
  margin: 0 0 24px;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(12, 4, 28, 0.45);
}

.area-hero__inner--index {
  max-width: 720px;
}

.area-hero__inner--index .area-hero__title {
  max-width: none;
}

.area-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-hero__ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.area-hero__ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.area-section-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 30px);
  color: var(--purple-900);
}

.area-intro {
  padding: 56px 0;
  margin-top: -1px;
}

.area-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.area-intro__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-intro__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.area-intro__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.area-intro__card-photo {
  margin: -28px -28px 18px;
  overflow: hidden;
}

.area-intro__card-photo img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.area-intro__copy p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.area-intro__card-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--purple-800);
}

.area-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.area-highlights li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--purple-900);
  font-size: 14px;
}

.area-highlights li span {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.area-seo-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(74, 26, 127, 0.08);
}

.area-seo-block h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--purple-800);
  line-height: 1.25;
}

.area-seo-block p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 15px;
}

.area-seo-block p:last-child {
  margin-bottom: 0;
}

.area-party-flow {
  padding: 0 0 56px;
}

.area-party-flow__intro {
  margin: 0 0 24px;
  max-width: 62ch;
}

.section-sub--left {
  text-align: left;
  margin-inline: 0;
}

.area-party-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.area-party-flow__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.08);
  box-shadow: var(--shadow-sm);
}

.area-party-flow__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.area-party-flow__step h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--purple-800);
}

.area-party-flow__step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.area-faq {
  padding: var(--section-space-md) 0 56px;
}

.package-page__faq.area-faq {
  padding-block: var(--section-space-lg);
}

.area-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.area-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: none;
}

.area-faq__feature {
  margin: 0;
  position: sticky;
  top: 100px;
  align-self: center;
  width: min(100%, 420px);
  margin-inline: auto;
}

.area-faq__feature img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 44px rgba(74, 26, 127, 0.18));
}

.area-faq__item {
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.area-faq__item summary {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--purple-900);
  cursor: pointer;
  list-style: none;
}

.area-faq__item summary::-webkit-details-marker {
  display: none;
}

.area-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--pink-600);
  font-size: 18px;
  line-height: 1;
}

.area-faq__item[open] summary::after {
  content: "−";
}

.area-faq__item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 14px;
}

.areas-index__intro {
  padding: 48px 0 8px;
  margin-top: -1px;
}

.areas-index__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.areas-index__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.areas-index__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.area-index-card__excerpt {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.area-services {
  padding: 0 0 56px;
}

.area-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.area-service-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.08);
  box-shadow: var(--shadow-sm);
}

.area-service-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--purple-800);
}

.area-service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.area-packages {
  padding: 0 0 56px;
}

.area-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.area-package-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #fff 0%, #fdf6ff 100%);
  border: 1px solid rgba(74, 26, 127, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 26, 127, 0.12);
}

.area-package-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.area-package-card__meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-600);
}

.area-package-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--purple-900);
}

.area-towns {
  padding: 0 0 56px;
}

.area-gallery {
  padding: 0 0 56px;
}

.area-gallery__lead {
  margin: 0 auto 20px;
  max-width: 52ch;
  color: var(--text-soft);
  line-height: 1.65;
  text-align: center;
}

.area-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.area-gallery__item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.area-gallery__item:nth-child(1) {
  grid-column: span 3;
}

.area-gallery__item:nth-child(2) {
  grid-column: span 3;
}

.area-gallery__item:nth-child(3),
.area-gallery__item:nth-child(4),
.area-gallery__item:nth-child(5) {
  grid-column: span 2;
}

.area-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.area-gallery__item:hover img {
  transform: scale(1.03);
}

.area-gallery__grid--package {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.area-gallery__grid--package .area-gallery__item:nth-child(n) {
  grid-column: span 1;
}

.package-page__gallery {
  padding-block: var(--section-space-md);
}

.area-towns__lead {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.65;
}

.area-reviews {
  padding: 0 0 56px;
}

.area-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.area-reviews__grid .review {
  height: 100%;
}

.area-reviews__more {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
}

.area-reviews__more a {
  color: var(--purple-700);
  font-weight: 600;
  text-decoration: none;
}

.area-other {
  padding: 0 0 56px;
}

.area-other__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.area-other-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.08);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.area-other-card:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 43, 217, 0.18);
}

.area-other-card__name {
  flex: 1;
  font-weight: 700;
  color: var(--purple-900);
}

.area-other-card__arrow {
  color: var(--pink-600);
}

.area-cta {
  padding: 0 0 72px;
}

.area-cta__panel {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #fff;
  background: linear-gradient(145deg, var(--purple-700) 0%, var(--purple-900) 100%);
  box-shadow: var(--shadow-md);
}

.area-cta__panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
}

.area-cta__panel p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.areas-index__grid-section {
  padding: 0 0 72px;
}

.areas-index__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.area-index-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(74, 26, 127, 0.08);
  box-shadow: var(--shadow-sm);
}

.area-index-card__photo {
  display: block;
  overflow: hidden;
}

.area-index-card__photo img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.area-index-card:hover .area-index-card__photo img {
  transform: scale(1.04);
}

.area-index-card__body {
  padding: 24px;
}

.area-index-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
}

.area-index-card h2 a {
  color: var(--purple-900);
  text-decoration: none;
}

.area-index-card h2 a:hover {
  color: var(--pink-600);
}

.area-index-card__body > p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 14px;
}

.area-index-card__towns {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-index-card__towns li {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(108, 43, 217, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-800);
}

.area-index-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-600);
  text-decoration: none;
}

.areas-index__note {
  margin: 24px 0 0;
  text-align: center;
  color: var(--text-soft);
}

.areas-index__note a {
  color: var(--pink-600);
  font-weight: 700;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  background:
    radial-gradient(1100px 420px at 12% 0%, rgba(108, 43, 217, 0.32), transparent 62%),
    radial-gradient(900px 380px at 88% 8%, rgba(216, 27, 140, 0.2), transparent 60%),
    var(--purple-900);
  color: #fff;
  padding-top: 56px;
}
.site-footer .jj-icon {
  flex: 0 0 auto;
}

/* Closing call to action */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 30px 36px;
  margin-bottom: 54px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(108, 43, 217, 0.55), rgba(216, 27, 140, 0.35));
  box-shadow: var(--shadow-lg);
}
.footer-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-400);
}
.footer-cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.15;
  color: #fff;
}
.footer-cta__lead {
  margin: 6px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
.footer-cta__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-cta__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  transition: color 0.15s ease;
}
.footer-cta__call:hover {
  color: var(--gold-400);
}

/* Main footer columns */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 2fr);
  gap: 40px 56px;
  padding-bottom: 44px;
}

.footer-brand__logo {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-brand__logo img {
  display: block;
  width: auto;
  height: 74px;
}
.footer-brand__tagline {
  max-width: 44ch;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 11px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}
.footer-contact .jj-icon {
  margin-top: 1px;
  color: var(--pink-300);
}
.footer-contact a {
  color: inherit;
  transition: color 0.15s ease;
}
.footer-contact a:hover {
  color: var(--gold-400);
}

.socials {
  display: flex;
  gap: 10px;
}
.social {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.social:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  border-color: transparent;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.footer-col__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-400);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-col a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.15s ease, transform 0.15s ease;
}
.footer-col a:hover {
  color: var(--gold-400);
  transform: translateX(3px);
}
.footer-col__more {
  font-weight: 600;
  color: var(--pink-300) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.25);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}
.footer-legal a:hover {
  color: var(--gold-400);
}


/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { min-height: 280px; }
  .package-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .package-card--featured { transform: none; }
  .reviews-faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-faq__faq .faq__cta { text-align: center; }
  .event-reviews-grid { max-width: 100%; }
  .trust-cta__panel { grid-template-columns: 1fr; }
  .areas-covered__regions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-intro__grid { grid-template-columns: 1fr; }
  .areas-index__intro-grid { grid-template-columns: 1fr; }
  .area-hero__layout { grid-template-columns: 1fr; }
  .area-hero__photo { max-width: 520px; }
  .area-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-gallery__grid--package { grid-template-columns: 1fr; }
  .area-gallery__item:nth-child(n) { grid-column: span 1; }
  .area-gallery__item:nth-child(1) { grid-column: span 2; }
  .area-packages__grid { grid-template-columns: 1fr; }
  .area-reviews__grid { grid-template-columns: 1fr; }
  .areas-index__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-page__trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-page__links-inner { flex-direction: column; align-items: flex-start; }
  .packages-page__cta-inner { flex-direction: column; align-items: flex-start; }
  .package-page__intro-grid { grid-template-columns: 1fr; }
  .package-page__aside { position: static; }
  .package-page__feature { max-width: 320px; }
  .package-page__ideal-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-seo__grid { grid-template-columns: 1fr; }
  .home-seo__visual { min-height: auto; padding-top: 12px; }
  .home-seo__cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .desktop-nav__link {
    padding: 9px 11px;
    font-size: 12px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(26, 6, 53, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    overflow: visible;
  }

  .site-header__logo-band {
    height: 0;
    pointer-events: none;
  }

  .site-header__bar {
    position: static;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  :root { --header-offset: 94px; }

  .desktop-nav { display: none; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .site-logo {
    top: 4px;
    left: 0;
    padding-top: 0;
  }
  .site-logo__img {
    width: clamp(96px, 28vw, 132px);
  }
  .header-inner {
    justify-content: flex-end;
    min-height: 76px;
    padding: 8px 0 8px clamp(108px, 32vw, 148px);
  }

  .contact-form__row--2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 72px;
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__tagline {
    display: inline-block;
  }

  .hero__text {
    margin-inline: auto;
  }

  .hero__stage {
    object-position: center 42%;
  }

  .hero__media {
    min-height: 360px;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero__feature {
    width: min(100%, 320px);
  }

  .hero__badge {
    width: 7rem;
    height: 7rem;
    font-size: 0.55rem;
    right: -4%;
    bottom: 6%;
  }

  .trust-grid { grid-template-columns: 1fr; }
  .contact-page__trust-grid { grid-template-columns: 1fr; }
  .package-page__ideal-list { grid-template-columns: 1fr; }
  .package-page__others-grid { grid-template-columns: 1fr; }
  .package-page__cta-inner { flex-direction: column; align-items: flex-start; }
  .trust-cta__title { max-width: none; }
  .areas-covered__regions { grid-template-columns: 1fr; }
  .area-services__grid { grid-template-columns: 1fr; }
  .area-other__grid { grid-template-columns: 1fr; }
  .area-faq__layout { grid-template-columns: 1fr; }
  .area-faq__feature { position: static; max-width: 320px; }
  .area-hero__title { max-width: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-cta {
    padding: 26px 22px;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;
  }
  .footer-cta__eyebrow { justify-content: center; }
  .footer-cta__actions { justify-content: center; width: 100%; }


  .services__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding-bottom: 8px;
  }

  .service-card {
    flex: 0 0 42vw;
    min-width: 140px;
    scroll-snap-align: start;
  }

  .service-card:not(:last-child)::after {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero__media { min-height: 320px; }
  .hero__feature { width: min(100%, 280px); }
  .hero__badge { width: 7rem; height: 7rem; font-size: 0.55rem; }
  .hero__badge-lg { font-size: 0.68rem; }
  .event-title { font-size: 32px; }
  .footer-nav { grid-template-columns: 1fr; gap: 26px; }
  .footer-cta__actions { flex-direction: column; align-items: stretch; }
  .footer-cta__call { justify-content: center; }
}


/* ---------- Floating quote button & popup ---------- */

.quote-fab {
  position: fixed;
  right: clamp(16px, 3vw, 24px);
  bottom: clamp(16px, 3vw, 24px);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-900) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 34px rgba(26, 6, 53, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.quote-fab:hover,
.quote-fab:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 40px rgba(26, 6, 53, 0.42);
  outline: none;
}

.quote-fab__star {
  color: var(--gold-400);
  font-size: 14px;
}

body.quote-popup-open {
  overflow: hidden;
}

.quote-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.quote-popup[hidden] {
  display: none;
}

.quote-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 6, 53, 0.72);
  backdrop-filter: blur(4px);
}

.quote-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: clamp(22px, 4vw, 28px);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #fdf6ff 100%);
  border: 1px solid rgba(74, 26, 127, 0.12);
  box-shadow: var(--shadow-lg);
}

.quote-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(74, 26, 127, 0.08);
  color: var(--purple-800);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.quote-popup__close:hover,
.quote-popup__close:focus-visible {
  background: rgba(74, 26, 127, 0.14);
  outline: none;
}

.quote-popup__header {
  padding-right: 36px;
  margin-bottom: 18px;
}

.quote-popup__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-600);
}

.quote-popup__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 28px);
  color: var(--purple-800);
}

.quote-popup__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.quote-popup__form .contact-form-wrap {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.quote-popup__form .fluentform,
.quote-popup__form .ff-el-group {
  margin-bottom: 14px;
}

.quote-popup__form .ff-el-input--label label {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-800);
}

.quote-popup__form .ff-el-form-control,
.quote-popup__form input,
.quote-popup__form select,
.quote-popup__form textarea {
  border-radius: var(--radius-sm);
  border-color: rgba(74, 26, 127, 0.15);
}

.quote-popup__form .ff-btn-submit,
.quote-popup__form button[type="submit"] {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900)) !important;
  border: 0 !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  padding: 12px 22px !important;
}

@media (max-width: 480px) {
  .quote-fab {
    padding: 12px 16px;
    font-size: 14px;
  }

  .quote-fab__label {
    max-width: 9ch;
    text-align: left;
    line-height: 1.2;
  }
}

/* ---------- Video lightbox ---------- */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.video-popup-open {
  overflow: hidden;
}

.video-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 32px);
}

.video-popup[hidden] {
  display: none;
}

.video-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 2, 28, 0.82);
  backdrop-filter: blur(6px);
}

.video-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
}

.video-popup__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--purple-900);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
}

.video-popup__close:hover,
.video-popup__close:focus-visible {
  background: var(--pink-100);
  color: var(--pink-600);
}

.video-popup__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.video-popup__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .video-popup__close {
    top: -10px;
    right: 0;
  }
}

/* =====================================================
   Blog — single posts & listings
   ===================================================== */

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-offset) + 28px) 0 56px;
  color: var(--white);
  background: linear-gradient(165deg, var(--purple-700) 0%, var(--purple-900) 100%);
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.blog-hero .area-breadcrumb {
  margin-bottom: 1.1rem;
}

.blog-hero .area-breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.blog-hero .area-breadcrumb a:hover {
  color: var(--gold-400);
}

.blog-hero .area-breadcrumb span {
  color: rgba(255, 255, 255, 0.55);
}

.blog-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.blog-hero__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42rem;
}

.blog-hero__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.blog-meta-pills {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-meta-pills a {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-meta-pills a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.blog-meta-pills--tags {
  margin: 0 0 1.5rem;
}

.blog-meta-pills--tags a {
  background: var(--pink-100);
  color: var(--purple-700);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.blog-article {
  padding: 0 0 var(--section-space-md);
}

.blog-article__layout {
  max-width: 760px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.blog-article__feature {
  margin: 0 0 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.blog-article__feature-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-article__content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

.blog-article__content > *:first-child {
  margin-top: 0;
}

.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
  font-family: var(--font-display);
  color: var(--purple-800);
  line-height: 1.25;
  margin: 2rem 0 0.75rem;
}

.blog-article__content h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.blog-article__content h3 {
  font-size: 1.3rem;
}

.blog-article__content p,
.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 1.15rem;
}

.blog-article__content a {
  color: var(--pink-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-article__content a:hover {
  color: var(--purple-600);
}

.blog-article__content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--pink-500);
  background: var(--pink-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--purple-800);
  font-style: italic;
}

.blog-article__content figure {
  margin: 1.5rem 0;
}

.blog-article__content img {
  border-radius: var(--radius-md);
}

.blog-article__content figcaption {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  text-align: center;
}

.blog-article__content .alignwide {
  max-width: min(920px, 100vw - 2rem);
  margin-left: auto;
  margin-right: auto;
}

.blog-article__content .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}

.blog-article__footer {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(74, 26, 127, 0.12);
}

.blog-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.blog-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-post-nav__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.blog-post-nav__link--next {
  text-align: right;
  justify-self: end;
  width: 100%;
}

.blog-post-nav__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-600);
}

.blog-post-nav__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--purple-800);
  line-height: 1.3;
}

.blog-post-nav__link--empty {
  box-shadow: none;
  background: transparent;
  pointer-events: none;
}

.blog-listing {
  padding: var(--section-space-md) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, var(--purple-600), var(--pink-500));
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.3rem;
  flex: 1;
}

.blog-card__category {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-card__category a {
  color: var(--pink-600);
}

.blog-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.25;
  color: var(--purple-800);
}

.blog-card__title a:hover {
  color: var(--pink-600);
}

.blog-card__excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.blog-card__more {
  font-weight: 600;
  color: var(--purple-700);
  white-space: nowrap;
}

.blog-card__more:hover {
  color: var(--pink-600);
}

.blog-empty {
  text-align: center;
  color: var(--text-soft);
  padding: 2rem 1rem;
}

.blog-pages,
.navigation.pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.blog-pages .nav-links,
.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.blog-pages .page-numbers,
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--purple-800);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.blog-pages .page-numbers.current,
.navigation.pagination .page-numbers.current {
  background: var(--purple-700);
  color: var(--white);
}

.blog-pages a.page-numbers:hover,
.navigation.pagination a.page-numbers:hover {
  background: var(--pink-100);
}

.blog-cta {
  padding: var(--section-space-md) 0 calc(var(--section-space-md) + 8px);
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 45, 181, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(108, 43, 217, 0.14), transparent 45%),
    #f7e9ff;
}

.blog-cta__inner {
  max-width: 640px;
  text-align: center;
}

.blog-cta__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--purple-800);
}

.blog-cta__lead {
  margin: 0 0 1.35rem;
  color: var(--text-soft);
  font-size: 1.02rem;
}

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

.blog-cta__ghost {
  background: transparent;
  border: 2px solid var(--purple-600);
  color: var(--purple-700);
}

.blog-cta__ghost:hover {
  background: var(--purple-700);
  color: var(--white);
}

@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-nav {
    grid-template-columns: 1fr;
  }

  .blog-post-nav__link--next {
    text-align: left;
  }

  .blog-hero {
    padding-bottom: 40px;
  }
}

/* ---------- Birthday / service landings ---------- */

.birthday-page__why-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.birthday-page__why-list li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 600;
  color: var(--purple-800);
  line-height: 1.45;
}

.birthday-page__why-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--pink-600);
  font-size: 0.9em;
}

.birthday-page__package-meta {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8e0c5c;
}

.birthday-page__package-summary {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--purple-700);
}

.birthday-page__package-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.show-page__package-card {
  position: relative;
}

.birthday-page__cost {
  max-width: 46rem;
}

.birthday-page__cost .btn {
  margin-top: 0.75rem;
}
