
  :root{
    --cream:#FFF9EE;
    --cream-2:#FFF2DC;
    --navy:#1C355E;
    --navy-deep:#122341;
    --orange:#C0392B;
    --yellow:#F4B92A;
    --green:#4C9A4C;
    --teal:#2C93A8;
    --purple:#6B4FA0;
    --paper:#FFFDF8;
    --line: rgba(28,53,94,0.12);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Nunito', sans-serif;
    background:var(--cream);
    color:var(--navy);
    line-height:1.6;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Baloo 2', sans-serif;
    color:var(--navy);
    line-height:1.15;
  }
  a{text-decoration:none; color:inherit;}
  img{display:block; max-width:100%;}
  .wrap{
    max-width:1140px;
    margin:0 auto;
    padding:0 24px;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:'Baloo 2', sans-serif;
    font-weight:600;
    font-size:1.02rem;
    padding:13px 26px;
    border-radius:100px;
    border:2px solid transparent;
    cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-primary{
    background:var(--orange);
    color:#fff;
    box-shadow:0 6px 0 #8E2A1F;
  }
  .btn-primary:hover{box-shadow:0 8px 0 #8E2A1F;}
  .btn-outline{
    background:transparent;
    border-color:var(--navy);
    color:var(--navy);
  }
  .btn-outline:hover{background:var(--navy); color:#fff;}

  /* ===== Header ===== */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(255,249,238,0.92);
    backdrop-filter:blur(6px);
    border-bottom:2px solid var(--line);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 24px;
  }
  .brand{
    display:flex; align-items:center; gap:12px;
  }
  .brand img{
    width:52px; height:52px; border-radius:14px; object-fit:cover;
  }
  .brand-text .name{
    font-family:'Baloo 2', sans-serif;
    font-weight:700;
    font-size:1.18rem;
    color:var(--navy);
  }
  .brand-text .sub{
    font-size:0.72rem;
    letter-spacing:0.3px;
    color:var(--teal);
    font-weight:700;
  }
  nav.links{
    display:flex; gap:30px;
    font-weight:700;
    font-size:0.98rem;
  }
  nav.links a{
    position:relative;
    padding:6px 0;
  }
  nav.links a::after{
    content:"";
    position:absolute; left:0; bottom:0;
    width:0; height:3px; border-radius:2px;
    background:var(--orange);
    transition:width .2s ease;
  }
  nav.links a:hover::after{width:100%;}
  .nav-cta{display:flex; align-items:center; gap:14px;}
  .nav-phone{
    font-weight:800; font-family:'Baloo 2',sans-serif;
    color:var(--navy); font-size:0.95rem;
    display:flex; align-items:center; gap:6px;
  }
  .menu-toggle{display:none; font-size:1.6rem; background:none; border:none; color:var(--navy); cursor:pointer;}

  /* ===== Hero ===== */
  .hero{
    position:relative;
    padding:74px 0 90px;
    overflow:hidden;
  }
  .hero .wrap{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:50px;
    align-items:center;
  }
  .blob{
    position:absolute; border-radius:50%;
    filter:blur(2px); opacity:0.5; z-index:0;
  }
  .blob-1{width:260px; height:260px; background:var(--yellow); top:-60px; right:8%; opacity:0.35;}
  .blob-2{width:180px; height:180px; background:var(--teal); bottom:-40px; left:2%; opacity:0.25;}
  .eyebrow-pill{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--paper);
    border:2px solid var(--line);
    padding:7px 16px 7px 8px;
    border-radius:100px;
    font-weight:700;
    font-size:0.85rem;
    color:var(--navy);
    margin-bottom:22px;
  }
  .eyebrow-pill .dot{
    width:26px; height:26px; border-radius:50%;
    background:var(--green); color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:0.8rem;
  }
  .hero h1{
    font-size:3.05rem;
    font-weight:800;
    margin-bottom:20px;
  }
  .hero h1 .accent{color:var(--orange);}
  .hero p.lead{
    font-size:1.12rem;
    color:#3c4e6e;
    max-width:520px;
    margin-bottom:30px;
  }
  .hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:34px;}
  .hero-meta{
    display:flex; gap:28px; flex-wrap:wrap;
  }
  .hero-meta div{font-size:0.9rem; color:#3c4e6e;}
  .hero-meta strong{
    display:block; font-family:'Baloo 2',sans-serif;
    font-size:1.35rem; color:var(--navy);
  }
  .hero-art{
    position:relative;
    display:flex; align-items:center; justify-content:center;
  }
  .hero-art-card{
    background:var(--paper);
    border:2px solid var(--line);
    border-radius:32px;
    padding:26px;
    box-shadow:0 18px 0 -6px rgba(28,53,94,0.08);
    transform:rotate(-2deg);
  }
  .hero-art-card img{
    width:280px; border-radius:22px;
  }
  .sticker{
    position:absolute;
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    background:var(--green);
    color:#fff;
    padding:10px 16px;
    border-radius:16px;
    font-size:0.85rem;
    box-shadow:0 6px 0 #2f6e2f;
    transform:rotate(6deg);
  }
  .sticker-1{top:6px; right:-10px; background:var(--purple); box-shadow:0 6px 0 #4c3778;}
  .sticker-2{bottom:0px; left:-24px; background:var(--teal); box-shadow:0 6px 0 #1c6c7c; transform:rotate(-8deg);}

  /* ===== Section shared ===== */
  section{padding:78px 0;}
  .section-head{
    max-width:640px;
    margin-bottom:44px;
  }
  .kicker{
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    color:var(--orange);
    font-size:0.98rem;
    margin-bottom:8px;
    display:block;
  }
  .section-head h2{
    font-size:2.15rem;
    margin-bottom:14px;
  }
  .section-head p{color:#3c4e6e; font-size:1.03rem;}

  /* ===== About ===== */
  .about{background:var(--paper); border-top:2px solid var(--line); border-bottom:2px solid var(--line);}
  .about .wrap{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:56px;
    align-items:center;
  }
  .about-visual{
    background:var(--cream-2);
    border-radius:28px;
    padding:38px;
    position:relative;
  }
  .about-visual .big-quote{
    font-family:'Baloo 2',sans-serif;
    font-size:1.5rem;
    color:var(--navy);
    font-weight:700;
    line-height:1.35;
  }
  .about-visual .who{
    margin-top:22px;
    display:flex; align-items:center; gap:12px;
  }
  .who-badge{
    width:44px; height:44px; border-radius:50%;
    background:var(--orange); color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-family:'Baloo 2',sans-serif; font-weight:700;
  }
  .who-name{font-weight:800; font-size:0.95rem;}
  .who-role{font-size:0.8rem; color:#5c6f8f;}
  .about-text p{color:#3c4e6e; margin-bottom:16px;}
  .about-stats{
    display:flex; gap:30px; margin-top:26px; flex-wrap:wrap;
  }
  .about-stats div strong{
    font-family:'Baloo 2',sans-serif; font-size:1.6rem; color:var(--teal); display:block;
  }
  .about-stats div span{font-size:0.85rem; color:#5c6f8f;}

  /* ===== Why choose us ===== */
  .features{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
  }
  .feature-card{
    background:var(--paper);
    border:2px solid var(--line);
    border-radius:22px;
    padding:28px 24px;
    position:relative;
  }
  .feature-card .icon{
    width:52px; height:52px;
    border-radius:16px;
    display:flex; align-items:center; justify-content:center;
    font-size:1.5rem;
    margin-bottom:16px;
    color:#fff;
  }
  .feature-card h3{font-size:1.12rem; margin-bottom:8px;}
  .feature-card p{font-size:0.92rem; color:#5c6f8f;}
  .icon-orange{background:var(--orange);}
  .icon-teal{background:var(--teal);}
  .icon-purple{background:var(--purple);}
  .icon-green{background:var(--green);}
  .icon-yellow{background:var(--yellow); color:var(--navy);}
  .icon-navy{background:var(--navy);}

  /* ===== Programs ===== */
  .programs{background:var(--navy-deep); color:#fff;}
  .programs .kicker{color:var(--yellow);}
  .programs .section-head h2{color:#fff;}
  .programs .section-head p{color:#c7d3ea;}
  .program-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
  }
  .program-card{
    background:rgba(255,255,255,0.06);
    border:2px solid rgba(255,255,255,0.12);
    border-radius:22px;
    padding:26px 22px;
    transition:border-color .2s ease, background .2s ease;
  }
  .program-card:hover{
    border-color:var(--yellow);
    background:rgba(255,255,255,0.1);
  }
  .program-card .age{
    display:inline-block;
    font-family:'Baloo 2',sans-serif;
    font-weight:700;
    font-size:0.78rem;
    color:var(--navy-deep);
    background:var(--yellow);
    padding:4px 12px;
    border-radius:100px;
    margin-bottom:14px;
  }
  .program-card h3{color:#fff; font-size:1.15rem; margin-bottom:8px;}
  .program-card p{color:#b9c6e0; font-size:0.88rem;}

  /* ===== Manager / trust strip ===== */
  .manager{
    background:var(--cream-2);
    border-radius:28px;
    padding:40px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:30px;
    align-items:center;
  }
  .manager-avatar{
    width:78px; height:78px; border-radius:50%;
    background:var(--purple);
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-family:'Baloo 2',sans-serif;
    font-size:1.7rem; font-weight:700;
  }
  .manager-info .label{font-size:0.8rem; color:var(--teal); font-weight:700; letter-spacing:0.3px;}
  .manager-info h3{font-size:1.35rem; margin:4px 0 6px;}
  .manager-info p{color:#5c6f8f; font-size:0.92rem;}
  .manager-call{
    display:flex; flex-direction:column; gap:10px;
  }

  /* ===== Contact ===== */
  .contact{background:var(--paper); border-top:2px solid var(--line);}
  .contact .wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
  }
  .contact-card{
    background:var(--cream);
    border:2px solid var(--line);
    border-radius:24px;
    padding:34px;
  }
  .contact-row{
    display:flex; gap:16px;
    padding:16px 0;
    border-bottom:1px solid var(--line);
  }
  .contact-row:last-child{border-bottom:none;}
  .contact-row .ic{
    width:42px; height:42px; border-radius:12px;
    background:var(--navy); color:#fff;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .contact-row .label{font-size:0.78rem; color:var(--teal); font-weight:700; text-transform:uppercase; letter-spacing:0.3px;}
  .contact-row .val{font-weight:700; font-family:'Baloo 2',sans-serif; font-size:1.02rem;}
  .contact-row .val a{border-bottom:2px solid transparent;}
  .contact-row .val a:hover{border-color:var(--orange);}
  .map-frame{
    border-radius:24px;
    overflow:hidden;
    border:2px solid var(--line);
    height:100%;
    min-height:360px;
    background:
      linear-gradient(0deg, rgba(28,53,94,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(28,53,94,0.06) 1px, transparent 1px),
      var(--cream-2);
    background-size:28px 28px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px;
  }
  .map-frame .pin{
    width:64px; height:64px; border-radius:50%;
    background:var(--orange); color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:1.8rem;
    margin-bottom:18px;
    box-shadow:0 8px 0 -2px rgba(232,84,46,0.35);
  }
  .map-frame h3{font-size:1.2rem; margin-bottom:8px;}
  .map-frame p{color:#5c6f8f; font-size:0.92rem; margin-bottom:22px; max-width:280px;}

  /* ===== CTA strip ===== */
  .cta-strip{
    background:var(--orange);
    color:#fff;
    text-align:center;
    padding:56px 24px;
    border-radius:32px;
    margin:0 24px 78px;
  }
  .cta-strip h2{color:#fff; font-size:1.9rem; margin-bottom:12px;}
  .cta-strip p{color:#ffe3d9; margin-bottom:26px;}
  .cta-strip .btn-outline{border-color:#fff; color:#fff;}
  .cta-strip .btn-outline:hover{background:#fff; color:var(--orange);}

  /* ===== Footer ===== */
  footer{
    background:var(--navy-deep);
    color:#c7d3ea;
    padding:50px 0 26px;
  }
  .footer-top{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:34px;
  }
  .footer-brand{display:flex; align-items:center; gap:12px; margin-bottom:14px;}
  .footer-brand img{width:44px; height:44px; border-radius:12px;}
  .footer-brand span{font-family:'Baloo 2',sans-serif; font-weight:700; color:#fff; font-size:1.1rem;}
  footer h4{color:#fff; font-size:0.95rem; margin-bottom:14px;}
  footer ul{list-style:none;}
  footer ul li{margin-bottom:10px; font-size:0.9rem;}
  footer ul li a:hover{color:var(--yellow);}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.12);
    padding-top:20px;
    padding-bottom:56px;
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    font-size:0.82rem;
    color:#8a9ac0;
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px){
    nav.links{display:none;}
    .menu-toggle{display:block;}
    .hero .wrap{grid-template-columns:1fr;}
    .hero-art{order:-1;}
    .hero h1{font-size:2.3rem;}
    .about .wrap{grid-template-columns:1fr;}
    .features{grid-template-columns:repeat(2,1fr);}
    .program-list{grid-template-columns:repeat(2,1fr);}
    .manager{grid-template-columns:1fr; text-align:center;}
    .manager-avatar{margin:0 auto;}
    .contact .wrap{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr 1fr;}
  }
  @media (max-width: 520px){
    .features{grid-template-columns:1fr;}
    .program-list{grid-template-columns:1fr;}
    .hero h1{font-size:1.9rem;}
    .cta-strip{margin:0 12px 60px;}
  }

  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{transition:none !important;}
  }

  /* ===== Floating social stack ===== */
  .float-stack{
    position:fixed;
    bottom:82px; right:24px;
    z-index:60;
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .float-btn{
    width:60px; height:60px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 0 -2px rgba(0,0,0,0.2), 0 10px 24px rgba(0,0,0,0.18);
    transition:transform .15s ease;
  }
  .float-btn:hover{transform:translateY(-3px) scale(1.04);}
  .float-btn svg{width:28px; height:28px;}
  .float-btn.wa{background:#25D366; box-shadow:0 8px 0 -2px rgba(19,120,66,0.4), 0 10px 24px rgba(0,0,0,0.18);}
  .float-btn.yt{background:#FF0000; box-shadow:0 8px 0 -2px rgba(160,0,0,0.4), 0 10px 24px rgba(0,0,0,0.18);}
  .float-btn.ig{
    background:radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow:0 8px 0 -2px rgba(150,30,120,0.4), 0 10px 24px rgba(0,0,0,0.18);
  }
  @media (max-width:520px){
    .float-stack{bottom:66px; right:16px; gap:12px;}
    .float-btn{width:52px; height:52px;}
    .float-btn svg{width:24px; height:24px;}
  }

/* ===== Multi-page additions ===== */
.nav{ position:relative; }
.brand{ cursor:pointer; }

nav.links a.active{
  color:var(--orange);
}
nav.links a.active::after{
  width:100%;
}

@media (max-width:900px){
  nav.links{
    display:none;
    position:absolute;
    top:100%; left:0; right:0;
    background:var(--cream);
    flex-direction:column;
    gap:0;
    padding:6px 24px;
    border-bottom:2px solid var(--line);
    box-shadow:0 14px 26px rgba(28,53,94,0.12);
  }
  nav.links.open{ display:flex; }
  nav.links a{
    padding:14px 0;
    border-bottom:1px solid var(--line);
  }
  nav.links a:last-child{ border-bottom:none; }
  .menu-toggle{ display:block; }
}

/* Internal page hero (About / Programs / Gallery / Contact) */
.page-hero{
  padding:56px 0 46px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-hero h1{
  font-size:2.5rem;
  margin-bottom:14px;
}
.page-hero p{
  color:#3c4e6e;
  max-width:560px;
  margin:0 auto;
  font-size:1.05rem;
}
.page-hero .eyebrow-pill{ margin-bottom:18px; }

/* Values / mission cards reuse .feature-card, no extra needed */

/* Gallery grid */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.gallery-item{
  background:var(--paper);
  border:2px solid var(--line);
  border-radius:22px;
  padding:30px 20px;
  aspect-ratio:4/3;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
}
.gallery-item .g-icon{
  width:60px; height:60px;
  border-radius:50%;
  background:var(--cream-2);
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem;
}
.gallery-item h3{ font-size:1.02rem; }
.gallery-item p{ font-size:0.85rem; color:#5c6f8f; }
.gallery-note{
  background:var(--cream-2);
  border-radius:20px;
  padding:22px 26px;
  text-align:center;
  color:#3c4e6e;
  font-size:0.95rem;
  margin-bottom:40px;
}

@media (max-width:900px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:520px){
  .gallery-grid{ grid-template-columns:1fr; }
  .page-hero h1{ font-size:1.9rem; }
}

/* Section divider spacing helper */
.section-tight{ padding-top:50px; }

/* ===== Premium animation layer ===== */
header{ transition: box-shadow .3s ease; }
header.scrolled{ box-shadow:0 8px 24px rgba(28,53,94,0.1); }

@keyframes fadeInUp{
  from{ opacity:0; transform:translateY(22px); }
  to{ opacity:1; transform:translateY(0); }
}
.hero-copy > *{
  opacity:0;
  animation:fadeInUp .7s ease forwards;
}
.hero-copy > *:nth-child(1){ animation-delay:.05s; }
.hero-copy > *:nth-child(2){ animation-delay:.15s; }
.hero-copy > *:nth-child(3){ animation-delay:.25s; }
.hero-copy > *:nth-child(4){ animation-delay:.35s; }
.hero-copy > *:nth-child(5){ animation-delay:.45s; }

@keyframes floatBlob{
  0%,100%{ transform:translateY(0) scale(1); }
  50%{ transform:translateY(-16px) scale(1.04); }
}
.blob-1{ animation:floatBlob 9s ease-in-out infinite; }
.blob-2{ animation:floatBlob 11s ease-in-out infinite 1s; }

@keyframes bobA{
  0%,100%{ transform:rotate(6deg) translateY(0); }
  50%{ transform:rotate(6deg) translateY(-9px); }
}
@keyframes bobB{
  0%,100%{ transform:rotate(-8deg) translateY(0); }
  50%{ transform:rotate(-8deg) translateY(-9px); }
}
.sticker-1{ animation:bobA 4.2s ease-in-out infinite; }
.sticker-2{ animation:bobB 4.8s ease-in-out infinite; }

@keyframes cardFloat{
  0%,100%{ transform:rotate(-2deg) translateY(0); }
  50%{ transform:rotate(-2deg) translateY(-10px); }
}
.hero-art-card{ animation:cardFloat 6s ease-in-out infinite; }

/* Scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}
.feature-card.reveal:nth-child(1){ transition-delay:.02s; }
.feature-card.reveal:nth-child(2){ transition-delay:.09s; }
.feature-card.reveal:nth-child(3){ transition-delay:.16s; }
.feature-card.reveal:nth-child(4){ transition-delay:.23s; }
.feature-card.reveal:nth-child(5){ transition-delay:.30s; }
.feature-card.reveal:nth-child(6){ transition-delay:.37s; }
.program-card.reveal:nth-child(1){ transition-delay:.02s; }
.program-card.reveal:nth-child(2){ transition-delay:.1s; }
.program-card.reveal:nth-child(3){ transition-delay:.18s; }
.program-card.reveal:nth-child(4){ transition-delay:.26s; }
.gallery-item.reveal:nth-child(1){ transition-delay:.02s; }
.gallery-item.reveal:nth-child(2){ transition-delay:.08s; }
.gallery-item.reveal:nth-child(3){ transition-delay:.14s; }
.gallery-item.reveal:nth-child(4){ transition-delay:.20s; }
.gallery-item.reveal:nth-child(5){ transition-delay:.26s; }
.gallery-item.reveal:nth-child(6){ transition-delay:.32s; }

/* Card hover polish */
.feature-card, .program-card, .gallery-item{
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 32px rgba(28,53,94,0.1);
  border-color:var(--orange);
}
.gallery-item:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 32px rgba(28,53,94,0.1);
  border-color:var(--teal);
}
.feature-card .icon{ transition:transform .3s ease; }
.feature-card:hover .icon{ transform:scale(1.12) rotate(-4deg); }

.hero-art-card img{ transition:transform .4s ease; }
.hero-art-card:hover img{ transform:scale(1.03); }

.manager, .contact-card, .about-visual{
  transition:box-shadow .3s ease;
}
.manager:hover, .contact-card:hover{
  box-shadow:0 18px 36px rgba(28,53,94,0.08);
}

@media (prefers-reduced-motion: reduce){
  .hero-copy > *, .blob-1, .blob-2, .sticker-1, .sticker-2, .hero-art-card{
    animation:none !important;
    opacity:1 !important;
    transform:none !important;
  }
  .reveal{ opacity:1 !important; transform:none !important; }
}

/* ===== Playful cartoon-style CTA + Enroll button ===== */
@keyframes gentleBounce{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-5px); }
}
@keyframes wiggle{
  0%,100%{ transform:rotate(-2deg); }
  50%{ transform:rotate(2deg); }
}

.nav-cta .btn-primary{
  animation:wiggle 2.4s ease-in-out infinite;
  border:2px solid #8E2A1F;
}
.nav-cta .btn-primary:hover{
  animation-play-state:paused;
}

.cta-strip{
  position:relative;
  overflow:hidden;
  border-radius:40px;
  background:radial-gradient(circle at 22% 25%, #e05c4a 0%, var(--orange) 60%);
  border:4px solid #ffffff33;
}
.cta-strip::before,
.cta-strip::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,0.14);
  pointer-events:none;
}
.cta-strip::before{ width:150px; height:150px; top:-55px; left:-45px; }
.cta-strip::after{ width:110px; height:110px; bottom:-45px; right:-25px; }

.cta-deco{
  position:absolute;
  font-size:1.9rem;
  opacity:0.9;
  animation:ctaFloat 3.6s ease-in-out infinite;
  pointer-events:none;
  filter:drop-shadow(0 3px 4px rgba(0,0,0,0.12));
}
@keyframes ctaFloat{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-14px) rotate(10deg); }
}
.cta-deco.d1{ top:14px; left:6%; animation-delay:0s; font-size:1.7rem; }
.cta-deco.d2{ top:22px; right:9%; animation-delay:.6s; font-size:1.5rem; }
.cta-deco.d3{ bottom:18px; left:11%; animation-delay:1.1s; font-size:1.4rem; }
.cta-deco.d4{ bottom:24px; right:15%; animation-delay:1.6s; font-size:1.6rem; }

.cta-strip h2{
  position:relative; z-index:1;
}
.cta-strip p{
  position:relative; z-index:1;
}
.cta-strip > a.btn{
  position:relative; z-index:1;
  animation:gentleBounce 2s ease-in-out infinite;
  border:2px solid #ffd9c9;
}
.cta-strip > a.btn:hover{
  animation-play-state:paused;
}

@media (max-width:520px){
  .cta-deco{ font-size:1.3rem; }
}

@media (prefers-reduced-motion: reduce){
  .nav-cta .btn-primary, .cta-strip > a.btn, .cta-deco{
    animation:none !important;
  }
}


/* ===== Per-page light background patterns ===== */
body.page-home{ background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTAiIGhlaWdodD0iMTkwIj48dGV4dCB4PSIyOCIgeT0iNDQiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKC0xNCAyOCA0NCkiIG9wYWNpdHk9IjAuMDY1Ij7wn5OaPC90ZXh0Pjx0ZXh0IHg9IjEyOCIgeT0iMzQiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKDEyIDEyOCAzNCkiIG9wYWNpdHk9IjAuMDY1Ij7inI/vuI88L3RleHQ+PHRleHQgeD0iNDAiIHk9IjEzOCIgZm9udC1zaXplPSIzMCIgdHJhbnNmb3JtPSJyb3RhdGUoOSA0MCAxMzgpIiBvcGFjaXR5PSIwLjA2NSI+8J+OkjwvdGV4dD48dGV4dCB4PSIxNDAiIHk9IjE1MCIgZm9udC1zaXplPSIzMCIgdHJhbnNmb3JtPSJyb3RhdGUoLTEwIDE0MCAxNTApIiBvcGFjaXR5PSIwLjA2NSI+4q2QPC90ZXh0Pjwvc3ZnPg=="); background-repeat:repeat; background-size:190px 190px; }
body.page-about{ background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTAiIGhlaWdodD0iMTkwIj48dGV4dCB4PSIyOCIgeT0iNDQiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKC0xNCAyOCA0NCkiIG9wYWNpdHk9IjAuMDY1Ij7wn4+rPC90ZXh0Pjx0ZXh0IHg9IjEyOCIgeT0iMzQiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKDEyIDEyOCAzNCkiIG9wYWNpdHk9IjAuMDY1Ij7wn46TPC90ZXh0Pjx0ZXh0IHg9IjQwIiB5PSIxMzgiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKDkgNDAgMTM4KSIgb3BhY2l0eT0iMC4wNjUiPvCfk5g8L3RleHQ+PHRleHQgeD0iMTQwIiB5PSIxNTAiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKC0xMCAxNDAgMTUwKSIgb3BhY2l0eT0iMC4wNjUiPvCfpJ08L3RleHQ+PC9zdmc+"); background-repeat:repeat; background-size:190px 190px; }
body.page-programs{ background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTAiIGhlaWdodD0iMTkwIj48dGV4dCB4PSIyOCIgeT0iNDQiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKC0xNCAyOCA0NCkiIG9wYWNpdHk9IjAuMDY1Ij7wn5SkPC90ZXh0Pjx0ZXh0IHg9IjEyOCIgeT0iMzQiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKDEyIDEyOCAzNCkiIG9wYWNpdHk9IjAuMDY1Ij7wn5SiPC90ZXh0Pjx0ZXh0IHg9IjQwIiB5PSIxMzgiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKDkgNDAgMTM4KSIgb3BhY2l0eT0iMC4wNjUiPvCfk5A8L3RleHQ+PHRleHQgeD0iMTQwIiB5PSIxNTAiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKC0xMCAxNDAgMTUwKSIgb3BhY2l0eT0iMC4wNjUiPuKcj++4jzwvdGV4dD48L3N2Zz4="); background-repeat:repeat; background-size:190px 190px; }
body.page-gallery{ background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTAiIGhlaWdodD0iMTkwIj48dGV4dCB4PSIyOCIgeT0iNDQiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKC0xNCAyOCA0NCkiIG9wYWNpdHk9IjAuMDY1Ij7wn5O3PC90ZXh0Pjx0ZXh0IHg9IjEyOCIgeT0iMzQiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKDEyIDEyOCAzNCkiIG9wYWNpdHk9IjAuMDY1Ij7wn5a877iPPC90ZXh0Pjx0ZXh0IHg9IjQwIiB5PSIxMzgiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKDkgNDAgMTM4KSIgb3BhY2l0eT0iMC4wNjUiPvCfjqw8L3RleHQ+PHRleHQgeD0iMTQwIiB5PSIxNTAiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKC0xMCAxNDAgMTUwKSIgb3BhY2l0eT0iMC4wNjUiPuKtkDwvdGV4dD48L3N2Zz4="); background-repeat:repeat; background-size:190px 190px; }
body.page-contact{ background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTAiIGhlaWdodD0iMTkwIj48dGV4dCB4PSIyOCIgeT0iNDQiIGZvbnQtc2l6ZT0iMzAiIHRyYW5zZm9ybT0icm90YXRlKC0xNCAyOCA0NCkiIG9wYWNpdHk9IjAuMDY1Ij7imI7vuI88L3RleHQ+PHRleHQgeD0iMTI4IiB5PSIzNCIgZm9udC1zaXplPSIzMCIgdHJhbnNmb3JtPSJyb3RhdGUoMTIgMTI4IDM0KSIgb3BhY2l0eT0iMC4wNjUiPuKcie+4jzwvdGV4dD48dGV4dCB4PSI0MCIgeT0iMTM4IiBmb250LXNpemU9IjMwIiB0cmFuc2Zvcm09InJvdGF0ZSg5IDQwIDEzOCkiIG9wYWNpdHk9IjAuMDY1Ij7wn5ONPC90ZXh0Pjx0ZXh0IHg9IjE0MCIgeT0iMTUwIiBmb250LXNpemU9IjMwIiB0cmFuc2Zvcm09InJvdGF0ZSgtMTAgMTQwIDE1MCkiIG9wYWNpdHk9IjAuMDY1Ij7wn5KsPC90ZXh0Pjwvc3ZnPg=="); background-repeat:repeat; background-size:190px 190px; }

/* ===== Admission enquiry form ===== */
.admission-form{
  background:var(--paper);
  border:2px solid var(--line);
  border-radius:26px;
  padding:36px;
  max-width:760px;
}
.admission-form .hidden-field{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.form-group label{
  font-family:'Baloo 2', sans-serif;
  font-weight:600;
  font-size:0.9rem;
  color:var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea{
  font-family:'Nunito', sans-serif;
  padding:12px 14px;
  border-radius:14px;
  border:2px solid var(--line);
  background:var(--cream);
  font-size:0.96rem;
  color:var(--navy);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(192,57,43,0.14);
}
.form-group textarea{
  resize:vertical;
  min-height:100px;
  font-family:'Nunito', sans-serif;
}
.admission-form .btn-primary{
  width:100%;
}
@media (max-width:640px){
  .form-row{ grid-template-columns:1fr; }
  .admission-form{ padding:26px; }
}
