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

/* ══════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: #2a5f9a;
  --accent-light: #e8f0fa;
  --accent-dark: #1d4570;
  --accent-glow: rgba(42,95,154,0.12);
  --black: #1a1a1a;
  --gray: #666;
  --light-gray: #f5f7fa;
  --border: #e8ecf1;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 44px;
}
@media (max-width: 600px) { body { padding-top: 38px; } }

/* ══════════════════════════════════════
   ANNOUNCE BAR (membership promo, site-wide)
   ══════════════════════════════════════ */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  gap: 0.85rem; flex-wrap: nowrap;
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, #1d4570 0%, #2a5f9a 100%);
  color: #fff; text-decoration: none;
  font-size: 0.85rem; line-height: 1.3;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s;
  min-height: 44px; box-sizing: border-box;
}
.announce-bar:hover { background: linear-gradient(135deg, #2a5f9a 0%, #1d4570 100%); }
.announce-bar-icon {
  font-size: 0.9rem;
  background: rgba(255,255,255,0.22);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.announce-bar-text { white-space: normal; }
.announce-bar-text strong { font-weight: 700; }
.announce-bar-cta {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--accent);
  padding: 0.3rem 0.85rem; border-radius: 50px;
  font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
@media (max-width: 720px) {
  .announce-bar { font-size: 0.75rem; padding: 0.4rem 0.6rem; gap: 0.5rem; min-height: 38px; }
  .announce-bar-icon { display: none; }
  .announce-bar-cta { padding: 0.22rem 0.6rem; font-size: 0.65rem; letter-spacing: 0.03em; }
  .hide-mobile { display: none; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.8rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border: none; transition: all 0.3s;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 25px var(--accent-glow); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--accent); }
.btn-white:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.8rem; }

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
nav, nav.nav {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 1000;
  padding: 0.8rem 2rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
@media (max-width: 600px) { nav, nav.nav { top: 38px; } }
nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.05); }

.nav-container {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
}
/* Fallback if nav has no .nav-container child */
nav:not(:has(.nav-container)) {
  display: flex; justify-content: space-between; align-items: center;
}

.nav-logo, .nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo img, .nav-brand img { height: 40px; width: auto; }
.nav-logo span, .nav-brand span { font-size: 1rem; font-weight: 700; color: var(--accent); }

.nav-links { display: flex; gap: 1.2rem; align-items: center; list-style: none; }
.nav-links a, .nav-links li a { font-size: 0.8rem; font-weight: 600; color: var(--black); transition: color 0.3s; white-space: nowrap; }
.nav-links a:hover, .nav-links li a:hover { color: var(--accent); }
.nav-links .btn, .nav-links li .btn { color: white; }
.nav-links .btn:hover, .nav-links li .btn:hover { color: white; }
.nav-btn { white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--black); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,1); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  gap: 1.5rem; z-index: 2500;
  padding: 80px 20px;
}
.mobile-menu.active { display: flex; }
.mobile-menu-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  font-size: 2rem; line-height: 1; color: var(--black);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close:hover { color: var(--accent); }
.mobile-menu a {
  font-size: 1.1rem; font-weight: 600; color: var(--black);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn-primary { color: white; }
.mobile-menu .btn-primary:hover { color: white; }

/* ══════════════════════════════════════
   SECTION HELPERS
   ══════════════════════════════════════ */
.section { padding: 5rem 2rem; }
.section-lg { padding: 6rem 2rem; }
.section-gray { background: var(--light-gray); }
.container { max-width: 1100px; margin: 0 auto; }
.text-center { text-align: center; }

.section-label {
  display: inline-block; padding: 0.3rem 0.9rem; border-radius: 50px;
  background: var(--accent-light); color: var(--accent);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.8rem;
}
.section-sub { color: var(--gray); font-size: 0.95rem; line-height: 1.6; max-width: 580px; }
.section-sub.centered, .text-center .section-sub { margin: 0 auto; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  padding: 6rem 2rem 4rem;
  background-size: cover; background-position: center;
  position: relative;
}
/* Only use ::before if no .hero-overlay div exists */
.hero:not(:has(.hero-overlay))::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.84) 40%, rgba(255,255,255,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 560px; }
.hero-badge {
  display: inline-block; padding: 0.35rem 1rem; border-radius: 50px;
  background: var(--accent-light); color: var(--accent);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1rem; line-height: 1.7; color: var(--gray); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}
.hero-btns, .hero-buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.7s 0.65s forwards; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.84) 40%, rgba(255,255,255,0.3) 100%); z-index: 1; }

.hero-badge, .hero h1, .hero p, .hero-btns, .hero-buttons { transform: translateY(25px); }

/* Sub-page hero (smaller) */
.hero-sub {
  min-height: 50vh; padding: 8rem 2rem 4rem;
}
.hero-sub:not(:has(.hero-overlay))::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.6) 100%);
}
.hero-sub .hero-overlay {
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.6) 100%);
}

/* ══════════════════════════════════════
   PATHWAYS GRID (homepage)
   ══════════════════════════════════════ */
.pathways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }

.pathway-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem 1.8rem;
  text-align: left; display: flex; flex-direction: column;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative; overflow: hidden;
}
.pathway-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.pathway-card:hover {
  border-color: var(--accent); transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--accent-glow);
}
.pathway-card:hover::before { transform: scaleX(1); }

.pathway-num { font-size: 0.68rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 1rem; }
.pathway-img {
  width: 100%; height: 160px; border-radius: var(--radius);
  overflow: hidden; margin-bottom: 1.2rem;
}
.pathway-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.pathway-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.pathway-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.55; flex: 1; margin-bottom: 1.2rem; }
.pathway-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--accent); font-weight: 700; font-size: 0.82rem;
  transition: gap 0.3s;
}
.pathway-card:hover .pathway-link { gap: 0.7rem; }

/* ══════════════════════════════════════
   FEATURES STRIP
   ══════════════════════════════════════ */
.features-strip { background: var(--accent); padding: 3rem 2rem; }
.features-inner, .features-grid {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem;
}
.feat, .feature-item { text-align: center; color: white; font-size: 0.9rem; }
.feat-num, .feature-item strong { font-size: 1.8rem; font-weight: 800; display: block; }
.feat-label { font-size: 0.78rem; font-weight: 500; opacity: 0.8; margin-top: 0.2rem; }

/* ══════════════════════════════════════
   VIDEO SECTION
   ══════════════════════════════════════ */
.video-section { padding: 5rem 2rem; }
.video-wrapper {
  max-width: 800px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  aspect-ratio: 16/9; position: relative;
}
.video-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ══════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════ */
.about-section { padding: 6rem 2rem; }
.about-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.about-img img { width: 100%; height: auto; }
.about-text h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.about-text p { color: var(--gray); line-height: 1.75; margin-bottom: 0.8rem; font-size: 0.92rem; }

/* ══════════════════════════════════════
   SERVICE CARDS (subpages)
   ══════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
}
.service-card:hover {
  border-color: var(--accent); transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.service-card-img {
  width: 100%; height: 180px; object-fit: cover;
}
.service-card-body { padding: 1.5rem; text-align: center; }
.service-card-body .service-pricing { justify-content: center; }
.service-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.service-card-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; margin-bottom: 1rem; }
.service-pricing {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem;
}
.price-tag {
  padding: 0.25rem 0.7rem; border-radius: 50px;
  background: var(--accent-light); color: var(--accent);
  font-size: 0.72rem; font-weight: 700;
}

/* ══════════════════════════════════════
   EXTRAS ROW (Party, Packages, Gift Cards)
   ══════════════════════════════════════ */
.extras-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2rem;
}
.extra-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; height: 260px;
  transition: transform 0.4s;
}
.extra-card:hover { transform: translateY(-6px); }
.extra-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.extra-card-overlay, .extra-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.65) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; color: white;
}
.extra-card-overlay h3, .extra-overlay h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.extra-card-overlay p, .extra-overlay p { font-size: 0.8rem; opacity: 0.85; }

/* ══════════════════════════════════════
   SCHEDULE
   ══════════════════════════════════════ */
.schedule-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem;
  margin: 2rem 0;
}
.sched-day, .schedule-card {
  background: var(--white); border-radius: var(--radius); padding: 1.2rem 1rem;
  border: 1.5px solid var(--border); transition: all 0.3s; text-align: center;
}
.sched-day:hover, .schedule-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.sched-day h4, .schedule-card h3 { font-size: 0.78rem; font-weight: 700; color: var(--accent); margin-bottom: 0.4rem; }
.sched-day p, .schedule-card p { font-size: 0.72rem; color: var(--gray); line-height: 1.5; }

/* ══════════════════════════════════════
   NEWSLETTER / CONTACT / FORMS
   ══════════════════════════════════════ */
.form-section { padding: 5rem 2rem; }
.form-box {
  max-width: 700px; margin: 0 auto;
  background: var(--light-gray); border-radius: var(--radius-lg);
  padding: 3rem 2.5rem; text-align: center;
}
.form-box h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-box > p { color: var(--gray); margin-bottom: 1.5rem; font-size: 0.9rem; }
.tally-embed { width: 100%; min-height: 200px; }

/* ══════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════ */
.cta-banner { padding: 4rem 2rem; }
.cta-box {
  max-width: 800px; margin: 0 auto; padding: 3rem 2.5rem;
  background: var(--accent); border-radius: var(--radius-lg);
  color: white; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-box h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.6rem; position: relative; }
.cta-box p { opacity: 0.85; margin-bottom: 1.5rem; font-size: 0.92rem; position: relative; }
.cta-box .btn { position: relative; z-index: 2; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer { background: var(--black); color: white; padding: 4rem 2rem 1.5rem; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand { margin-bottom: 0.6rem; }
.footer-brand h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.6rem; }
.footer-brand p { font-size: 0.8rem; color: #999; line-height: 1.6; }
.footer-desc { font-size: 0.8rem; color: #999; line-height: 1.6; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; background: #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 16px; height: 16px; fill: white; }

footer h4 {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: #555; margin-bottom: 0.8rem;
}
footer ul { list-style: none; }
footer li { margin-bottom: 0.4rem; }
footer li a { color: #aaa; font-size: 0.82rem; transition: color 0.3s; }
footer li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #2a2a2a; padding-top: 1.2rem;
  text-align: center; font-size: 0.72rem; color: #555;
  max-width: 1100px; margin: 0 auto;
}

/* ══════════════════════════════════════
   BOOKING WIDGET
   ══════════════════════════════════════ */
.booking-section { padding: 4rem 2rem; background: var(--light-gray); text-align: center; }
.booking-section .container { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
.booking-section h2 { text-align: center; margin-bottom: 0.5rem; }
.booking-section .section-sub { text-align: center; color: var(--gray); margin: 0 auto 2rem; }
.booking-widget-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06); overflow: hidden;
  min-height: 500px;
}

/* ══════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--black); color: white;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.82rem; max-width: 600px; line-height: 1.5; }
.cookie-banner p a { color: var(--accent-light); text-decoration: underline; }
.cookie-btn-accept {
  padding: 0.55rem 1.5rem; border-radius: 50px;
  background: var(--accent); color: white; border: none;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: background 0.3s;
}
.cookie-btn-accept:hover { background: var(--accent-dark); }
.cookie-btn-decline {
  padding: 0.55rem 1.5rem; border-radius: 50px;
  background: transparent; color: #aaa; border: 1px solid #444;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.cookie-btn-decline:hover { border-color: #aaa; color: white; }

/* ══════════════════════════════════════
   LEGAL / CONTENT PAGES
   ══════════════════════════════════════ */
.legal-page { padding: 8rem 2rem 5rem; }
.legal-content {
  max-width: 750px; margin: 0 auto;
}
.legal-content h1 {
  font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem;
  color: var(--accent);
}
.legal-content .last-updated {
  font-size: 0.8rem; color: var(--gray); margin-bottom: 2rem;
}
.legal-content h2 {
  font-size: 1.15rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.6rem;
}
.legal-content h3 {
  font-size: 1rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.legal-content p {
  font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 0.8rem;
}
.legal-content ul, .legal-content ol {
  padding-left: 1.5rem; margin-bottom: 1rem;
}
.legal-content li {
  font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 0.3rem;
}
.legal-content a { color: var(--accent); text-decoration: underline; }

/* FAQ accordion */
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  margin-bottom: 0.8rem; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 1rem 1.5rem;
  background: none; border: none;
  font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 600;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--black); transition: background 0.2s;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question .arrow { transition: transform 0.3s; font-size: 0.8rem; color: var(--accent); }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.5rem 1rem; font-size: 0.88rem; color: var(--gray); line-height: 1.7;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rv1 { transition-delay: 0.1s; }
.rv2 { transition-delay: 0.2s; }
.rv3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1150px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 80vh; padding: 6rem 1.5rem 3rem; }
  .hero::before { background: linear-gradient(180deg, rgba(255,255,255,0.95) 60%, rgba(255,255,255,0.7) 100%); }
  .hero-sub { min-height: 40vh; padding: 7rem 1.5rem 3rem; }

  .section, .section-lg { padding: 3.5rem 1.5rem; }

  .pathways-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .form-box { padding: 2rem 1.5rem; }
  .cta-box { padding: 2.5rem 1.5rem; }

  .cookie-banner { flex-direction: column; text-align: center; gap: 1rem; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.4rem; }
}

/* ══════════════════════════════════════
   SCHOOL HOLIDAY PROMO (remove when promo ends)
   ══════════════════════════════════════ */
.school-holiday-promo { padding: 3rem 0; }
.school-holiday-promo .promo-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, #fff 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem; max-width: 820px; margin: 0 auto;
  text-align: center; box-shadow: 0 10px 40px rgba(42,95,154,0.12);
}
.school-holiday-promo .promo-badge {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.school-holiday-promo h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
  color: var(--accent); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.school-holiday-promo .promo-lede {
  color: var(--gray); font-size: 0.95rem; line-height: 1.6;
  max-width: 640px; margin: 0 auto 1.5rem;
}
.school-holiday-promo .promo-details {
  list-style: none; padding: 0; margin: 0 auto 1.8rem;
  max-width: 580px; text-align: left;
  display: grid; gap: 0.6rem;
}
.school-holiday-promo .promo-details li {
  background: #fff; padding: 0.75rem 1rem; border-radius: 8px;
  border: 1px solid var(--border); font-size: 0.9rem; color: var(--dark);
}
.school-holiday-promo .promo-details strong { color: var(--accent); margin-right: 0.4rem; }
.school-holiday-promo .promo-btns { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }
@media (max-width: 640px) {
  .school-holiday-promo .promo-card { padding: 1.75rem 1.25rem; }
}

/* ══════════════════════════════════════
   NAV DROPDOWN (Services menu)
   ══════════════════════════════════════ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer;
  font: inherit; color: inherit; padding: 0;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav-dropdown-toggle:hover { color: var(--accent); }
.nav-caret { font-size: 0.75em; transition: transform 0.2s; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown { padding-bottom: 0.4rem; margin-bottom: -0.4rem; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  min-width: 200px; padding: 0.5rem; display: none; z-index: 100;
  margin-top: 0.6rem;
}
/* invisible hover bridge between toggle and menu */
.nav-dropdown-menu::before {
  content: ""; position: absolute;
  top: -0.8rem; left: 0; right: 0; height: 0.8rem;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 0.9rem; border-radius: 6px;
  color: var(--dark); font-size: 0.9rem; text-decoration: none;
}
.nav-dropdown-menu a:hover { background: var(--accent-light); color: var(--accent); }
.mobile-menu-group {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray);
  margin-top: 0.5rem; padding: 0.5rem 0 0.3rem;
}

/* ══════════════════════════════════════
   GALLERY GRID
   ══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%; height: 260px; object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s;
  cursor: zoom-in;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(42,95,154,0.18);
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .gallery-grid img { height: 160px; border-radius: 10px; }
}

/* ══════════════════════════════════════
   MINI GALLERY STRIP
   ══════════════════════════════════════ */
.mini-gallery { padding: 4rem 2rem; background: var(--white); }
.mini-gallery .container { max-width: 1200px; margin: 0 auto; text-align: center; }
.mini-gallery h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 700; margin-bottom: 0.5rem; }
.mini-gallery .mini-gallery-sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.mini-gallery-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem;
  margin-bottom: 1.5rem;
}
/* The anchor wraps each image — must be a block-level box so the img sizes correctly */
.mini-gallery-grid > a {
  display: block;
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.mini-gallery-grid img {
  width: 100%; height: 100%; max-width: 100%; max-height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.35s;
}
.mini-gallery-grid > a:hover img {
  transform: scale(1.04);
}
.mini-gallery-grid > a:hover {
  box-shadow: 0 8px 24px rgba(42,95,154,0.18);
}
@media (max-width: 900px) {
  .mini-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-gallery-grid > a { height: 110px; }
}
@media (max-width: 480px) {
  .mini-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .mini-gallery-grid > a { height: 90px; border-radius: 8px; }
  .mini-gallery-grid img { border-radius: 8px; }
}

/* ══════════════════════════════════════
   PROGRAM CARDS (education page — bigger format)
   ══════════════════════════════════════ */
.program-card-wrap {
  max-width: 760px;
  margin: 2rem auto 0;
}
.program-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
}
.program-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 14px 50px var(--accent-glow);
}
.program-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.program-card-body { padding: 2.2rem 2.4rem; }
.program-card-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--accent);
}
.program-card-body > p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}
.program-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.6rem 0 0.8rem;
}
.program-schedule {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.program-schedule li {
  background: var(--accent-light);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--black);
  line-height: 1.5;
}
.program-schedule li strong {
  display: block;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.15rem;
  font-size: 0.92rem;
}
.program-card .service-pricing {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  justify-content: flex-start;
  margin: 1rem 0 1.4rem;
}
.program-card-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
@media (max-width: 640px) {
  .program-card-img { height: 220px; }
  .program-card-body { padding: 1.6rem 1.4rem; }
  .program-card-body h3 { font-size: 1.25rem; }
  .program-card .service-pricing,
  .program-card-btns { justify-content: center; }
  .program-card { text-align: center; }
}

/* ══════════════════════════════════════
   PROMO CARD — SPLIT LAYOUT (image + content)
   ══════════════════════════════════════ */
.promo-card.promo-card-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  align-items: stretch;
}
.promo-card-image {
  position: relative;
  min-height: 320px;
  background: var(--accent-light);
}
.promo-card-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.promo-card-content {
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.promo-card.promo-card-split h2 {
  text-align: left;
  color: var(--accent);
}
.promo-card.promo-card-split .promo-lede {
  text-align: left;
  margin-left: 0; margin-right: 0;
}
.promo-card.promo-card-split .promo-btns {
  justify-content: flex-start;
}
@media (max-width: 720px) {
  .promo-card.promo-card-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .promo-card-image { min-height: 240px; }
  .promo-card-content { padding: 1.8rem 1.5rem; align-items: center; }
  .promo-card.promo-card-split h2,
  .promo-card.promo-card-split .promo-lede { text-align: center; }
  .promo-card.promo-card-split .promo-btns { justify-content: center; }
}

/* When-display block on promo cards */
.promo-when {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  margin: 0.4rem 0 1.1rem;
  line-height: 1.15;
}
.promo-when-day {
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em;
}
.promo-when-time {
  font-size: 0.9rem; font-weight: 600;
  opacity: 0.95; margin-top: 0.15rem;
}
.promo-card.promo-card-split .promo-when {
  align-self: flex-start;
}
@media (max-width: 720px) {
  .promo-card.promo-card-split .promo-when { align-self: center; }
}

/* ══════════════════════════════════════
   MEMBERSHIP MEGA PROMO (Unlimited Play & Stay)
   ══════════════════════════════════════ */
.membership-promo {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  position: relative;
  overflow: hidden;
}
.membership-promo::before,
.membership-promo::after {
  content: ''; position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.membership-promo::before { top: -120px; left: -100px; width: 320px; height: 320px; }
.membership-promo::after  { bottom: -140px; right: -80px; width: 380px; height: 380px; }
.membership-promo-card {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  text-align: center; color: #fff;
  padding: 0 1rem;
}
.membership-promo-badge {
  display: inline-block;
  background: #fff; color: var(--accent);
  padding: 0.5rem 1.25rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.membership-promo-title {
  font-size: clamp(4.5rem, 13vw, 7.5rem);
  font-weight: 800; line-height: 1;
  margin: 0 0 0.5rem;
  letter-spacing: -0.04em;
  color: #fff;
  display: flex; align-items: baseline; justify-content: center;
}
.membership-promo-per {
  font-size: 0.28em; font-weight: 600;
  opacity: 0.85; margin-left: 0.15em;
  letter-spacing: 0;
}
.membership-promo-headline {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}
.membership-promo-lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  opacity: 0.92; max-width: 620px;
  margin: 0 auto 2.25rem; line-height: 1.55;
}
.membership-promo-info-btn {
  display: inline-flex; align-items: center;
  font-size: 0.9rem; padding: 0.6rem 1.4rem;
  font-weight: 700;
  margin: 0 0 2rem;
}
.membership-promo-details {
  list-style: none; padding: 0; margin: 0 auto 2.25rem;
  max-width: 760px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.membership-promo-details li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 1.25rem 0.85rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  backdrop-filter: blur(6px);
}
.membership-promo-num {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 800; line-height: 1.1;
  color: #fff;
}
.membership-promo-details li > span:last-child {
  font-size: 0.85rem; opacity: 0.92;
  line-height: 1.35;
}
.membership-promo-cta {
  font-size: 0.95rem; padding: 0.85rem 1.6rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.membership-promo-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.26); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--accent); transform: translateY(-2px); }

.membership-promo-steps {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  max-width: 760px; margin: 0 auto;
  text-align: left;
}
.membership-promo-step {
  display: flex; gap: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 1.4rem 1.25rem;
  backdrop-filter: blur(6px);
}
.membership-promo-step-num {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
}
.membership-promo-step-body { flex: 1; }
.membership-promo-step-body h3 {
  margin: 0 0 0.3rem; font-size: 1.05rem; font-weight: 700; color: #fff;
}
.membership-promo-step-body p {
  margin: 0 0 0.9rem; font-size: 0.88rem; line-height: 1.45;
  opacity: 0.9;
}
.membership-promo-step-body .membership-promo-cta {
  font-size: 0.85rem; padding: 0.65rem 1.2rem;
}
.membership-promo-foot {
  margin: 1.75rem 0 0; font-size: 0.85rem;
  opacity: 0.85; letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .membership-promo-steps { grid-template-columns: 1fr; gap: 0.9rem; }
  .membership-promo-step { padding: 1.2rem 1rem; }
}
@media (max-width: 720px) {
  .membership-promo { padding: 3rem 0; }
  .membership-promo-details { grid-template-columns: 1fr; gap: 0.75rem; }
  .membership-promo-details li {
    flex-direction: row; padding: 0.95rem 1.1rem;
    text-align: left; gap: 1rem;
  }
  .membership-promo-num { font-size: 1.4rem; min-width: 5rem; text-align: center; }
  .membership-promo-details li > span:last-child { flex: 1; }
}
