/* =====================================================================
   TEMPLE WAVES · 2026 Redesign
   Design system — palette sampled from e-brouchre.pdf,
   playful "built by children" theme (Kiddino / Toddly inspired).
   Author: UX/UI redesign build
   ===================================================================== */

/* ------------------------------------------------------------------ */
/*  1. DESIGN TOKENS                                                    */
/* ------------------------------------------------------------------ */
:root {
  /* Brand palette — sampled directly from the brochure */
  --purple-900: #35105c;
  --purple-800: #481878;   /* primary deep royal purple */
  --purple-700: #601a86;
  --purple-600: #781890;
  --magenta:    #a5138a;
  --pink-600:   #c00078;   /* hot magenta-pink */
  --pink-500:   #e5007d;
  --pink-400:   #ff43a4;

  /* Playful kids accents */
  --yellow:     #ffc72c;
  --yellow-soft:#ffe082;
  --orange:     #ff7a2f;
  --red:        #ea4b2a;
  --teal:       #1fc7c7;
  --green:      #57c84d;
  --sky:        #35b6f6;

  /* Neutrals */
  --ink:        #2a123f;
  --ink-soft:   #5b4a6b;
  --cream:      #fff6fb;
  --cream-2:    #f6ecff;
  --white:      #ffffff;

  /* Gradients */
  --grad-brand: linear-gradient(120deg, var(--purple-800) 0%, var(--pink-500) 100%);
  --grad-hero:  radial-gradient(120% 120% at 15% 10%, #6a1f9c 0%, #481878 45%, #35105c 100%);
  --grad-sun:   linear-gradient(120deg, var(--yellow) 0%, var(--orange) 100%);
  --grad-candy: linear-gradient(120deg, var(--pink-500) 0%, var(--purple-600) 100%);

  /* Typography */
  --font-head: 'Fredoka', 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Structure */
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 24px rgba(72, 24, 120, .10);
  --shadow-md: 0 18px 48px rgba(72, 24, 120, .16);
  --shadow-lg: 0 30px 80px rgba(72, 24, 120, .28);
  --ring: 0 0 0 6px rgba(229, 0, 125, .16);
  --container: 1200px;
  --nav-h: 84px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ------------------------------------------------------------------ */
/*  2. RESET & BASE                                                     */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; color: var(--purple-800); font-weight: 600; }

::selection { background: var(--pink-500); color: #fff; }

/* Scrollbar flourish */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--grad-candy); border-radius: 999px; border: 3px solid var(--cream-2); }

/* ------------------------------------------------------------------ */
/*  3. LAYOUT HELPERS                                                   */
/* ------------------------------------------------------------------ */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.section--soft { background: var(--cream-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; font-size: .82rem;
  color: var(--pink-500);
  background: #fff;
  padding: 9px 18px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--grad-sun); }

.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -.01em; }
.section-title .pink { color: var(--pink-500); }
.section-title .wiggle { color: var(--orange); }
.section-lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 62ch; }

.head-center { text-align: center; display: grid; gap: 18px; justify-items: center; margin-bottom: 56px; }

/* Squiggle underline */
.squiggle { display: block; width: 130px; height: 14px; margin: 6px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='14' viewBox='0 0 130 14'%3E%3Cpath d='M2 8c10-8 20 4 30 0s20-8 30-4 20 8 30 4 20-8 34-6' fill='none' stroke='%23ffc72c' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/contain; }

/* ------------------------------------------------------------------ */
/*  4. BUTTONS                                                          */
/* ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--grad-candy);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  color: #fff; padding: 15px 30px; border-radius: var(--radius-pill);
  background: var(--btn-bg);
  box-shadow: 0 12px 26px rgba(229, 0, 125, .34);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s;
  position: relative; isolation: isolate; white-space: nowrap;
}
.btn:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 20px 40px rgba(229, 0, 125, .44); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn--sun   { --btn-bg: var(--grad-sun); color: #4a2600; box-shadow: 0 12px 26px rgba(255, 122, 47, .38); }
.btn--teal  { --btn-bg: linear-gradient(120deg, var(--teal), var(--sky)); box-shadow: 0 12px 26px rgba(31, 199, 199, .38); }
.btn--ghost { background: #fff; color: var(--purple-800); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { color: var(--pink-500); }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }
.btn i { font-size: 1.05em; }

/* ------------------------------------------------------------------ */
/*  5. TOP UTILITY BAR                                                  */
/* ------------------------------------------------------------------ */
.topbar {
  background: #e8063c;
  color: #fff;
  font-size: .92rem; font-weight: 500;
  position: relative; z-index: 50;
  padding: 0;
}
.topbar .container { display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; min-height: 48px; }
.topbar a { transition: color .2s; color: #fff; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 28px; padding: 12px 0; }
.topbar__left a, .topbar__right span, .topbar__right a { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.topbar__left a:hover, .topbar__right a:hover { color: var(--yellow); }
.topbar i { color: #fff; opacity: .95; }

/* ------------------------------------------------------------------ */
/*  6. STICKY GLASS NAV                                                 */
/* ------------------------------------------------------------------ */
/* Kiddino index-7 menu-area: purple rounded pill + white logo tab */
.nav {
  position: sticky; top: 0; z-index: 55;
  background: transparent;
  margin-top: 0;
  margin-bottom: -34px;                /* pill dips over the hero */
  transition: margin .35s var(--ease);
}
.nav .container {
  height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #490d59;
  border-radius: 9999px;
  padding: 0 14px 0 0;
  position: relative;
  transition: box-shadow .35s, background .35s;
}
.nav.is-stuck { margin-top: 10px; }
.nav.is-stuck .container { box-shadow: 0 12px 30px rgba(35, 8, 48, .44); }
header#nav::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 44px;
  background-color: #e8063c;
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
}

.nav__brand-wrapper {
  align-self: stretch;
  display: flex; align-items: center;
  background: #fff;
  border-radius: 0 9999px 9999px 0;
  padding: 0 48px 0 14px;
  position: relative;
}
.nav__brand-wrapper::before {
  position: absolute;
  content: "";
  height: 78px;
  background-color: #fff;
  left: -500px;
  top: 0;
  bottom: 0;
  border-radius: 0 9999px 9999px 0;
  width: 1000px;
  z-index: -1;
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 54px; width: auto; }
.nav__brand .mark { display: none; }

.nav__links { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: 1.02rem;
  color: #fff; padding: 8px 15px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: color .25s;
}
.nav__links a i { font-size: .78em; opacity: .8; }
.nav__links a:hover, .nav__links a.active { color: #ffd600; }
.nav__links a.nav__mobile-cta { display: none; }

.nav__cta { display: flex; align-items: center; gap: 22px; }
.nav__icon-btn {
  color: #fff; font-size: 1.15rem; display: flex; align-items: center; justify-content: center;
  transition: .2s;
}
.nav__icon-btn:hover { color: #ffd600; }
.nav__cta .btn--register {
  background: #fff; color: #e8063c;
  padding: 15px 34px;
  border-radius: 9999px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  box-shadow: none;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
/* gradient circle that ripples out from the centre to fill the pill */
.nav__cta .btn--register::before {
  content: ""; position: absolute; z-index: -1; inset: 0; margin: auto;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(120deg, #e5007d 0%, #490d59 100%);
  transform: scale(0);
  transition: transform .5s var(--ease);                     /* hover-out (kept — feels good) */
}
.nav__cta .btn--register:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(73, 13, 89, .40);
  transition: color .45s ease, transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__cta .btn--register:hover::before {
  transform: scale(12);                                      /* just covers the pill */
  transition: transform .55s cubic-bezier(.35, 0, .25, 1);   /* smooth, even hover-in */
}
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); place-items: center; }
.nav__toggle span { display: block; width: 20px; height: 2.5px; background: var(--purple-800); border-radius: 2px; position: relative; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2.5px; background: var(--purple-800); border-radius: 2px; transition: .3s; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ------------------------------------------------------------------ */
/*  7. HERO                                                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--grad-hero);
  padding: clamp(60px, 9vw, 120px) 0 clamp(120px, 14vw, 190px);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; position: relative; z-index: 3; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 18px; border-radius: 999px; font-family: var(--font-head); font-weight: 500; font-size: .9rem;
  backdrop-filter: blur(6px);
}
.hero__badge b { color: var(--yellow); }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -.02em;
}
.hero h1 .glow { color: var(--yellow); position: relative; }
.hero h1 .out { -webkit-text-stroke: 2px var(--pink-400); color: transparent; }
.hero__lead { margin: 24px 0 34px; font-size: 1.15rem; color: #f0e2ff; max-width: 54ch; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__cta .lbl-sm { display: none; }
@media (max-width: 680px) {
  .hero__cta { flex-wrap: nowrap; gap: 12px; }
  .hero__cta .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding: 15px 14px; font-size: 1rem; gap: 9px; }
  .hero__cta .lbl-lg { display: none; }
  .hero__cta .lbl-sm { display: inline; }
}

/* Hero collage / framed image */
.hero__art { position: relative; }
.hero__blob {
  position: relative; z-index: 2;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  overflow: hidden; box-shadow: var(--shadow-lg); border: 8px solid rgba(255,255,255,.6);
  aspect-ratio: 1 / 1;
  animation: morph 12s ease-in-out infinite;
}
.hero__blob img { width: 100%; height: 100%; object-fit: cover; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.06); transition: opacity 1.1s var(--ease), transform 6s ease; }
.hero__slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero__slcaption { position: absolute; left: 50%; bottom: 42px; transform: translateX(-50%); z-index: 5; display: inline-flex; align-items: center; gap: 8px; background: rgba(53,16,92,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: #fff; font-family: var(--font-head); font-weight: 500; font-size: .9rem; padding: 7px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); white-space: nowrap; box-shadow: 0 6px 18px rgba(0,0,0,.28); transition: opacity .35s var(--ease); }
.hero__slcaption { cursor: pointer; }
.hero__slcaption > i:first-child { color: var(--yellow); font-size: .95em; }
.hero__slcaption:hover { background: rgba(229,0,125,.72); transform: translateX(-50%) translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.34); }
.hero__slcaption .zoomhint { color: #fff; opacity: .75; font-size: .82em; margin-left: 2px; transition: opacity .25s; }
.hero__slcaption:hover .zoomhint { opacity: 1; }
.hero__sldots { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.hero__sldots button { width: 10px; height: 10px; padding: 0; border-radius: 999px; background: rgba(255,255,255,.55); box-shadow: 0 1px 4px rgba(0,0,0,.25); transition: width .35s var(--ease), background .3s; }
.hero__sldots button:hover { background: rgba(255,255,255,.85); }
.hero__sldots button.active { width: 26px; background: #fff; }
@keyframes morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50%     { border-radius: 58% 42% 44% 56% / 44% 58% 42% 56%; }
}


/* floating decorative blobs */
.blob-deco { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; z-index: 1; pointer-events: none; }
.blob-deco--a { width: 320px; height: 320px; background: radial-gradient(circle at 30% 30%, var(--pink-500), transparent 70%); top: -80px; right: -60px; }
.blob-deco--b { width: 260px; height: 260px; background: radial-gradient(circle at 30% 30%, var(--teal), transparent 70%); bottom: -60px; left: 8%; opacity: .35; }
.hero__dots { position: absolute; inset: 0; z-index: 1; opacity: .35;
  background-image: radial-gradient(rgba(255,255,255,.5) 1.5px, transparent 1.6px); background-size: 30px 30px; }

/* Wave divider */
.wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; line-height: 0; }
.wave svg { width: 100%; height: auto; display: block; }

/* ------------------------------------------------------------------ */
/*  8. STAT STRIP                                                       */
/* ------------------------------------------------------------------ */
.stats { margin-top: -56px; position: relative; z-index: 6; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.statb {
  position: relative; aspect-ratio: 1 / .95;
  display: grid; place-content: center; justify-items: center; gap: 2px;
  text-align: center; color: #fff; padding: 22px;
  background: var(--accent-grad);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  box-shadow: 0 22px 42px var(--accent-shadow);
  rotate: var(--rot, 0deg);
  opacity: 0; scale: 0;                                 /* hidden until it pops in on scroll */
  transition: transform .4s var(--ease), rotate .4s var(--ease), box-shadow .4s;
}
.stats__grid.reveal { opacity: 1; transform: none; }   /* grid is just the scroll trigger */
.stats__grid.reveal.in .statb {
  animation: blobMorph 8s ease-in-out infinite, statFloat 4.8s ease-in-out infinite,
             blobPop .8s cubic-bezier(.34, 1.56, .64, 1) both;
  animation-delay: 0s, 0s, calc(.1s + var(--i) * .13s);
}
.statb:nth-child(even) { margin-top: 42px; }         /* playful zig-zag */
.statb:hover { transform: scale(1.07); rotate: 0deg; box-shadow: 0 32px 60px var(--accent-shadow); }
.statb i { font-size: 1.55rem; opacity: .9; margin-bottom: 6px; }
.statb b {
  font-family: var(--font-head); font-weight: 700; line-height: 1;
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  display: flex; align-items: baseline; gap: 5px;
}
.statb b em { font-size: .38em; font-style: normal; font-weight: 600; opacity: .9; }
.statb > span {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  line-height: 1.2; opacity: .96; margin-top: 6px; max-width: 15ch;
}

@keyframes statFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -13px; } }
@keyframes blobMorph {
  0%, 100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50%      { border-radius: 60% 40% 43% 57% / 43% 60% 40% 57%; }
}
@keyframes blobPop {
  0%   { opacity: 0; scale: 0; }
  55%  { opacity: 1; scale: 1.14; }   /* overshoot */
  75%  { scale: .95; }                 /* settle back */
  100% { opacity: 1; scale: 1; }
}

/* floating star + dot accents */
.stats__accents { position: absolute; inset: -40px 0 0; pointer-events: none; z-index: 4; }
.stat-star { position: absolute; color: var(--c, var(--yellow)); font-size: var(--sz, 16px); line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(72, 24, 120, .22)); animation: twinkle var(--dur, 3.5s) ease-in-out infinite; }
.stat-dot { position: absolute; width: var(--sz, 12px); height: var(--sz, 12px); border-radius: 50%;
  background: var(--c, var(--pink-400)); box-shadow: 0 3px 8px rgba(72, 24, 120, .22); animation: driftY var(--dur, 5s) ease-in-out infinite; }
.stat-star.s-a { top: 6%;  left: 3%;    --c: var(--yellow);  --sz: 24px; --dur: 4s;   }
.stat-star.s-b { top: 40%; left: 35.5%; --c: var(--pink-400);--sz: 15px; --dur: 3.2s; animation-delay: .6s; }
.stat-star.s-c { top: 2%;  left: 57%;   --c: var(--teal);    --sz: 19px; --dur: 3.8s; animation-delay: 1.1s; }
.stat-star.s-d { bottom: 6%; right: 4%; --c: var(--yellow);  --sz: 21px; --dur: 4.4s; animation-delay: .3s; }
.stat-dot.d-a { top: 14%; left: 25%;   --c: var(--teal);     --sz: 13px; --dur: 5s;   }
.stat-dot.d-b { bottom: 8%; left: 15%;  --c: var(--orange);  --sz: 16px; --dur: 6s;   animation-delay: .8s; }
.stat-dot.d-c { top: 4%;  left: 44%;    --c: var(--pink-500);--sz: 11px; --dur: 4.5s; animation-delay: 1.4s; }
.stat-dot.d-d { top: 30%; left: 73.5%;  --c: var(--green);   --sz: 14px; --dur: 5.5s; animation-delay: .5s; }
.stat-dot.d-e { top: 16%; right: 6%;    --c: var(--pink-400);--sz: 12px; --dur: 4.8s; animation-delay: 1s; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: .55; }
  50%      { transform: scale(1.35) rotate(18deg); opacity: 1; }
}
@keyframes driftY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

@media (prefers-reduced-motion: reduce) {
  .statb { opacity: 1; scale: 1; animation: none; }
  .stat-star, .stat-dot { animation: none; }
}

.stat--pink   { --accent-grad: var(--grad-candy);                                  --accent-shadow: rgba(229, 0, 125, .34); }
.stat--orange { --accent-grad: var(--grad-sun);                                    --accent-shadow: rgba(255, 122, 47, .36); color: #5a2e00; }
.stat--teal   { --accent-grad: linear-gradient(120deg, var(--teal), var(--sky));   --accent-shadow: rgba(31, 199, 199, .34); }
.stat--green  { --accent-grad: linear-gradient(120deg, var(--green), var(--teal)); --accent-shadow: rgba(87, 200, 77, .34); }

/* ------------------------------------------------------------------ */
/*  9. WELCOME / INTRO                                                  */
/* ------------------------------------------------------------------ */
.welcome__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: stretch; }
.welcome__media { position: relative; }
.welcome__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.welcome__media .tag {
  position: absolute; bottom: 22px; left: -18px; background: var(--grad-sun); color: #4a2600;
  padding: 16px 22px; border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  font-family: var(--font-head); font-weight: 600; line-height: 1.1;
}
.welcome__media .tag b { font-size: 1.8rem; display: block; }
.welcome p { margin-top: 18px; color: var(--ink-soft); }
.welcome .sign { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.welcome .sign img { height: 54px; width: auto; }

/* left-side photo collage */
.welcome__collage {
  position: relative;
  width: 100%;
  z-index: 1;
}
.wc-img { position: absolute; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.wc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.wc-img:hover img { transform: scale(1.08); }

.wc-img-1 { top: 0; right: 0; width: 75%; height: 100%; z-index: 3; }
.wc-img-2 { bottom: 0; left: 0; width: 54%; height: 32%; z-index: 4; }
.wc-img-3 { bottom: 0; right: 0; width: 42%; height: 32%; z-index: 3; }

.wc-deco-box {
  position: absolute; bottom: 16px; left: 10%; width: 30%; aspect-ratio: 1;
  background: var(--purple-800); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); z-index: 4; overflow: hidden;
}
.wc-deco-box i {
  position: absolute; color: #fff; opacity: 0.15; pointer-events: none;
}

.wc-deco-dots {
  position: absolute; top: 18%; left: 8%; width: 34%; aspect-ratio: 1;
  background-image: radial-gradient(var(--ink-soft) 2px, transparent 2px);
  background-size: 16px 16px; opacity: 0.15;
  border-radius: 50% 50% 10px 10px; z-index: 1;
}

.wc-deco-stripes {
  position: absolute; top: -10%; left: 120px; width: 25%; aspect-ratio: 1;
  background-image: repeating-linear-gradient(45deg, var(--ink) 0, var(--ink) 2px, transparent 2px, transparent 8px);
  opacity: 0.1; z-index: 1; border-radius: 12px;
}

/* welcome feature checklist */
.welcome__points { display: grid; gap: 11px; margin: 22px 0 26px; }
.welcome__points li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink); font-weight: 700; }
.welcome__points i { color: var(--green); font-size: 1.15rem; margin-top: 2px; flex: 0 0 auto; }

/* awards inside the welcome section */
.welcome__awards { display: grid; gap: 12px; margin-top: 28px; max-width: 460px; }
.wa-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600;
  color: var(--pink-500); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.wa-label i { color: var(--orange); }
.wa-item { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: var(--radius-md);
  padding: 10px 14px; box-shadow: var(--shadow-sm); cursor: pointer; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s; }
.wa-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.wa-ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  color: #4a2600; font-size: 1.3rem; background: var(--grad-sun); box-shadow: 0 8px 16px rgba(255,122,47,.28); }
.wa-txt b { display: block; font-family: var(--font-head); color: var(--purple-800); font-size: .98rem; line-height: 1.22; }
.wa-txt small { color: var(--pink-500); font-weight: 700; font-size: .8rem; }
.wa-view { margin-left: auto; color: var(--ink-soft); opacity: .5; transition: .2s; flex: 0 0 auto; }
.wa-item:hover .wa-view { opacity: 1; color: var(--pink-500); }



/* ------------------------------------------------------------------ */
/*  10. HIGHLIGHT CARDS (asymmetric)                                    */
/* ------------------------------------------------------------------ */
.highlights { background: var(--cream-2); }
.hl-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.hl-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
  border: 2px solid transparent;
}
.hl-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(229,0,125,.16); }
.hl-card .ic { width: 62px; height: 62px; border-radius: 20px; display: grid; place-items: center; color: #fff; font-size: 1.5rem; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.hl-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.hl-card p { color: var(--ink-soft); font-size: .98rem; }
.hl-card::after { content: ""; position: absolute; right: -30px; bottom: -30px; width: 110px; height: 110px; border-radius: 50%; background: currentColor; opacity: .06; }
/* spans */
.col-6 { grid-column: span 6; } .col-4 { grid-column: span 4; } .col-8 { grid-column: span 8; } .col-3 { grid-column: span 3; } .col-12 { grid-column: span 12; }
.hl-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; align-items: center; color: #fff;
  background: var(--grad-brand); }
.hl-feature h3 { color: #fff; font-size: 1.9rem; }
.hl-feature p { color: #f0e2ff; }
.hl-feature img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.tint-pink { color: var(--pink-500); } .ic-pink { background: var(--grad-candy); }
.tint-orange { color: var(--orange); } .ic-orange { background: var(--grad-sun); }
.tint-teal { color: var(--teal); } .ic-teal { background: linear-gradient(120deg, var(--teal), var(--sky)); }
.tint-green { color: var(--green); } .ic-green { background: linear-gradient(120deg, var(--green), var(--teal)); }
.tint-purple { color: var(--purple-600); } .ic-purple { background: linear-gradient(120deg, var(--purple-700), var(--magenta)); }

/* ------------------------------------------------------------------ */
/*  11. AMENITIES (tabbed showcase)                                     */
/* ------------------------------------------------------------------ */
.amn__tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 46px; }
.amn__tab {
  font-family: var(--font-head); font-weight: 500; font-size: 1rem; color: var(--purple-800);
  background: #fff; padding: 12px 24px; border-radius: 999px; box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: 10px; transition: .3s var(--ease); border: 2px solid transparent;
}
.amn__tab i { font-size: 1.05em; }
.amn__tab:hover { transform: translateY(-3px); }
.amn__tab.active { color: #fff; background: var(--grad-candy); box-shadow: 0 12px 26px rgba(229,0,125,.32); }

.amn__panel { display: none; }
.amn__panel.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.amn__lead { text-align: center; max-width: 66ch; margin: 0 auto 36px; color: var(--ink-soft); }
.amn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
.amn-item {
  background: #fff; border-radius: var(--radius-md); padding: 22px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s;
  display: grid; gap: 8px; justify-items: center;
}
.amn-item:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-md); }
.amn-item .ic { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.35rem; }
.amn-item b { font-family: var(--font-head); font-weight: 600; color: var(--purple-800); font-size: 1.02rem; }
.amn-item small { color: var(--ink-soft); font-size: .82rem; }

/* ------------------------------------------------------------------ */
/*  12. VIDEO WALKTHROUGH                                               */
/* ------------------------------------------------------------------ */
.video { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; }
.video .container { position: relative; z-index: 2; }
.video__frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 16/8; border: 8px solid rgba(255,255,255,.14);
}
.video__frame img { width: 100%; height: 100%; object-fit: cover; }
.video__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(53,16,92,.55), rgba(229,0,125,.35)); }
.video__play {
  position: absolute; inset: 0; margin: auto; z-index: 3; width: 108px; height: 108px; border-radius: 50%;
  background: #fff; color: var(--pink-500); display: grid; place-items: center; font-size: 2rem;
  box-shadow: 0 18px 50px rgba(0,0,0,.35); transition: transform .3s;
}
.video__play::before { content: ""; position: absolute; inset: -14px; border-radius: 50%; border: 3px solid rgba(255,255,255,.6); animation: pulse 2.2s infinite; }
.video__play:hover { transform: scale(1.08); }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
.video__head { text-align: center; margin-bottom: 40px; }
.video__head h2 { color: #fff; }
.video__head .eyebrow { color: var(--purple-800); }

/* ------------------------------------------------------------------ */
/*  13. GALLERY (masonry-ish)                                           */
/* ------------------------------------------------------------------ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.g-item { position: relative; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item:hover img { transform: scale(1.08); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(53,16,92,.72), transparent 55%); opacity: .6; transition: opacity .3s; }
.g-item:hover::after { opacity: .9; }
.g-item .cap { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 600; transform: translateY(6px); transition: transform .3s; }
.g-item:hover .cap { transform: none; }
.g-item .zoom { position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--pink-500); display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: .3s; }
.g-item:hover .zoom { opacity: 1; transform: none; }
.g-item.tall { grid-row: span 2; } .g-item.wide { grid-column: span 2; }

/* ------------------------------------------------------------------ */
/*  14. FLOOR PLANS                                                     */
/* ------------------------------------------------------------------ */
.plans { background: var(--cream-2); }
.site-plan-banner { display: flex; gap: 40px; align-items: center; background: #fff; padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.site-plan-banner__img { width: 45%; position: relative; cursor: pointer; }
.site-plan-banner__img img { width: 100%; border-radius: var(--radius-md); display: block; object-fit: cover; aspect-ratio: 4/3; }
.site-plan-banner__img .zoom { position: absolute; bottom: 16px; right: 16px; background: var(--grad-sun); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; opacity: 0; transform: translateY(10px); transition: .3s; }
.site-plan-banner__img:hover .zoom { opacity: 1; transform: none; box-shadow: 0 4px 12px rgba(229,0,125,.35); }
.site-plan-banner__content { width: 55%; padding-right: 20px; }
@media (max-width: 768px) {
  .site-plan-banner { flex-direction: column; padding: 16px; gap: 20px; }
  .site-plan-banner__img, .site-plan-banner__content { width: 100%; padding: 0; text-align: center; }
  .site-plan-banner__img .zoom { opacity: 1; transform: none; }
}
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.plan-card { background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); text-align: center; transition: .35s var(--ease); border-top: 6px solid var(--pink-500); }
.plan-card:nth-child(2) { border-top-color: var(--orange); }
.plan-card:nth-child(3) { border-top-color: var(--teal); }
.plan-card:nth-child(4) { border-top-color: var(--green); }
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.plan-card .type { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: var(--purple-800); }
.plan-card .area { color: var(--pink-500); font-weight: 800; margin: 6px 0 14px; }
.plan-card ul { display: grid; gap: 8px; text-align: left; margin: 16px 0; color: var(--ink-soft); font-size: .94rem; }
.plan-card ul li { display: flex; gap: 8px; align-items: flex-start; }
.plan-card ul li i { color: var(--green); margin-top: 4px; }
.plan-card__thumb { position: relative; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 18px; aspect-ratio: 4/3; background: #fff; box-shadow: inset 0 0 0 1px rgba(120,24,144,.08); }
.plan-card__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .5s var(--ease); }
.plan-card:hover .plan-card__thumb img { transform: scale(1.05); }
.plan-card__badge { position: absolute; top: 12px; right: 12px; background: var(--grad-candy); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .76rem; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.plan-card .btn { width: 100%; justify-content: center; }

/* Floor-plan viewer modal */
.planlb__box { position: relative; width: min(1040px, 100%); background: #fff; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); max-height: 92vh; overflow: auto; }
.planlb__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; padding-right: 40px; }
.planlb__head h3 { color: var(--purple-800); font-size: 1.4rem; }
.planlb__label { color: var(--pink-500); font-weight: 700; font-family: var(--font-head); }
.planlb__stage { position: relative; background: var(--cream-2); border-radius: var(--radius-md); display: grid; place-items: center; padding: 18px; min-height: 300px; }
.planlb__stage img { max-height: 58vh; width: auto; max-width: 100%; border-radius: 8px; background: #fff; }
.planlb__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--purple-800); box-shadow: var(--shadow-md); display: grid; place-items: center; font-size: 1.05rem; z-index: 2; transition: .2s; }
.planlb__arrow:hover { background: var(--grad-candy); color: #fff; transform: translateY(-50%) scale(1.08); }
.planlb__arrow.prev { left: 14px; } .planlb__arrow.next { right: 14px; }
.planlb__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.planlb__count { color: var(--ink-soft); font-weight: 700; font-size: .92rem; }
.planlb__thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 16px 2px 4px; scroll-behavior: smooth; }
.planlb__thumbs img { height: 66px; width: auto; border-radius: 8px; cursor: pointer; border: 3px solid transparent; opacity: .55; transition: .2s; flex: 0 0 auto; background: #fff; box-shadow: var(--shadow-sm); }
.planlb__thumbs img:hover { opacity: 1; transform: translateY(-2px); }
.planlb__thumbs img.active { opacity: 1; border-color: var(--pink-500); }
@media (max-width: 680px) {
  .planlb__box { padding: 18px; }
  .planlb__stage img { max-height: 46vh; }
  .planlb__arrow { width: 40px; height: 40px; }
}

/* ------------------------------------------------------------------ */
/*  15. AWARDS                                                          */
/* ------------------------------------------------------------------ */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.award { background: #fff; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start; transition: .3s; }
.award:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.award .ic { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; background: var(--grad-sun); color: #4a2600; display: grid; place-items: center; font-size: 1.4rem; }
.award b { font-family: var(--font-head); color: var(--purple-800); display: block; }
.award small { color: var(--ink-soft); }

/* ------------------------------------------------------------------ */
/*  16. TESTIMONIALS                                                    */
/* ------------------------------------------------------------------ */
.testi { background: #fff6fb; color: var(--ink); overflow: hidden; padding-top: 40px; }
.testi .head-center h2, .testi .head-center { color: var(--ink); }
.testi .section-title { color: var(--ink); }
.testi-masonry { column-count: 3; column-gap: 24px; }
@media (max-width: 991px) { .testi-masonry { column-count: 2; } }
@media (max-width: 575px) { .testi-masonry { column-count: 1; } }
.testi__card { break-inside: avoid; margin-bottom: 24px; display: inline-block; width: 100%; background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); position: relative; }
.testi__card .q { font-size: 2.4rem; color: var(--pink-400); font-family: var(--font-head); line-height: 1; }
.testi__card p { color: var(--ink-soft); margin: 6px 0 20px; font-size: .98rem; }
.testi__who { border-top: 1px solid #f0f0f0; padding-top: 16px; margin-top: 16px; }
.testi__who b { font-family: var(--font-head); color: var(--purple-800); display: block; }
.testi__who small { color: var(--pink-500); font-weight: 700; }
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.vid-card { background: #fff; padding: 12px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: flex; }
.vid-card iframe { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-sm); border: none; height: auto; }
@media (max-width: 991px) { .vid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .vid-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ */
/*  17. HANDOVER & LOCATION                                             */
/* ------------------------------------------------------------------ */
/* (Removed duplicate handover block) */

.lb__nav { position: fixed; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; font-size: 1.6rem; display: grid; place-items: center; transition: 0.3s; border: 1px solid rgba(255,255,255,0.25); z-index: 10; cursor: pointer; }
.lb__nav:hover { background: #fff; color: var(--pink-500); }
.lb__nav--prev { left: 16px; }
.lb__nav--next { right: 16px; }

.loc__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: center; }
.loc__map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.loc__map .zoom { position: absolute; inset: 0; margin: auto; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--pink-500); display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: .3s; pointer-events: none; }
.loc__map:hover .zoom { opacity: 1; transform: none; }
.loc__map img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.loc__pins { display: grid; gap: 14px; }
.loc-pin { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: var(--radius-md); padding: 16px 20px; box-shadow: var(--shadow-sm); transition: .3s; }
.loc-pin:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.loc-pin .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; font-size: 1.2rem; background: var(--grad-candy); }
.loc-pin:nth-child(2) .ic { background: var(--grad-sun); }
.loc-pin:nth-child(3) .ic { background: linear-gradient(120deg, var(--teal), var(--sky)); }
.loc-pin:nth-child(4) .ic { background: linear-gradient(120deg, var(--green), var(--teal)); }
.loc-pin b { font-family: var(--font-head); color: var(--purple-800); }
.loc-pin small { display: block; color: var(--ink-soft); }

/* ------------------------------------------------------------------ */
/*  18. ENQUIRY / CTA                                                   */
/* ------------------------------------------------------------------ */
.enquiry { position: relative; }
.enquiry__card {
  background: var(--grad-brand); border-radius: var(--radius-xl); padding: clamp(30px, 5vw, 64px);
  color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
}
.enquiry__card::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,199,44,.35), transparent 70%); top: -120px; right: -80px; }
.enquiry__intro h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.enquiry__intro p { color: #f0e2ff; margin-top: 14px; }
.enquiry__intro .call { margin-top: 24px; display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-head); font-size: 1.4rem; }
.enquiry__intro .call .ic { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.form { position: relative; z-index: 2; display: grid; gap: 14px; background: rgba(255,255,255,.08); padding: 26px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 18px; border-radius: 14px; border: 2px solid transparent;
  background: #fff; color: var(--ink); font-family: inherit; font-size: .96rem; transition: .25s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--yellow); box-shadow: var(--ring); }
.form textarea { min-height: 92px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }
.form__note { font-size: .82rem; color: #f0e2ff; text-align: center; }
.form__ok { display: none; background: var(--green); color: #fff; padding: 12px; border-radius: 12px; text-align: center; font-weight: 700; }
.form__ok.show { display: block; }

/* Inline per-field validation */
.field { display: grid; gap: 6px; align-content: start; }
.field__err { display: none; color: #fff; background: var(--red); font-size: .78rem; font-weight: 700; line-height: 1.3; padding: 6px 10px; border-radius: 8px; }
.field__err::before { content: "\f06a"; font-family: FontAwesome; margin-right: 6px; }
.form .field.invalid input,
.form .field.invalid select,
.form .field.invalid textarea { border-color: var(--red); box-shadow: 0 0 0 3px rgba(234,75,42,.2); }
.form .field.invalid .field__err { display: block; }

/* ------------------------------------------------------------------ */
/*  19. FOOTER                                                          */
/* ------------------------------------------------------------------ */
.footer { background: var(--purple-900); color: #d8c4ef; padding: 70px 0 30px; position: relative; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; margin-bottom: 18px; font-size: 1.1rem; }
.footer a { transition: color .2s; } .footer a:hover { color: var(--yellow); }
.footer__brand { background: rgba(18, 5, 24, 0.6); border: 1px solid rgba(255,255,255,0.06); padding: 32px; border-radius: 16px; }
.footer__brand > a > img { height: 60px; margin-bottom: 18px; object-fit: contain; }
.footer__links { display: grid; gap: 10px; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 12px; }
.footer__contact i { color: var(--pink-400); margin-top: 4px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255, 255, 255, 0.05); border-radius: 8px; color: #d8c4ef; font-size: 1.25rem; transition: background .2s, color .2s, transform .2s; }
.footer__social i, .footer__social svg { color: inherit; margin-top: 0; }
.footer__social a:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.footer__social a[aria-label="Instagram"]:hover { color: #e1306c; }
.footer__social a[aria-label="Facebook"]:hover { color: #1877f2; }
.footer__social a[aria-label="X"]:hover { color: #fff; }
.footer__social a[aria-label="YouTube"]:hover { color: #ff0000; }
.footer__certs { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__certs img { height: 48px; border-radius: 6px; background: #fff; padding: 4px; box-shadow: var(--shadow-sm); }
.footer__bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ */
/*  20. FLOATING ACTIONS + LIGHTBOX                                     */
/* ------------------------------------------------------------------ */
.fab { position: fixed; right: 22px; bottom: 24px; z-index: 70; display: grid; gap: 12px; }
.fab a, .fab button { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-md); transition: transform .3s; }
.fab a:hover, .fab button:hover { transform: translateY(-4px) scale(1.06); }
.fab .wa { background: #25d366; }
.fab .call { background: var(--grad-candy); }
.fab .top { background: var(--purple-800); opacity: 0; pointer-events: none; transition: .3s; }
.fab .top.show { opacity: 1; pointer-events: auto; }

.lb { position: fixed; inset: 0; z-index: 100; background: rgba(30,8,50,.9); backdrop-filter: blur(6px); display: none; place-items: center; padding: 24px; }
.lb.open { display: grid; animation: fadeUp .3s ease; }
.lb__inner { position: relative; width: min(1000px, 100%); }
.lb__inner img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); max-height: 82vh; object-fit: contain; }
.lb__video { position: relative; width: min(960px, 100%); aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.lb__video iframe { width: 100%; height: 100%; border: 0; }
.lb__close { position: absolute; top: -18px; right: -10px; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--pink-500); font-size: 1.3rem; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.lb__cap { color: #fff; text-align: center; margin-top: 14px; font-family: var(--font-head); }

/* ------------------------------------------------------------------ */
/*  21. SCROLL REVEAL                                                   */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ------------------------------------------------------------------ */
/*  22. RESPONSIVE                                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__icon-btn { display: none; }
  .nav__icon-btn { display: none; }
  .nav__toggle { display: grid; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: calc(100% + 10px); left: 20px; right: 20px;
    background: #fff; padding: 16px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 10;
  }
  .nav__links.open a { padding: 14px 18px; color: #490d59; justify-content: flex-start; }
  .nav__links.open a:hover, .nav__links.open a.active { color: var(--pink-500); }
  .nav__links.open a.nav__mobile-cta {
    display: inline-flex; justify-content: center;
    background: #e8063c; color: #fff;
    margin-top: 8px; border-radius: 999px;
  }
  .nav__links.open .nav__mobile-cta:hover { color: #fff; background: #c2002f; }
  .nav__cta .btn--register { display: none; }
  .hero__grid, .welcome__grid, .loc__grid, .enquiry__card, .hl-feature, .handover__grid { grid-template-columns: 1fr; }
  .handover__facts { justify-content: center; gap: 24px; }
  .hero__art { width: min(460px, 100%); margin-inline: auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before, .stat:nth-child(1)::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .testi__card { flex-basis: calc((100% - 24px) / 2); }
  .g-item .zoom, .loc__map .zoom, .ho-item .zoom {
    opacity: 1 !important; transform: none !important; 
    top: 12px !important; left: auto !important; right: 12px !important; bottom: auto !important; margin: 0 !important;
    background: rgba(255,255,255,.9) !important; color: var(--pink-500) !important; box-shadow: 0 2px 8px rgba(0,0,0,.15) !important; width: 36px !important; height: 36px !important;
  }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hl-card.col-6, .hl-card.col-4, .hl-card.col-8, .hl-card.col-3 { grid-column: span 6; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .topbar__left > span { display: none; }        /* keep social box, drop long welcome line */
  .topbar .container { flex-direction: row; justify-content: space-between; gap: 8px; min-height: 38px; padding: 0 12px; }
  .topbar__left, .topbar__right { padding: 0; width: auto; justify-content: flex-start; }
  .topbar__left a, .topbar__right a { font-size: .8rem; gap: 4px; letter-spacing: -0.02em; }

  .nav .container { width: 100%; border-radius: 0; padding: 0 20px 0 0; }
  .nav__brand-wrapper { margin-left: 0; border-radius: 0 9999px 9999px 0; padding: 0 26px 0 20px; }
  .nav__brand img { height: 46px; }

  .stats { margin-top: -40px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-item.wide { grid-column: span 2; } .g-item.tall { grid-row: span 1; }
  .plan-grid, .awards-grid, .footer__grid { grid-template-columns: 1fr; }
  .testi__card { flex-basis: 100%; }
  .hl-card.col-6, .hl-card.col-4, .hl-card.col-8, .hl-card.col-3, .hl-card.col-12 { grid-column: span 12; }
  .enquiry__card { padding: 26px; }
  .welcome__collage { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ */
/*  23. INNER-PAGE BANNER + CTA BAND (multi-page)                       */
/* ------------------------------------------------------------------ */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad-hero);
  padding: clamp(80px, 10vw, 130px) 0 clamp(96px, 12vw, 156px);
  text-align: center;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__crumb {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
  font-family: var(--font-head); font-weight: 500; font-size: .92rem; color: #f0e2ff;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22);
  padding: 7px 18px; border-radius: 999px; backdrop-filter: blur(6px);
}
.page-hero__crumb a:hover { color: var(--yellow); }
.page-hero__crumb i { font-size: .7em; opacity: .7; }
.page-hero__crumb .here { color: var(--yellow); }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -.01em; }
.page-hero h1 .glow { color: var(--yellow); }
.page-hero__sub { margin: 20px auto 0; max-width: 60ch; color: #f0e2ff; font-size: 1.12rem; }

/* CTA band shown at the foot of inner pages */
.cta-band { padding: clamp(48px, 7vw, 96px) 0; }
.cta-band__inner {
  background: var(--grad-brand); border-radius: var(--radius-xl); color: #fff;
  padding: clamp(38px, 6vw, 66px); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden; text-align: center;
}
.cta-band__inner::before {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 44, .32), transparent 70%);
  top: -130px; right: -80px; pointer-events: none;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); position: relative; }
.cta-band p { color: #f0e2ff; margin: 14px auto 28px; max-width: 56ch; position: relative; }
.cta-band__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* first section right after a page-hero doesn't need its big top padding */
.page-hero + .section { padding-top: clamp(52px, 7vw, 90px); }

/* Long-form content / SEO article pages */
.article { max-width: 74ch; margin-inline: auto; }
.article h2 { font-family: var(--font-head); color: var(--purple-800); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.25; margin: 38px 0 16px; }
.article h2:first-child { margin-top: 0; }
.article h3 { font-family: var(--font-head); color: var(--pink-600); font-size: 1.3rem; margin: 28px 0 12px; }
.article p { color: var(--ink-soft); line-height: 1.85; margin: 0 0 18px; }
.article ul, .article ol { color: var(--ink-soft); line-height: 1.8; margin: 0 0 20px; padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article a { color: var(--pink-600); font-weight: 700; }
.article a:hover { color: var(--purple-800); }

/* Handover ceremony — compact left/right layout */
.handover__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: center; }
.handover__copy p { margin-top: 18px; color: var(--ink-soft); }
.handover__facts { margin-top: 26px; display: flex; gap: 16px; justify-content: space-between; flex-wrap: nowrap; }
.handover__facts li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--purple-800); }
.handover__facts i { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  color: #fff; background: var(--grad-candy); font-size: 1.05rem; box-shadow: var(--shadow-sm); }
.handover__facts b { display: block; color: var(--pink-500); font-size: 1.2rem; line-height: 1.1; }
.handover__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ho-item { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  cursor: pointer; aspect-ratio: 3 / 2; }
.ho-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ho-item:hover img { transform: scale(1.08); }
.ho-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(53,16,92,.5), transparent 55%); opacity: 0; transition: opacity .3s; }
.ho-item:hover::after { opacity: 1; }
.ho-item .zoom { position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--pink-500); display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: .3s; }
.ho-item:hover .zoom { opacity: 1; transform: none; }
@media (max-width: 900px) { 
  .handover__grid { grid-template-columns: 1fr; } 
}



/* ------------------------------------------------------------------ */
/*  24. STATEMENT · SOCIAL INFRA · PARALLAX CTA                         */
/* ------------------------------------------------------------------ */

/* Bold three-line statement */
.statement { background: var(--cream-2); text-align: center; padding: clamp(56px, 8vw, 104px) 0; }
.statement h2 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.12; letter-spacing: -.01em; }
.statement h2 span { display: block; }
.statement .l1 { color: var(--pink-500); }
.statement .l2 { color: var(--orange); }
.statement .l3 { color: var(--teal); }
.statement p { margin-top: 20px; color: var(--ink-soft); max-width: 60ch; margin-inline: auto; }

/* Social infrastructure columns */
.si-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.si-col { background: #fff; border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s; border-top: 5px solid var(--accent); }
.si-col:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.si-col__head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.si-col__ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; color: #fff;
  font-size: 1.35rem; background: var(--accent-grad); box-shadow: 0 10px 20px var(--accent-shadow); flex: 0 0 auto; }
.si-col h3 { font-size: 1.2rem; color: var(--purple-800); }
.si-col ul { display: grid; gap: 10px; }
.si-col li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: .95rem; line-height: 1.35; }
.si-col li i { color: var(--accent); font-size: .5rem; margin-top: 7px; flex: 0 0 auto; }
/* Location-advantage nearby banner below the columns */
.si-nearby {
  margin-top: 38px; background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
  padding: 22px clamp(20px, 3vw, 40px); position: relative; overflow: hidden;
  display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); flex-wrap: wrap; justify-content: center;
}
.si-nearby::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 7px; background: var(--grad-candy); }
.si-nearby__lead { display: flex; align-items: center; gap: 16px; }
.si-nearby__clock {
  width: 74px; height: 74px; flex: 0 0 auto; border-radius: 50%; background: var(--grad-brand);
  display: grid; place-content: center; justify-items: center; line-height: 1; box-shadow: 0 12px 24px rgba(73, 13, 89, .3);
}
.si-nearby__clock b { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--yellow); }
.si-nearby__clock small { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-top: 2px; }
.si-nearby__leadtxt { font-family: var(--font-head); color: var(--ink-soft); font-size: .98rem; line-height: 1.25; }
.si-nearby__leadtxt b { display: block; color: var(--purple-800); font-size: 1.24rem; }
.si-nearby__div { width: 1px; align-self: stretch; margin: 6px 0; background: var(--cream-2); }
.si-nearby__list { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 40px); flex-wrap: wrap; justify-content: center; }
.si-near { display: flex; align-items: center; gap: 13px; }
.si-near .ic { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; color: #fff; font-size: 1.2rem; box-shadow: var(--shadow-sm); }
.si-near__t b { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; line-height: 1; display: block; }
.si-near__t span { display: block; margin-top: 2px; color: var(--ink-soft); font-weight: 700; font-size: .86rem; }
.si-near.c-orange .si-near__t b { color: var(--orange); }
.si-near.c-pink   .si-near__t b { color: var(--pink-500); }
.si-near.c-teal   .si-near__t b { color: var(--teal); }
@media (max-width: 900px) { .si-nearby__div { display: none; } }

.si-col.c1 { --accent: var(--pink-500); --accent-grad: var(--grad-candy);                          --accent-shadow: rgba(229,0,125,.28); }
.si-col.c2 { --accent: var(--orange);   --accent-grad: var(--grad-sun);                            --accent-shadow: rgba(255,122,47,.28); }
.si-col.c3 { --accent: var(--teal);     --accent-grad: linear-gradient(120deg, var(--teal), var(--sky));    --accent-shadow: rgba(31,199,199,.28); }
.si-col.c4 { --accent: var(--green);    --accent-grad: linear-gradient(120deg, var(--green), var(--teal));  --accent-shadow: rgba(87,200,77,.28); }

/* Parallax CTA band */
.cta-parallax { position: relative; padding: clamp(84px, 12vw, 156px) 0; text-align: center; color: #fff;
  background: #35105c center/cover no-repeat; background-attachment: fixed; }
.cta-parallax::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(53, 16, 92, .86), rgba(229, 0, 125, .6)); }
.cta-parallax .container { position: relative; z-index: 2; }
.cta-parallax .eyebrow { color: var(--pink-500); }
.cta-parallax h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); margin-top: 16px; }
.cta-parallax h2 .glow { color: var(--yellow); }
.cta-parallax p { color: #f0e2ff; max-width: 58ch; margin: 16px auto 30px; font-size: 1.1rem; }
.cta-parallax__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1080px) { .si-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) {
  .si-grid { grid-template-columns: 1fr; }
  .cta-parallax { background-attachment: scroll; }   /* fixed is janky on mobile */
  .marquee__track span { font-size: 1rem; }
}
