/* TLC Childcare Center: "soft pastel". Blush, mint and lavender from the TLC
   letters, the logo's golden sun arc, rolling hills and small hearts. */
:root {
  --navy: #1D2F5E; --pink: #EE6A86; --pink-dk: #C23F63; --mint: #3FB8AE; --lav: #9178B8; --sun: #F2C14E;
  --pink-t: #FDE3E9; --mint-t: #DDF3F0; --lav-t: #ECE5F6; --sun-t: #FDF1D2;
  --bg: #FFF9F7; --surface: #FDEFF2; --ink: var(--navy); --muted: #52607F; --line: #F1DCE2;
  --brand: var(--pink-dk); --brand-ink: #fff; --accent: var(--mint); --kicker: #7A5FA8;
  --font-d: "Baloo 2", "Trebuchet MS", sans-serif; --font-b: "Quicksand", system-ui, sans-serif;
  --btn-r: 999px; --card-r: 32px; --photo-r: 40px; --field-r: 18px;
  --btn-shadow: 0 12px 24px -12px rgba(194, 63, 99, 0.7); --dur: 220ms; --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --foot-bg: var(--navy); --foot-ink: #fff; --cta-bg: var(--lav-t); --cta-ink: var(--navy);
  --ring: rgba(238, 106, 134, 0.22); --chip-bg: #fff; --nav-active: var(--pink-t); --nav-active-ink: var(--pink-dk);
}
body { font-weight: 500; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.01em; }
.hdr { background: rgba(255, 249, 247, 0.92); backdrop-filter: blur(10px); border-bottom: 0; box-shadow: 0 1px 0 var(--line); }

/* Hero: pastel wash, golden sun arc, video in a soft blob */
.hero { background: linear-gradient(180deg, var(--pink-t) 0%, var(--bg) 85%); padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem); }
.hero::after { /* rolling hill under the hero */
  content: ""; position: absolute; left: -5%; right: -5%; bottom: -1px; height: clamp(40px, 7vw, 90px);
  background: var(--bg); border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.8rem, 1.5rem + 4.8vw, 5.2rem); line-height: 0.98; }
.hero h1 .hl { color: var(--pink-dk); }
.hero-visual { position: relative; padding: 8% 4% 0; }
.sun-arc { position: absolute; top: -2%; left: 2%; width: 96%; color: var(--sun); z-index: 0; }
.hero-frame {
  position: relative; z-index: 1; aspect-ratio: 1.08; overflow: hidden;
  border-radius: 58% 42% 52% 48% / 52% 46% 54% 48%;
  box-shadow: 0 0 0 12px #fff, 0 40px 70px -40px rgba(29, 47, 94, 0.55);
}
.heart { position: absolute; z-index: 2; fill: var(--pink); filter: drop-shadow(0 8px 10px rgba(194, 63, 99, 0.3)); animation: bob 5s ease-in-out infinite; }
.heart-1 { width: clamp(38px, 5vw, 64px); right: 0; bottom: 8%; }
.heart-2 { width: clamp(24px, 3vw, 38px); left: 0; top: 30%; fill: var(--lav); animation-delay: -2s; }
@keyframes bob { 50% { translate: 0 -10px; } }

/* Photos as soft rounded tiles with pastel mats */
.strip-item { padding: 10px; border-radius: 40px; }
.strip-item:nth-child(1) { background: var(--pink-t); } .strip-item:nth-child(2) { background: var(--mint-t); margin-top: 2.5rem; }
.strip-item:nth-child(3) { background: var(--lav-t); } .strip-item:nth-child(4) { background: var(--sun-t); margin-top: 2.5rem; }
.strip-item img { border-radius: 32px; }

.welcome h2, .ages-sec h2, .day-sec h2, .hours-sec h2 { position: relative; }
.section h2::after {
  content: ""; display: inline-block; width: 0.5em; height: 0.46em; margin-left: 0.25em; background: var(--pink);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 22'%3E%3Cpath d='M12 21s-9-5.6-9-12.1A5 5 0 0 1 12 6a5 5 0 0 1 9 2.9C21 15.4 12 21 12 21z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 22'%3E%3Cpath d='M12 21s-9-5.6-9-12.1A5 5 0 0 1 12 6a5 5 0 0 1 9 2.9C21 15.4 12 21 12 21z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.facts li { background: #fff; box-shadow: 0 6px 16px -10px rgba(29, 47, 94, 0.35); }

/* Age cards: pastel pillows */
.ages-sec { background: #fff; border-radius: 60px 60px 0 0; }
.age { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.age:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: 0 24px 40px -26px rgba(29, 47, 94, 0.45); }
.age-1 { background: var(--pink-t); } .age-2 { background: var(--mint-t); } .age-3 { background: var(--lav-t); } .age-4 { background: var(--sun-t); }
.age-range { color: var(--navy); opacity: 0.75; }
.ages-sec .ages + .more, .ages-sec .sec-head { position: relative; }
.svc { border-top: 0; background: #fff; border-radius: 26px; padding: 1.4rem 1.5rem; box-shadow: 0 10px 30px -22px rgba(29, 47, 94, 0.45); }
.svc-num { display: inline-grid; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--mint-t); color: #1E7F77; }
.day-in .svcs { gap: 1rem; }

/* CTA band: lavender with a sun arc */
.cta-band { border-radius: 60px 60px 0 0; }
.cta-band::before {
  content: ""; position: absolute; width: 520px; height: 520px; right: -140px; top: -300px; border-radius: 50%;
  border: 14px solid var(--sun); opacity: 0.8;
}
.cta-band .btn-ghost { color: var(--navy); }
.foot { margin-top: -1px; }
.foot-logo { border-radius: 32px; }
.btn-foot { background: var(--pink); color: #fff; }

.page-hero { background: linear-gradient(180deg, var(--lav-t), var(--bg)); }
.page-hero::after {
  content: ""; position: absolute; width: 380px; height: 380px; right: -80px; top: -200px; border-radius: 50%;
  border: 12px solid var(--sun); opacity: 0.7;
}
.place { background: var(--mint-t); }
.day-photo img { border-radius: 58% 42% 52% 48% / 46% 50% 50% 54%; }

@media (max-width: 860px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; width: 100%; margin-inline: auto; }
  .strip-item:nth-child(n) { margin-top: 0; }
  .ages-sec, .cta-band { border-radius: 36px 36px 0 0; }
}
