: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;

  /* JS updates this to the real header height (see public/js/welcome.js) */
  --header-h: 96px;

  /* Motion */
  --motion-ease: cubic-bezier(.2,.8,.2,1);
  --motion-ease-out: cubic-bezier(.16,1,.3,1);
  --motion-fast: 140ms;
  --motion-med: 220ms;
  --motion-slow: 520ms;
}

*,
*::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; }

/* Global motion safety */
@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Page fade-in */
body{
  animation: page-in var(--motion-slow) var(--motion-ease-out) both;
}
@keyframes page-in{
  from{ opacity:.001; transform: translateY(6px); }
  to{ opacity:1; transform:none; }
}

/* Scroll reveal (JS adds .motion-reveal + toggles .is-inview) */
.motion-reveal{
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 18px), 0) scale(var(--reveal-scale, 1));
  transition:
    opacity var(--motion-slow) var(--motion-ease-out),
    transform var(--motion-slow) var(--motion-ease-out);
  will-change: opacity, transform;
}
.motion-gsap{
  transition: none !important;
}
.motion-reveal.is-inview{
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}
.motion-pop{
  --reveal-y: 12px;
  --reveal-scale: .985;
}
.motion-pop.is-inview{
  transform: translate3d(0,0,0) scale(1);
}
.motion-left{ --reveal-x: -22px; --reveal-y: 0px; }
.motion-right{ --reveal-x: 22px; --reveal-y: 0px; }
.motion-top{ --reveal-x: 0px; --reveal-y: -18px; }

/* Loader (site-wide) */
.site-loader{
  display:none;
}
.js .site-loader{
  position:fixed;
  inset:0;
  z-index:5000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  background:
    radial-gradient(900px 600px at 12% 18%, rgba(51,189,208,.22), transparent 55%),
    radial-gradient(900px 600px at 85% 24%, rgba(255,199,44,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity var(--motion-med) var(--motion-ease-out);
}
.js .site-loader.is-hiding{
  opacity: 0;
}
.site-loader-card{
  width: min(520px, 92vw);
  border-radius: 28px;
  border: 1px solid rgba(4,31,46,.10);
  background: rgba(255,255,255,.72);
  box-shadow: 0 28px 80px rgba(4,31,46,.18);
  padding: 18px 18px 16px;
  position: relative;
  overflow:hidden;
}
.site-loader-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 260px at 20% 10%, rgba(255,199,44,.22), transparent 60%),
    radial-gradient(420px 260px at 80% 10%, rgba(51,189,208,.18), transparent 62%);
  pointer-events:none;
}
.site-loader-brand{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap: 14px;
}
.site-loader-icon{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(4,31,46,.10);
  box-shadow: 0 18px 45px rgba(4,31,46,.14);
  position: relative;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.site-loader-icon::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, rgba(51,189,208,.0), rgba(51,189,208,.55), rgba(255,199,44,.55), rgba(235,29,68,.55), rgba(51,189,208,.0));
  filter: blur(.0px);
  opacity: .85;
  mask: radial-gradient(circle at center, transparent 60%, #000 62%);
  -webkit-mask: radial-gradient(circle at center, transparent 60%, #000 62%);
  animation: loader-ring 1.1s linear infinite;
}
@keyframes loader-ring{ to { transform: rotate(360deg); } }
.site-loader-logo{
  width: 54px;
  height: 54px;
  object-fit: contain;
  display:block;
  mix-blend-mode: multiply;
  animation: loader-bob 1.25s var(--motion-ease-out) infinite;
}
@keyframes loader-bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-2px); }
}
.site-loader-text{
  min-width:0;
}
.site-loader-name{
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  color: rgba(4,31,46,.92);
  line-height: 1.05;
  font-size: 1.15rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.site-loader-tag{
  margin-top: .2rem;
  color: rgba(4,31,46,.62);
  font-weight: 800;
  font-size: .9rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.site-loader-bar{
  position:relative;
  z-index:1;
  margin-top: 14px;
  height: 10px;
  border-radius: 999px;
  background: rgba(4,31,46,.08);
  overflow:hidden;
  border: 1px solid rgba(4,31,46,.06);
}
.site-loader-fill{
  display:block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--sun), var(--coral), var(--rose));
  animation: loader-fill 1.6s var(--motion-ease-out) infinite;
  box-shadow: 0 10px 24px rgba(235,29,68,.12);
}
@keyframes loader-fill{
  0%{ width: 12%; transform: translateX(-10%); opacity:.85; }
  55%{ width: 78%; transform: translateX(0%); opacity:1; }
  100%{ width: 96%; transform: translateX(8%); opacity:.95; }
}

.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:hover{ 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:.45rem 0;
  background:transparent;
  border-bottom:0;
  transition: transform .2s ease;
}

.header-pill{
  background: linear-gradient(180deg, rgba(255, 232, 240, .92), rgba(255, 232, 240, .74));
  border: 1px solid rgba(4,31,46,.10);
  border-radius:999px;
  box-shadow: 0 22px 60px rgba(4,31,46,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header.is-solid .header-pill{
  background:rgba(255,255,255,.92);
  border-color:rgba(4,31,46,.12);
  box-shadow:0 14px 40px rgba(4,31,46,.16);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:1rem;
  padding:.55rem 1.05rem;
}

.logo{
  display:flex;
  align-items:center;
  gap:.75rem;
  text-decoration:none;
  min-width:0;
}
.logo-img{
  height:64px;
  width:auto;
  border-radius:0;
  flex:0 0 auto;
  box-shadow:none;
  background:transparent;
  display:block;
  object-fit: contain;
  max-width: 380px;
}
.logo > div{
  min-width:0;
}
.logo-name{
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  letter-spacing:-.02em;
  font-size:1.05rem;
  line-height:1.05;
  color: rgba(4,31,46,.92);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 220px;
}
.logo-tagline{
  margin-top:.2rem;
  font-family:"Atkinson Hyperlegible", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  font-size:.82rem;
  color:rgba(4,31,46,.62);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 220px;
}
.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; margin-left:1.25rem; }
.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);
  margin-left:auto;
}
.menu-btn:focus-visible{ outline:3px solid rgba(51,189,208,.35); outline-offset:3px; }
.menu-btn svg{ width:22px; height:22px; }
.menu-btn{
  transition: transform var(--motion-fast) var(--motion-ease-out), box-shadow var(--motion-fast) var(--motion-ease-out);
}
.menu-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(4,31,46,.12);
}

@media (min-width: 980px){
  .header-inner{
    display:grid;
    grid-template-columns: 1fr 2fr 1fr; /* ~25% / 50% / 25% */
    align-items:center;
    gap: 1.05rem;
  }
  .logo{
    justify-self:start;
    min-width: 0;
  }
  .logo{
    gap: 1.1rem;
  }
  .logo-img{
    /* Make logo clearly visible without making header too tall */
    height: 58px;
    transform: scale(1.35);
    transform-origin: left center;
    /* Helps reduce visible white blocks if the logo isn't transparent */
    mix-blend-mode: multiply;
  }
  .logo-name{
    font-size: 1.12rem;
    max-width: 260px;
  }
  .logo-tagline{
    font-size: .86rem;
    max-width: 260px;
  }
  .nav{
    display:flex;
    gap:1.35rem;
    align-items:center;
    justify-content:center;
    margin-left:0;
  }
  .header-actions{
    display:flex;
    justify-content:flex-end;
    margin-left:0;
  }
  .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{
  /* Pull the hero/slider under the header so it stays "full" behind the sticky header */
  margin-top: calc(-1 * var(--header-h));
  padding: calc(4.5rem + var(--header-h)) 0 2.5rem;
  position:relative;
  overflow:hidden;
}
.hero--bg-slider::before{ display:none; }
.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;
  position:relative;
  z-index:2;
}

/* Hero background layer (image slider) */
.hero-bg{
  display:block;
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.hero-bg-layer{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position: right center;
  background-repeat:no-repeat;
  opacity:0;
  transform: scale(1.04);
  transition: opacity 900ms ease;
  will-change: opacity;
}
.hero-bg-layer.is-active{ opacity:1; }
@media (prefers-reduced-motion: reduce){
  .hero-bg-layer{ transition:none; }
}
.hero-bg-video{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.04);
  filter:saturate(1.05) contrast(1.02);
}
.hero-bg::after{ display: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: calc(6.25rem + var(--header-h)) 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-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 var(--motion-med) var(--motion-ease-out), box-shadow var(--motion-med) var(--motion-ease-out), border-color var(--motion-med) var(--motion-ease-out);
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:rgba(4,31,46,.16);
}

/* Blog cards / program cards hover parity */
.blog-card, .program-card, .team-tile{
  transition: transform var(--motion-med) var(--motion-ease-out), box-shadow var(--motion-med) var(--motion-ease-out), border-color var(--motion-med) var(--motion-ease-out);
}
.blog-card:hover, .program-card:hover, .team-tile:hover{
  transform: translateY(-6px);
}
.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); }

/* FAQ block (reusable component) */
.mom-faq{
  display:grid;
  gap:.75rem;
  max-width: 920px;
}
.mom-faq-item{
  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;
}
.mom-faq-q{
  list-style:none;
  cursor:pointer;
  padding: 1rem 1.1rem;
  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:900;
  color: rgba(4,31,46,.90);
}
.mom-faq-q::-webkit-details-marker{ display:none; }
.mom-faq-icon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(51,189,208,.14);
  border: 1px solid rgba(51,189,208,.25);
  color: rgba(21,96,112,1);
  font-weight: 900;
  flex: 0 0 auto;
}
.mom-faq-item[open] .mom-faq-icon{ content:"–"; }
.mom-faq-item[open] .mom-faq-icon{ transform: rotate(45deg); }
.mom-faq-a{
  padding: 0 1.1rem 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 650;
}

/* Explore Topics (reusable component) - matches the provided reference UI */
.mom-explore{
  padding: 4.25rem 0 4.5rem;
  background: #fbf7ef;
}
.mom-explore-title{
  margin: 0 0 2.25rem;
  text-align: center;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  letter-spacing:-.02em;
  color: #0b2b44;
  font-size: clamp(26px, 3.2vw, 44px);
}
.mom-explore-grid{
  width:min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.1rem 1.6rem;
  align-items:start;
}
@media (min-width: 860px){
  .mom-explore-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.mom-explore-item{
  text-decoration:none;
  color: #0b2b44;
  display:grid;
  justify-items:center;
  gap: 1rem;
  padding: .25rem .25rem;
}
.mom-explore-item:hover .mom-explore-label{
  text-decoration: underline;
}
.mom-explore-media{
  width: 132px;
  height: 132px;
  border-radius: 999px;
  overflow:hidden;
  display:block;
  background: rgba(255,255,255,.75);
  box-shadow: 0 18px 45px rgba(4,31,46,.16);
  border: 1px solid rgba(4,31,46,.08);
}
.mom-explore-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(1.02);
}
.mom-explore-label{
  text-align:center;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: -.01em;
  max-width: 18ch;
}
@media (min-width: 860px){
  .mom-explore-label{ font-size: 1.15rem; }
}

/* 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: calc(4rem + var(--header-h)); }
  .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 (mega-links like reference screenshot) */
.footer.footer--mega{
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(51,189,208,.20), transparent 60%),
    radial-gradient(900px 520px at 90% 0%, rgba(255,199,44,.18), transparent 55%),
    linear-gradient(180deg, #062f54 0%, #041f2e 100%);
  color:#fff;
  padding:4.5rem 0 2.5rem;
  position:relative;
  overflow:hidden;
}
.footer.footer--mega::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(1200px 500px at 50% 0%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(235,29,68,.10), transparent 65%);
  pointer-events:none;
  opacity:.9;
}
.footer.footer--mega .container{ position:relative; z-index:1; }

.btn.btn-sm{
  padding:.72rem 1rem;
  font-size:.95rem;
}
.btn.btn-sm.btn-outline{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.22);
  color:#fff;
}
.btn.btn-sm.btn-outline:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.30);
  box-shadow:none;
}

.footer.footer--mega .footer-top{
  display:grid;
  grid-template-columns: 1.1fr 1.7fr auto;
  gap:1.5rem 2.2rem;
  align-items:center;
  padding:1.4rem 1.25rem;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  box-shadow:0 26px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.footer.footer--mega .footer-brand{
  display:flex;
  align-items:center;
  gap:.85rem;
  text-decoration:none;
  color:#fff;
  min-width:0;
}
.footer.footer--mega .footer-logo{
  width:46px;
  height:46px;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 14px 40px rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.10);
}
.footer.footer--mega .footer-brandtext{ display:grid; gap:.15rem; min-width:0; }
.footer.footer--mega .footer-brandtitle{
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:950;
  letter-spacing:.01em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.footer.footer--mega .footer-brandsub{
  color:rgba(255,255,255,.75);
  font-weight:700;
  font-size:.95rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.footer.footer--mega .footer-about{
  margin:0;
  color:rgba(255,255,255,.78);
  font-weight:650;
  line-height:1.55;
  max-width:70ch;
}
.footer.footer--mega .footer-ctas{
  display:flex;
  gap:.75rem;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.footer.footer--mega .footer-nav{
  margin-top:2.6rem;
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap:2.2rem;
}
.footer.footer--mega .footer-title{
  margin:0 0 1rem;
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  font-size:.86rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
  display:flex;
  align-items:center;
  gap:.5rem;
}
.footer.footer--mega .footer-title::before{
  content:"";
  width:.55rem;
  height:.55rem;
  border-radius:999px;
  background:linear-gradient(145deg, var(--sun), var(--teal));
  box-shadow:0 10px 25px rgba(255,199,44,.18);
  flex:0 0 auto;
}
.footer.footer--mega .footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.7rem;
}
.footer.footer--mega .footer-links a{
  color:rgba(255,255,255,.84);
  text-decoration:none;
  font-weight:650;
  line-height:1.25;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  transition: color .15s ease, transform .15s ease, opacity .15s ease;
}
.footer.footer--mega .footer-links a::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.28);
  transform:scale(.8);
  opacity:.7;
  transition:transform .15s ease, opacity .15s ease, background-color .15s ease;
}
.footer.footer--mega .footer-links a:hover{
  color:#fff;
  transform: translateX(3px);
}
.footer.footer--mega .footer-links a:hover::before{
  background:linear-gradient(145deg, var(--sun), var(--teal));
  opacity:1;
  transform:scale(1);
}
.footer.footer--mega .footer-bottom{
  margin-top:3rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.footer.footer--mega .footer-brandline{
  display:flex;
  align-items:center;
  gap:.65rem;
  min-width:0;
}
.footer.footer--mega .footer-mark{
  width:34px;
  height:34px;
  border-radius:10px;
  object-fit:cover;
  box-shadow:0 14px 35px rgba(0,0,0,.22);
}
.footer.footer--mega .footer-brandname{
  font-family:"Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:900;
  letter-spacing:.01em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.footer.footer--mega .footer-copy{
  margin:0;
  color:rgba(255,255,255,.70);
  font-weight:650;
}
@media (max-width: 1200px){
  .footer.footer--mega .footer-top{ grid-template-columns: 1fr; }
  .footer.footer--mega .footer-ctas{ justify-content:flex-start; }
  .footer.footer--mega .footer-nav{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .footer.footer--mega .footer-nav{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap:1.6rem; }
}
@media (max-width: 460px){
  .footer.footer--mega .footer-nav{ grid-template-columns: 1fr; }
}
.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;
}

}

/* Research Callout (Welcome) */
.research-callout{
  padding: 78px 0;
  background: linear-gradient(180deg, rgba(251,247,239,.86), rgba(251,247,239,.62));
  border-top: 1px solid rgba(4,31,46,.06);
  border-bottom: 1px solid rgba(4,31,46,.06);
}
.research-title{
  margin: 0 auto 40px;
  max-width: 980px;
  text-align: center;
  font-family: "Alexandria", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-size: clamp(26px, 3.2vw, 44px);
  color: #0b2434;
}
.research-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: start;
}
.research-copy{
  font-size: 18px;
  color: rgba(4,31,46,.82);
  line-height: 1.9;
}
.research-copy p{
  margin: 0 0 22px;
  max-width: 720px;
}
.research-rule{
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: rgba(4,31,46,.22);
  margin-top: 18px;
}
.research-media{
  position: relative;
}
.research-figure{
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(4,31,46,.10);
  box-shadow: 0 22px 60px rgba(4,31,46,.16);
  padding: 14px;
  overflow: hidden;
}
.research-figure img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
@media (max-width: 980px){
  .research-grid{ grid-template-columns: 1fr; }
  .research-copy{ font-size: 17px; }
  .research-copy p{ max-width: none; }
}
