@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600&display=swap');

/* v2 */
/* ─── Variables ─── */
:root {
  --cream: #f8faff;
  --ink: #1a1028;
  --pink: #e792ac;
  --purple: #aa9dd2;
  --green: #9cbd3d;
  --orange: #ec8468;
  --aqua: #6ec1e4;
  --teal: #109888;
  --gold: #f9b44f;
  --shadow: 0 16px 48px rgba(110,193,228,.18);
  --shadow-card: 0 8px 32px rgba(110,193,228,.12);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: Fredoka, sans-serif;
  font-weight: 400;
}
h1, h2, h3, h4 { font-family: Fredoka, sans-serif; font-weight: 500; }
p { line-height: 1.7; font-weight: 400; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

/* ─── Top Bar ─── */
.top-bar {
  background: linear-gradient(90deg, #9b8ec8 0%, var(--pink) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 0 max(5vw, 30px);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: .95;
}
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.top-bar-tagline {
  font: 600 13px Fredoka;
  letter-spacing: .04em;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar-social {
  display: flex;
  gap: 8px;
}
.top-bar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: background .2s, transform .2s;
}
.top-bar-social a:hover { background: rgba(255,255,255,.35); transform: translateY(-2px); }
.top-bar-phone {
  color: #fff;
  font: 500 13px Fredoka;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: .9;
  transition: opacity .2s;
}
.top-bar-phone:hover { opacity: 1; }

/* ─── Header ─── */
header {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 max(5vw, 30px);
  background: rgba(253,250,255,.97);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 #e8dff5;
  backdrop-filter: blur(16px);
  transition: box-shadow .3s, height .3s, background .3s;
}
header.scrolled {
  height: 72px;
  box-shadow: 0 6px 28px rgba(150,110,210,.15);
  background: rgba(253,250,255,.99);
}
.logo img { width: 140px; transition: width .3s, transform .3s; }
.logo img:hover { transform: scale(1.04) rotate(-1deg); }
header.scrolled .logo img { width: 116px; }
nav { display: flex; gap: 4px; margin: auto; }
nav a {
  font: 500 15px Fredoka;
  position: relative;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 30px;
  transition: background .2s, color .2s;
}
nav a:hover { background: #f2ecff; color: var(--purple); }
nav a.active { background: #ebe4fb; color: var(--purple); }
nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--purple);
  transition: width .25s;
}
nav a:hover::after, nav a.active::after { width: calc(100% - 28px); }
.menu { display: none; border: 0; background: none; font-size: 30px; cursor: pointer; color: var(--ink); }

/* ─── Keyframe Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes popIn {
  0% { transform: scale(.7); opacity: 0; }
  80% { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ─── Buttons ─── */
.btn {
  border: 0;
  border-radius: 50px;
  padding: 14px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font: 500 15px Fredoka;
  cursor: pointer;
  box-shadow: 0 8px 20px #3e304e1a;
  transition: .25s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 13px 25px #3e304e33; }
.book, .green { background: var(--green); }
header .book { white-space: nowrap; flex-shrink: 0; font-size: 14px; padding: 12px 18px; }
.pink { background: var(--pink) !important; }
.pink:hover { background: #d97090 !important; }
.purple { background: var(--purple) !important; }
.footer-wa { font-size: 13px; padding: 10px 18px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 520px;
  padding: 70px max(10vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('/assets/hero.webp') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.32) 0%,
    rgba(0,0,0,.52) 60%,
    rgba(0,0,0,.65) 100%
  );
}
/* Accessibility: visually-hidden h1 for SEO */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* "Welcome to" */
.le-welcome {
  position: relative; z-index: 4;
  color: #fff;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 14px;
  text-shadow: 0 4px 10px rgba(0,0,0,.28);
}

/* "Little" big coloured letters */
.le-little {
  position: relative; z-index: 4;
  display: block;
  font-size: clamp(90px, 13vw, 180px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -10px;
  white-space: nowrap;
  margin: 0;
}
.le-little > span {
  display: inline-block;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
  text-shadow: 0 6px 2px rgba(44,31,43,.20);
}
.lc-purple { color: #A796D4; }
.lc-green  { color: #A9C63E; }
.lc-orange { color: #F59A50; }
.lc-pink   { color: #E98BAD; }
.lc-aqua   { color: #A6D9DB; }

/* "EXPLORERS WORLD" */
.le-world {
  position: relative; z-index: 4;
  display: block;
  margin-top: 30px;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  white-space: nowrap;
}
.le-explorers {
  color: #9EB83E;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  text-shadow: 0 4px 5px rgba(0,0,0,.15);
}
.le-worldtxt {
  color: #fff;
  text-shadow: 0 4px 8px rgba(0,0,0,.28);
}

/* Tagline */
.le-tagline {
  position: relative; z-index: 4;
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 4px 8px rgba(0,0,0,.35);
}

/* CTA buttons */
.le-actions {
  position: relative; z-index: 4;
  margin-top: 28px;
}

/* Corner floating icons */
.le-float-icon {
  position: absolute; z-index: 5;
  width: 90px; height: 90px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.18));
  pointer-events: none;
}
.le-slide    { left: 4%;  top: 14%;    transform: rotate(-5deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='5' width='110' height='110' rx='24' fill='%23A796D4'/%3E%3Cg fill='none' stroke='white' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M35 85V35h22v50M35 51h22M35 67h22M57 39c27 1 26 38 45 46H77C65 80 64 57 57 54'/%3E%3Cpath d='M30 88h76'/%3E%3C/g%3E%3C/svg%3E"); }
.le-ballpit  { right: 6%; top: 13%;    transform: rotate(4deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='5' width='110' height='110' rx='24' fill='%23F4A054'/%3E%3Cg fill='none' stroke='white' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M27 66h66v25H27z'/%3E%3Ccircle cx='36' cy='62' r='8'/%3E%3Ccircle cx='51' cy='58' r='8'/%3E%3Ccircle cx='67' cy='61' r='8'/%3E%3Ccircle cx='83' cy='58' r='8'/%3E%3Ccircle cx='45' cy='44' r='7'/%3E%3Ccircle cx='62' cy='43' r='7'/%3E%3Ccircle cx='78' cy='44' r='7'/%3E%3Ccircle cx='61' cy='27' r='6'/%3E%3C/g%3E%3C/svg%3E"); }
.le-climbing { left: 10%; bottom: 12%; transform: rotate(4deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='5' width='110' height='110' rx='24' fill='%23A9C63E'/%3E%3Cg fill='none' stroke='white' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M29 92L59 28l32 64z'/%3E%3Cpath d='M41 69l18-10 19 9M36 82l23-13 25 13'/%3E%3Ccircle cx='58' cy='46' r='4'/%3E%3Ccircle cx='48' cy='70' r='4'/%3E%3Ccircle cx='72' cy='72' r='4'/%3E%3Cpath d='M59 28v-9M59 19c7 4 11 2 16-1'/%3E%3C/g%3E%3C/svg%3E"); }
.le-blocks   { right: 7%; bottom: 11%; transform: rotate(5deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='5' width='110' height='110' rx='24' fill='%23E98BAD'/%3E%3Cg fill='none' stroke='white' stroke-width='5' stroke-linejoin='round'%3E%3Crect x='22' y='58' width='35' height='32' rx='4'/%3E%3Crect x='63' y='58' width='35' height='32' rx='4'/%3E%3Crect x='43' y='24' width='35' height='30' rx='4'/%3E%3Cpath d='M52 24v-7h17v7M30 58v-6h17v6M72 58v-6h17v6'/%3E%3C/g%3E%3C/svg%3E"); }

/* Star & cloud pseudo-elements */
.hero::after {
  content: "☆";
  position: absolute;
  left: 15%; top: 28%; z-index: 3;
  color: #fff;
  font-size: 52px;
  transform: rotate(-12deg);
  text-shadow: 0 3px 5px rgba(0,0,0,.18);
  pointer-events: none;
}

.actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.actions button {
  border: 2px solid rgba(255,255,255,.75);
  background: transparent;
  font: 500 15px Fredoka;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 50px;
  color: #fff;
  transition: .25s;
}
.actions button:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.meta { display: flex; gap: 25px; font-size: 13px; color: rgba(255,255,255,.78); flex-wrap: wrap; justify-content: center; }
.meta span { display: flex; gap: 8px; align-items: center; }
.meta svg { color: var(--pink); font-size: 16px; }

/* Hero responsive */
@media (max-width: 1024px) {
  .hero { min-height: 420px; padding: 60px max(6vw, 40px); }
  .le-float-icon { width: 66px; height: 66px; }
  .le-little { letter-spacing: -7px; }
}
@media (max-width: 767px) {
  .hero { min-height: 320px; padding: 40px 48px; }
  .le-float-icon { width: 36px; height: 36px; }
  .le-little { font-size: clamp(54px, 17vw, 80px); letter-spacing: -4px; }
  .le-little > span { -webkit-text-stroke: 1.5px #fff; }
  .le-world { font-size: clamp(20px, 6vw, 30px); margin-top: 14px; }
  .le-explorers { -webkit-text-stroke: 1px #fff; }
  .le-tagline { font-size: 13px; margin-top: 10px; }
  .hero::after { display: none; }
  .le-climbing, .le-blocks { bottom: 6%; }
}

/* ─── Stats ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
  margin: 0 auto;
  padding: 50px max(4vw, 24px) 60px;
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 32px 20px 28px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 32px #4b365b12;
  border-top: 4px solid var(--stat-color, var(--purple));
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--stat-color, var(--purple));
  opacity: .06;
}
.stat-item:nth-child(1) { --stat-color: var(--pink); }
.stat-item:nth-child(2) { --stat-color: var(--purple); }
.stat-item:nth-child(3) { --stat-color: var(--green); }
.stat-item:nth-child(4) { --stat-color: var(--orange); }
.stat-item:hover { transform: translateY(-6px); box-shadow: 0 18px 40px #4b365b1e; }
.stat-icon {
  font-size: 28px;
  color: var(--stat-color, var(--purple));
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--stat-color, var(--purple)) 12%, white);
}
.stat-item strong {
  display: block;
  font: 700 38px Fredoka;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item span {
  font-size: 14px;
  color: #777;
  font-weight: 500;
  display: block;
}

/* ─── Global italic-in-heading reset ─── */
h1 i, h2 i, h3 i, h4 i { font-style: normal; }

/* ─── Eyebrow ─── */
.eyebrow {
  display: inline-block;
  width: fit-content;
  max-width: max-content;
  font: 700 13px Fredoka;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #222;
  background: #e6f9fd;
  border: 1.5px solid #333;
  border-radius: 50px;
  padding: 7px 20px;
}

/* ─── Trail ─── */
.trail-section { padding: 60px max(6vw, 38px); max-width: 1380px; margin: auto; }
.heading { max-width: 440px; }
.heading-center { max-width: 700px; margin: 0 auto; text-align: center; }
.heading h2 { font-size: 40px; line-height: 1.1; margin: 13px 0; font-weight: 500; }
.heading h2 i, .gallery h2 i { color: var(--pink); font-style: normal; }
.trail { max-width: 1000px; margin: 10px 0 0 auto; position: relative; }
.trail::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 12%;
  top: 4%;
  bottom: 4%;
  border: 3px dashed #8e7ac55c;
  border-radius: 46% 54%;
  transform: rotate(-4deg);
}
.stop {
  min-height: 260px;
  display: grid;
  grid-template-columns: 70px 1fr 1.25fr;
  align-items: center;
  gap: 20px;
  position: relative;
  margin: 0 0 30px;
}
.stop.reverse { grid-template-columns: 70px 1.25fr 1fr; margin-left: -120px; }
.stop.reverse > img { grid-column: 2; grid-row: 1; }
.stop.reverse .zone-copy { grid-column: 3; grid-row: 1; }
.stop > b {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font: 700 18px Fredoka;
  z-index: 2;
}
.stop .purple { background: var(--purple); }
.stop .pink { background: var(--pink); }
.stop .green { background: var(--green); }
.stop .aqua { background: var(--aqua); }
.stop .orange { background: var(--orange); }
.zone-copy { padding: 20px; z-index: 2; }
.zone-copy > svg { font-size: 33px; color: var(--purple); }
.zone-copy h3 { font-size: 23px; margin: 9px 0 3px; font-weight: 500; }
.zone-copy p { margin: 0; }
.stop > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 38% 62% 48% 52%;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  z-index: 2;
  transition: transform .4s;
}
.stop > img:hover { transform: rotate(0deg) scale(1.03); }
.stop.reverse > img { transform: rotate(-2deg); }
.stop.reverse > img:hover { transform: rotate(0deg) scale(1.03); }

/* ─── Pricing ─── */
.pricing-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px max(4vw, 22px) 60px;
}
.pricing-header { text-align: center; margin-bottom: 40px; }
.pricing-header h2 { font-size: 36px; margin: 8px 0 10px; font-weight: 500; }
.pricing-header h2 i { color: var(--pink); font-style: normal; }
.pricing-header p { color: #666; font-size: 15px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Play session card */
.price-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 12px 40px #4b365b10;
  border: 1px solid #ede8f8;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.price-label {
  font: 600 16px Fredoka;
  color: var(--ink);
  background: #f0eaff;
  padding: 6px 14px;
  border-radius: 20px;
}
.price-tag {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}
.price-tiers { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.price-tier {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
}
.tier-green { background: #eef8f0; border: 1px solid #c2e8cc; }
.tier-purple { background: #f3effb; border: 1px solid #d4c8ed; }
.tier-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.tier-green .tier-icon { background: #d4f0db; color: var(--green); }
.tier-purple .tier-icon { background: #e8e1f8; color: var(--purple); }
.tier-info { display: flex; flex-direction: column; }
.tier-info span { font-size: 13px; color: #777; margin-bottom: 3px; }
.tier-info strong { font: 700 22px Fredoka; color: var(--ink); }
.tier-info em { font: 400 13px Fredoka; color: #999; }
.price-note {
  font-size: 13px;
  color: #888;
  background: #fafafa;
  border: 1px dashed #e0d9ec;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.price-note svg { color: var(--purple); font-size: 11px; }
.price-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.price-includes span {
  font-size: 12px;
  background: #f5f2fc;
  color: var(--purple);
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.price-cta { width: 100%; justify-content: center; margin-top: auto; }

/* Birthday party card */
.party-card {
  background: linear-gradient(145deg, #7c67bb 0%, #c05f8e 100%);
  border-radius: 28px;
  padding: 42px 38px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 50px #8e7ac535;
}
.party-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -80px;
  right: -80px;
  pointer-events: none;
}
.party-icon { font-size: 42px; margin-bottom: 16px; opacity: .9; }
.party-card h2 { font-size: 34px; margin: 0 0 14px; font-weight: 600; line-height: 1.1; }
.party-card h2 i { color: #ffd166; font-style: normal; }
.party-card p { font-size: 15px; opacity: .9; margin: 0 0 22px; line-height: 1.65; }
.party-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 10px; }
.party-list li { font-size: 14px; opacity: .92; display: flex; align-items: center; gap: 10px; }
.party-list svg { color: #ffd166; font-size: 12px; flex-shrink: 0; }
.party-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.party-wa-btn { background: rgba(255,255,255,.2) !important; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.35); color: #fff !important; }
.party-wa-btn:hover { background: rgba(255,255,255,.32) !important; }
.party-link-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,.85);
  font: 500 15px Fredoka;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  transition: color .2s, gap .2s;
}
.party-link-btn:hover { color: #fff; gap: 11px; }

/* ─── Trust ─── */
.trust { padding: 50px max(6vw, 28px); background: #fff; border-block: 1px solid #dceceb; }
.trust > h2 { text-align: center; color: var(--aqua); font-size: 32px; font-weight: 500; }
.trust > h2 i { color: var(--ink); font-style: normal; }
.trust > div {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.trust article {
  text-align: center;
  border: 2px solid;
  border-radius: 22px;
  padding: 28px 18px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
}
.trust article:nth-child(1) { border-color: color-mix(in srgb, var(--purple) 25%, transparent); }
.trust article:nth-child(2) { border-color: color-mix(in srgb, var(--pink) 25%, transparent); }
.trust article:nth-child(3) { border-color: color-mix(in srgb, var(--green) 25%, transparent); }
.trust article:nth-child(4) { border-color: color-mix(in srgb, var(--orange) 25%, transparent); }
.trust article:nth-child(1):hover { border-color: var(--purple); background: color-mix(in srgb, var(--purple) 8%, white); transform: translateY(-5px); box-shadow: 0 12px 32px color-mix(in srgb, var(--purple) 18%, transparent); }
.trust article:nth-child(2):hover { border-color: var(--pink); background: color-mix(in srgb, var(--pink) 8%, white); transform: translateY(-5px); box-shadow: 0 12px 32px color-mix(in srgb, var(--pink) 18%, transparent); }
.trust article:nth-child(3):hover { border-color: var(--green); background: color-mix(in srgb, var(--green) 8%, white); transform: translateY(-5px); box-shadow: 0 12px 32px color-mix(in srgb, var(--green) 18%, transparent); }
.trust article:nth-child(4):hover { border-color: var(--orange); background: color-mix(in srgb, var(--orange) 8%, white); transform: translateY(-5px); box-shadow: 0 12px 32px color-mix(in srgb, var(--orange) 18%, transparent); }
.trust article > svg {
  font-size: 34px;
  color: #fff;
  background: var(--purple);
  width: 64px;
  height: 64px;
  padding: 16px;
  border-radius: 50%;
}
.trust article:nth-child(2) > svg { background: var(--pink); }
.trust article:nth-child(3) > svg { background: var(--green); }
.trust article:nth-child(4) > svg { background: var(--orange); }
.trust h3 { margin: 13px 0 6px; font-size: 17px; }
.trust p { font-size: 14px; color: var(--ink); }

/* ─── Testimonials ─── */
.testimonials {
  text-align: center;
  padding: 55px max(6vw, 28px);
  background: #f9f5ff;
}
.testimonials h2 { font-size: 34px; margin: 8px 0 32px; font-weight: 500; }
.testimonials h2 i { color: var(--pink); font-style: normal; }
.review-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}
.slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  background: #fff;
  color: var(--purple);
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s;
}
.slider-btn:hover { background: var(--purple); color: #fff; }
.review-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 10px 32px #8e7ac51a;
  text-align: left;
  border: 1px solid #ede8f8;
  transition: transform .3s;
}
.review-card:hover { transform: translateY(-6px); }
.review-stars { color: var(--orange); font-size: 18px; margin-bottom: 14px; display: flex; gap: 3px; }
.review-card p { font-size: 15px; color: #444; line-height: 1.7; margin: 0 0 16px; }
.review-card strong { font: 700 14px Fredoka; color: var(--purple); }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.dot.active { background: var(--purple); transform: scale(1.3); }

/* ─── Zones Icon Grid ─── */
.zones-section { padding: 50px max(5vw, 30px) 60px; max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: 38px; margin: 10px 0 12px; font-weight: 600; }
.section-head h2 i { color: var(--pink); font-style: normal; }
.section-head p { color: #666; font-size: 15px; max-width: 660px; margin: 0 auto; }
.sparkle { color: var(--pink); font-size: .65em; vertical-align: middle; letter-spacing: 2px; }
.zones-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.zones-icon-grid.zones-8 {
  grid-template-columns: repeat(4, 1fr);
}
.z-gold { --zone-color: var(--gold); }
.z-purple { --zone-color: var(--purple); }
.z-pink { --zone-color: var(--pink); }
.z-green { --zone-color: var(--green); }
.z-aqua { --zone-color: var(--aqua); }
.z-orange { --zone-color: var(--orange); }
.zone-icon-card {
  text-align: center;
  padding: 26px 14px 24px;
  border-radius: 20px;
  border: 2px solid color-mix(in srgb, var(--zone-color, var(--purple)) 22%, transparent);
  transition: background .3s, transform .3s, box-shadow .3s, border-color .3s;
}
.zone-icon-card:hover {
  background: color-mix(in srgb, var(--zone-color, var(--purple)) 10%, white);
  border-color: color-mix(in srgb, var(--zone-color, var(--purple)) 55%, transparent);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--zone-color, var(--purple)) 20%, transparent);
}
.zone-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--zone-color, var(--purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 16px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--zone-color, var(--purple)) 35%, transparent);
}
.zone-icon-card:hover .zone-circle { transform: scale(1.1); }
.zone-icon-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.zone-icon-card p { font-size: 13.5px; color: var(--ink); margin: 0; line-height: 1.6; }

/* ─── Zone Features – Ticket Banner ─── */
.zone-features {
  padding: 0 max(5vw, 30px) 70px;
}
.zone-ticket {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f4ff 0%, #edfbff 100%);
  border: 2.5px dashed #c8b5e8;
  border-radius: 28px;
  padding: 52px 48px 48px;
  position: relative;
  overflow: visible;
}
.zone-ticket::before,
.zone-ticket::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  border: 2.5px dashed #c8b5e8;
  z-index: 1;
}
.zone-ticket::before { left: -16px; }
.zone-ticket::after  { right: -16px; }
.zone-ticket-head { text-align: center; margin-bottom: 44px; }
.zone-ticket-head h2 { font-size: clamp(20px, 3vw, 34px); font-weight: 600; margin: 6px 0 0; }
.zone-ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.zone-ticket-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.zone-ticket-item + .zone-ticket-item::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, #c8b5e8 0 6px, transparent 6px 12px);
}
.zone-ticket-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.zone-ticket-icon svg { font-size: 28px; color: #fff; }
.zti-purple { background: var(--purple); }
.zti-pink   { background: var(--pink); }
.zti-gold   { background: var(--gold); }
.zti-aqua   { background: var(--aqua); }
.zone-ticket-item h3 { font-size: 16px; font-weight: 600; margin: 0 0 8px; color: var(--ink); }
.zone-ticket-item p  { font-size: 13px; color: #888; margin: 0; line-height: 1.55; }

/* ─── Zone Detail Blocks ─── */
.zone-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px max(5vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.zone-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zone-detail-block.reverse { direction: rtl; }
.zone-detail-block.reverse > * { direction: ltr; }
.zone-detail-copy { display: flex; flex-direction: column; gap: 16px; }
.zone-detail-copy h2 { font-size: 32px; font-weight: 600; margin: 0; line-height: 1.15; }
.zone-detail-copy h2 i { color: var(--pink); font-style: normal; }
.zone-detail-copy p { font-size: 15px; color: #555; line-height: 1.75; margin: 0; }
.zone-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 16px 48px #4b365b18;
}

/* ─── Zone Inclusive ─── */
.zone-inclusive { padding: 50px max(5vw, 30px); }
.zone-inclusive-grid {
  max-width: 1100px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.zone-incl-card {
  text-align: center;
  border-radius: 26px;
  padding: 40px 22px 32px;
  border: 2px solid transparent;
  transition: transform .25s, box-shadow .25s;
}
.zone-incl-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,.10); }
.zone-incl-card.zic-pink   { background: #fff0f6; border-color: #f5c6d6; }
.zone-incl-card.zic-gold   { background: #fff9ec; border-color: #fde5a8; }
.zone-incl-card.zic-purple { background: #f3f0ff; border-color: #d8d0f5; }
.zone-incl-card.zic-aqua   { background: #edf9ff; border-color: #b8e6f8; }
.zone-incl-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.zic-pink   .zone-incl-icon { background: var(--pink); }
.zic-gold   .zone-incl-icon { background: var(--gold); }
.zic-purple .zone-incl-icon { background: var(--purple); }
.zic-aqua   .zone-incl-icon { background: var(--aqua); }
.zone-incl-icon svg { font-size: 28px; color: #fff; }
.zone-incl-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 10px; color: var(--ink); }
.zone-incl-card p  { font-size: 14px; color: #777; margin: 0; line-height: 1.6; }

/* ─── About Special ─── */
.about-special {
  padding: 55px max(5vw, 30px);
  background: #fff;
}
.about-special-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-special-card {
  text-align: center;
  padding: 36px 22px;
  border-radius: 22px;
  background: #faf7ff;
  border: 1px solid #ede8f8;
  transition: transform .25s, box-shadow .25s;
}
.about-special-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px #4b365b14; }
.about-special-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.about-special-card:nth-child(2) .about-special-icon { background: var(--pink); }
.about-special-card:nth-child(3) .about-special-icon { background: var(--green); }
.about-special-card:nth-child(4) .about-special-icon { background: var(--orange); }
.about-special-card h3 { font-size: 17px; font-weight: 600; margin: 0 0 10px; }
.about-special-card p { font-size: 14px; color: #666; margin: 0; line-height: 1.65; }

/* ─── Gallery ─── */
.gallery { text-align: center; padding: 55px max(6vw, 28px); }
.gallery h2 { font-size: 34px; margin: 8px 0 28px; font-weight: 500; }
.gallery > div {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8e7ac5cc, #eb759dcc);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font: 700 16px Fredoka;
  letter-spacing: .05em;
}

/* ─── Home Photo Strip ─── */
.home-photos { padding: 45px max(5vw, 28px) 50px; text-align: center; }
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1300px;
  margin: 32px auto 0;
}
.photo-strip-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}
.photo-strip-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.photo-strip-item:hover img { transform: scale(1.07); }
.photo-strip-item:hover .gallery-overlay { opacity: 1; }
@media (max-width: 1000px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* ─── Lightbox ─── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 15, 35, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 30px 80px #0008;
  animation: zoomIn .25s ease;
}
@keyframes zoomIn { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10000;
  background: rgba(255,255,255,.18);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.35); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  background: rgba(255,255,255,.18);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.35); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font: 600 14px Fredoka;
  background: rgba(0,0,0,.4);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ─── CTA ─── */
.cta {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 44px;
  text-align: center;
  border-radius: 32px;
  background: var(--purple);
  color: #fff;
}
.cta h2 { font-size: 34px; margin: 0 0 12px; font-weight: 500; }
.cta h2 i { color: #ffd166; font-style: normal; }
.cta p { margin: 0 0 24px; opacity: .9; }
.cta .actions button {
  background: #fff;
  border: none;
  color: var(--purple);
  font-weight: 600;
}
.cta .actions button:hover {
  background: #f0ebff;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transform: translateY(-3px);
}

/* ─── Float WhatsApp ─── */
.float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 29px;
  z-index: 30;
  box-shadow: 0 9px 25px #0003;
  transition: transform .25s;
}
.float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25d36640;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.float:hover { transform: scale(1.1); background: #128c4e; color: #fff; }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px #8e7ac540;
  z-index: 30;
  transition: transform .25s, opacity .25s;
  animation: fadeIn .3s ease;
}
.back-to-top:hover { transform: translateY(-4px); }

/* ─── Footer ─── */
footer { background: #f6f3fb; padding: 58px max(6vw, 28px) 20px; }
.footer-grid {
  max-width: 1220px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr .85fr 1.4fr .85fr;
  gap: 40px;
}
.footer-grid h4 { font-size: 17px; margin-bottom: 16px; font-weight: 700; letter-spacing: .03em; color: #111; }
.footer-grid > div > a { display: block; margin: 10px 0; font-size: 15px; font-weight: 600; color: #111; transition: color .2s; }
.footer-grid > div > a:hover { color: var(--purple); }
.footer-grid p { font-size: 15px; font-weight: 500; color: #111; line-height: 1.7; }
.footer-logo { width: 160px; margin-bottom: 12px; display: block; }
.footer-seo p { font-size: 13.5px; color: #666; line-height: 1.65; margin-top: 4px; }
.social { display: flex; gap: 18px; margin-top: 14px; }
.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: transform .2s, background .2s;
}
.social a:hover { transform: translateY(-3px); background: var(--pink); }
.pill { padding: 8px 12px; background: #eaf4d3; color: #54701e; border-radius: 20px; font-size: 12px; }
.copy {
  max-width: 1220px;
  margin: 35px auto 0;
  padding-top: 18px;
  border-top: 1px solid #d8d0e1;
  text-align: center;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ─── Page Hero ─── */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  background: #fff;
  padding: 60px max(5vw, 30px) 60px max(7vw, 48px);
  gap: 50px;
}
.page-hero > div { }
.page-hero h1 { font-size: clamp(36px, 4.5vw, 62px); line-height: 1.05; margin: 15px 0 20px; font-weight: 600; }
.page-hero h1 span { color: var(--purple); }
.page-hero h1 i { color: var(--pink); font-style: normal; }
.page-hero h1 b { color: var(--green); font-weight: 600; }
.page-hero p { font-size: 17px; color: #555; line-height: 1.65; margin-bottom: 28px; }
.page-hero > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  display: block;
}

/* ─── About ─── */
.about-intro {
  max-width: 860px;
  margin: 0 auto;
  padding: 55px max(5vw, 30px) 40px;
  text-align: center;
  border-bottom: 1px solid #ede8f8;
}
.about-intro h2 { font-size: 34px; font-weight: 600; margin: 10px 0 20px; }
.about-intro h2 i { color: var(--pink); }
.about-intro p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}
.about-vm {
  max-width: 1200px;
  margin: 0 auto;
  padding: 55px max(5vw, 30px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.about-vm-card {
  border-radius: 28px;
  padding: 44px 40px;
}
.about-vm-card.vision {
  background: linear-gradient(135deg, #f3effb 0%, #e8f5fe 100%);
  border: 1px solid #d4c8ed;
}
.about-vm-card.mission {
  background: linear-gradient(135deg, #fff5f9 0%, #f3effb 100%);
  border: 1px solid #f0cedd;
}
.about-vm-card h2 { font-size: 28px; margin: 10px 0 16px; font-weight: 500; }
.about-vm-card h2 i { color: var(--pink); font-style: normal; }
.about-vm-card p { font-size: 15px; color: #555; line-height: 1.75; margin: 0; }
.about-owners {
  background: linear-gradient(135deg, #4b2d7a 0%, #9b4a72 100%);
  padding: 55px max(5vw, 30px);
  color: #fff;
}
.about-owners-inner {
  max-width: 820px;
  margin: 0 auto;
}
.about-owners .eyebrow {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
}
.about-owners-text h2 { font-size: 34px; margin: 10px 0 30px; font-weight: 500; }
.about-owners-text h2 i { color: #ffd166; font-style: normal; }
.about-owners blockquote {
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px 32px;
  border-left: 4px solid rgba(255,255,255,.3);
}
.about-owners blockquote p { margin: 0 0 12px; }
.about-owners blockquote p:last-child { margin: 0; }
.about-founders {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.founder-card {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 18px 28px;
  text-align: center;
  min-width: 160px;
}
.founder-card strong { display: block; font: 600 16px Fredoka; margin-bottom: 4px; }
.founder-card span { font-size: 13px; color: rgba(255,255,255,.7); }
.story {
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
.story h2 { font-size: 34px; font-weight: 500; }
.values { display: grid; gap: 18px; }
.values article, .partners article {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px #432e4f12;
  transition: transform .25s;
}
.values article:hover, .partners article:hover { transform: translateY(-4px); }
.values svg, .partners svg { font-size: 34px; color: var(--pink); }
.values h3 { margin: 8px 0; }

/* ─── Partners (old, kept for safety) ─── */
.partners { display: none; }

/* ─── Partner With Us Page ─── */

/* Hero */
.pw-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 70px max(5vw, 30px) 60px;
}
.pw-hero-text .eyebrow { display: block; margin-bottom: 14px; }
.pw-hero-text h1 { font-size: clamp(34px, 4vw, 56px); line-height: 1.1; margin: 0 0 20px; font-weight: 600; }
.pw-hero-sub { color: var(--green); display: block; }
.pw-hero-text p { font-size: 16px; color: #555; line-height: 1.65; margin-bottom: 14px; }
.pw-hero-text .btn { margin-top: 10px; }
.pw-hero-img img {
  width: 100%;
  aspect-ratio: 4/3;
}

/* Why Partner */
.pw-why {
  background: #faf8ff;
  padding: 70px max(5vw, 30px) 60px;
}
.pw-why .heading { text-align: center; margin: 0 auto 44px; max-width: 700px; }
.pw-why-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pw-why-card {
  border-radius: 22px;
  padding: 32px 26px;
  border: 2px solid transparent;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.pw-why-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px #3e304e18; }
.pw-why-card h3 { font-size: 18px; margin: 14px 0 8px; }
.pw-why-card p  { font-size: 14px; color: #555; line-height: 1.55; }
.pw-why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 26px; color: #fff;
  margin: 0 auto 4px;
}
.pwc-pink   { background: #fff0f6; border-color: #f5c6d6; }
.pwc-purple { background: #f3f0ff; border-color: #d8d0f5; }
.pwc-orange { background: #fff5ec; border-color: #fdd9b5; }
.pwc-aqua   { background: #edf9ff; border-color: #b8e6f8; }
.pwc-gold   { background: #fff9ec; border-color: #fde5a8; }
.pwc-green  { background: #f0fbf0; border-color: #b8e8b8; }
.pwc-pink   .pw-why-icon { background: var(--pink); }
.pwc-purple .pw-why-icon { background: var(--purple); }
.pwc-orange .pw-why-icon { background: var(--orange); }
.pwc-aqua   .pw-why-icon { background: var(--aqua); }
.pwc-gold   .pw-why-icon { background: var(--gold); }
.pwc-green  .pw-why-icon { background: var(--green); }

/* Opportunities */
.pw-opps { padding: 70px max(5vw, 30px) 50px; }
.pw-opps .heading { text-align: center; margin: 0 auto 44px; max-width: 700px; }
.pw-opps-grid {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pw-opp-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 20px;
  border: 2px solid #ede8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.pw-opp-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px #3e304e18; }
.pw-opp-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px; color: #fff;
}
.pw-opp-card h3 { font-size: 16px; margin: 0; line-height: 1.3; }
.pw-opp-card p  { font-size: 13px; color: #666; line-height: 1.5; margin: 0; }
.pwoc-purple .pw-opp-icon { background: var(--purple); }
.pwoc-pink   .pw-opp-icon { background: var(--pink); }
.pwoc-gold   .pw-opp-icon { background: var(--gold); }
.pwoc-aqua   .pw-opp-icon { background: var(--aqua); }
.pwoc-green  .pw-opp-icon { background: var(--green); }
.pwoc-purple { border-color: #d8d0f5; }
.pwoc-pink   { border-color: #f5c6d6; }
.pwoc-gold   { border-color: #fde5a8; }
.pwoc-aqua   { border-color: #b8e6f8; }
.pwoc-green  { border-color: #b8e8b8; }
.pw-opps-note {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: #666;
}

/* Inquiry Form */
.pw-form-wrap { padding: 80px max(5vw, 30px); background: #faf8ff; }
.pw-form-inner {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.pw-form-left .eyebrow { display: block; margin-bottom: 8px; }
.pw-form-left h2 { font-size: clamp(26px, 3vw, 40px); margin: 0 0 16px; }
.pw-form-left h2 i { font-style: normal; color: var(--green); }
.pw-form-left > p { font-size: 15px; color: #555; line-height: 1.65; margin-bottom: 20px; }
.pw-form-img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 4/3;
  margin-top: 10px;
}
.pw-form-title { font-size: 22px; margin: 0 0 22px; font-weight: 600; }
.pw-form { background: #fff; border-radius: 24px; padding: 36px 32px; box-shadow: 0 8px 40px #3e304e12; }
.pw-form label { display: block; font: 500 14px Fredoka; margin-bottom: 16px; }
.pw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* CTA */
.pw-cta { background: linear-gradient(135deg, #7a5cc7, var(--pink)); padding: 80px max(5vw, 30px); text-align: center; }
.pw-cta-inner { max-width: 700px; margin: auto; }
.pw-cta h2 { font-size: clamp(26px, 3.5vw, 44px); color: #fff; margin: 10px 0 18px; font-weight: 600; }
.pw-cta h2 i { font-style: normal; color: #ffe0a0; }
.pw-cta p  { font-size: 17px; color: #ffffffcc; margin-bottom: 34px; line-height: 1.6; }
.pw-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1000px) {
  .pw-opps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .pw-hero       { grid-template-columns: 1fr; }
  .pw-hero-img   { display: none; }
  .pw-why-grid   { grid-template-columns: repeat(2, 1fr); }
  .pw-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .pw-form-img   { max-height: 260px; }
}
@media (max-width: 600px) {
  .pw-why-grid  { grid-template-columns: 1fr; }
  .pw-opps-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-form-row  { grid-template-columns: 1fr; }
}

/* ─── Contact ─── */
.contact {
  max-width: 1120px;
  margin: auto;
  padding: 90px 30px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
}
.contact > div > a { display: block; margin: 15px 0; }
.contact .btn { display: inline-flex; }
.contact form { background: #fff; padding: 36px; border-radius: 28px; box-shadow: var(--shadow); }
.contact-address { display: flex !important; align-items: flex-start; gap: 8px; color: var(--ink); text-decoration: none; font-weight: 500; }
.contact-address:hover { color: var(--purple); }
.contact-social { margin-top: 28px; }
.contact-social p { font: 600 13px Fredoka; color: #888; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 12px; }
.contact-social-icons { display: flex; gap: 14px; }
.cs-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.cs-icon:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.cs-fb { background: var(--purple); }
.cs-ig { background: var(--pink); }
.cs-tk { background: var(--green); }
.contact-map { padding: 0 30px 70px; }
.contact-map-inner { max-width: 1120px; margin: 0 auto; }
.contact-map-inner iframe { display: block; box-shadow: 0 12px 40px rgba(0,0,0,.1); }
label { display: block; font: 500 14px Fredoka; margin-bottom: 17px; }
input, select, textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #ded6e4;
  border-radius: 12px;
  background: #fffdfa;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px #8e7ac524;
}
.success { color: #668a24; font-weight: 700; margin-top: 12px; }

/* ─── Scroll Reveal ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: .75s; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── Responsive: 1000px ─── */
@media (max-width: 1000px) {
  header { height: 78px; padding: 8px 20px; }
  .logo img { width: 115px; }
  .menu { display: block; margin-left: auto; }
  nav {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0 22px;
    flex-direction: column;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    border-radius: 0 0 20px 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .25s ease, transform .25s ease, padding .25s ease;
  }
  nav.open {
    max-height: 540px;
    padding: 18px 22px 22px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  nav a { padding: 12px 16px; border-radius: 12px; font-size: 16px; }
  .book { display: none; }
  .hero { min-height: 560px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .zones-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-icon-grid.zones-8 { grid-template-columns: repeat(2, 1fr); }
  .zone-ticket { padding: 40px 28px 36px; }
  .zone-ticket-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .zone-ticket-item + .zone-ticket-item::before { display: none; }
  .zone-ticket-item:nth-child(1), .zone-ticket-item:nth-child(2) { border-bottom: 1px dashed #c8b5e8; padding-bottom: 32px; }
  .zone-detail-block, .zone-detail-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 30px; }
  .zone-inclusive-grid { grid-template-columns: repeat(2, 1fr); }
  .about-special-grid { grid-template-columns: repeat(2, 1fr); }
  .trail-section { padding: 70px 30px; }
  .stop, .stop.reverse { margin: 0 0 35px; grid-template-columns: 60px 1fr 1.2fr; }
  .stop.reverse > img { grid-column: 3; }
  .stop.reverse .zone-copy { grid-column: 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust > div { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .slider-btn { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 50px 30px 50px 35px; gap: 36px; }
  .story { grid-template-columns: 1fr; }
  .about-vm { grid-template-columns: 1fr; }
  .partners { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}

/* ─── Responsive: 650px ─── */
@media (max-width: 650px) {
  .hero { min-height: 480px; }
  .hero-copy { padding: 80px 24px 60px; }
  .hero h1 { font-size: 52px; letter-spacing: -1px; }
  .hero-tagline { font-size: 15px; }
  .actions { gap: 10px; flex-wrap: wrap; }
  .meta { flex-wrap: wrap; }
  .zones-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-inclusive-grid { grid-template-columns: 1fr 1fr; }
  .about-special-grid { grid-template-columns: 1fr 1fr; }
  .top-bar-phone { display: none; }
  .top-bar-tagline { font-size: 11px; }
  .heading h2 { font-size: 38px; }
  .trail-section { padding: 44px 20px; }
  .trail::before { display: none; }
  .stop, .stop.reverse { grid-template-columns: 48px 1fr; margin-bottom: 32px; }
  .stop > img, .stop.reverse > img { grid-column: 1 / -1; grid-row: 2; height: 200px; border-radius: 22px; transform: none; }
  .zone-copy, .stop.reverse .zone-copy { grid-column: 2; grid-row: 1; padding: 0; }
  .pricing-wrap { padding-inline: 16px; }
  .price-card, .party-card { padding: 22px 18px; }
  .price-card-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust { padding: 38px 20px; }
  .trust > h2 { font-size: 30px; }
  .trust > div { gap: 12px; }
  .trust article p { font-size: 12px; }
  .testimonials { padding: 44px 20px; }
  .testimonials h2 { font-size: 30px; }
  .review-grid { gap: 16px; }
  .gallery { padding: 65px 16px; }
  .gallery > div { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item img { height: 150px; border-radius: 14px; }
  .cta { margin: 0 16px 70px; padding: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { grid-template-columns: 1fr; gap: 28px; padding: 44px 24px 50px; }
  .page-hero h1 { font-size: 38px; }
  .page-hero > img { width: 100%; aspect-ratio: 16/9; border-radius: 22px; clip-path: none; }
  .story, .partners, .contact { padding: 65px 20px; }
  .contact form { padding: 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 30px 16px; gap: 14px; }
  .stat-item strong { font-size: 30px; }
  .stat-icon { width: 48px; height: 48px; font-size: 22px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ─── Birthday Party Page ─── */

/* Hero */
.bp-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(135deg, #fff5fb 0%, #f8f4ff 100%);
  overflow: hidden;
  padding-left: max(7vw, 48px);
}
.bp-hero-copy { padding: 70px 50px 70px 0; }
.bp-balloons { font-size: 42px; color: var(--pink); margin-bottom: 12px; display: block; }
.bp-hero-copy h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.05; margin: 12px 0 20px; font-weight: 600; }
.bp-hero-copy h1 i { color: var(--pink); font-style: normal; }
.bp-hero-copy p { font-size: 16px; color: #555; max-width: 460px; margin: 0 0 28px; }
.bp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.bp-trust-pills { display: flex; gap: 16px; flex-wrap: wrap; }
.bp-trust-pills span { font-size: 13px; color: var(--green); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.bp-hero-img { position: relative; display: flex; align-items: center; }
.bp-hero-img img { width: calc(100% - 40px); height: 460px; object-fit: cover; border-radius: 28px; margin: 30px 20px 30px 0; box-shadow: 0 14px 44px rgba(0,0,0,.13); }
.bp-badge {
  position: absolute;
  left: 6%;
  bottom: 10%;
  background: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 12px Fredoka;
  line-height: 1.3;
  color: var(--ink);
  text-align: center;
}
.bp-badge svg { font-size: 22px; color: var(--orange); }

/* Why us */
.bp-why { padding: 80px max(6vw, 28px); text-align: center; }
.bp-why h2 { font-size: 34px; margin: 8px 0 36px; font-weight: 500; }
.bp-why h2 i { color: var(--pink); font-style: normal; }
.bp-why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bp-why-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 22px;
  box-shadow: 0 8px 28px #4b365b0d;
  border: 1px solid #f0e8f5;
  transition: transform .25s;
}
.bp-why-card:hover { transform: translateY(-5px); }
.bp-why-card svg { font-size: 32px; color: var(--purple); margin-bottom: 12px; }
.bp-why-card h3 { font-size: 18px; margin: 0 0 8px; font-weight: 500; }
.bp-why-card p { font-size: 14px; color: #666; margin: 0; }

/* Packages */
.bp-packages { padding: 80px max(6vw, 28px); background: #fdf9ff; text-align: center; }
.bp-packages h2 { font-size: 34px; margin: 8px 0 10px; font-weight: 500; }
.bp-packages h2 i { color: var(--pink); font-style: normal; }
.bp-pkg-sub { color: #666; font-size: 15px; margin: 0 0 44px; }
.bp-pkg-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.bp-pkg-card {
  background: #fff;
  border-radius: 26px;
  padding: 36px 28px;
  box-shadow: 0 10px 35px #4b365b0f;
  border: 2px solid #f0eaf8;
  position: relative;
  transition: transform .25s;
  text-align: left;
}
.bp-pkg-card:hover { transform: translateY(-6px); }
.bp-pkg-card.highlighted {
  border-color: var(--pink);
  box-shadow: 0 16px 50px #eb759d25;
  transform: scale(1.03);
}
.bp-pkg-card.highlighted:hover { transform: scale(1.03) translateY(-4px); }
.bp-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font: 600 12px Fredoka;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.bp-pkg-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}
.bp-pkg-icon.aqua { background: var(--aqua); }
.bp-pkg-icon.pink { background: var(--pink); }
.bp-pkg-icon.purple { background: var(--purple); }
.bp-pkg-card h3 { font-size: 22px; margin: 0 0 8px; font-weight: 500; }
.bp-price { font: 700 28px Fredoka; color: var(--ink); margin-bottom: 12px; }
.bp-pkg-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: #777; margin-bottom: 20px; }
.bp-pkg-meta span { display: flex; align-items: center; gap: 5px; }
.bp-features { list-style: none; padding: 0; margin: 0 0 24px; }
.bp-features li { padding: 7px 0; font-size: 14px; color: #444; display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid #f5f0fa; }
.bp-features li:last-child { border: none; }
.check-icon { color: var(--green); font-size: 13px; flex-shrink: 0; margin-top: 3px; }
.bp-note { font-size: 14px; font-weight: 500; color: #555; margin-top: 28px; text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }

/* How to book */
.bp-steps {
  padding: 80px max(6vw, 28px);
  text-align: center;
  background: linear-gradient(135deg, #fdf5ff 0%, #edf9ff 100%);
}
.bp-steps h2 { font-size: 34px; margin: 8px 0 44px; font-weight: 500; }
.bp-steps h2 i { color: var(--pink); font-style: normal; }
.bp-steps-grid {
  max-width: 900px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.bp-steps-grid::before {
  content: '';
  position: absolute;
  top: 76px;
  left: calc(50% / 3 + 36px);
  right: calc(50% / 3 + 36px);
  height: 2px;
  background: repeating-linear-gradient(to right, #d0c4f0 0 8px, transparent 8px 16px);
  pointer-events: none;
}
.bp-step {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px 28px;
  border: 2px solid #ede8f8;
  transition: transform .25s, box-shadow .25s;
  z-index: 1;
}
.bp-step:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0,0,0,.10); }
.bp-step-num {
  font: 700 44px Fredoka;
  line-height: 1;
  margin-bottom: 16px;
}
.bps-green .bp-step-num { color: color-mix(in srgb, var(--green) 50%, #fff); }
.bps-purple .bp-step-num { color: color-mix(in srgb, var(--purple) 60%, #fff); }
.bps-pink .bp-step-num   { color: color-mix(in srgb, var(--pink) 60%, #fff); }
.bp-step-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.bp-step-circle svg { font-size: 28px; color: #fff; }
.bps-green  .bp-step-circle { background: var(--green); }
.bps-purple .bp-step-circle { background: var(--purple); }
.bps-pink   .bp-step-circle { background: var(--pink); }
.bps-green  { border-color: #d8eaa8; }
.bps-purple { border-color: #d8d0f5; }
.bps-pink   { border-color: #f5c6d6; }
.bp-step h3 { font-size: 19px; margin: 0 0 8px; font-weight: 600; }
.bp-step p  { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

/* Gallery */
.bp-gallery { padding: 70px max(6vw, 28px); text-align: center; }
.bp-gallery h2 { font-size: 34px; margin: 8px 0 28px; font-weight: 500; }
.bp-gallery h2 i { color: var(--pink); font-style: normal; }
.bp-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bp-gallery-grid .gallery-item img { height: 210px; }

/* FAQs */
.bp-faq { padding: 30px max(6vw, 28px) 50px; max-width: 840px; margin: 0 auto; }
.bp-faq h2 { font-size: 34px; margin: 8px 0 32px; font-weight: 500; text-align: center; }
.bp-faq h2 i { color: var(--pink); font-style: normal; }
.bp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.bp-faq-item {
  border: 1px solid #ede8f8;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s;
}
.bp-faq-item.open { box-shadow: 0 6px 24px #8e7ac520; border-color: var(--purple); }
.bp-faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font: 500 15px Fredoka;
  color: var(--ink);
  text-align: left;
}
.faq-arrow { font-size: 22px; color: var(--purple); flex-shrink: 0; font-family: Fredoka; }
.bp-faq-item p { margin: 0; padding: 0 22px 18px; font-size: 14px; color: #555; line-height: 1.7; }
.bp-faq-item button .fa-chevron-down,
.bp-faq-item button .fa-chevron-up { flex-shrink: 0; color: var(--purple); transition: transform .25s; }
.bp-faq-item.open button .fa-chevron-up { transform: rotate(180deg); }
.bp-faqs { padding: 60px max(4vw, 20px); }
.bp-faqs .bp-faq-list { max-width: 860px; margin: 40px auto 0; }
.bp-faqs .section-head { margin-bottom: 0; }

/* CTA */
.bp-cta {
  margin: 0 max(4vw, 20px) 80px;
  padding: 60px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff;
  text-align: center;
}
.bp-cta-icon { font-size: 48px; margin-bottom: 16px; opacity: .9; }
.bp-cta h2 { font-size: 34px; margin: 0 0 12px; font-weight: 500; }
.bp-cta h2 i { color: #ffd166; font-style: normal; }
.bp-cta p { margin: 0 0 28px; opacity: .9; font-size: 16px; }
.bp-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.bp-cta-btns .btn { background: rgba(255,255,255,.2) !important; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); }
.bp-cta-btns .btn:hover { background: rgba(255,255,255,.35) !important; }
.bp-cta-btns .btn:first-child { background: #fff !important; color: var(--pink) !important; }
.bp-cta-btns .btn:first-child:hover { background: #fff3f8 !important; }

/* Birthday page responsive */
@media (max-width: 1000px) {
  .bp-hero { grid-template-columns: 1fr; padding-left: 0; }
  .bp-hero-copy { padding: 55px 30px 35px; }
  .bp-hero-img img { width: calc(100% - 32px); height: 320px; margin: 20px 16px 20px 0; }
  .bp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-pkg-grid { grid-template-columns: 1fr; max-width: 480px; }
  .bp-pkg-card.highlighted { transform: none; }
  .bp-steps-grid { grid-template-columns: 1fr; }
  .bp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .bp-hero-copy h1 { font-size: 38px; }
  .bp-hero-img img { height: 260px; }
  .bp-hero-actions { flex-direction: column; }
  .bp-why-grid { grid-template-columns: 1fr; }
  .bp-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bp-gallery-grid .gallery-item img { height: 150px; }
  .bp-cta { padding: 40px 20px; }
  .bp-cta h2 { font-size: 26px; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── Blob Image Style (simplified to rounded card) ─── */
.blob-wrap { display: flex; align-items: center; justify-content: center; }
.blob-wrap img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(62,48,78,.14);
}

/* ─── Per-Page Backgrounds ─── */
main.bg-yellow { background: #fffbee; }
main.bg-pink   { background: #fff4f8; }
main.bg-purple { background: #f6f3ff; }
main.bg-green  { background: #f3fbf1; }
main.bg-orange { background: #fff7f3; }
main.bg-aqua   { background: #f0fbff; }

/* ─── LE Cafe grid ─── */
.cafe-grid { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 1000px) { .cafe-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 650px)  { .cafe-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* ─── Footer: Contact Icons ─── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin: 12px 0;
  line-height: 1.55;
}
.fc-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--purple);
  font-size: 15px;
}

/* ─── Blog Listing ─── */
.blog-listing { padding: 60px max(4vw, 20px) 80px; }
.blog-listing .section-head { margin-bottom: 40px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #ece8f5;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(170,157,210,.2); }
.blog-card-img {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--purple);
  color: #fff;
  font: 600 12px Fredoka;
  padding: 4px 12px;
  border-radius: 40px;
  letter-spacing: .04em;
}
.blog-card-body { padding: 22px 24px 28px; }
.blog-meta { font-size: 13px; color: #888; margin-bottom: 10px; }
.blog-meta i { color: var(--purple); }
.blog-card-body h2 { font-size: 18px; margin: 0 0 10px; line-height: 1.35; }
.blog-card-body h2 a { color: var(--ink); transition: color .2s; }
.blog-card-body h2 a:hover { color: var(--purple); }
.blog-card-body p { font-size: 14px; color: #555; margin: 0 0 16px; line-height: 1.7; }
.blog-read-more { font: 500 14px Fredoka; color: var(--purple); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.blog-read-more:hover { gap: 10px; }

/* ─── Blog Post ─── */
.blog-post { max-width: 860px; margin: 0 auto; padding: 0 max(4vw, 20px) 80px; }
.blog-post-hero { margin-bottom: 0; }
.blog-post-hero img { width: 100%; max-height: 440px; object-fit: cover; border-radius: 0 0 24px 24px; }
.blog-post-wrap { padding-top: 32px; }
.blog-post-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.blog-back { font: 500 14px Fredoka; color: var(--purple); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.blog-back:hover { gap: 10px; }
.blog-post h1 { font-size: 34px; line-height: 1.2; margin: 0 0 14px; }
.blog-post-info { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #888; margin-bottom: 28px; }
.blog-post-info i { color: var(--purple); }
.blog-intro { font-size: 17px; color: #444; line-height: 1.75; margin-bottom: 32px; border-left: 4px solid var(--purple); padding-left: 18px; }
.blog-post h2 { font-size: 24px; margin: 36px 0 12px; color: var(--ink); }
.blog-post h3 { font-size: 19px; margin: 24px 0 10px; color: var(--purple); }
.blog-post p  { font-size: 15px; color: #444; line-height: 1.8; margin: 0 0 16px; }
.blog-post ul { padding-left: 20px; margin: 0 0 20px; }
.blog-post ul li { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 6px; }
.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 14px;
}
.blog-table th, .blog-table td {
  padding: 11px 14px;
  border: 1px solid #ece8f5;
  text-align: left;
}
.blog-table th { background: var(--purple); color: #fff; font-weight: 500; }
.blog-table tr:nth-child(even) td { background: #faf8ff; }
.blog-cta-box {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  border-radius: 18px;
  padding: 28px 32px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #fff;
}
.blog-cta-box p { margin: 0; font-size: 15px; opacity: .95; color: #fff; }
.blog-faq { margin: 20px 0 32px; }
.blog-faq .bp-faq-item { border-color: #ece8f5; }
.blog-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 2px solid #ece8f5;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-post h1 { font-size: 26px; }
  .blog-cta-box { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-info { gap: 12px; }
}

/* ─── Zones Page ─── */
.zone-features { padding: 0 max(4vw, 20px) 60px; }
.zone-ticket {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  border-radius: 28px;
  padding: 56px 48px;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}
.zone-ticket-head { text-align: center; margin-bottom: 40px; }
.zone-ticket-head h2 { font-size: 34px; margin: 8px 0 0; color: #fff; }
.zone-ticket-head h2 i { color: #ffd166; font-style: normal; }
.zone-ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.zone-ticket-item { text-align: center; }
.zone-ticket-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: 0 auto 14px;
  color: #fff;
}
.zti-purple { background: rgba(255,255,255,.25); }
.zti-pink   { background: rgba(255,255,255,.2); }
.zti-gold   { background: rgba(255,255,255,.2); }
.zti-aqua   { background: rgba(255,255,255,.2); }
.zone-ticket-item h3 { font-size: 17px; margin: 0 0 6px; color: #fff; }
.zone-ticket-item p  { font-size: 14px; margin: 0; opacity: .88; }

.zone-details { padding: 0 max(4vw, 20px) 80px; }
.zone-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 72px;
}
.zone-detail-block.reverse { direction: rtl; }
.zone-detail-block.reverse > * { direction: ltr; }
.zone-detail-copy .eyebrow { margin-bottom: 10px; display: block; }
.zone-detail-copy h2 { font-size: 34px; margin: 0 0 16px; line-height: 1.15; }
.zone-detail-copy h2 i { color: var(--pink); font-style: normal; }
.zone-detail-copy p { font-size: 15px; color: #555; margin: 0 0 24px; }
.zone-detail-img img { width: 100%; border-radius: 24px; object-fit: cover; max-height: 380px; }

.zone-inclusive { padding: 0 max(4vw, 20px) 80px; }
.zone-inclusive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.zone-incl-card {
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
}
.zic-pink   { background: #fff0f5; }
.zic-gold   { background: #fffbee; }
.zic-purple { background: #f5f2ff; }
.zic-aqua   { background: #f0faff; }
.zone-incl-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: 0 auto 14px;
  color: var(--ink);
}
.zone-incl-card h3 { font-size: 17px; margin: 0 0 8px; }
.zone-incl-card p  { font-size: 14px; color: #555; margin: 0; }

@media (max-width: 1000px) {
  .zone-ticket-grid    { grid-template-columns: repeat(2, 1fr); }
  .zone-detail-block   { grid-template-columns: 1fr; gap: 24px; }
  .zone-detail-block.reverse { direction: ltr; }
  .zone-inclusive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .zone-ticket { padding: 36px 20px; }
  .zone-ticket-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .zone-inclusive-grid { grid-template-columns: 1fr; }
}

/* ─── Birthday Page (new classes) ─── */
.bp-why { padding: 60px max(4vw, 20px); }
.bp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.bp-why-card {
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
}
.bpw-pink   { background: #fff0f5; }
.bpw-purple { background: #f5f2ff; }
.bpw-gold   { background: #fffbee; }
.bpw-aqua   { background: #f0faff; }
.bp-why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,.07);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: 0 auto 14px;
  color: var(--ink);
}
.bp-why-card h3 { font-size: 17px; margin: 0 0 8px; }
.bp-why-card p  { font-size: 14px; color: #555; margin: 0; }

.bp-packages { padding: 60px max(4vw, 20px); }
.bp-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
  align-items: start;
}
.bp-pkg {
  border-radius: 24px;
  background: #fff;
  border: 2px solid #ece8f5;
  padding: 32px 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.bp-pkg:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(170,157,210,.2); }
.bp-featured {
  border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(170,157,210,.25);
}
.bp-pkg-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font: 600 13px Fredoka;
  padding: 5px 18px;
  border-radius: 40px;
  white-space: nowrap;
}
.bp-pkg-top { text-align: center; margin-bottom: 24px; }
.bp-pkg-badge {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 40px;
  font: 600 13px Fredoka;
  margin-bottom: 12px;
  background: #f3f0fb;
  color: var(--purple);
}
.bp-pkg-price { font-size: 18px; color: #555; }
.bp-pkg-price strong { font-size: 36px; font-weight: 600; color: var(--ink); }
.bp-pkg-sub { font-size: 13px; color: #888; margin: 4px 0 0; }
.bp-pkg-list { list-style: none; padding: 0; margin: 0 0 24px; }
.bp-pkg-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0ecf8;
}
.bp-pkg-list li:last-child { border-bottom: none; }
.bp-pkg-list .fa-check { color: var(--green); flex-shrink: 0; }
.bp-no { color: #ccc; }
.bp-pkg-list li:has(.bp-no) { color: #aaa; }
.bp-pkg-btn { width: 100%; justify-content: center; }

.bp-packages-note {
  text-align: center;
  margin: 24px auto 0;
  font-size: 14px;
  color: #666;
  max-width: 600px;
}
.bp-packages-note .fa-circle-info { color: var(--purple); }

.bp-steps { padding: 60px max(4vw, 20px); }
.bp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.bp-step {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 2px solid #ece8f5;
}
.bp-step-num {
  font: 600 42px Fredoka;
  color: var(--purple);
  opacity: .35;
  line-height: 1;
  margin-bottom: 10px;
}
.bp-step h3 { font-size: 18px; margin: 0 0 8px; }
.bp-step p  { font-size: 14px; color: #555; margin: 0; }

@media (max-width: 1000px) {
  .bp-why-grid      { grid-template-columns: repeat(2, 1fr); }
  .bp-packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .bp-steps-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bp-why-grid   { grid-template-columns: 1fr; }
  .bp-steps-grid { grid-template-columns: 1fr; }
}

/* ─── Partner Page ─── */
.pw-opportunities { padding: 60px max(4vw, 20px); }
.pw-opp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}
.pw-opp-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px;
  border: 2px solid #ece8f5;
}
.pw-opp-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
}
.pwo-pink   { background: var(--pink); }
.pwo-purple { background: var(--purple); }
.pwo-gold   { background: var(--gold); }
.pwo-aqua   { background: var(--aqua); }
.pwo-green  { background: var(--green); }
.pw-opp-body h3 { font-size: 19px; margin: 0 0 8px; }
.pw-opp-body p  { font-size: 14px; color: #555; margin: 0; line-height: 1.7; }

.pw-form-section { padding: 60px max(4vw, 20px); }
.pw-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px 40px;
  max-width: 860px;
  margin: 0 auto;
  border: 2px solid #ece8f5;
}
.pw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pw-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.pw-form-field label { font: 500 14px Fredoka; color: var(--ink); }
.pw-form-field input,
.pw-form-field select,
.pw-form-field textarea {
  padding: 12px 16px;
  border: 2px solid #e0d9f5;
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
  background: #faf8ff;
  outline: none;
  transition: border-color .2s;
}
.pw-form-field input:focus,
.pw-form-field select:focus,
.pw-form-field textarea:focus { border-color: var(--purple); background: #fff; }
.pw-form-field textarea { resize: vertical; min-height: 120px; }
.pw-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; border: none; cursor: pointer; }
.success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fff4;
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 15px;
  color: #2e7d32;
}
.success .fa-circle-check { font-size: 20px; color: var(--green); }
.pw-form-note {
  text-align: center;
  margin: 20px 0 0;
  font-size: 14px;
  color: #666;
}
.pw-form-note a { color: var(--purple); font-weight: 500; }

@media (max-width: 700px) {
  .pw-opp-item { flex-direction: column; }
  .pw-form      { padding: 28px 20px; }
  .pw-form-row  { grid-template-columns: 1fr; }
}

/* ─── Contact Page ─── */
.contact-cards { padding: 60px max(4vw, 20px) 40px; }
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-card {
  border-radius: 20px;
  padding: 28px 22px;
  border: 2px solid transparent;
  transition: transform .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.cc-green  { background: #f0fff4; border-color: #c8f5d8; }
.cc-purple { background: #f5f2ff; border-color: #ddd5f5; }
.cc-pink   { background: #fff0f5; border-color: #f5d5e2; }
.cc-gold   { background: #fffbee; border-color: #ffe8a0; }
.cc-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,.07);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--ink);
}
.contact-card h3 { font-size: 18px; margin: 0 0 6px; }
.contact-card p  { font-size: 14px; color: #444; margin: 0 0 8px; line-height: 1.55; }
.cc-note { font-size: 12px; color: #888; }

.contact-main {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px max(4vw, 20px) 60px;
  align-items: start;
}
.contact-form-wrap .eyebrow { display: block; margin-bottom: 10px; }
.contact-form-wrap h2 { font-size: 32px; margin: 0 0 24px; }
.contact-form-wrap h2 i { color: var(--pink); font-style: normal; }

.contact-hours {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #ece8f5;
  padding: 28px 24px;
  margin-bottom: 24px;
}
.contact-hours .eyebrow { display: block; margin-bottom: 10px; }
.contact-hours h2 { font-size: 22px; margin: 0 0 20px; }
.contact-hours h2 i { color: var(--pink); font-style: normal; }
.hours-table { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid #f0ecf8;
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--ink); }

.contact-social-wrap {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #ece8f5;
  padding: 24px 24px;
}
.contact-social-wrap .eyebrow { display: block; margin-bottom: 8px; }
.contact-social-wrap h3 { font-size: 20px; margin: 0 0 18px; }
.contact-social-wrap h3 i { color: var(--pink); font-style: normal; }
.contact-social-links { display: flex; flex-direction: column; gap: 10px; }
.csl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 12px;
  font: 500 15px Fredoka;
  color: #fff;
  transition: opacity .2s, transform .2s;
}
.csl-item:hover { opacity: .88; transform: translateX(3px); }
.csl-fb { background: #1877f2; }
.csl-ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.csl-tt { background: #000; }
.csl-item i { font-size: 18px; }

.contact-map { padding: 0 max(4vw, 20px) 80px; }
.contact-map .section-head { margin-bottom: 28px; }
.map-embed {
  border-radius: 20px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  border: 3px solid #ece8f5;
}
.map-embed iframe { display: block; }

@media (max-width: 1000px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main       { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
}
