/* ==========================================================================
   LITTLE TODDLERS CRECHE — style.css
   Core design system + components + page styles
   Author: Creative build. Vanilla CSS3, no framework.
   --------------------------------------------------------------------------
   TABLE OF CONTENTS
   01. Design tokens
   02. Reset & base
   03. Typography
   04. Layout helpers
   05. Buttons
   06. Particles canvas / decorative blobs
   07. Preloader
   08. Navigation
   09. Floating utilities (WhatsApp, back-to-top, cursor)
   10. Hero
   11. Section headings
   12. Cards (feature, program, mural, teacher, value)
   13. Stats / counters
   14. Timeline
   15. Gallery + lightbox
   16. Forms
   17. Shop / cart
   18. FAQ accordion
   19. Contact + map
   20. Newsletter
   21. Footer
   22. Utility / a11y
   ========================================================================== */

/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand palette — bright, saturated, kid-energy colour */
  --white: #ffffff;
  --sky: #c2e9ff;          /* bright baby blue */
  --sky-600: #12b5ff;
  --pink: #ffcde3;         /* bright baby pink */
  --pink-600: #ff4f9e;
  --mint: #b6f7dc;
  --mint-600: #00d69a;
  --lavender: #d8c9ff;
  --lavender-600: #8a5cff;
  --yellow: #ffeaa3;
  --yellow-600: #ffc400;
  --peach: #ffd7ba;
  --peach-600: #ff8038;

  /* Accents / glows — the neons */
  --neon-blue: #00b3ff;
  --neon-pink: #ff2d8e;
  --neon-purple: #9333ff;
  --neon-mint: #00e6a4;
  --neon-yellow: #ffd000;
  --pastel-purple: #7c3dff;

  /* Ink */
  --ink-900: #1f2a44;
  --ink-700: #3d4a66;
  --ink-500: #64708c;
  --ink-300: #9aa4bd;
  --line: #eef1f8;

  /* Surfaces */
  --bg: #ffffff;
  --surface: #fbfcff;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.86);
  --glass-border: rgba(255, 255, 255, 0.75);

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #c9ecff 0%, #ffd9ec 40%, #e2d6ff 70%, #c7f8e5 100%);
  --grad-brand: linear-gradient(120deg, var(--neon-blue), var(--neon-purple) 50%, var(--neon-pink));
  --grad-soft: linear-gradient(140deg, var(--sky), var(--lavender) 52%, var(--pink));
  --grad-mint: linear-gradient(140deg, var(--neon-mint), var(--neon-blue));
  --grad-warm: linear-gradient(140deg, var(--neon-yellow), var(--peach-600));
  --grad-candy: linear-gradient(120deg, var(--neon-pink), var(--neon-yellow));

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 2px 8px rgba(31, 42, 68, 0.05);
  --sh-sm: 0 8px 24px rgba(31, 42, 68, 0.06);
  --sh-md: 0 18px 44px rgba(31, 42, 68, 0.09);
  --sh-lg: 0 32px 80px rgba(31, 42, 68, 0.12);
  --sh-glow-blue: 0 10px 30px rgba(0, 179, 255, 0.45);
  --sh-glow-pink: 0 10px 30px rgba(255, 45, 142, 0.42);
  --sh-glow-purple: 0 10px 30px rgba(147, 51, 255, 0.4);

  /* Type */
  --font-head: "Fredoka", "Poppins", system-ui, sans-serif;
  --font-body: "Nunito", "Inter", system-ui, -apple-system, sans-serif;

  /* Fluid type scale */
  --fs-hero: clamp(2.6rem, 6.2vw, 5.1rem);
  --fs-h1: clamp(2.2rem, 4.6vw, 3.7rem);
  --fs-h2: clamp(1.85rem, 3.4vw, 2.9rem);
  --fs-h3: clamp(1.28rem, 2vw, 1.6rem);
  --fs-lead: clamp(1.02rem, 1.35vw, 1.22rem);
  --fs-body: 1rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.8rem;

  /* Spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;

  --container: 1240px;
  --nav-h: 84px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
/* Lenis controls scroll when JS is active */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-700);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.72;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
/* <picture> is only a wrapper for <source> — let the <img> inherit the
   parent's layout box directly so sizing rules keep working. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-4) 0; }

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

/* Focus visibility — accessibility */
:focus-visible {
  outline: 3px solid var(--neon-blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--sky-600), var(--pink-600));
  border-radius: 99px;
  border: 3px solid var(--white);
}

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.015em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: var(--fs-lead); color: var(--ink-500); line-height: 1.78; }
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  background: var(--glass-strong);
  border: 1px solid var(--line);
  padding: 0.42rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
  margin-bottom: 1rem;
}
.eyebrow i { color: var(--neon-pink); }
.eyebrow {
  border-color: transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              var(--grad-brand) border-box;
  border: 2px solid transparent;
  color: var(--ink-700);
}

/* Animated underline link */
.link-underline {
  position: relative;
  font-weight: 700;
  color: var(--ink-900);
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.link-underline:hover::after,
.link-underline:focus-visible::after { transform: scaleX(1); transform-origin: left; }

/* ==========================================================================
   04. LAYOUT HELPERS
   ========================================================================== */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container-narrow { width: min(100% - 2.5rem, 860px); margin-inline: auto; }

.section { padding: var(--sp-7) 0; position: relative; }
.section--tight { padding: var(--sp-6) 0; }
.section--soft {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(0, 179, 255, 0.11), transparent 65%),
    radial-gradient(760px 420px at 88% 100%, rgba(255, 45, 142, 0.11), transparent 65%),
    linear-gradient(180deg, #fff 0%, var(--surface) 45%, #fff 100%);
}

.grid { display: grid; gap: var(--sp-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.flex { display: flex; }
.center { display: flex; align-items: center; justify-content: center; }
.between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: var(--sp-1); } .gap-2 { gap: var(--sp-2); } .gap-3 { gap: var(--sp-3); }
.wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-3 { margin-top: var(--sp-3); } .mt-4 { margin-top: var(--sp-4); } .mt-5 { margin-top: var(--sp-5); }

/* Glass panel */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}

/* ==========================================================================
   05. BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: var(--grad-brand);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--sh-glow-blue);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out), filter 0.3s ease;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--neon-pink), var(--pastel-purple) 55%, var(--neon-blue));
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  z-index: -1;
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--sh-glow-pink); }
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn i { font-size: 0.95em; }

.btn--ghost {
  background: var(--white);
  color: var(--ink-900);
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-xs);
}
.btn--ghost::before { background: var(--grad-soft); }
.btn--ghost:hover { color: var(--ink-900); box-shadow: var(--sh-md); border-color: transparent; }

.btn--soft {
  background: var(--sky);
  color: var(--ink-900);
  box-shadow: none;
}
.btn--soft::before { background: var(--lavender); }
.btn--soft:hover { box-shadow: var(--sh-sm); }

.btn--sm { padding: 0.62rem 1.25rem; font-size: 0.86rem; }
.btn--lg { padding: 1.15rem 2.4rem; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* Ripple element injected by main.js */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: ripple-out 0.65s var(--ease-out) forwards;
  pointer-events: none;
  z-index: 1;
}

/* Play / video button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink-900);
}
.btn-play span.ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white);
  box-shadow: var(--sh-md);
  color: var(--neon-pink);
  position: relative;
  transition: transform 0.4s var(--ease-spring);
}
.btn-play span.ring::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--pink-600);
  opacity: 0.7;
  animation: pulse-ring 2.6s ease-out infinite;
}
.btn-play:hover span.ring { transform: scale(1.09); }

/* ==========================================================================
   06. PARTICLES CANVAS & DECOR
   ========================================================================== */
#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
main, header, footer { position: relative; z-index: 1; }

/* Soft gradient blobs used as page ambience */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}
.blob--sky { background: var(--sky); }
.blob--pink { background: var(--pink); }
.blob--mint { background: var(--mint); }
.blob--lav { background: var(--lavender); }
.blob--yellow { background: var(--yellow); }

/* Decorative floating emoji-free shapes */
.float-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

/* ==========================================================================
   07. PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-dots { display: flex; gap: 10px; justify-content: center; margin-bottom: 1rem; }
.preloader-dots span {
  width: 14px; height: 14px; border-radius: 50%;
  animation: bounce-dot 1.05s infinite var(--ease-out);
}
.preloader-dots span:nth-child(1) { background: var(--sky-600); }
.preloader-dots span:nth-child(2) { background: var(--pink-600); animation-delay: 0.13s; }
.preloader-dots span:nth-child(3) { background: var(--mint-600); animation-delay: 0.26s; }
.preloader-dots span:nth-child(4) { background: var(--yellow-600); animation-delay: 0.39s; }
.preloader-inner p {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

/* ==========================================================================
   08. NAVIGATION
   ========================================================================== */
.topbar {
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 0.4rem; opacity: 0.95; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.topbar .topbar-social { display: flex; gap: 0.85rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  transition: transform 0.45s var(--ease-out);
}
.site-header.is-hidden { transform: translateY(-100%); }

.nav {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(238, 241, 248, 0.9);
  transition: box-shadow 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--sh-sm);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
}

/* Logo — PLACEHOLDER: swap .brand-mark img src with client logo */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  overflow: visible;
  flex: none;
  filter: drop-shadow(0 3px 8px rgba(31, 42, 68, 0.18));
  transition: transform 0.45s var(--ease-spring);
}
.brand:hover .brand-mark { transform: scale(1.06) rotate(-3deg); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { line-height: 1.12; }
.brand-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink-900);
}
.brand-text small {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
  font-weight: 700;
}

.nav-list { display: flex; align-items: center; gap: 0.15rem; }
.nav-list a {
  position: relative;
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink-700);
  transition: color 0.3s ease, background 0.3s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 3px;
  border-radius: 3px;
  background: var(--grad-brand);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease-out);
}
.nav-list a:hover { color: var(--ink-900); background: rgba(215, 237, 251, 0.5); }
.nav-list a:hover::after { width: 24px; }
.nav-list a[aria-current="page"] { color: var(--ink-900); }
.nav-list a[aria-current="page"]::after { width: 24px; }

.nav-actions { display: flex; align-items: center; gap: 0.7rem; }

/* Cart chip */
.cart-chip {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink-900);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.cart-chip:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 21px; height: 21px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--neon-pink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: grid; place-items: center;
  border: 2px solid #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 13px;
  width: 22px; height: 2.4px;
  border-radius: 3px;
  background: var(--ink-900);
  transition: transform 0.42s var(--ease-spring), opacity 0.25s ease, width 0.3s ease;
}
.hamburger span:nth-child(1) { top: 17px; }
.hamburger span:nth-child(2) { top: 23px; width: 16px; }
.hamburger span:nth-child(3) { top: 29px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 22px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-out);
  overflow-y: auto;
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav ul { display: grid; gap: 0.3rem; }
.mobile-nav ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink-900);
  background: var(--surface);
  opacity: 0;
  transform: translateY(14px);
}
.mobile-nav.is-open ul a { animation: slide-in-item 0.5s var(--ease-out) forwards; }
.mobile-nav.is-open li:nth-child(1) a { animation-delay: 0.06s; }
.mobile-nav.is-open li:nth-child(2) a { animation-delay: 0.11s; }
.mobile-nav.is-open li:nth-child(3) a { animation-delay: 0.16s; }
.mobile-nav.is-open li:nth-child(4) a { animation-delay: 0.21s; }
.mobile-nav.is-open li:nth-child(5) a { animation-delay: 0.26s; }
.mobile-nav.is-open li:nth-child(6) a { animation-delay: 0.31s; }
.mobile-nav.is-open li:nth-child(7) a { animation-delay: 0.36s; }
.mobile-nav.is-open li:nth-child(8) a { animation-delay: 0.41s; }
.mobile-nav ul a i { color: var(--ink-300); }
.mobile-nav .mobile-cta { margin-top: 1.5rem; display: grid; gap: 0.7rem; }
.mobile-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.mobile-contact a { display: flex; gap: 0.6rem; align-items: center; }
.mobile-contact i { color: var(--neon-blue); width: 18px; }

/* ==========================================================================
   09. FLOATING UTILITIES
   ========================================================================== */
.float-stack {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 880;
  display: grid;
  gap: 12px;
  justify-items: end;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.32rem;
  color: #fff;
  box-shadow: var(--sh-md);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.fab:hover { transform: translateY(-4px) scale(1.06); }
.fab--wa { background: linear-gradient(140deg, #4ee07a, #25d366); position: relative; }
.fab--wa::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pulse-ring 2.4s ease-out infinite;
}
.fab--top {
  background: var(--white);
  color: var(--ink-900);
  border: 1.5px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s var(--ease-out);
}
.fab--top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--ink-900);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-sm);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.35s var(--ease-out);
  pointer-events: none;
}
.fab--wa:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* Custom cursor (desktop, pointer:fine only) */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor-dot { width: 7px; height: 7px; background: var(--neon-pink); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 2px solid var(--sky-600);
  transition: opacity 0.3s ease, width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s ease;
}
body.cursor-active .cursor-dot, body.cursor-active .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; background: rgba(215, 237, 251, 0.4); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-brand);
  z-index: 950;
  transition: width 0.1s linear;
}

/* ==========================================================================
   10. HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 var(--sp-6);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 120%;
  background: var(--grad-hero);
  opacity: 0.85;
  z-index: -2;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent);
  mask-image: linear-gradient(180deg, #000 55%, transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: var(--sp-5);
}
.hero h1 { font-size: var(--fs-hero); margin-bottom: 0.55em; }
.hero .lead { max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; margin-top: var(--sp-3); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: var(--sp-4); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-700);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.5rem 0.95rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
}
.hero-badge i { color: var(--neon-mint); }
.hero-badge:nth-child(2) i { color: var(--neon-pink); }
.hero-badge:nth-child(3) i { color: var(--neon-blue); }

.hero-visual { position: relative; }
.hero-visual-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-soft);
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 3.4;
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Logo variant — the crest floats free with a coloured glow behind it
   instead of sitting inside a cropped photo card. */
.hero-visual-frame--logo {
  background: none;
  box-shadow: none;
  overflow: visible;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-visual-frame--logo::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    var(--neon-blue), var(--neon-purple), var(--neon-pink),
    var(--neon-yellow), var(--neon-mint), var(--neon-blue));
  filter: blur(46px);
  opacity: 0.55;
  animation: spin-slow 26s linear infinite;
  z-index: 0;
}
.hero-visual-frame--logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(31, 42, 68, 0.28));
}

/* Floating info chips over hero art */
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 0.7rem 1rem;
  box-shadow: var(--sh-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-900);
}
.hero-chip i {
  width: 34px; height: 34px;
  border-radius: 11px;
  display: grid; place-items: center;
  font-size: 0.9rem;
}
.hero-chip--a { top: 8%; left: -6%; }
.hero-chip--a i { background: var(--mint); color: #2fa473; }
.hero-chip--b { bottom: 12%; right: -5%; }
.hero-chip--b i { background: var(--pink); color: var(--neon-pink); }
.hero-chip--c { bottom: -3%; left: 6%; }
.hero-chip--c i { background: var(--yellow); color: #c99400; }
.hero-chip small { display: block; font-weight: 600; color: var(--ink-300); font-size: 0.7rem; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-hero);
  opacity: 0.8;
  z-index: -2;
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent);
  mask-image: linear-gradient(180deg, #000 40%, transparent);
}
.page-hero h1 { max-width: 20ch; margin-inline: auto; }
.page-hero .lead { max-width: 62ch; margin-inline: auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink-300);
  margin-top: var(--sp-3);
}
.breadcrumb a:hover { color: var(--neon-blue); }
.breadcrumb span[aria-current] { color: var(--ink-700); }

/* ==========================================================================
   11. SECTION HEADINGS
   ========================================================================== */
.section-head { max-width: 720px; margin: 0 auto var(--sp-5); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { margin-bottom: 0.45em; }

/* ==========================================================================
   12. CARDS
   ========================================================================== */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  box-shadow: var(--sh-xs);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s ease;
  overflow: hidden;
  height: 100%;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 120px;
  background: var(--grad-soft);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: transparent; }
.card:hover::after { opacity: 0.9; }

/* Bright gradient hairline that lights up along the top edge on hover */
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: 2;
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 62px; height: 62px;
  border-radius: 20px;
  display: grid; place-items: center;
  font-size: 1.42rem;
  margin-bottom: var(--sp-2);
  transition: transform 0.5s var(--ease-spring);
}
.card:hover .card-icon { transform: translateY(-3px) rotate(-6deg) scale(1.08); }

/* Solid, saturated icon chips with a matching colour glow — these carry most
   of the site's brightness, so they are deliberately loud. */
.card-icon, .info-card__icon { color: #fff; }
.ic-sky    { background: linear-gradient(140deg, #4fd0ff, var(--neon-blue));   box-shadow: 0 8px 20px rgba(0,179,255,.38); }
.ic-pink   { background: linear-gradient(140deg, #ff74b8, var(--neon-pink));   box-shadow: 0 8px 20px rgba(255,45,142,.38); }
.ic-mint   { background: linear-gradient(140deg, #4ef0be, var(--neon-mint));   box-shadow: 0 8px 20px rgba(0,230,164,.38); }
.ic-lav    { background: linear-gradient(140deg, #b38aff, var(--neon-purple)); box-shadow: 0 8px 20px rgba(147,51,255,.36); }
.ic-yellow { background: linear-gradient(140deg, #ffe066, var(--neon-yellow)); box-shadow: 0 8px 20px rgba(255,208,0,.42); color: #6b4d00; }
.ic-peach  { background: linear-gradient(140deg, #ffa972, var(--peach-600));   box-shadow: 0 8px 20px rgba(255,128,56,.38); }

.card h3 { font-size: 1.16rem; margin-bottom: 0.4em; }
.card p { font-size: 0.94rem; color: var(--ink-500); margin: 0; }

/* Tilt wrapper */
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt > * { transform: translateZ(22px); }

/* Program cards */
.program-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
  height: 100%;
}
.program-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.program-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--grad-soft);
}
.program-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.program-card:hover .program-card__media img { transform: scale(1.07); }
.program-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--ink-900);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.program-card__body { padding: var(--sp-3); display: flex; flex-direction: column; flex: 1; gap: 0.85rem; }
.program-card__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink-700);
}
.program-card__hours i { color: var(--neon-blue); }
.check-list { display: grid; gap: 0.55rem; }
.check-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink-500);
  line-height: 1.55;
}
.check-list li i { color: var(--mint-600); margin-top: 0.32em; flex: none; }
.program-card__foot { margin-top: auto; padding-top: 0.5rem; }

/* Mural cards */
.mural-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mural-card:hover { transform: translateY(-9px); box-shadow: var(--sh-md); }
.mural-card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--grad-mint); }
.mural-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.85s var(--ease-out); }
.mural-card:hover .mural-card__media img { transform: scale(1.08) rotate(1deg); }
.mural-card__body { padding: var(--sp-3); display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.mural-card__actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--ink-500);
  border: 1px solid var(--line);
}
.pill--sky { background: var(--neon-blue); color: #fff; border-color: transparent; }
.pill--pink { background: var(--neon-pink); color: #fff; border-color: transparent; }
.pill--mint { background: var(--neon-mint); color: #05493a; border-color: transparent; }
.pill--lav { background: var(--neon-purple); color: #fff; border-color: transparent; }
.pill--yellow { background: var(--neon-yellow); color: #6b4d00; border-color: transparent; }

/* Teacher cards */
.teacher-card { text-align: center; }
.teacher-card__photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grad-soft);
  margin-bottom: var(--sp-2);
  box-shadow: var(--sh-sm);
}
.teacher-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.teacher-card:hover .teacher-card__photo img { transform: scale(1.06); }
.teacher-card h3 { font-size: 1.05rem; margin-bottom: 0.15em; }
.teacher-card p { font-size: 0.86rem; color: var(--ink-300); margin: 0; }

/* Split media/content block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--grad-soft);
  aspect-ratio: 4 / 3.2;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Quote / testimonial */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  box-shadow: var(--sh-xs);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.quote-card .stars { color: var(--neon-yellow); font-size: 1rem; letter-spacing: 2px; }
.quote-card blockquote { margin: 0; font-size: 1rem; color: var(--ink-700); line-height: 1.75; }
.quote-card figcaption { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.quote-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  flex: none;
  box-shadow: var(--sh-glow-pink);
}
.quote-card figcaption strong { display: block; font-size: 0.92rem; color: var(--ink-900); }
.quote-card figcaption small { color: var(--ink-300); font-size: 0.8rem; }

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2.2rem, 5vw, 4rem);
  background: var(--grad-brand);
  color: #fff;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--sh-glow-purple);
}
.cta-banner h2 { color: #fff; }
.cta-banner p, .cta-banner .lead { color: rgba(255, 255, 255, 0.92); }
.cta-banner .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.cta-banner .eyebrow i { color: #fff; }
.cta-banner .btn { background: #fff; color: var(--ink-900); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16); }
.cta-banner .btn::before { background: var(--grad-warm); }
.cta-banner .btn--ghost,
.cta-banner .btn--soft {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.cta-banner .btn--ghost::before,
.cta-banner .btn--soft::before { background: rgba(255, 255, 255, 0.28); }
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto;
  height: 300px;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.9), transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { max-width: 18ch; margin-inline: auto; }
.cta-banner p { max-width: 55ch; margin-inline: auto; color: var(--ink-700); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: var(--sp-3); }

/* ==========================================================================
   13. STATS / COUNTERS
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  border-radius: var(--r-xl);
  padding: var(--sp-3);
  box-shadow: var(--sh-md);
  /* Bright gradient border ring */
  background: linear-gradient(var(--white), var(--white)) padding-box,
              var(--grad-brand) border-box;
  border: 3px solid transparent;
}
.stat { text-align: center; padding: 0.5rem; }
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-500);
}

/* ==========================================================================
   14. TIMELINE
   ========================================================================== */
.timeline { position: relative; display: grid; gap: var(--sp-4); padding-left: 2.4rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--sky-600), var(--pink-600), var(--mint-600));
  opacity: 0.5;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.4rem; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--sky-600);
  box-shadow: 0 0 0 5px rgba(215, 237, 251, 0.55);
}
.timeline-item:nth-child(2n)::before { border-color: var(--pink-600); box-shadow: 0 0 0 5px rgba(255, 224, 234, 0.7); }
.timeline-item:nth-child(3n)::before { border-color: var(--mint-600); box-shadow: 0 0 0 5px rgba(216, 245, 231, 0.8); }
.timeline-year {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  text-transform: uppercase;
}
.timeline-item h3 { font-size: 1.12rem; margin: 0.2em 0 0.35em; }
.timeline-item p { font-size: 0.94rem; color: var(--ink-500); margin: 0; }

/* Daily routine list */
.routine { display: grid; gap: 0.7rem; }
.routine-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, background 0.4s ease;
}
.routine-row:hover { transform: translateX(6px); box-shadow: var(--sh-sm); background: var(--surface); }
.routine-time {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.routine-time i { color: var(--pink-600); }
.routine-row p { margin: 0; font-size: 0.93rem; }

/* ==========================================================================
   15. GALLERY + LIGHTBOX
   ========================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink-500);
  transition: all 0.35s var(--ease-out);
}
.filter-btn:hover { color: var(--neon-blue); border-color: var(--neon-blue); transform: translateY(-2px); }
.filter-btn.is-active {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-glow-blue);
}

.masonry { columns: 3; column-gap: 1.1rem; }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sh-xs);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), opacity 0.4s ease;
  background: var(--grad-soft);
}
/* Fixed aspect ratio per tile keeps the masonry stable while photos load
   (no layout shift even though the source images vary in size). */
.masonry-item img {
  width: 100%;
  display: block;
  aspect-ratio: var(--ar, 4 / 5);
  object-fit: cover;
  background: var(--surface);
  transition: transform 0.9s var(--ease-out);
}
.masonry-item:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(31, 42, 68, 0.72));
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  color: #fff;
}
.masonry-item:hover .masonry-item__overlay,
.masonry-item:focus-visible .masonry-item__overlay { opacity: 1; }
.masonry-item__overlay strong { font-family: var(--font-head); font-weight: 600; font-size: 1rem; display: block; }
.masonry-item__overlay small { opacity: 0.85; font-size: 0.78rem; }
.masonry-item__zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--glass-strong);
  display: grid; place-items: center;
  color: var(--ink-900);
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s var(--ease-spring);
}
.masonry-item:hover .masonry-item__zoom { opacity: 1; transform: scale(1); }
.masonry-item.is-hidden { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(31, 42, 68, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  padding: 4rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure {
  max-width: 960px;
  width: 100%;
  text-align: center;
  transform: scale(0.94);
  transition: transform 0.5s var(--ease-spring);
}
.lightbox.is-open figure { transform: scale(1); }
.lightbox img { border-radius: var(--r-lg); max-height: 74vh; width: auto; margin-inline: auto; box-shadow: var(--sh-lg); }
.lightbox figcaption { color: #fff; margin-top: 1rem; font-weight: 700; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.05rem;
  transition: background 0.3s ease, transform 0.3s var(--ease-spring);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, 0.3); transform: scale(1.08); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

/* ==========================================================================
   16. FORMS
   ========================================================================== */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3.5vw, 3rem);
  box-shadow: var(--sh-md);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.field label .req { color: var(--neon-pink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1.05rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: var(--surface);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  font-size: 0.95rem;
}
.field textarea { resize: vertical; min-height: 128px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364708c' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.05rem center; padding-right: 2.6rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sky-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(126, 200, 238, 0.2);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #ff7a9a;
  box-shadow: 0 0 0 4px rgba(255, 122, 154, 0.15);
}
.field .error-msg {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e0355f;
  display: none;
  align-items: center;
  gap: 0.35rem;
}
.field.has-error .error-msg { display: flex; }

.checks { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.check-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.check-chip input { position: absolute; opacity: 0; pointer-events: none; }
.check-chip:hover { border-color: var(--sky-600); transform: translateY(-2px); }
.check-chip:has(input:checked) {
  background: var(--sky);
  border-color: var(--sky-600);
  color: var(--ink-900);
}
.check-chip:has(input:focus-visible) { outline: 3px solid var(--neon-blue); outline-offset: 2px; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-300);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.form-note i { margin-top: 0.25em; color: var(--sky-600); }

/* Form status states */
.form-status {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 1.1rem;
}
.form-status.is-visible { display: flex; animation: pop-in 0.5s var(--ease-spring); }
.form-status--ok { background: var(--mint); color: #1f7a53; }
.form-status--err { background: #ffe4ea; color: #c22e56; }
.form-status i { font-size: 1.1rem; margin-top: 0.1em; }

/* Success overlay with animated tick */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 1010;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.success-overlay.is-open { opacity: 1; visibility: visible; }
.success-inner { text-align: center; max-width: 460px; }
.success-tick { width: 128px; height: 128px; margin: 0 auto 1.25rem; }
.success-tick circle {
  fill: none;
  stroke: var(--mint-600);
  stroke-width: 4;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
}
.success-tick path {
  fill: none;
  stroke: var(--mint-600);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
}
.success-overlay.is-open .success-tick circle { animation: draw-circle 0.75s var(--ease-out) forwards; }
.success-overlay.is-open .success-tick path { animation: draw-tick 0.5s var(--ease-out) 0.55s forwards; }

/* Toast */
.toast-stack {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1020;
  display: grid;
  gap: 0.6rem;
  width: min(92vw, 380px);
}
.toast {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--ink-900);
  color: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--sh-lg);
  animation: toast-in 0.45s var(--ease-spring);
}
.toast.is-out { animation: toast-out 0.35s var(--ease-out) forwards; }
.toast i { color: var(--mint-600); }

/* ==========================================================================
   17. SHOP / CART
   ========================================================================== */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}
.search-box {
  position: relative;
  flex: 1 1 260px;
  max-width: 380px;
}
.search-box i {
  position: absolute;
  left: 1.05rem; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-300);
  pointer-events: none;
}
.search-box input {
  width: 100%;
  padding: 0.82rem 1rem 0.82rem 2.7rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: var(--white);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.search-box input:focus { outline: none; border-color: var(--sky-600); box-shadow: 0 0 0 4px rgba(126, 200, 238, 0.2); }

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-xs);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); }
.product-card.is-hidden { display: none; }
.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  overflow: hidden;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.product-card:hover .product-card__media img { transform: scale(1.04); }

/* ---------- Product photo slideshow ---------- */
.pslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.pslide.is-active { opacity: 1; visibility: visible; }
.pslide img { width: 100%; height: 100%; object-fit: cover; }

.pslide-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.6rem;
  pointer-events: none;
}
.pslide-nav button {
  pointer-events: auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink-900);
  box-shadow: var(--sh-sm);
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.35s var(--ease-spring);
}
.product-card:hover .pslide-nav button,
.product-card:focus-within .pslide-nav button { opacity: 1; transform: scale(1); }
.pslide-nav button:hover { background: #fff; color: var(--neon-pink); }

.pslide-dots {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.pslide-dot {
  width: 9px; height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 4px rgba(31, 42, 68, 0.3);
  transition: all 0.35s var(--ease-out);
}
.pslide-dot.is-active { width: 26px; background: var(--neon-pink); }

.pslide-count {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(31, 42, 68, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-pill);
}

/* Touch devices: always show the arrows, there is no hover */
@media (hover: none) {
  .pslide-nav button { opacity: 1; transform: scale(1); }
}
.wish-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--ink-300);
  transition: all 0.35s var(--ease-spring);
}
.wish-btn:hover { transform: scale(1.12); color: var(--neon-pink); }
.wish-btn.is-active { color: var(--neon-pink); }
.wish-btn.is-active i { font-weight: 900; animation: heart-pop 0.45s var(--ease-spring); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
}
.product-card__body { padding: var(--sp-3); display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.product-card__body h3 { font-size: 1.05rem; margin: 0; }
.product-card__body p { font-size: 0.88rem; color: var(--ink-500); margin: 0; }
.price { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: var(--ink-900); }
.price small { font-size: 0.78rem; color: var(--ink-300); font-weight: 600; }
.size-row { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.size-opt {
  min-width: 40px;
  padding: 0.32rem 0.6rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink-500);
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}
.size-opt:hover { border-color: var(--sky-600); }
.size-opt.is-active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.qty-row { display: flex; align-items: center; gap: 0.5rem; }
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.qty-ctrl button {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--ink-700);
  transition: background 0.25s ease;
}
.qty-ctrl button:hover { background: var(--surface); }
.qty-ctrl input {
  width: 40px;
  text-align: center;
  border: 0;
  background: transparent;
  font-weight: 800;
  -moz-appearance: textfield;
}
.qty-ctrl input::-webkit-outer-spin-button,
.qty-ctrl input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product-card__foot { margin-top: auto; }

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--white);
  z-index: 1005;
  box-shadow: var(--sh-lg);
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 68, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s;
}
.cart-backdrop.is-open { opacity: 1; visibility: visible; }
.cart-head {
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-head h2 { margin: 0; font-size: 1.2rem; }
.cart-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; display: grid; gap: 1rem; align-content: start; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-300); }
.cart-empty i { font-size: 2.4rem; color: var(--sky); margin-bottom: 0.8rem; display: block; }
.cart-item { display: grid; grid-template-columns: 68px 1fr auto; gap: 0.85rem; align-items: center; }
.cart-item img { width: 68px; height: 68px; border-radius: var(--r-sm); object-fit: cover; background: var(--surface); }
.cart-item strong { display: block; font-size: 0.92rem; color: var(--ink-900); }
.cart-item small { color: var(--ink-300); font-size: 0.78rem; }
.cart-item .remove-item { color: var(--ink-300); transition: color 0.25s ease; }
.cart-item .remove-item:hover { color: #e0355f; }
.cart-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--line); display: grid; gap: 0.9rem; }
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--ink-900); }

/* ==========================================================================
   18. FAQ ACCORDION
   ========================================================================== */
.faq { display: grid; gap: 0.7rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.faq-item.is-open { box-shadow: var(--sh-sm); border-color: transparent; }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-900);
}
.faq-q i { color: var(--sky-600); transition: transform 0.45s var(--ease-spring); flex: none; }
.faq-item.is-open .faq-q i { transform: rotate(135deg); color: var(--neon-pink); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-a p { padding: 0 1.3rem 1.25rem; margin: 0; font-size: 0.94rem; color: var(--ink-500); }

/* ==========================================================================
   19. CONTACT + MAP
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-4); align-items: start; }
.info-card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); }
.info-card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex: none;
}
.info-card h3 { font-size: 1rem; margin-bottom: 0.25em; }
.info-card p, .info-card a { font-size: 0.92rem; color: var(--ink-500); margin: 0; }
.info-card a:hover { color: var(--neon-blue); }

/* Google Maps placeholder — REPLACE the iframe inside .map-embed */
.map-embed {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--grad-mint);
  min-height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--ink-700);
}
.map-placeholder i { font-size: 2.4rem; color: var(--neon-blue); margin-bottom: 0.6rem; }

.hours-list { display: grid; gap: 0.55rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list strong { color: var(--ink-900); font-weight: 800; }

/* ==========================================================================
   20. NEWSLETTER
   ========================================================================== */
.newsletter {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--grad-warm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-3);
  align-items: center;
}
.newsletter::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
.newsletter > * { position: relative; z-index: 1; }
.newsletter h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 0.3em; }
.newsletter p { margin: 0; color: var(--ink-700); font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1 1 240px;
  padding: 0.95rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.85);
  min-width: 0;
}
.newsletter-form input:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5); }

/* ==========================================================================
   21. FOOTER
   ========================================================================== */
.site-footer {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-5);
}
.footer-col h3 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col ul a { font-size: 0.94rem; color: var(--ink-500); transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
.footer-col ul a:hover { color: var(--neon-blue); transform: translateX(4px); }
.footer-about p { font-size: 0.94rem; color: var(--ink-500); max-width: 34ch; }
.footer-contact li { display: flex; gap: 0.7rem; font-size: 0.93rem; color: var(--ink-500); align-items: flex-start; }
.footer-contact i { color: var(--neon-pink); margin-top: 0.3em; width: 16px; flex: none; }
.social-row { display: flex; gap: 0.55rem; margin-top: 1.2rem; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-700);
  transition: all 0.4s var(--ease-spring);
}
.social-row a:hover { transform: translateY(-4px); color: #fff; background: var(--grad-brand); border-color: transparent; box-shadow: var(--sh-glow-blue); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-300);
}
.footer-bottom a:hover { color: var(--neon-blue); }

/* ==========================================================================
   22. UTILITY / A11Y
   ========================================================================== */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 1100;
  background: var(--ink-900);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  transition: top 0.3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.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;
}

.divider-wave { display: block; width: 100%; height: auto; }

/* Swiper overrides */
.swiper { padding-bottom: 3rem !important; overflow: visible !important; }
.swiper-wrapper { align-items: stretch; }
.swiper-slide { height: auto; }
.swiper-pagination-bullet { background: var(--ink-300); opacity: 0.35; width: 9px; height: 9px; }
.swiper-pagination-bullet-active { background: var(--neon-pink); opacity: 1; width: 26px; border-radius: 99px; }
.swiper-button-prev, .swiper-button-next {
  width: 46px !important; height: 46px !important;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  color: var(--ink-900) !important;
  transition: transform 0.35s var(--ease-spring);
}
.swiper-button-prev:hover, .swiper-button-next:hover { transform: scale(1.08); }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1rem !important; font-weight: 900; }


/* Animated mural illustrations are shown whole, never cropped */
.mural-card__media--art { aspect-ratio: 4 / 3; background: var(--ink-900); }
.mural-card__media--art img { object-fit: contain; }
.mural-card:hover .mural-card__media--art img { transform: none; }

/* Entrance photo above the map on the contact page */
.map-photo {
  margin: 0 0 1.25rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  position: relative;
  background: var(--grad-mint);
}
.map-photo img { width: 100%; height: 100%; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.map-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.25rem 0.9rem;
  font-size: 0.92rem; font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(12, 16, 32, 0.78), rgba(12, 16, 32, 0));
}
@media (max-width: 640px) { .map-photo figcaption { font-size: 0.82rem; } }
