:root{
  --bg: #fbfdff;
  --ink: #041f2e;
  --ink-2: #0a3247;
  --muted: rgba(4,31,46,.72);
  --line: rgba(4,31,46,.10);

  --teal: #33bdd0;
  --teal-deep: #156070;
  --sun: #ffc72c;
  --coral: #f2753e;
  --rose: #eb1d44;

  --card: #ffffff;
  --mist: #e8f1f7;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px rgba(4,31,46,.12);
  --shadow-soft: 0 10px 30px rgba(4,31,46,.10);

  --container: 1100px;
}

*,
*::before,
*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
}

body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(1200px 800px at 12% 10%, rgba(51,189,208,.18), transparent 60%),
    radial-gradient(1000px 650px at 85% 8%, rgba(255,199,44,.18), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #ffffff 100%);
  font-family:"Atkinson Hyperlegible", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
}

body.nav-open{ overflow:hidden; }

a{ color:inherit; }

.container{
  width:min(var(--container), calc(100% - 2rem));
  margin:0 auto;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.2rem;
  border-radius:999px;
  border:1px solid transparent;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:700;
  letter-spacing:.02em;
  text-decoration:none;
  transition:transform .15s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  will-change:transform;
}
.btn:focus-visible{ outline:3px solid rgba(51,189,208,.35); outline-offset:3px; }
.btn:active{ transform:translateY(1px); }

.btn-primary{
  color:#0b2230;
  background:linear-gradient(120deg, var(--sun) 0%, var(--coral) 34%, var(--rose) 68%, #8d4395 100%);
  box-shadow:0 12px 26px rgba(235,29,68,.14);
}
.btn-primary:hover{ box-shadow:0 18px 38px rgba(235,29,68,.22); }

.btn-outline{
  background:rgba(255,255,255,.75);
  border-color:rgba(4,31,46,.16);
  color:var(--ink);
}
.btn-outline:hover{
  background:#fff;
  border-color:rgba(4,31,46,.24);
  box-shadow:var(--shadow-soft);
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  padding:.85rem 0;
  background:rgba(255,255,255,.55);
  border-bottom:1px solid rgba(4,31,46,.06);
  backdrop-filter: blur(12px);
  transition: background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.header.is-solid{
  background:#ffffff;
  border-bottom:1px solid rgba(4,31,46,.10);
  box-shadow:0 12px 24px rgba(4,31,46,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.logo{
  display:flex;
  align-items:center;
  gap:.75rem;
  text-decoration:none;
  min-width:0;
}
.logo-badge{
  flex:0 0 auto;
  width:42px;
  height:42px;
  border-radius:14px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,199,44,.35), transparent 70%),
    linear-gradient(145deg, rgba(51,189,208,.25), rgba(21,96,112,.10));
  display:grid;
  place-items:center;
  border:1px solid rgba(4,31,46,.10);
}
.logo-badge svg{ width:22px; height:22px; }
.logo-title{
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  line-height:1.1;
  letter-spacing:.01em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.logo-sub{
  display:block;
  margin-top:.2rem;
  font-family:"Atkinson Hyperlegible", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:700;
  font-size:.82rem;
  color:rgba(4,31,46,.65);
}

.nav{ display:none; }
.nav a{
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:700;
  text-decoration:none;
  color:rgba(4,31,46,.82);
  position:relative;
  padding:.5rem .2rem;
}
.nav a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-.45rem;
  width:100%;
  height:2px;
  transform:translateX(-50%) scaleX(0);
  transform-origin:center;
  background:linear-gradient(90deg, var(--teal), var(--teal-deep));
  transition:transform .2s ease;
  opacity:.9;
}
.nav a:hover{ color:var(--ink); }
.nav a:hover::after{ transform:translateX(-50%) scaleX(.95); }

.header-actions{ display:none; gap:.75rem; align-items:center; }

.menu-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(4,31,46,.14);
  background:rgba(255,255,255,.7);
  color:rgba(4,31,46,.9);
}
.menu-btn:focus-visible{ outline:3px solid rgba(51,189,208,.35); outline-offset:3px; }
.menu-btn svg{ width:22px; height:22px; }

@media (min-width: 980px){
  .nav{ display:flex; gap:1.35rem; align-items:center; }
  .header-actions{ display:flex; }
  .menu-btn{ display:none; }
}

/* Drawer */
.drawer{
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
}
body.nav-open .drawer{ display:block; }
.drawer-backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,31,46,.55);
}
.drawer-panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(360px, 92vw);
  background:linear-gradient(165deg, #041f2e, #0a2f44 50%, #041f2e 100%);
  color:#fff;
  transform:translateX(100%);
  transition:transform .22s ease;
  border-left:1px solid rgba(255,255,255,.10);
  box-shadow: -20px 0 60px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
}
body.nav-open .drawer-panel{ transform:translateX(0); }

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.05rem 1.05rem .85rem;
}
.drawer-title{
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  letter-spacing:.02em;
}
.drawer-close{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#fff;
}
.drawer-close svg{ width:22px; height:22px; }
.drawer-close:focus-visible{ outline:3px solid rgba(255,199,44,.45); outline-offset:3px; }

.drawer-links{
  padding:.25rem 1.05rem 1rem;
  display:flex;
  flex-direction:column;
  gap:.3rem;
}
.drawer-links a{
  text-decoration:none;
  padding:1rem .9rem;
  border-radius:14px;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:700;
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
.drawer-links a:hover{ background:rgba(255,255,255,.10); }

.drawer-actions{
  margin-top:auto;
  padding:1rem 1.05rem 1.25rem;
  display:grid;
  gap:.65rem;
}
.drawer-actions .btn-outline{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.25);
}
.drawer-actions .btn-outline:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.35);
  box-shadow:none;
}

/* Sections */
.section{ padding:4rem 0; }
.section.mist{
  background:
    radial-gradient(900px 600px at 8% 15%, rgba(51,189,208,.18), transparent 55%),
    linear-gradient(180deg, rgba(232,241,247,.85), rgba(232,241,247,.40));
}
.section-head{ max-width:60ch; }
.section-head h2{
  margin:0 0 .7rem;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:2rem;
  line-height:1.15;
  letter-spacing:-.02em;
}
.section-head p{ margin:0; color:var(--muted); }
@media (min-width: 980px){
  .section-head h2{ font-size:2.35rem; }
}

/* Hero */
.hero{
  padding:4.5rem 0 2.5rem;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-120px -40px auto -40px;
  height:420px;
  background:
    radial-gradient(280px 220px at 18% 30%, rgba(255,199,44,.40), transparent 70%),
    radial-gradient(380px 280px at 68% 20%, rgba(51,189,208,.24), transparent 72%),
    linear-gradient(135deg, rgba(21,96,112,.12), rgba(255,255,255,0));
  filter: blur(0);
  pointer-events:none;
}
.hero-inner{
  display:grid;
  gap:2.2rem;
  align-items:center;
}

/* Mobile background video layer (behind the hero copy) */
.hero-bg{
  display:none;
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-bg-video{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.04);
  filter:saturate(1.05) contrast(1.02);
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 420px at 22% 18%, rgba(255,255,255,.38), rgba(255,255,255,0) 70%),
    radial-gradient(520px 420px at 88% 12%, rgba(255,255,255,.26), rgba(255,255,255,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.22) 40%, rgba(251,253,255,.52));
  pointer-events:none;
}
.hero-copy h1{
  margin:0 0 1rem;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  font-size:2.4rem;
  line-height:1.05;
  letter-spacing:-.03em;
}
.hero-copy h1 span{ color:var(--teal-deep); }
.hero-copy p{
  margin:0 0 1.15rem;
  color:var(--muted);
  font-size:1.08rem;
}
.hero-bullets{
  margin:0 0 1.4rem;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
  color:rgba(4,31,46,.80);
}
.hero-bullets li{
  position:relative;
  padding-left:1.6rem;
}
.hero-bullets li::before{
  content:"";
  position:absolute;
  left:.15rem;
  top:.55rem;
  width:.85rem;
  height:.5rem;
  border-left:3px solid var(--teal);
  border-bottom:3px solid var(--teal);
  transform:rotate(-45deg);
  opacity:.95;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:.75rem; }

.hero-art{
  border-radius:var(--radius);
  background:
    radial-gradient(280px 220px at 20% 25%, rgba(255,199,44,.22), transparent 70%),
    radial-gradient(380px 280px at 70% 15%, rgba(51,189,208,.20), transparent 72%),
    linear-gradient(145deg, rgba(4,31,46,.06), rgba(255,255,255,.60));
  border:1px solid rgba(4,31,46,.10);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-art::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(420px 300px at 70% 10%, rgba(255,199,44,.18), transparent 60%),
    radial-gradient(520px 360px at 15% 15%, rgba(51,189,208,.16), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0) 40%, rgba(4,31,46,.04));
  pointer-events:none;
  z-index:1;
}
.hero-media{
  display:block;
  width:100%;
  height:auto;
}
.hero-media--mobile{ display:none; }
.hero-media--desktop{ display:block; }

.hero-kid{
  position:absolute;
  display:none;
  width:110px;
  height:auto;
  opacity:.92;
  pointer-events:none;
  filter: drop-shadow(0 10px 20px rgba(4,31,46,.18));
  z-index:3;
}
.hero-kid--left{ left:.6rem; bottom:.8rem; transform:rotate(-4deg); }
.hero-kid--right{ right:.6rem; bottom:.8rem; transform:rotate(5deg); }

.hero-badges{
  z-index:4;
}

.hero-video-overlay{
  position:absolute;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:.75rem;
  padding:1.25rem;
  background:
    radial-gradient(280px 200px at 50% 55%, rgba(255,255,255,.62), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(4,31,46,.00), rgba(4,31,46,.12));
  z-index:4;
  transition: opacity .2s ease, transform .2s ease;
  cursor:pointer;
}
.hero-video-play{
  width:72px;
  height:72px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.55);
  color:#fff;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,199,44,.75), rgba(255,199,44,0)),
    linear-gradient(145deg, rgba(51,189,208,.95), rgba(21,96,112,.95));
  box-shadow:0 22px 50px rgba(4,31,46,.28);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .2s ease;
}
.hero-video-play svg{ width:28px; height:28px; margin-left:2px; }
.hero-video-play:hover{ transform:translateY(-1px); box-shadow:0 28px 60px rgba(4,31,46,.32); }
.hero-video-play:focus-visible{ outline:3px solid rgba(255,199,44,.55); outline-offset:4px; }
.hero-video-caption{
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  letter-spacing:.02em;
  color:rgba(4,31,46,.78);
  background:rgba(255,255,255,.75);
  border:1px solid rgba(4,31,46,.10);
  padding:.4rem .7rem;
  border-radius:999px;
}
.hero.is-playing .hero-video-overlay{
  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
}
.hero-badges{
  position:absolute;
  left:1rem;
  bottom:1rem;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.55rem .75rem;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(4,31,46,.12);
  box-shadow:0 10px 20px rgba(4,31,46,.10);
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  font-size:.92rem;
  color:rgba(4,31,46,.88);
}
.pill-dot{
  width:.55rem;
  height:.55rem;
  border-radius:999px;
  background:linear-gradient(145deg, var(--teal), var(--teal-deep));
}

@media (min-width: 980px){
  .hero{ padding:6.25rem 0 3.25rem; }
  .hero-inner{ grid-template-columns: 1.1fr .9fr; gap:3rem; }
  .hero-copy h1{ font-size:3.35rem; }
  .hero-media--mobile{ display:none; }
  .hero-media--desktop{ display:block; }
  .hero-kid{ display:none; }
  .hero-bg{ display:none; }
  .hero-art{
    /* Desktop: use the crawl poster as a subtle background image too */
    background:
      radial-gradient(280px 220px at 20% 25%, rgba(255,199,44,.22), transparent 70%),
      radial-gradient(380px 280px at 70% 15%, rgba(51,189,208,.20), transparent 72%),
      linear-gradient(145deg, rgba(4,31,46,.06), rgba(255,255,255,.60)),
      url("../images/baby-crawl-poster.png");
    background-size: auto, auto, auto, cover;
    background-position: 0 0, 0 0, 0 0, center;
    background-repeat: no-repeat;
  }
}

/* Cards / Rails */
.cards{
  margin-top:1.75rem;
  display:flex;
  gap:1rem;
  overflow-x:auto;
  padding:.25rem .25rem 1.25rem;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.cards::-webkit-scrollbar{ height:10px; }
.cards::-webkit-scrollbar-thumb{ background:rgba(4,31,46,.12); border-radius:999px; }
.cards::-webkit-scrollbar-track{ background:transparent; }

.card{
  scroll-snap-align:start;
  flex:0 0 auto;
  width:min(320px, 86vw);
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  text-decoration:none;
  color:inherit;
  overflow:hidden;
  transform:translateY(0);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:rgba(4,31,46,.16);
}
.card:focus-visible{ outline:3px solid rgba(51,189,208,.35); outline-offset:4px; }

.card-media{
  aspect-ratio: 16 / 10;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(120px 100px at 30% 30%, rgba(255,199,44,.28), transparent 70%),
    linear-gradient(135deg, rgba(51,189,208,.26), rgba(21,96,112,.10));
}
.card-media img{
  width:72%;
  height:auto;
  opacity:.98;
}
.card-body{ padding:1.15rem 1.15rem 1.25rem; }
.card-kicker{
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.74rem;
  font-weight:800;
  color:rgba(4,31,46,.55);
}
.card-title{
  margin:.35rem 0 .45rem;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:1.3rem;
  line-height:1.15;
}
.card-desc{ margin:0; color:var(--muted); }

/* Split */
.split{
  display:grid;
  gap:2rem;
  align-items:center;
}
.split-media{
  border-radius:var(--radius);
  background:rgba(255,255,255,.7);
  border:1px solid rgba(4,31,46,.10);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.split-media img{ width:100%; height:auto; display:block; }
.bullets{
  margin:1.25rem 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.7rem;
}
.bullets li{
  padding: .9rem 1rem;
  border-radius:16px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(4,31,46,.10);
  box-shadow:0 8px 20px rgba(4,31,46,.06);
}
.split-cta{ margin-top:1.25rem; }

@media (min-width: 980px){
  .split{ grid-template-columns: 1fr 1fr; }
  .split.reverse .split-media{ order:2; }
}

/* Accordion */
.accordion{
  margin-top:1.25rem;
  border-radius:var(--radius);
  border:1px solid rgba(4,31,46,.12);
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.acc-item + .acc-item{ border-top:1px solid rgba(4,31,46,.10); }
.acc-btn{
  width:100%;
  text-align:left;
  padding:1.05rem 1.1rem;
  border:0;
  background:transparent;
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  font-size:1.05rem;
  cursor:pointer;
}
.acc-btn:focus-visible{ outline:3px solid rgba(51,189,208,.35); outline-offset:3px; }
.acc-icon{
  flex:0 0 auto;
  width:28px;
  height:28px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:rgba(4,31,46,.06);
  border:1px solid rgba(4,31,46,.10);
  transition:transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.acc-icon svg{ width:18px; height:18px; }
.acc-panel{
  padding:0 1.1rem 1.1rem;
  color:var(--muted);
}
.acc-item[data-open="true"] .acc-icon{
  transform:rotate(90deg);
  background:rgba(51,189,208,.16);
  border-color:rgba(51,189,208,.25);
}

/* Footer CTA */
.footer-cta{
  padding:4rem 0;
  background:
    radial-gradient(700px 450px at 20% 10%, rgba(255,199,44,.22), transparent 60%),
    radial-gradient(900px 600px at 85% 30%, rgba(51,189,208,.22), transparent 65%),
    linear-gradient(145deg, #041f2e, #0a2f44);
  color:#fff;
  text-align:center;
}
.footer-cta h2{
  margin:0 0 .75rem;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:2.2rem;
  line-height:1.1;
  letter-spacing:-.02em;
}
.footer-cta p{ margin:0 auto 1.25rem; max-width:65ch; color:rgba(255,255,255,.85); }
.cta-row{ display:flex; justify-content:center; gap:.75rem; flex-wrap:wrap; margin-top:1rem; }
.cta-note{ margin-top:1.25rem; font-weight:700; color:rgba(255,255,255,.75); }
.footer-cta .btn-outline{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.28);
}
.footer-cta .btn-outline:hover{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.38); }

/* Marquee */
.marquee{
  margin-top:1.25rem;
  border-radius:999px;
  border:1px solid rgba(4,31,46,.10);
  background:rgba(255,255,255,.65);
  overflow:hidden;
}
.marquee-track{
  display:flex;
  gap:.75rem;
  width:max-content;
  padding:.85rem 1rem;
  animation: marquee 22s linear infinite;
}
.logo-pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.55rem .85rem;
  border-radius:999px;
  border:1px solid rgba(4,31,46,.10);
  background:#fff;
  box-shadow:0 8px 18px rgba(4,31,46,.06);
  white-space:nowrap;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  font-size:.95rem;
}
.logo-dot{
  width:.55rem;
  height:.55rem;
  border-radius:999px;
  background:linear-gradient(145deg, var(--sun), var(--coral));
}
@keyframes marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation:none; }
}

/* Mobile-specific hero media */
@media (max-width: 979.98px){
  .hero{ padding-top:4rem; }
  .hero::before{ display:none; }
  .hero-bg{ display:block; }
  .hero-inner{ position:relative; z-index:2; }
  .hero-inner{ justify-items:center; }
  .hero-copy{
    background:rgba(255,255,255,.60);
    border:1px solid rgba(4,31,46,.10);
    border-radius:var(--radius);
    padding:1.2rem 1.1rem;
    box-shadow:0 18px 45px rgba(4,31,46,.10);
    backdrop-filter: blur(10px);
    width:100%;
    max-width:520px;
  }
  .hero-copy p{ font-size:1.02rem; }
  .hero-badges--inline{ margin-top:1rem; }

  /* Hide the separate media card on mobile; background video replaces it */
  .hero-art{ display:none; }

  .hero-media--mobile{ display:block; }
  .hero-media--desktop{ display:none; }
  .hero-media--mobile{
    width:100%;
    height:auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .hero-kid{ display:block; }
  .hero-badges{ left:.85rem; bottom:4.1rem; }
  .hero-video-overlay{ display:flex; }
}

/* Floating action buttons */
.fabs{
  position:fixed;
  right:1rem;
  bottom:1rem;
  display:flex;
  flex-direction:column;
  gap:.75rem;
  z-index:1500;
}
.fab{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  text-decoration:none;
  box-shadow:0 16px 40px rgba(4,31,46,.22);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  backdrop-filter: blur(10px);
  transition:transform .15s ease, box-shadow .2s ease;
}
.fab svg{ width:26px; height:26px; }
.fab:hover{ transform:translateY(-2px); box-shadow:0 22px 50px rgba(4,31,46,.26); }
.fab:focus-visible{ outline:3px solid rgba(255,199,44,.55); outline-offset:4px; }
.fab-wa{ background:linear-gradient(145deg, #25d366, #128c7e); }
.fab-call{ background:linear-gradient(145deg, var(--teal), var(--teal-deep)); }
.footer{
background:#041f2e;
color:#fff;
padding:60px 0 30px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.5fr;
gap:40px;
}

.footer h4{
margin-bottom:16px;
font-size:18px;
}

.footer ul{
list-style:none;
padding:0;
margin:0;
}

.footer ul li{
margin-bottom:10px;
}

.footer a{
color:#cfe7f2;
text-decoration:none;
}

.footer a:hover{
color:#fff;
}

.footer-desc{
margin-top:15px;
color:#cfe7f2;
line-height:1.6;
}

.footer-bottom{
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.15);
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
}

.footer-legal a{
margin-left:20px;
}

@media(max-width:900px){

.footer-grid{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
gap:10px;
}

}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-media img{
width:100%;
border-radius:18px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.about-text{
margin:20px 0;
line-height:1.7;
color:#516b78;
}

.about-points{
margin-top:20px;
padding:0;
list-style:none;
}

.about-points li{
margin-bottom:10px;
padding-left:28px;
position:relative;
}

.about-points li:before{
content:"✓";
position:absolute;
left:0;
top:0;
color:#1f9d8f;
font-weight:700;
}

.about-cta{
margin-top:30px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

@media(max-width:900px){

.about-grid{
grid-template-columns:1fr;
gap:40px;
}

}
.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
width:100%;
border-radius:12px;
object-fit:cover;
height:240px;
transition:0.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

@media(max-width:768px){

.gallery-grid{
grid-template-columns:1fr 1fr;
}

}

/* PROGRAMS SECTION */

.programs{
padding:80px 0;
background:#f7fbfd;
}


/* GRID */

.program-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}


/* CARD */

.program-card{
background:#ffffff;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:all 0.3s ease;
text-align:left;
}


/* IMAGE */

.program-card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}


/* TEXT */

.program-card h3{
font-size:20px;
font-weight:600;
margin:20px 20px 10px;
color:#0f2f3c;
}

.program-card p{
font-size:15px;
line-height:1.6;
margin:0 20px 25px;
color:#5a6f7a;
}


/* HOVER EFFECT */

.program-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}


/* RESPONSIVE */

@media(max-width:1024px){

.program-grid{
grid-template-columns:repeat(2,1fr);
}

}


@media(max-width:640px){

.program-grid{
grid-template-columns:1fr;
}

.program-card img{
height:200px;
}

}

.blog-preview{
background:#f7fbfd;
padding:80px 0;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.blog-card{
background:#fff;
border-radius:16px;
overflow:hidden;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.3s;
}

.blog-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.blog-image img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:20px;
}

.blog-content h3{
font-size:20px;
margin-bottom:10px;
color:#0f2f3c;
}

.blog-content p{
font-size:15px;
color:#5a6f7a;
line-height:1.6;
}

.blog-read{
display:inline-block;
margin-top:12px;
font-weight:600;
color:#1f9d8f;
}

.blog-more{
margin-top:40px;
text-align:center;
}

@media(max-width:900px){

.blog-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.blog-grid{
grid-template-columns:1fr;
}

}