/* ============================================================
   ELCA – LiteFrame Hosted Secure Stylesheet
   Direct port from Next.js / Netlify build – every class, every
   animation, every breakpoint preserved 1-to-1.
   ============================================================ */

:root {
  --green: #47ff7e;
  --indigo: #4852c2;
  --red: #ff1249;
  --cyan: #bfffff;
  --cream: #faf8f5;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-body: #3a3a4a;
  --text-muted: #6b6b7b;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--cream); overflow-x: hidden; font-family: 'Open Sans', sans-serif; color: var(--text-body); }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
h1, h2, h3, p { margin: 0; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--indigo); outline-offset: 3px; border-radius: 8px; }

/* ── Typography ── */
.font-heading { font-family: 'Dosis', sans-serif; }
.font-body { font-family: 'Open Sans', sans-serif; }

/* ── Pill buttons ── */
.pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px;
  font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: 0.5px; border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
}
.pill-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 35px rgba(72,82,194,0.3); }
.pill-primary { background: linear-gradient(135deg, var(--indigo), #5a62d8); color: #fff; box-shadow: 0 4px 15px rgba(72,82,194,0.12); }
.pill-secondary { background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); color: var(--indigo); border: 2px solid rgba(72,82,194,0.13); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.pill-red { background: linear-gradient(135deg, var(--red), #e8204f); color: #fff; box-shadow: 0 4px 15px rgba(72,82,194,0.12); }
.pill-green { background: linear-gradient(135deg, var(--green), #3de070); color: var(--text-dark); box-shadow: 0 4px 15px rgba(72,82,194,0.12); }

/* ── Floating Nav ── */
.floating-nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 9999;
  background: var(--indigo); border-radius: 22px; padding: 0 12px;
  display: flex; align-items: center; height: 72px; max-width: 1140px; width: calc(100% - 40px);
  box-shadow: 0 8px 30px rgba(72,82,194,0.25);
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
}
.floating-nav.scrolled { top: 12px; box-shadow: 0 14px 44px rgba(72,82,194,0.4); }
.nav-logo { display: flex; align-items: center; padding: 0 12px; flex-shrink: 0; }
.nav-logo img { height: 54px; }
.desktop-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; height: 100%; }
.nav-link {
  font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 16px;
  color: rgba(255,255,255,0.92); padding: 8px 14px; border-radius: 14px;
  transition: background 0.2s; white-space: nowrap; display: flex; align-items: center; gap: 4px;
}
.nav-link:hover { background: rgba(255,255,255,0.12); }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }

/* ── Mega Menu ── */
.mega-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(0); opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-radius: 24px; padding: 28px 32px; min-width: 340px; max-width: 420px;
  box-shadow: 0 24px 64px rgba(72,82,194,0.14); border: 1px solid rgba(72,82,194,0.08); z-index: 1000;
  margin-top: 0;
}
.mega-menu::before {
  content: ''; position: absolute; top: -20px; left: 0; right: 0; height: 20px;
}
.mega-menu.mega-open {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}
.mega-heading { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 18px; color: var(--indigo); margin-bottom: 6px; }
.mega-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.mega-link {
  display: block; font-size: 15px; color: var(--text-dark); padding: 9px 12px;
  border-radius: 14px; transition: all 0.2s;
}
.mega-link:hover { background: rgba(72,82,194,0.04); padding-left: 18px; }
.mega-extra { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(72,82,194,0.07); font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 16px; color: var(--red); }
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 14px; }

/* ── Mobile nav ── */
.mobile-hamburger {
  display: none; margin-left: auto; background: rgba(255,255,255,0.15);
  border: none; border-radius: 14px; padding: 10px 12px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.mobile-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 9998; background: rgba(26,26,46,0.5); backdrop-filter: blur(6px); }
.mobile-menu {
  display: none; position: fixed; top: 88px; left: 20px; right: 20px; z-index: 9999;
  background: var(--white); border-radius: 22px; padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2); max-height: calc(100vh - 110px); overflow-y: auto;
}
.mobile-menu-item { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-link { font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 17px; color: var(--text-dark); padding: 12px 8px; flex: 1; }
.mobile-toggle { background: none; border: none; padding: 12px; cursor: pointer; font-size: 18px; color: var(--indigo); font-weight: 700; }
.mobile-toggle-row {
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.mobile-toggle-icon {
  padding: 12px; font-size: 18px; color: var(--indigo); font-weight: 700; flex-shrink: 0;
}
.mobile-submenu { padding-left: 16px; padding-bottom: 8px; display: none; }
.mobile-submenu a { display: block; font-size: 16px; color: var(--text-body); padding: 10px 8px; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  padding-top: 110px;
}
.hero-scene { position: absolute; inset: 0; z-index: 0; }
.hero-svg { width: 100%; height: 100%; }
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px 80px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 48px;
  position: relative; z-index: 1; width: 100%;
}
.hero-text { flex: 1 1 520px; min-width: 280px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px);
  border-radius: 999px; padding: 10px 22px; margin-bottom: 28px;
  border: 1px solid rgba(72,82,194,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  opacity: 0; animation: fadeInUp 0.8s 0.2s both;
}
.hero-badge img { height: 32px; }
.hero-badge span { font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 16px; color: var(--indigo); }
.hero h1 {
  font-family: 'Dosis', sans-serif; font-weight: 800;
  font-size: clamp(38px, 5.5vw, 66px); line-height: 1.06;
  color: var(--text-dark); margin-bottom: 24px;
  opacity: 0; animation: fadeInUp 0.9s 0.35s both;
}
.hero h1 .highlight { color: var(--indigo); position: relative; display: inline-block; }
.hero h1 .highlight::after {
  content: ''; position: absolute; bottom: 2px; left: -4px; right: -4px; height: 12px;
  background: rgba(71,255,126,0.33); border-radius: 6px; z-index: -1;
  animation: highlightGrow 1s ease-out 1.2s both;
}
.hero-body { font-size: 19px; line-height: 1.7; color: var(--text-body); margin-bottom: 36px; max-width: 560px; opacity: 0; animation: fadeInUp 0.9s 0.5s both; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; animation: fadeInUp 0.9s 0.65s both; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 48px; opacity: 0; animation: fadeInUp 0.9s 1s both; }
.hero-stat-value { font-family: 'Dosis', sans-serif; font-weight: 800; font-size: 36px; color: var(--indigo); line-height: 1; }
.hero-stat-label { font-size: 16px; color: var(--text-muted); margin-top: 4px; }

/* Photo stack on right side */
.hero-photo-stack { flex: 1 1 380px; min-width: 260px; position: relative; height: 440px; }
.hero-photo {
  position: absolute; border-radius: 24px; overflow: hidden;
  box-shadow: 0 16px 50px rgba(72,82,194,0.12), 0 4px 12px rgba(0,0,0,0.06);
  border: 4px solid rgba(255,255,255,0.7);
  opacity: 0;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-1 { width: 65%; height: 75%; top: 5%; left: 5%; z-index: 2; animation: photoReveal1 1s 0.4s both; }
.hero-photo-2 { width: 50%; height: 55%; top: 0; right: 0; z-index: 1; animation: photoReveal2 1s 0.7s both; }
.hero-photo-3 { width: 45%; height: 45%; bottom: 0; right: 10%; z-index: 3; animation: photoReveal3 1s 1s both; }

/* Playground scene animations */
.cloud-1 { animation: cloudDrift1 35s linear infinite; }
.cloud-2 { animation: cloudDrift2 45s linear infinite; }
.cloud-3 { animation: cloudDrift3 55s linear infinite; }
.sun-glow { animation: sunPulse 5s ease-in-out infinite alternate; }
.swing-motion { animation: swingPendulum 3.5s ease-in-out infinite alternate; transform-origin: 1050px 484px; }
.tree-1 { animation: treeSway1 6s ease-in-out infinite alternate; transform-origin: 288px 640px; }
.tree-2 { animation: treeSway2 7s ease-in-out 1s infinite alternate; transform-origin: 1107px 610px; }
.twinkle-star { animation: twinkle 4s ease-in-out infinite alternate; }
.twinkle-star.s2 { animation-delay: 1s; }
.twinkle-star.s3 { animation-delay: 2s; }
.twinkle-star.s4 { animation-delay: 3s; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Section shared ── */
.section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; text-align: center; }
.section-title { font-family: 'Dosis', sans-serif; font-weight: 800; font-size: clamp(30px, 4vw, 48px); color: var(--text-dark); margin-bottom: 16px; text-align: center; }
.section-desc { font-size: 18px; color: var(--text-body); line-height: 1.6; max-width: 800px; margin: 0 auto 56px; text-align: center; }

/* ── Programs ── */
.programs-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.program-card {
  flex: 1 1 300px; max-width: 360px; display: flex; align-items: center; gap: 18px;
  padding: 24px 28px; background: rgba(255,255,255,0.55); backdrop-filter: blur(16px);
  border-radius: 24px; border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.35s cubic-bezier(.22,1,.36,1); color: var(--text-dark);
}
.program-card:hover { background: rgba(255,255,255,0.95); transform: translateY(-5px); box-shadow: 0 18px 55px rgba(72,82,194,0.13); border-color: rgba(72,82,194,0.13); }
.program-icon {
  width: 56px; height: 56px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(72,82,194,0.06), rgba(71,255,126,0.09));
  display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.program-card:hover .program-icon { transform: scale(1.15) rotate(-8deg); }
.program-title { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 2px; }
.program-age { font-size: 14px; color: var(--text-muted); }
.program-arrow { margin-left: auto; color: var(--indigo); opacity: 0.2; transition: all 0.3s; font-size: 20px; }
.program-card:hover .program-arrow { opacity: 1; transform: translateX(5px); }

/* ── Gallery strip ── */
.gallery-strip { padding: 0; overflow: hidden; background: var(--cream); margin-bottom: 0; }
.gallery-track { display: flex; animation: scrollGallery 30s linear infinite; width: fit-content; }
.gallery-item { width: 280px; height: 200px; flex-shrink: 0; margin: 0 8px; border-radius: 20px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── Testimonials ── */
.testimonials {
  background: linear-gradient(170deg, var(--indigo) 0%, #3a42a8 100%);
  position: relative; overflow: hidden; margin-top: 60px;
}
.testimonial-glass {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-radius: 32px; padding: 52px 44px; border: 1px solid rgba(255,255,255,0.12);
  min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.testimonial-quote { font-size: 52px; opacity: 0.3; line-height: 1; margin-bottom: 12px; color: #fff; }
.testimonial-text { font-size: 19px; line-height: 1.75; color: rgba(255,255,255,0.95); max-width: 600px; margin-bottom: 28px; animation: fadeSlideUp 0.7s cubic-bezier(.22,1,.36,1); }
.testimonial-name { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 17px; color: var(--green); }
.testimonial-center { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testimonial-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
}
.testimonial-dot.active { width: 36px; background: var(--green); }

/* ── Centers ── */
.centers-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.center-card {
  flex: 1 1 300px; max-width: 360px; border-radius: 24px; overflow: hidden;
  background: var(--white); transition: all 0.35s cubic-bezier(.22,1,.36,1);
  border: 1px solid transparent;
}
.center-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(72,82,194,0.12); border-color: rgba(72,82,194,0.09); }
.center-card-img { height: 160px; overflow: hidden; }
.center-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.center-card:hover .center-card-img img { transform: scale(1.06); }
.center-card-body { padding: 24px; }
.center-card-name { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.center-card-name span:last-child { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 20px; color: var(--text-dark); }
.center-card-address { font-size: 14px; color: var(--text-body); line-height: 1.5; margin-bottom: 6px; }
.center-card-phone { font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 15px; color: var(--indigo); }
.center-card-link { font-size: 14px; color: var(--indigo); margin-top: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.center-card-link .arrow { transition: transform 0.3s; }
.center-card:hover .center-card-link .arrow { transform: translateX(4px); }

/* ── Enrollment availability ── */
.enrollment-card {
  flex: 1 1 280px; max-width: 340px;
  background: var(--white); border-radius: 24px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 1px solid rgba(72,82,194,0.06);
  padding: 0 0 24px;
}
.enrollment-card-header {
  font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--white); background: var(--indigo); padding: 18px 24px; text-align: center;
}
.enrollment-card-body { padding: 20px 24px 0; }
.enrollment-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 15px; color: var(--text-body);
}
.enrollment-row:last-child { border-bottom: none; }
.avail-open { font-weight: 600; color: #1a8a3f; font-size: 14px; }
.avail-limited { font-weight: 600; color: #b8860b; font-size: 14px; }
.avail-waitlist { font-weight: 600; color: var(--red); font-size: 14px; }
.enrollment-card .pill-btn { margin: 0 24px; width: calc(100% - 48px) !important; }

/* ── Articles ── */
.articles-section { background: linear-gradient(180deg, var(--cream), #f0eee8); }
.articles-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.article-card {
  flex: 1 1 300px; max-width: 380px; border-radius: 24px; overflow: hidden;
  background: #fff; transition: all 0.35s cubic-bezier(.22,1,.36,1);
}
.article-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(72,82,194,0.12); }
.article-card-img { height: 200px; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-card-img img { transform: scale(1.06); }
.article-card-body { padding: 24px; }
.article-card-title { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 18px; color: var(--text-dark); line-height: 1.3; }
.article-card-link { font-size: 14px; color: var(--indigo); margin-top: 10px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.article-card-link .arrow { transition: transform 0.3s; }
.article-card:hover .article-card-link .arrow { transform: translateX(4px); }

/* ── CTA ── */
.cta-section { background: linear-gradient(140deg, rgba(71,255,126,0.09), rgba(191,255,255,0.13), var(--cream)); }

/* ── Footer ── */
.site-footer { background: var(--text-dark); padding: 72px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 48px; }
.footer-brand { flex: 1 1 260px; min-width: 220px; }
.footer-brand img { height: 240px; margin-bottom: 24px; }
.footer-brand p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 16px; background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 12px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--indigo); color: #fff; }
.footer-col { flex: 1 1 160px; min-width: 140px; }
.footer-col-title { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 19px; color: #fff; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 16px; color: rgba(255,255,255,0.7); line-height: 2.1; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-accordion-icon { display: none; }
.footer-col-links { display: block; }

@media (max-width: 640px) {
  .footer-inner { gap: 0; }
  .footer-brand { flex: 1 1 100%; margin-bottom: 24px; }
  .footer-col { flex: 1 1 100%; border-top: 1px solid rgba(255,255,255,0.07); padding: 0; }
  .footer-col-title.footer-accordion-toggle {
    cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; margin-bottom: 0;
  }
  .footer-accordion-icon { display: inline-block; font-size: 18px; font-weight: 400; opacity: 0.5; transition: transform 0.3s; }
  .footer-accordion-icon.open { transform: rotate(45deg); }
  .footer-col-links { display: none; padding-bottom: 16px; }
  .footer-col-links.open { display: block; }
}
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
}
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.35); }
.footer-bottom-right { display: flex; gap: 20px; align-items: center; }
.footer-bottom-right img { height: 48px; opacity: 0.7; }
.footer-bottom-right a { font-size: 14px; color: rgba(255,255,255,0.35); }

/* ── Location page specific ── */
.location-hero {
  position: relative; padding: 160px 24px 80px; overflow: hidden;
  background: linear-gradient(170deg, var(--indigo) 0%, #3a42a8 100%);
}
.location-hero-inner {
  max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.location-hero-text { flex: 1 1 480px; min-width: 280px; }
.location-hero-text h1 {
  font-family: 'Dosis', sans-serif; font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.1; color: #fff; margin-bottom: 16px;
}
.location-hero-text .address { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.location-hero-text .phone { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 22px; color: var(--green); margin-bottom: 32px; display: block; }
.location-hero-img { flex: 1 1 360px; min-width: 260px; border-radius: 24px; overflow: hidden; max-height: 360px; }
.location-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.location-details { display: flex; flex-wrap: wrap; gap: 32px; }
.location-main { flex: 2 1 500px; min-width: 280px; }
.location-sidebar { flex: 1 1 300px; min-width: 260px; position: sticky; top: 100px; align-self: flex-start; }
@media (max-width: 900px) { .location-sidebar { position: static; } }
.location-sidebar-card {
  background: var(--white); border-radius: 24px; padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid rgba(72,82,194,0.06);
  margin-bottom: 24px;
}
.location-sidebar-card h3 {
  font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--text-dark); margin-bottom: 16px;
}
.hours-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }

.location-programs-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.location-program-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; background: rgba(72,82,194,0.04); border-radius: 16px;
  font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 15px; color: var(--text-dark);
  border: 1px solid rgba(72,82,194,0.08);
}

.location-map {
  width: 100%; height: 450px; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(72,82,194,0.08);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ── Breadcrumb ── */
.breadcrumb { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }

/* ── Hero Keystone Badge ── */
.hero-keystone-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border-radius: 16px; padding: 12px 20px; margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-keystone-badge img { height: 48px; flex-shrink: 0; }
.hero-keystone-info { display: flex; flex-direction: column; gap: 2px; }
.hero-keystone-label { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 16px; color: #fff; }
.hero-keystone-stars { font-size: 18px; color: var(--green); letter-spacing: 2px; }

/* ── Programs Ribbon ── */
.location-programs-ribbon {
  background: var(--white); padding: 24px; border-bottom: 1px solid rgba(72,82,194,0.06);
}
.location-program-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; background: rgba(72,82,194,0.04); border-radius: 999px;
  font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 15px; color: var(--text-dark);
  border: 1px solid rgba(72,82,194,0.08); transition: all 0.25s;
}
.location-program-pill:hover {
  background: rgba(72,82,194,0.1); border-color: rgba(72,82,194,0.18); transform: translateY(-2px);
}

/* ── Director Card ── */
.director-card {
  background: rgba(72,82,194,0.03); border-radius: 16px; padding: 16px 20px;
  border: 1px solid rgba(72,82,194,0.06); margin-bottom: 4px;
}
.director-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-bottom: 4px; font-weight: 600;
}
.director-name {
  font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--text-dark); margin-bottom: 6px;
}
.director-email {
  display: block; font-size: 14px; color: var(--indigo); word-break: break-all;
  transition: color 0.2s; margin-bottom: 2px;
}
.director-email:hover { color: var(--red); }
.director-phone {
  display: block; font-size: 14px; color: var(--indigo);
  font-family: 'Dosis', sans-serif; font-weight: 600;
}

/* ── Video Embed ── */
.location-video-wrap { max-width: 800px; }
.location-video {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 20px; background: #000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.location-video iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: 0; border-radius: 20px;
}

/* ── Gallery Grid ── */
.location-gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.location-gallery-item {
  border-radius: 16px; overflow: hidden; height: 180px;
  transition: transform 0.3s; cursor: pointer;
}
.location-gallery-item:hover { transform: scale(1.03); }
.location-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── Body Content (WYSIWYG) ── */
.location-body-content h3 {
  font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 22px;
  color: var(--text-dark); margin: 32px 0 12px;
}
.location-body-content p {
  font-size: 17px; line-height: 1.8; color: var(--text-body); margin-bottom: 16px;
}
.location-body-content ul { margin: 0 0 20px 24px; list-style: disc; }
.location-body-content li {
  font-size: 16px; line-height: 1.7; color: var(--text-body); margin-bottom: 8px;
}
.location-body-content strong { color: var(--text-dark); }

/* ── Trustindex / Reviews Placeholder ── */
.trustindex-placeholder {
  min-height: 120px; border-radius: 20px;
  background: rgba(72,82,194,0.02); border: 1px dashed rgba(72,82,194,0.12);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

/* ── Form styles ── */
.lf-form {
  background: var(--white); border: 1px solid rgba(72,82,194,0.08);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.lf-form-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.lf-form-field-full { grid-column: 1 / -1; }
.lf-form label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.lf-form input[type="text"],
.lf-form input[type="email"],
.lf-form input[type="tel"],
.lf-form input[type="date"],
.lf-form input[type="url"],
.lf-form select,
.lf-form textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1px solid rgba(72,82,194,0.15); font-size: 15px;
  font-family: inherit; transition: border-color 0.2s;
}
.lf-form input:focus,
.lf-form select:focus,
.lf-form textarea:focus {
  border-color: var(--indigo); outline: none;
  box-shadow: 0 0 0 3px rgba(72,82,194,0.1);
}
.lf-form textarea { resize: vertical; }
.lf-form-submit {
  margin-top: 24px; width: 100%; padding: 14px 32px;
  border-radius: 999px; background: linear-gradient(135deg, var(--indigo), #5a62d8);
  color: #fff; font-family: 'Dosis', sans-serif; font-weight: 700;
  font-size: 16px; border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
}
.lf-form-submit:hover {
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(72,82,194,0.3);
}
.lf-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.lf-form-success {
  background: rgba(71,255,126,0.08); border: 1px solid rgba(71,255,126,0.3);
  border-radius: 20px; padding: 40px; text-align: center;
}
.lf-form-error { color: var(--red); font-size: 14px; margin-top: 12px; }

/* ── Map Fallback ── */
.map-fallback-link { display: block; width: 100%; height: 100%; text-decoration: none; }
.map-fallback {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, rgba(72,82,194,0.04), rgba(71,255,126,0.04));
  transition: background 0.3s;
}
.map-fallback:hover { background: linear-gradient(135deg, rgba(72,82,194,0.08), rgba(71,255,126,0.08)); }
.map-fallback-icon { font-size: 36px; }
.map-fallback-text { font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 15px; color: var(--indigo); }

/* ── FAQ Section ── */
.faq-section {
  background: linear-gradient(170deg, rgba(71,255,126,0.06), rgba(191,255,255,0.08), var(--cream));
}
.faq-list { margin-top: 32px; }
.faq-item {
  background: var(--white); border-radius: 20px; margin-bottom: 12px;
  border: 1px solid rgba(72,82,194,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  overflow: hidden;
}
.faq-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; gap: 16px;
}
.faq-question {
  font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 17px;
  color: var(--text-dark); flex: 1;
}
.faq-icon {
  font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 22px;
  color: var(--indigo); width: 28px; height: 28px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(72,82,194,0.06); border-radius: 10px;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--indigo); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.22,1,.36,1);
}
.faq-answer > div, .faq-answer > p {
  padding: 0 24px 20px; font-size: 16px; line-height: 1.75; color: var(--text-body);
}
.faq-toggle:hover .faq-question { color: var(--indigo); }

/* ── Program Page Hero ── */
.program-hero {
  position: relative; min-height: 520px; display: flex; align-items: center;
  padding: 160px 24px 80px; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.program-hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(170deg, rgba(26,26,46,0.82) 0%, rgba(72,82,194,0.7) 50%, rgba(26,26,46,0.65) 100%);
}
.program-hero-inner {
  max-width: 860px; margin: 0 auto; position: relative; z-index: 1; text-align: center;
}
.program-hero-inner .breadcrumb { margin-bottom: 24px; }
.program-hero-icon { font-size: 56px; margin-bottom: 16px; animation: fadeInUp 0.8s 0.2s both; }
.program-hero-inner h1 {
  font-family: 'Dosis', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 62px); line-height: 1.08;
  color: #fff; margin-bottom: 12px;
  opacity: 0; animation: fadeInUp 0.9s 0.3s both;
}
.program-hero-ages {
  font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--green); margin-bottom: 16px;
  opacity: 0; animation: fadeInUp 0.9s 0.45s both;
}
.program-hero-tagline {
  font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.85);
  max-width: 600px; margin: 0 auto;
  opacity: 0; animation: fadeInUp 0.9s 0.55s both;
}

/* ── Program Centers Bar ── */
.program-centers-bar { background: var(--white); padding: 28px 24px; border-bottom: 1px solid rgba(72,82,194,0.06); }
.program-centers-label { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 16px; color: var(--text-dark); text-align: center; margin-bottom: 16px; }
.program-centers-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.program-center-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px;
  background: rgba(72,82,194,0.04); border: 1px solid rgba(72,82,194,0.08);
  font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--text-dark); transition: all 0.25s;
}
.program-center-chip:hover { background: rgba(72,82,194,0.1); border-color: rgba(72,82,194,0.18); transform: translateY(-2px); }
.program-center-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── Program Layout ── */
.program-layout { display: flex; flex-wrap: wrap; gap: 32px; }
.program-main { flex: 2 1 500px; min-width: 280px; }
.program-sidebar { flex: 1 1 300px; min-width: 260px; }

/* ── Program Body Content ── */
.program-body-content h3 { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 22px; color: var(--text-dark); margin: 32px 0 12px; }
.program-body-content p { font-size: 17px; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }
.program-body-content ul { margin: 0 0 20px 24px; list-style: disc; }
.program-body-content li { font-size: 16px; line-height: 1.7; color: var(--text-body); margin-bottom: 8px; }
.program-body-content strong { color: var(--text-dark); }

/* ── Program Features Grid ── */
.program-features-grid { display: flex; flex-direction: column; gap: 14px; }
.program-feature-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; background: var(--white); border-radius: 20px;
  border: 1px solid rgba(72,82,194,0.06); box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.program-feature-icon {
  width: 48px; height: 48px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(72,82,194,0.06), rgba(71,255,126,0.09));
  display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0;
}
.program-feature-title { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 17px; color: var(--text-dark); margin-bottom: 4px; }
.program-feature-desc { font-size: 15px; line-height: 1.6; color: var(--text-body); }

/* ── Program Sidebar Details ── */
.program-detail-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 15px; }
.program-detail-row:last-child { border-bottom: none; }
.program-detail-label { color: var(--text-muted); }
.program-detail-value { font-weight: 600; color: var(--text-dark); text-align: right; }

.program-sidebar-center {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 15px; color: var(--text-body); transition: all 0.2s;
}
.program-sidebar-center:last-child { border-bottom: none; }
.program-sidebar-center:hover { color: var(--indigo); padding-left: 6px; }
.program-sidebar-center .arrow { transition: transform 0.3s; }
.program-sidebar-center:hover .arrow { transform: translateX(4px); }

/* ── About Page: Pillar Cards ── */
.about-pillar-card {
  flex: 1 1 220px; max-width: 260px; text-align: center;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(16px);
  border-radius: 24px; padding: 32px 24px; border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
}
.about-pillar-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.about-pillar-icon { font-size: 36px; margin-bottom: 14px; }
.about-pillar-title { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 6px; }
.about-pillar-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ── About Page: Leadership Grid ── */
.leadership-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; margin-top: 40px; }
.leader-card { background: var(--cream); border-radius: 20px; padding: 28px 28px 24px; border: 1px solid rgba(72,82,194,0.06); transition: all 0.3s cubic-bezier(.22,1,.36,1); }
.leader-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(72,82,194,0.1); }

/* ── Programs Overview: Card Grid ── */
.programs-overview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 48px; }
.program-overview-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  border: 1px solid transparent; transition: all 0.35s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
}
.program-overview-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(72,82,194,0.12); border-color: rgba(72,82,194,0.09); }
.program-overview-img { height: 200px; overflow: hidden; }
.program-overview-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.program-overview-card:hover .program-overview-img img { transform: scale(1.06); }
.program-overview-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program-overview-icon { font-size: 32px; margin-bottom: 10px; }
.program-overview-body h3 { font-family: 'Dosis', sans-serif; font-weight: 800; font-size: 22px; color: var(--text-dark); margin-bottom: 4px; }
.program-overview-ages { font-family: 'Dosis', sans-serif; font-weight: 600; font-size: 14px; color: var(--indigo); margin-bottom: 12px; }
.program-overview-desc { font-size: 15px; line-height: 1.7; color: var(--text-body); margin-bottom: 16px; flex: 1; }
.program-overview-link { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 15px; color: var(--indigo); display: flex; align-items: center; gap: 6px; }
.program-overview-link .arrow { transition: transform 0.3s; }
.program-overview-card:hover .program-overview-link .arrow { transform: translateX(4px); }

@media (max-width: 640px) {
  .programs-overview-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
}

/* ── Article Index Grid ── */
.articles-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.article-card-full {
  background: var(--white); border-radius: 24px; overflow: hidden;
  border: 1px solid transparent; transition: all 0.35s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
}
.article-card-full:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(72,82,194,0.12); border-color: rgba(72,82,194,0.09); }
.article-card-full-img { height: 220px; overflow: hidden; }
.article-card-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card-full:hover .article-card-full-img img { transform: scale(1.06); }
.article-card-full-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.article-card-full-body h3 { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 20px; color: var(--text-dark); line-height: 1.3; margin-bottom: 8px; }
.article-card-date { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.article-card-excerpt { font-size: 15px; line-height: 1.6; color: var(--text-body); flex: 1; margin-bottom: 16px; }
.article-card-read { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 15px; color: var(--indigo); display: flex; align-items: center; gap: 6px; }
.article-card-read .arrow { transition: transform 0.3s; }
.article-card-full:hover .article-card-read .arrow { transform: translateX(4px); }

/* ── Article Detail ── */
.article-hero {
  position: relative; min-height: 420px; display: flex; align-items: flex-end;
  padding: 160px 24px 60px; overflow: hidden;
  background-size: cover; background-position: center;
}
.article-hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; width: 100%; }
.article-hero-inner h1 { font-family: 'Dosis', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 48px); line-height: 1.15; color: #fff; margin-bottom: 16px; }
.article-hero-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: rgba(255,255,255,0.7); }
.article-layout { display: flex; flex-wrap: wrap; gap: 32px; }
.article-main { flex: 2 1 500px; min-width: 280px; }
.article-sidebar { flex: 1 1 280px; min-width: 240px; position: sticky; top: 100px; align-self: flex-start; }
@media (max-width: 900px) { .article-sidebar { position: static; } }
.article-body { font-size: 17px; line-height: 1.85; color: var(--text-body); }
.article-body h2 { font-family: 'Dosis', sans-serif; font-weight: 800; font-size: 26px; color: var(--text-dark); margin: 40px 0 16px; }
.article-body h3 { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 21px; color: var(--text-dark); margin: 32px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body img { border-radius: 16px; margin: 24px 0; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 8px; line-height: 1.7; }
.article-body strong { color: var(--text-dark); }
.article-body em { font-style: italic; }
.article-body blockquote {
  border-left: 4px solid var(--indigo); padding: 16px 24px; margin: 24px 0;
  background: rgba(72,82,194,0.03); border-radius: 0 16px 16px 0;
  font-size: 18px; color: var(--text-dark);
}
.article-sidebar-link {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px;
  color: var(--text-body); transition: color 0.2s; line-height: 1.4;
}
.article-sidebar-link:last-child { border-bottom: none; }
.article-sidebar-link:hover { color: var(--indigo); }
.article-sidebar-link img { width: 60px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }

/* ── Enrollment Page ── */
.enrollment-notice { background: rgba(72,82,194,0.04); border: 1px solid rgba(72,82,194,0.1); border-radius: 16px; padding: 20px 24px; }
.enrollment-notice p { font-size: 15px; line-height: 1.6; color: var(--text-body); }
.enrollment-notice strong { color: var(--text-dark); }
.enrollment-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.enrollment-step { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(72,82,194,0.06); }
.enrollment-step:last-child { border-bottom: none; }
.enrollment-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), #5a62d8);
  color: #fff; font-family: 'Dosis', sans-serif; font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.enrollment-step-content h3 { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 20px; color: var(--text-dark); margin-bottom: 6px; }
.enrollment-step-content p { font-size: 16px; line-height: 1.7; color: var(--text-body); }

@media (max-width: 640px) {
  .articles-grid-full { grid-template-columns: 1fr; }
  .enrollment-step { gap: 16px; }
}

/* ── Ads Landing Page ── */
.ads-lp { overflow-x: hidden; }
.ads-hero { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%); padding: 120px 24px 60px; }
.ads-hero-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.ads-hero-left { flex: 1 1 480px; min-width: 280px; }
.ads-hero-left h1 { font-family: 'Dosis', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; color: #fff; margin-bottom: 16px; }
.ads-badge { display: inline-block; background: var(--red); color: #fff; font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 16px; padding: 8px 20px; border-radius: 999px; margin-bottom: 20px; }
.ads-highlight-title { font-family: 'Dosis', sans-serif; font-weight: 700; font-size: 18px; color: var(--green); margin-bottom: 12px; }
.ads-highlights { list-style: none; margin: 0 0 24px; padding: 0; }
.ads-highlights li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.9); padding: 6px 0; }
.ads-hero-right { flex: 1 1 400px; min-width: 260px; border-radius: 24px; overflow: hidden; max-height: 500px; }
.ads-hero-right img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .ads-hero { padding: 110px 20px 40px; }
  .ads-hero-right { max-height: 300px; }
}

/* ── Keyframes ── */
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes photoReveal1 { 0% { opacity: 0; transform: translateY(40px) rotate(-3deg); } 100% { opacity: 1; transform: translateY(0) rotate(-2deg); } }
@keyframes photoReveal2 { 0% { opacity: 0; transform: translateY(40px) rotate(3deg); } 100% { opacity: 1; transform: translateY(0) rotate(2deg); } }
@keyframes photoReveal3 { 0% { opacity: 0; transform: translateY(40px) rotate(-1deg); } 100% { opacity: 1; transform: translateY(0) rotate(1deg); } }
@keyframes cloudDrift1 { 0% { transform: translateX(0); } 100% { transform: translateX(1500px); } }
@keyframes cloudDrift2 { 0% { transform: translateX(0); } 100% { transform: translateX(1500px); } }
@keyframes cloudDrift3 { 0% { transform: translateX(0); } 100% { transform: translateX(1500px); } }
@keyframes sunPulse { 0% { r: 70; opacity: 0.12; } 100% { r: 85; opacity: 0.2; } }
@keyframes swingPendulum { 0% { transform: rotate(-8deg); } 100% { transform: rotate(8deg); } }
@keyframes treeSway1 { 0% { transform: rotate(-1.5deg); } 100% { transform: rotate(1.5deg); } }
@keyframes treeSway2 { 0% { transform: rotate(1deg); } 100% { transform: rotate(-1deg); } }
@keyframes twinkle { 0% { opacity: 0.08; transform: scale(0.8); } 100% { opacity: 0.2; transform: scale(1.1); } }
@keyframes highlightGrow { 0% { transform: scaleX(0); transform-origin: left; } 100% { transform: scaleX(1); transform-origin: left; } }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeSlideUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes scrollGallery { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .desktop-nav { display: none !important; }
  .mobile-hamburger { display: flex !important; }
}
@media (max-width: 640px) {
  .section { padding-left: 20px !important; padding-right: 20px !important; }
  .hero-inner { padding: 40px 20px 60px !important; gap: 32px !important; }
  .hero-photo-stack { height: 320px !important; }
  .testimonial-glass { padding: 36px 24px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(72,82,194,0.27); border-radius: 99px; }
