/* =========================================================
   Little Rockers Family Day Care - Stylesheet
   Warm, modern, mobile-first, accessible
   ========================================================= */

:root {
  --coral: #ff7a59;
  --coral-dark: #ed5c39;
  --teal: #2ec4b6;
  --teal-dark: #1f9e92;
  --yellow: #ffc94b;
  --pink: #ff8fb1;
  --ink: #2b2d42;
  --ink-soft: #565978;
  --cream: #fff7f0;
  --sky: #eaf8f7;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(43, 45, 66, .08);
  --shadow-md: 0 10px 30px rgba(43, 45, 66, .12);
  --shadow-lg: 0 20px 50px rgba(43, 45, 66, .16);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1140px;
  --font: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Baloo 2", var(--font);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.0625rem;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--coral-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--cream { background: var(--cream); }
.section--sky { background: var(--sky); }
.text-center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.eyebrow {
  display: inline-block; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  font-size: .8rem; color: var(--teal-dark); background: var(--sky);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-head { max-width: 720px; margin: 0 auto 48px; }
.section-head.text-center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font); font-weight: 800; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s;
  text-decoration: none; line-height: 1;
}
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 20px rgba(255,122,89,.35); }
.btn--primary:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,122,89,.45); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(46,196,182,.35); }
.btn--teal:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 17px 36px; font-size: 1.08rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(43,45,66,.07);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); line-height: 1.1; }
.brand-text small { display: block; font-family: var(--font); font-weight: 700; font-size: .72rem; color: var(--teal-dark); letter-spacing: .03em; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: 10px 14px; border-radius: 999px; font-weight: 700;
  color: var(--ink); font-size: .98rem;
}
.nav-links a:hover, .nav-links a.active { background: var(--sky); color: var(--teal-dark); }
.nav-links .btn { color: #fff; }
.nav-links .btn:hover { color: #fff; }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  width: 46px; height: 46px; border-radius: 12px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px auto; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 4px; background: #fff; padding: 18px 22px 28px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s ease; max-height: calc(100vh - 72px);
    overflow-y: auto; border-bottom: 3px solid var(--coral);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav-cta { margin: 8px 0 0; }
  .nav-links .btn { justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #fff7f0 0%, #ffe9df 45%, #eaf8f7 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: clamp(40px, 7vw, 84px) 0; }
.hero h1 span { color: var(--coral-dark); }
.hero .lead { margin-bottom: 28px; max-width: 36ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; font-weight: 700; color: var(--ink-soft); font-size: .95rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 16px 20px; display: flex; align-items: center; gap: 12px; font-weight: 800;
}
.hero-badge .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--coral-dark); line-height: 1; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: 0; }
.blob--1 { width: 220px; height: 220px; background: var(--yellow); top: -60px; right: -40px; }
.blob--2 { width: 160px; height: 160px; background: var(--pink); bottom: 40px; left: -50px; }
.hero .container { position: relative; z-index: 1; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -26px; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(43,45,66,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 16px; background: var(--sky);
}
.card .icon--coral { background: #ffe6dd; }
.card .icon--yellow { background: #fff2cf; }
.card .icon--pink { background: #ffe1ea; }
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- Check list ---------- */
.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 36px; margin-bottom: 12px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 24px; height: 24px;
  background: var(--teal); color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-size: .8rem; font-weight: 900;
}

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.statband .stat .num { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); color: var(--coral-dark); line-height: 1; }
.statband .stat .label { font-weight: 700; color: var(--ink-soft); }
@media (max-width: 600px) { .statband { grid-template-columns: repeat(2,1fr); gap: 28px 12px; } }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 720px){ .price-grid { grid-template-columns: 1fr; } }
.price-card { background:#fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); border: 2px solid transparent; position: relative; }
.price-card.featured { border-color: var(--coral); box-shadow: var(--shadow-md); }
.price-card .tag { position:absolute; top:-14px; right:24px; background: var(--coral); color:#fff; font-weight:800; font-size:.78rem; padding:6px 14px; border-radius:999px; }
.price-card h3 { margin-bottom: 6px; }
.price-card .price { font-family: var(--font-display); font-size: 2.4rem; color: var(--ink); line-height: 1; margin: 6px 0 4px; }
.price-card .price small { font-size: 1rem; color: var(--ink-soft); font-family: var(--font); font-weight: 700; }
.price-card .per { color: var(--ink-soft); font-weight: 700; margin-bottom: 16px; }

.note-card { background:#fff; border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); border-left: 5px solid var(--yellow); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 820px){ .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; aspect-ratio: 4/3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }

.lightbox { position: fixed; inset: 0; background: rgba(20,20,30,.92); display: none; align-items: center; justify-content: center; z-index: 200; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 18px; right: 24px; background: none; border: none; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(160deg, #eaf8f7 0%, #fff7f0 100%); padding: clamp(40px,6vw,72px) 0; text-align: center; }
.page-hero .eyebrow { background: #fff; }
.page-hero p { max-width: 640px; margin-left: auto; margin-right: auto; }
.breadcrumb { font-size: .9rem; color: var(--ink-soft); margin-bottom: 14px; font-weight: 700; }
.breadcrumb a { color: var(--teal-dark); }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.2em; color: var(--coral-dark); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--coral) 0%, var(--pink) 100%); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px,6vw,64px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn--ghost { color: var(--coral-dark); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.info-list .ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; background: var(--sky); display: grid; place-items: center; font-size: 1.3rem; }
.info-list strong { display: block; font-family: var(--font-display); }
.info-list a { color: var(--ink); }
.info-list a:hover { color: var(--coral-dark); }

.form { background:#fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); }
.form label { display:block; font-weight: 800; margin-bottom: 6px; font-size: .95rem; }
.field { margin-bottom: 18px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 16px; border: 2px solid #ece6df; border-radius: 14px;
  font-family: var(--font); font-size: 1rem; background: #fdfbf9; transition: border .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(46,196,182,.15); }
.form textarea { min-height: 130px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px){ .form .row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 4px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 28px; border: 0; }
.map-embed iframe { display:block; width:100%; height: 320px; border:0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cbcde0; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.site-footer a { color: #cbcde0; }
.site-footer a:hover { color: var(--yellow); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-brand img { height: 50px; background:#fff; padding:8px 12px; border-radius: 12px; margin-bottom: 14px; }
.footer-brand p { max-width: 34ch; font-size: .96rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .88rem; }
.social { display: flex; gap: 12px; }
.social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; font-size: 1.1rem; }
.social a:hover { background: var(--coral); color:#fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Skip link / a11y ---------- */
.skip-link { position:absolute; left:-999px; top:0; background: var(--coral); color:#fff; padding:10px 16px; border-radius:0 0 10px 0; z-index: 300; }
.skip-link:focus { left:0; color:#fff; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
