/* ============================================================
   Little Hearts Home Daycare — "Soft Rounds" redesign (2b/2c)
   White throughout, pastels only as accents. Caprasimo + Figtree,
   floating pill nav, rounded pastel panels, gentle animations.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #22242A;
  --ink-soft: #3E414A;
  --muted: #5F636E;
  --label: #6E7280;
  --faint: #8A8D97;
  --faint-2: #7A7E89;
  --line: #EFF0F4;
  --line-2: #E4E6EC;
  --chip-bg: #FAFBFD;

  --pink: #C4527D;
  --pink-100: #FFF3F7;
  --pink-200: #FFE3EC;
  --blue: #3A76A8;
  --blue-100: #F1F7FE;
  --blue-200: #DDEBFB;
  --blue-ink: #3E4A57;
  --green: #35815B;
  --green-dark: #2C6B4C;
  --green-100: #F1FAF4;
  --green-200: #DCF0E4;
  --green-ink: #2E4238;
  --green-ink-soft: #4A5A50;
  --butter-100: #FDF7E6;
  --butter: #8A6414;
  --gold: #E9B949;

  --font-heading: "Caprasimo", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;

  --shadow-photo: 0 20px 44px rgba(35, 37, 42, .12);
  --shadow-float: 0 14px 34px rgba(35, 37, 42, .14);

  --spring: cubic-bezier(.34, 1.4, .64, 1);
  --pad-x: 60px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0 0 13px; text-wrap: pretty; }
a { color: var(--green); text-decoration: none; text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
::selection { background: var(--pink-200); }

.washed { filter: saturate(0.6) contrast(0.85) brightness(1.1) opacity(0.94); }

/* Visible to screen readers and crawlers, not on screen. */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.fade-up { animation: fadeUp .7s cubic-bezier(.2,.7,.2,1) backwards; }
.fade-up-delay { animation-delay: .15s; }

/* ---------- Content area cap (1280px on any screen) ---------- */
.header-wrap, main > section { max-width: 1280px; margin-inline: auto; }
.footer-main { max-width: calc(1280px - 2 * var(--pad-x)); margin-inline: auto; }
.footer-legal { max-width: calc(1280px - 2 * var(--pad-x)); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 400;
  font-size: 14px; line-height: 1.2;
  border: 1px solid transparent; border-radius: 999px;
  padding: 12px 24px;
  transition: transform .25s var(--spring), background .25s, border-color .25s;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { background: #F7F8FA; color: var(--ink); }
.btn-lg { padding: 15px 30px; font-size: 15.5px; }
.btn-block { width: 100%; }
.btn-block:hover { transform: translateY(-3px); }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field > label, .dob legend {
  display: block; font-size: 12.5px; margin-bottom: 6px;
  color: var(--label);
}
.req { color: var(--pink); }
.input {
  width: 100%; min-height: 46px; padding: 6px 16px; font: inherit;
  font-size: 15px; color: var(--ink); caret-color: var(--green);
  background: #fff;
  border: 1px solid var(--line-2); border-radius: 999px;
  transition: border-color .2s;
}
.input:hover { border-color: #C9CCD6; }
.input:focus, .input:focus-visible { border-color: var(--green); outline: none; }
textarea.input { min-height: 110px; resize: vertical; border-radius: 24px; padding: 12px 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field-row .field { margin-bottom: 0; }

.form-note { margin: 14px 0 0; font-size: 14.5px; font-weight: 600; }
.form-note.ok { color: var(--green); }
.form-note.err { color: var(--pink); }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-green { color: var(--green); }
.eyebrow-blue { color: var(--blue); }
.eyebrow-pink { color: var(--pink); }
.section-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.07; letter-spacing: -.02em;
}
.section-sub { font-size: 16.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- Header (floating pill nav, sticky) ---------- */
.header-wrap {
  padding: 22px var(--pad-x) 12px;
  position: sticky; top: -10px; z-index: 90;
  background: transparent;
  pointer-events: none;
}
.pill-nav {
  display: flex; align-items: center; gap: 28px;
  padding: 12px 14px 12px 20px;
  background: color-mix(in srgb, var(--chip-bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(35, 37, 42, .07);
  position: relative;
  pointer-events: auto;
}
main section[id] { scroll-margin-top: 92px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  border-radius: 50%; background: #fff; overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.brand-name { font-family: var(--font-heading); font-size: 19px; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 600; }
.nav-links > a {
  color: var(--ink); padding: 8px 16px; border-radius: 999px;
  transition: background .22s, color .22s;
}
.nl-pink:hover { background: var(--pink-200); color: var(--pink); }
.nl-blue:hover { background: var(--blue-200); color: var(--blue); }
.nl-green:hover { background: var(--green-200); color: var(--green); }
.nl-butter:hover { background: var(--butter-100); color: var(--butter); }
.nav-cta { flex: none; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; flex: none; padding: 10px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 999px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 70px var(--pad-x) 64px; background: #fff;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); color: var(--muted);
  padding: 8px 16px 8px 10px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
}
.hero-chip .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: floaty 3s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 1.02; letter-spacing: -.025em; margin: 26px 0 0;
}
.t-green { color: var(--green); }
.hero-lead {
  font-size: 18px; line-height: 1.68; color: var(--muted);
  max-width: 31rem; margin: 24px 0 34px;
}
.hero-lead strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
}
.badge-chip :is(i, svg) { width: 15px; height: 15px; flex: none; }
.badge-pink { background: var(--pink-100); color: var(--pink); }
.badge-blue { background: var(--blue-100); color: var(--blue); }
.badge-green { background: var(--green-100); color: var(--green); }
.hero-photo { position: relative; }
.hero-panel {
  background: var(--green-200); border-radius: 48px; padding: 26px;
  animation: floaty 12s ease-in-out infinite;
}
.hero-frame {
  aspect-ratio: 5 / 4; border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-photo);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 42% center; }
.hero-float {
  position: absolute; left: -28px; bottom: -26px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 14px 22px 14px 14px; border-radius: 999px;
  box-shadow: var(--shadow-float);
}
.hero-float .icon {
  display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  border-radius: 50%; background: var(--pink-200);
}
.hero-float .icon :is(i, svg) { width: 19px; height: 19px; color: var(--pink); }
.hero-float .label { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.25; }

/* ---------- Stats band ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 0 var(--pad-x) 24px; background: #fff;
}
.stat { text-align: center; padding: 30px 16px; border-radius: 32px; }
.stat-num { font-family: var(--font-heading); font-size: 42px; line-height: 1; }
.stat p { font-size: 13.5px; color: var(--muted); margin: 10px 0 0; }
.stat-pink { background: var(--pink-100); } .stat-pink .stat-num { color: var(--pink); }
.stat-blue { background: var(--blue-100); } .stat-blue .stat-num { color: var(--blue); }
.stat-green { background: var(--green-100); } .stat-green .stat-num { color: var(--green); }
.stat-butter { background: var(--butter-100); } .stat-butter .stat-num { color: var(--butter); }

/* ---------- About ---------- */
.about {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center;
}
.about-copy .section-title { margin-bottom: 20px; }
.about-copy > p { font-size: 16.5px; line-height: 1.72; color: var(--muted); margin: 0 0 16px; }
.about-copy > p:last-of-type { margin-bottom: 28px; }
.hl-green { color: var(--green); }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.checklist li {
  display: flex; gap: 12px; align-items: center;
  font-size: 15px; font-weight: 600; color: var(--ink);
  padding: 12px 18px; border-radius: 999px;
  transition: background .25s;
}
.checklist li:hover { background: #fff; }
.check-dot {
  display: grid; place-items: center; width: 22px; height: 22px; flex: none;
  border-radius: 50%; background: var(--green-200);
}
.check-dot :is(i, svg) { width: 13px; height: 13px; color: var(--green-dark); }
.about-photo { position: relative; }
.about-dot {
  position: absolute; left: -22px; bottom: -22px; width: 110px; height: 110px;
  border-radius: 50%; background: var(--pink-200);
  animation: floaty 10s ease-in-out -4s infinite;
}
.about-frame {
  position: relative; aspect-ratio: 4 / 5; border-radius: 40px; overflow: hidden;
  box-shadow: var(--shadow-photo);
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }

/* ---------- Why choose us ---------- */
.why { background: #fff; }
.why-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; margin-bottom: 40px;
}
.why-head > div { max-width: 560px; }
.why-head > p { font-size: 16.5px; line-height: 1.65; color: var(--muted); max-width: 30rem; margin: 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 28px; border-radius: 32px;
  transition: background .3s;
}
.why-row.wash-pink:hover { background: var(--pink-100); }
.why-row.wash-blue:hover { background: var(--blue-100); }
.why-row.wash-green:hover { background: var(--green-100); }
.why-icon { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 50%; }
.why-icon :is(i, svg) { width: 22px; height: 22px; }
.wi-pink { background: var(--pink-200); color: var(--pink); }
.wi-blue { background: var(--blue-200); color: var(--blue); }
.wi-green { background: var(--green-200); color: var(--green); }
.why-row h3 { font-size: 20px; margin: 2px 0 8px; }
.why-row p { font-size: 14.5px; line-height: 1.62; color: var(--muted); margin: 0; }

/* ---------- Our day (timeline) ---------- */
.day { background: var(--butter-100); }
.day-head, .centered-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.day-head .section-title { margin-bottom: 14px; }
.day-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.day-line {
  position: absolute; top: 30px; left: 14%; right: 14%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px);
}
.day-step { position: relative; text-align: center; }
.day-icon {
  display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto;
  border-radius: 50%; border: 6px solid #fff;
  animation: floaty 6s ease-in-out infinite;
}
.day-icon :is(i, svg) { width: 24px; height: 24px; }
.day-step:nth-child(3) .day-icon { animation-delay: -2s; }
.day-step:nth-child(4) .day-icon { animation-delay: -4s; }
.di-pink { background: var(--pink-200); color: var(--pink); }
.di-blue { background: var(--blue-200); color: var(--blue); }
.di-green { background: var(--green-200); color: var(--green); }
.day-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin: 20px 0 8px;
}
.dk-pink { color: var(--pink); } .dk-blue { color: var(--blue); } .dk-green { color: var(--green); }
.day-step h3 { font-size: 24px; margin: 0 0 10px; }
.day-step p { font-size: 15px; line-height: 1.62; color: var(--muted); margin: 0 auto; max-width: 20rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--chip-bg); }
.pricing-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.pricing-head .section-title { margin-bottom: 14px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.price-card { border-radius: 36px; padding: 34px 32px; }
.price-green { background: var(--green-100); }
.price-blue { background: var(--blue-100); }
.price-pink { background: var(--pink-100); }
.price-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; margin-bottom: 20px; }
.price-icon :is(i, svg) { width: 22px; height: 22px; }
.price-green .price-icon { background: var(--green-200); color: var(--green); }
.price-blue .price-icon { background: var(--blue-200); color: var(--blue); }
.price-pink .price-icon { background: var(--pink-200); color: var(--pink); }
.price-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.price-green .price-kicker { color: var(--green); }
.price-blue .price-kicker { color: var(--blue); }
.price-pink .price-kicker { color: var(--pink); }
.price-value { font-family: var(--font-heading); font-size: 40px; line-height: 1; color: var(--ink); }
.price-value small { font-family: var(--font-body); font-size: 14.5px; font-weight: 600; color: var(--muted); margin-left: 6px; }
.price-card > p { font-size: 14.5px; line-height: 1.62; color: var(--muted); margin: 12px 0 0; }
.price-card a { font-weight: 700; }
.price-blue .price-card-link, .price-blue a { color: var(--blue); }
.pricing-notes {
  background: #fff; border: 1px solid var(--line); border-radius: 36px;
  padding: 30px 32px;
}
.pricing-notes h3 { font-size: 20px; margin: 0 0 18px; }
.notes-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.notes-grid li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.55; color: var(--muted);
  padding: 10px 14px; border-radius: 24px;
  transition: background .25s;
}
.notes-grid li:hover { background: var(--chip-bg); }
.note-dot { display: grid; place-items: center; width: 22px; height: 22px; flex: none; margin-top: 1px; border-radius: 50%; }
.note-dot :is(i, svg) { width: 13px; height: 13px; }
.nd-green { background: var(--green-200); } .nd-green :is(i, svg) { color: var(--green-dark); }
.nd-blue { background: var(--blue-200); } .nd-blue :is(i, svg) { color: var(--blue); }
.nd-pink { background: var(--pink-200); } .nd-pink :is(i, svg) { color: var(--pink); }
.pricing-foot { text-align: center; font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 26px 0 0; }
.pricing-foot a { font-weight: 700; color: var(--green); text-decoration: underline; }

/* ---------- Reviews ---------- */
.reviews-wrap { padding: 0 var(--pad-x) 24px; background: #fff; }
.reviews {
  padding: 64px 56px; background: var(--blue-100); border-radius: 48px;
}
.reviews .centered-head { max-width: 600px; margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: #fff; border-radius: 32px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.review:hover { transform: translateY(-6px); }
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars :is(i, svg) { width: 15px; height: 15px; fill: currentColor; }
.review blockquote { margin: 0; font-size: 15.5px; line-height: 1.62; flex: 1; color: var(--ink-soft); }
.review figcaption { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 700; color: var(--ink); }
.avatar {
  display: grid; place-items: center; width: 36px; height: 36px; flex: none;
  border-radius: 50%; font-size: 12.5px;
}
.av-pink { background: var(--pink-200); color: var(--pink); }
.av-green { background: var(--green-200); color: var(--green); }
.av-blue { background: var(--blue-200); color: var(--blue); }

/* ---------- Enrollment / contact (index) ---------- */
.enroll {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center;
}
.enroll-intro .section-title { margin-bottom: 16px; }
.enroll-intro > p { font-size: 16.5px; line-height: 1.65; color: var(--muted); margin: 0 0 28px; }
.contact-cards { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; }
.contact-cards li {
  display: flex; align-items: center; gap: 15px;
  background: #fff; border: 1px solid #fff; padding: 15px 20px; border-radius: 999px;
  transition: background .25s, border-color .25s;
}
.cc-green:hover { background: var(--green-100); border-color: var(--green-200); }
.cc-blue:hover { background: var(--blue-100); border-color: var(--blue-200); }
.cc-pink:hover { background: var(--pink-100); border-color: var(--pink-200); }
.cc-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 50%; }
.cc-icon :is(i, svg) { width: 18px; height: 18px; }
.cci-green { background: var(--green-200); color: var(--green); }
.cci-blue { background: var(--blue-200); color: var(--blue); }
.cci-pink { background: var(--pink-200); color: var(--pink); }
.contact-cards strong { display: block; font-size: 14px; color: var(--ink); }
.contact-cards a { font-size: 14px; color: var(--green); }
.contact-cards .cc-sub { font-size: 14px; color: var(--muted); }
.enroll-note { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.enroll-note a { font-weight: 700; color: var(--green); text-decoration: underline; }
.enroll-form {
  background: #fff; border: 1px solid #fff;
  border-radius: 44px; padding: 44px 42px;
}
.enroll-form h3 { font-size: 26px; margin: 0 0 24px; }
.enroll-form .field-textarea { margin-bottom: 22px; }
.enroll-form .btn-block { padding: 16px; font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 44px var(--pad-x) 26px; }
.footer-main { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-mark {
  display: grid; place-items: center; width: 44px; height: 44px; flex: none;
  border-radius: 50%; background: var(--green-100); overflow: hidden;
}
.footer-mark img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.footer-brand strong { display: block; font-family: var(--font-heading); font-weight: 400; font-size: 18px; color: var(--ink); }
.footer-brand .tagline { font-size: 13.5px; color: var(--faint-2); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 26px; font-size: 14px; font-weight: 600; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--green); }
.footer-phone { font-family: var(--font-heading); font-size: 17px; color: var(--ink); }
.footer-phone:hover { color: var(--green); }
.footer-legal {
  text-align: center; margin: 32px auto 0; padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--faint); font-size: 13px;
}

/* ---------- Section panels (homepage) ----------
   Each section sits in its own rounded pastel panel — like the
   reviews panel — so section boundaries read at a glance. */
.about, .why, .day, .pricing, .enroll {
  width: min(calc(100% - 2 * var(--pad-x)), 1160px);
  border-radius: 48px;
  padding: 64px 56px;
  margin-bottom: 24px;
}
.about { background: var(--green-100); }
.why { border: 1px solid var(--line); }
.pricing { border: 1px solid var(--line); }
.enroll { background: var(--pink-100); margin-bottom: 64px; }

/* ============================================================
   Enrollment page (2c)
   ============================================================ */
.en-hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 64px var(--pad-x) 76px; background: #fff;
  position: relative; overflow: hidden;
}
.en-orb {
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: var(--green-100); top: -50px; right: 36%;
  animation: floaty 11s ease-in-out infinite;
}
.en-hero > div { position: relative; }
.en-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-100); color: var(--green);
  padding: 8px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
}
.en-hero h1 {
  font-size: clamp(42px, 5.5vw, 66px);
  line-height: 1.02; letter-spacing: -.025em; margin: 22px 0;
}
.en-hero-lead { font-size: 17.5px; line-height: 1.72; color: var(--muted); margin: 0; max-width: 34rem; }
.en-hero-card { background: var(--green-200); border-radius: 48px; padding: 38px 36px; }
.en-hero-card > p { font-size: 16px; font-weight: 700; line-height: 1.5; margin: 0 0 18px; color: var(--ink); }
.en-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.en-checks li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; line-height: 1.55; color: var(--green-ink);
  background: #fff; padding: 16px 20px; border-radius: 24px;
}
.en-checks :is(i, svg) { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--green); }

/* — agreement — */
.agreement { padding: 0 var(--pad-x) 80px; background: #fff; }
.agreement-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 32px; }
.agreement-head h2 { font-size: 34px; letter-spacing: -.02em; }
.rule { flex: 1; height: 1px; background: var(--line); }
.agreement-count {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); white-space: nowrap;
}
.agreement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.policy {
  background: #fff; border: 1px solid var(--line); border-radius: 36px;
  padding: 32px 30px;
  transition: background .3s, border-color .3s;
}
.policy.wash-blue:hover { background: var(--blue-100); border-color: var(--blue-200); }
.policy.wash-pink:hover { background: var(--pink-100); border-color: var(--pink-200); }
.policy.wash-green:hover { background: var(--green-100); border-color: var(--green-200); }
.policy-num {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; font-family: var(--font-heading); font-size: 14px;
  margin-bottom: 16px;
}
.pn-blue { background: var(--blue-200); color: var(--blue); }
.pn-pink { background: var(--pink-200); color: var(--pink); }
.pn-green { background: var(--green-200); color: var(--green); }
.pn-white { background: #fff; color: var(--green); }
.pn-butter { background: #fff; color: var(--butter); }
.policy h3 { font-size: 21px; margin: 0 0 14px; }
.policy p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 10px; }
.policy p:last-child { margin-bottom: 0; }
.policy .note { font-size: 14px; line-height: 1.6; font-style: italic; color: var(--faint); }
.policy-wide { grid-column: 1 / -1; padding: 32px 40px; }
.policy-wide p { max-width: 78ch; }
.policy-pay { grid-column: 1 / -1; background: var(--butter-100); border-color: var(--butter-100); border-radius: 36px; padding: 36px 40px; }
.policy-pay h3 { font-size: 24px; margin: 0 0 16px; }
.policy-pay p { color: #5C512F; max-width: none; }
.policy-pay .note { color: var(--butter); }
.policy-dietary { grid-column: 1 / -1; background: var(--green-100); border-color: var(--green-100); padding: 36px 40px; }
.policy-dietary h3 { font-size: 24px; margin: 0 0 16px; }
.policy-dietary p { color: var(--green-ink-soft); }
.policy-cols { columns: 2; column-gap: 44px; }
.policy-cols p { margin: 0 0 12px; }
.policy-ack { font-size: 15.5px; line-height: 1.6; margin: 14px 0 0 !important; font-weight: 700; color: var(--ink) !important; }

/* — full form — */
.en-form-section { padding: 0 var(--pad-x) 88px; background: #fff; }
.en-form {
  max-width: 860px; margin: 0 auto;
  background: var(--chip-bg); border: 1px solid var(--line);
  border-radius: 52px; padding: 52px 56px;
}
.en-form h2 { font-size: 38px; letter-spacing: -.02em; margin: 0 0 8px; }
.en-form-sub { font-size: 15.5px; color: var(--label); margin: 0 0 38px; }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.step-num {
  display: grid; place-items: center; width: 32px; height: 32px; flex: none;
  border-radius: 50%; background: var(--green-200);
  font-family: var(--font-heading); font-size: 14px; color: var(--green);
}
.step-head h3 { font-size: 22px; }
.en-form .field { margin-bottom: 18px; }
.en-form .field-row { gap: 18px; margin-bottom: 18px; }
.en-form .input { min-height: 48px; padding-inline: 18px; }
.callout {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--blue-100); border-radius: 28px;
  padding: 18px 22px; margin: 0 0 12px;
}
.callout :is(i, svg) { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--blue); }
.callout p { font-size: 14.5px; line-height: 1.6; margin: 0; color: var(--blue-ink); }
.callout-last { margin-bottom: 40px; }
.dob { border: 0; padding: 0; margin: 0 0 18px; }
.dob-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
.field-last { margin-bottom: 40px; }
.agree {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 28px; padding: 18px 22px; margin-bottom: 12px;
  cursor: pointer; font-size: 15px; line-height: 1.55; color: var(--ink-soft);
  transition: border-color .25s, background .25s;
}
.agree:hover { border-color: var(--green-200); background: #F7FCF9; }
.agree input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--green); }
.agree-last { margin-bottom: 30px; }
.en-form .btn-block { padding: 18px; font-size: 16.5px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 1041px) {
  .nav-links .nav-cta { display: none; }
}

@media (max-width: 1120px) {
  :root { --pad-x: 36px; }
  .hero, .about, .en-hero { gap: 40px; }
}

@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border: 1px solid var(--line); border-radius: 28px;
    padding: 14px; box-shadow: var(--shadow-float); z-index: 60;
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 12px 18px; }
  .nav-links > a.nav-cta { margin-top: 8px; text-align: center; }
  .nav-cta-desktop { display: none; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 64px; }
  .hero-photo { max-width: 480px; }
  .hero-float { left: 12px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 14px; padding-bottom: 64px; }
  .about { grid-template-columns: 1fr; padding-bottom: 64px; }
  .about-photo { max-width: 420px; order: -1; }
  .enroll { grid-template-columns: 1fr; }
  .en-hero { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 60px; }
}

@media (max-width: 900px) {
  .about, .why, .day, .pricing, .enroll { padding: 44px 24px; border-radius: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 32px; }
  .day-grid { grid-template-columns: 1fr; gap: 40px; }
  .day-line { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .reviews { padding: 44px 28px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .agreement-grid { grid-template-columns: 1fr; }
  .policy-wide, .policy-pay, .policy-dietary { padding: 30px 28px; }
  .policy-cols { columns: 1; }
}

@media (max-width: 760px) {
  :root { --pad-x: 20px; }
  .header-wrap { padding-top: 14px; }
  .en-form { padding: 34px 22px; border-radius: 40px; }
  .enroll-form { padding: 30px 22px; border-radius: 36px; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 22px; }
}

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .agreement-head { flex-wrap: wrap; row-gap: 8px; }
  .hero-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .dob-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
