:root {
  --navy: #0a3f73;
  --navy-2: #082f56;
  --sky: #33b9dc;
  --sky-soft: #dff7ff;
  --sun: #ffcf3b;
  --coral: #ff6675;
  --pink: #ffedf2;
  --mint: #4ccf9c;
  --cream: #fff8e7;
  --ink: #123047;
  --muted: #5d7182;
  --white: #ffffff;
  --line: rgba(10,63,115,.14);
  --shadow: 0 24px 70px rgba(8,47,86,.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,207,59,.18), transparent 23rem),
    radial-gradient(circle at 94% 18%, rgba(51,185,220,.16), transparent 23rem),
    linear-gradient(180deg, #fffaf0 0%, #f7fcff 42%, #fffaf0 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10,63,115,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,63,115,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.section-pad { padding: 96px 0; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
}
.skip-link:focus { top: 12px; }

.top-ribbon {
  background: var(--navy-2);
  color: var(--white);
  font-size: .94rem;
}
.ribbon-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.ribbon-inner a { text-decoration: none; font-weight: 800; }
.ribbon-inner a:hover { color: var(--sun); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 176px; max-height: 68px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  text-decoration: none;
  font-weight: 900;
  color: var(--navy-2);
  padding: 12px 14px;
  border-radius: 999px;
}
.main-nav a:hover { background: var(--sky-soft); }
.nav-call {
  background: var(--sun);
  box-shadow: inset 0 -3px 0 rgba(8,47,86,.12);
}
.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  padding: 12px 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: .72;
  z-index: -1;
}
.hero::before {
  width: 460px;
  height: 460px;
  background: #eaf8fd;
  left: -160px;
  top: 20px;
}
.hero::after {
  width: 320px;
  height: 320px;
  background: #fff0b8;
  right: -80px;
  bottom: 20px;
}
.hero-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 48px;
}
.eyebrow {
  color: var(--coral);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  margin: 0 0 12px;
}
h1, h2, h3 { line-height: 1.05; margin: 0; color: var(--navy-2); }
h1 { font-size: clamp(3.1rem, 7vw, 6.6rem); letter-spacing: -0.07em; }
h2 { font-size: clamp(2.1rem, 4.4vw, 4.4rem); letter-spacing: -0.055em; }
h3 { font-size: 1.35rem; letter-spacing: -0.025em; }
.hero-lede {
  font-size: clamp(1.08rem, 2vw, 1.33rem);
  max-width: 680px;
  color: var(--muted);
  margin: 24px 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #062d52;
  background: linear-gradient(135deg, var(--sun), #ffb12c);
  box-shadow: 0 18px 35px rgba(255,177,44,.35);
}
.btn-secondary {
  color: var(--navy-2);
  background: var(--white);
  border: 2px solid rgba(10,63,115,.12);
  box-shadow: 0 12px 28px rgba(10,63,115,.08);
}
.btn-large { min-height: 62px; padding-inline: 30px; font-size: 1.05rem; }
.hero-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 6px solid var(--coral);
  background: rgba(255,255,255,.82);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(10,63,115,.08);
  max-width: 620px;
}
.hero-art { position: relative; }
.hero-art img {
  border-radius: 42px;
  box-shadow: var(--shadow);
  border: 10px solid white;
}
.call-card {
  position: absolute;
  right: -8px;
  bottom: 34px;
  width: min(280px, 64%);
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 50px rgba(8,47,86,.28);
  border: 3px solid rgba(255,255,255,.65);
}
.call-card strong { display: block; font-size: 1.55rem; line-height: 1.1; }
.call-card span { display: block; opacity: .92; }
.call-card-kicker { color: var(--sun); font-weight: 900; text-transform: uppercase; font-size: .72rem; letter-spacing: .08em; }

.trust-strip { margin-top: -30px; position: relative; z-index: 5; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}
.trust-grid div {
  background: var(--white);
  padding: 24px;
  min-height: 116px;
}
.trust-grid strong { display: block; font-size: 1.15rem; color: var(--navy-2); }
.trust-grid span { display: block; color: var(--muted); margin-top: 4px; }

.split-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 32px;
  align-items: stretch;
}
.story-card,
.form-intro,
.intake-form {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(10,63,115,.12);
  box-shadow: 0 20px 60px rgba(10,63,115,.1);
  border-radius: var(--radius);
}
.story-card { padding: 46px; }
.story-card p { color: var(--muted); font-size: 1.08rem; }
.text-link { font-weight: 950; color: var(--navy); text-decoration-color: var(--sun); text-decoration-thickness: 5px; text-underline-offset: 4px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  min-height: 235px;
  box-shadow: 0 16px 40px rgba(10,63,115,.08);
  border: 1px solid rgba(10,63,115,.1);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  right: -30px;
  top: -30px;
  background: rgba(255,255,255,.4);
}
.feature-card .icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  background: white;
  color: var(--navy);
  font-weight: 950;
  font-size: 1.65rem;
  box-shadow: 0 10px 25px rgba(8,47,86,.1);
  margin-bottom: 22px;
}
.feature-card p { color: var(--muted); margin-bottom: 0; }
.feature-card.sun { background: #fff3ba; }
.feature-card.sky { background: #dff7ff; }
.feature-card.coral { background: #ffe6ec; }
.feature-card.mint { background: #e1fbef; }

.grand-band {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: white;
  padding: 74px 0;
  position: relative;
  overflow: hidden;
}
.grand-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,207,59,.25), transparent 18rem),
    radial-gradient(circle at 92% 80%, rgba(51,185,220,.25), transparent 20rem);
}
.band-inner { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; }
.grand-band h2 { color: white; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  padding: 26px;
  backdrop-filter: blur(10px);
}
.steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--sun);
  color: var(--navy-2);
  font-weight: 950;
  margin-bottom: 16px;
}
.steps strong { display: block; font-size: 1.35rem; }
.steps em { display: block; font-style: normal; opacity: .83; }

.section-heading { max-width: 790px; margin-bottom: 36px; }
.centered { text-align: center; margin-inline: auto; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.12rem; }
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.policy-grid article {
  background: white;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(10,63,115,.07);
}
.policy-grid p { color: var(--muted); margin-bottom: 0; }

.appointment-banner {
  padding: 36px 0;
}
.appointment-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(255,237,242,.98), rgba(223,247,255,.96)),
    white;
  border: 2px dashed rgba(10,63,115,.18);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 20px 55px rgba(10,63,115,.08);
}
.appointment-inner p { color: var(--muted); margin-bottom: 0; max-width: 720px; }

.form-section { padding-top: 84px; }
.form-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
}
.form-intro {
  padding: 34px;
  position: sticky;
  top: 120px;
}
.form-intro p { color: var(--muted); }
.form-intro h2 {
  font-size: clamp(2.05rem, 3.45vw, 3.15rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
  overflow-wrap: normal;
}
.mini-card {
  background: var(--navy);
  color: white;
  border-radius: 22px;
  padding: 20px;
  margin: 22px 0;
}
.mini-card strong, .mini-card span { display: block; }
.mini-card span { opacity: .86; margin-top: 6px; }
.check-list { padding: 0; margin: 22px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 950;
}
.intake-form { padding: 0; overflow: hidden; }
.form-topper {
  background: linear-gradient(135deg, var(--sky), var(--navy));
  color: white;
  padding: 28px 34px;
}
.form-topper span { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 900; opacity: .82; }
.form-topper strong { display: block; font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.1; }
fieldset {
  border: 0;
  padding: 34px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
legend {
  float: left;
  width: 100%;
  color: var(--navy-2);
  font-size: 1.45rem;
  font-weight: 950;
  margin-bottom: 18px;
}
legend + * { clear: both; }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: repeat(2, 1fr); }
.form-grid.three { grid-template-columns: repeat(3, 1fr); }
label { display: grid; gap: 7px; color: var(--navy-2); font-weight: 900; }
input, textarea, select {
  width: 100%;
  border: 2px solid rgba(10,63,115,.14);
  border-radius: 17px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
textarea { resize: vertical; min-height: 92px; }
input:focus, textarea:focus, select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 5px rgba(51,185,220,.18);
}
input[type="file"] { background: #f7fcff; }
.hidden { display: none; }
.field-note { color: var(--muted); margin: 0 0 16px; }
details {
  margin-top: 18px;
  background: #f7fcff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px 18px;
}
summary {
  cursor: pointer;
  font-weight: 950;
  color: var(--navy);
}
.detail-grid { margin-top: 18px; }
.child-block {
  background: #fffdf7;
  border: 1px solid rgba(255,207,59,.42);
  border-radius: 22px;
  padding: 20px;
}
.child-block + .child-block { margin-top: 16px; }
.child-block h3 { margin-bottom: 16px; font-size: 1.1rem; }
.checkbox-line,
.radio-group,
.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}
.checkbox-line { margin-top: 16px; }
.checkbox-line input,
.checkbox-grid input,
.radio-group input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--navy);
}
.radio-group {
  margin: 18px 0 12px;
  padding: 16px;
  border-radius: 18px;
  background: var(--sky-soft);
  flex-wrap: wrap;
}
.radio-group span { flex-basis: 100%; font-weight: 950; color: var(--navy-2); }
.checkbox-grid { display: grid; gap: 12px; }
.acknowledgements label {
  background: #fffdf7;
  border: 1px solid rgba(255,207,59,.35);
  border-radius: 18px;
  padding: 13px;
}
.form-submit-row {
  padding: 30px 34px 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #fff, #fff8e7);
}

.site-footer {
  background: var(--navy-2);
  color: white;
  padding-top: 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 42px;
  align-items: start;
}
.footer-grid img { width: 180px; background: white; border-radius: 22px; padding: 10px; }
.footer-grid h2 { color: var(--sun); font-size: 1.3rem; letter-spacing: 0; }
.footer-grid a { color: white; font-weight: 900; text-decoration-color: var(--sun); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 42px;
  padding: 18px;
  text-align: center;
  color: rgba(255,255,255,.72);
}
.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  background: var(--coral);
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(255,102,117,.34);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 18px;
}
.thank-card {
  width: min(760px, 100%);
  background: white;
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--line);
}
.thank-card img { width: 210px; margin: 0 auto 24px; }
.thank-card p { color: var(--muted); font-size: 1.12rem; }
.thank-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

@media (max-width: 1000px) {
  .hero-grid, .split-grid, .band-inner, .form-layout { grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .trust-grid, .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .section-pad { padding: 70px 0; }
  .ribbon-inner { justify-content: center; text-align: center; padding: 9px 0; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 16px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { text-align: center; }
  .brand img { width: 142px; }
  .hero { padding-top: 48px; }
  .hero-art { order: -1; }
  .call-card { position: static; width: 100%; margin-top: 14px; }
  .trust-strip { margin-top: 0; }
  .trust-grid, .feature-grid, .policy-grid, .footer-grid, .form-grid.two, .form-grid.three { grid-template-columns: 1fr; }
  .appointment-inner { flex-direction: column; align-items: flex-start; padding: 28px; }
  fieldset, .form-topper, .form-submit-row, .form-intro, .story-card { padding: 24px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4.2rem); }
  .form-intro h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .sticky-call { left: 18px; right: 18px; text-align: center; justify-content: center; }
  body { padding-bottom: 68px; }
}

/* Update: show the official daycare logo artwork in the hero area without the phone/address line. */
.hero-logo-showcase {
  position: relative;
  padding-top: 138px;
}
.hero-logo-showcase > img {
  display: block;
  width: 100%;
  background: white;
  padding: 16px;
  object-fit: contain;
}
.hero-logo-showcase .call-card {
  position: static;
  width: 100%;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-logo-showcase .call-card strong {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}
.anniversary-ribbon {
  position: absolute;
  top: 6px;
  right: 28px;
  display: grid;
  place-items: center;
  min-width: 148px;
  min-height: 148px;
  padding: 18px;
  border-radius: 999px;
  text-align: center;
  color: var(--navy-2);
  background: radial-gradient(circle at 30% 28%, #fff8cf 0 22%, var(--sun) 58%, #f7b928 100%);
  border: 6px solid white;
  box-shadow: 0 20px 42px rgba(8,47,86,.18);
  transform: rotate(7deg);
  z-index: 2;
  animation: stickerPulse 1.8s ease-in-out infinite;
}
.anniversary-ribbon span,
.anniversary-ribbon strong,
.anniversary-ribbon em {
  display: block;
  line-height: 1;
}
.anniversary-ribbon span {
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.anniversary-ribbon strong {
  margin-top: 7px;
  font-size: 1.7rem;
  letter-spacing: -.05em;
}
.anniversary-ribbon em {
  margin-top: 6px;
  font-size: .8rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
@keyframes stickerPulse {
  0%, 100% { transform: rotate(7deg) scale(1); box-shadow: 0 20px 42px rgba(8,47,86,.18); }
  50% { transform: rotate(7deg) scale(1.08); box-shadow: 0 24px 52px rgba(255,102,117,.28); }
}
.anniversary-feature {
  padding: 58px 0 0;
}
.anniversary-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255,207,59,.34), transparent 16rem),
    linear-gradient(135deg, #ffffff, #e9f9ff 52%, #fff7db);
  border: 1px solid rgba(10,63,115,.13);
  border-radius: 36px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.anniversary-number {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background: var(--navy);
  color: white;
  font-size: 4.5rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 -8px 0 rgba(0,0,0,.13), 0 18px 36px rgba(8,47,86,.22);
}
.anniversary-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.7rem);
}
.anniversary-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 1000px) {
  .anniversary-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .anniversary-number { width: 108px; height: 108px; font-size: 3.9rem; }
}

@media (max-width: 780px) {
  .hero-logo-showcase {
    padding-top: 104px;
  }
  .anniversary-ribbon {
    right: 12px;
    top: 2px;
    min-width: 104px;
    min-height: 104px;
    padding: 10px;
    border-width: 4px;
  }
  .anniversary-ribbon strong { font-size: 1.12rem; }
  .anniversary-ribbon em,
  .anniversary-ribbon span { font-size: .68rem; }
  .hero-logo-showcase .call-card { display: block; }
}
