:root {
  /* Brand colors, shadows, and fonts used across the whole site. */
  --cream: #fff8ea;
  --cream-deep: #fff1dd;
  --coral: #ff5757;
  --coral-dark: #e84b4b;
  --teal: #064b57;
  --teal-bright: #0c8c95;
  --mint: #ddecc8;
  --mint-blue: #e8f6ef;
  --peach: #ffe7d6;
  --yellow: #f5b82e;
  --white: #ffffff;
  --ink: #1e2a32;
  --muted: #5d646b;
  --line: rgba(6, 75, 87, 0.16);
  --shadow: 0 18px 45px rgba(55, 38, 21, 0.12);
  --soft-shadow: 0 10px 25px rgba(55, 38, 21, 0.1);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Nunito", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 231, 214, 0.55), transparent 28rem),
    radial-gradient(circle at 88% 46%, rgba(221, 239, 193, 0.45), transparent 24rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(12, 140, 149, 0.45);
  outline-offset: 4px;
}

.site-header {
  /* Sticky header; site.js toggles .is-compact while scrolling. */
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 234, 0.96);
  box-shadow: 0 4px 24px rgba(55, 38, 21, 0.06);
  backdrop-filter: blur(10px);
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.site-header.is-compact {
  background: rgba(255, 248, 234, 0.98);
  box-shadow: 0 8px 30px rgba(55, 38, 21, 0.12);
}

.nav-shell {
  width: min(100% - 96px, 1100px);
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition:
    min-height 260ms ease,
    gap 260ms ease;
}

.site-header.is-compact .nav-shell {
  min-height: 66px;
  gap: 24px;
}

.brand-link {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  border-radius: 18px;
}

.brand-link img {
  width: auto;
  max-height: 74px;
  height: auto;
  transition: max-height 260ms ease, transform 260ms ease;
}

.site-header.is-compact .brand-link img {
  max-height: 50px;
}

.brand-name {
  color: #090f11;
  font-size: clamp(1.05rem, 1.7vw, 1.38rem);
  font-weight: 1000;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: font-size 260ms ease, line-height 260ms ease;
}

.site-header.is-compact .brand-name {
  font-size: 1rem;
  line-height: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 30px);
  font-weight: 900;
  transition: gap 260ms ease, font-size 260ms ease;
}

.site-header.is-compact .nav-links {
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.94rem;
}

.nav-links a {
  padding: 8px 0;
  transition: color 180ms ease, padding 260ms ease;
}

.site-header.is-compact .nav-links a {
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-links .active {
  color: var(--coral);
}

.nav-links .nav-button {
  min-width: 104px;
  padding: 14px 28px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(255, 87, 87, 0.25);
  transition:
    color 180ms ease,
    padding 260ms ease,
    min-width 260ms ease,
    border-radius 260ms ease;
}

.site-header.is-compact .nav-links .nav-button {
  min-width: 92px;
  padding: 11px 22px;
  border-radius: 12px;
}

.nav-links .nav-button:hover {
  color: var(--white);
}

.hero {
  /* Default hero used by the homepage; page-specific heroes override this below. */
  min-height: clamp(430px, 45vw, 520px);
  padding: clamp(40px, 5vw, 58px) max(48px, calc((100vw - 1100px) / 2 + 48px));
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.2), rgba(255, 248, 234, 0.1)),
    url("assets/hero-classroom.jpg") center / cover no-repeat;
}

.home-hero {
  min-height: clamp(520px, 52vw, 660px);
  padding-block: clamp(72px, 8vw, 118px);
  background:
    linear-gradient(90deg, rgba(10, 16, 18, 0.66), rgba(10, 16, 18, 0.42) 46%, rgba(10, 16, 18, 0.2)),
    url("assets/home-hero-table-learning.jpeg") center 46% / cover no-repeat;
}

.hero-card {
  width: min(540px, 100%);
  padding: clamp(30px, 4vw, 48px);
  background: rgba(255, 248, 234, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.home-hero-copy {
  width: min(720px, 100%);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero h1 {
  margin: 0;
  color: var(--coral);
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.2vw, 4.7rem);
  font-weight: 900;
  line-height: 0.98;
}

.home-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-family: var(--body);
  font-size: clamp(3.7rem, 8vw, 6.6rem);
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.32);
}

.hero p {
  margin: 18px 0 28px;
  color: #2f3d43;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  font-weight: 700;
}

.home-hero p {
  max-width: 550px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.home-hero .hero-actions {
  margin-top: 30px;
}

.button {
  min-width: 174px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  transition: box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  box-shadow: 0 10px 20px rgba(55, 38, 21, 0.12);
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-card {
  animation: hero-card-arrive 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.nav-links a,
.program-card,
.life-card img,
.activity-card img,
.contact-card,
.review-card,
.expectation-card {
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.program-card:hover,
.contact-card:hover,
.review-card:hover,
.expectation-card:hover {
  box-shadow: 0 16px 32px rgba(55, 38, 21, 0.12);
}

.life-card:hover img,
.activity-card:hover img {
  box-shadow: 0 16px 32px rgba(55, 38, 21, 0.14);
}

@keyframes hero-card-arrive {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  box-shadow: 0 12px 24px rgba(255, 87, 87, 0.25);
}

.button-primary:hover {
  box-shadow: 0 14px 28px rgba(255, 87, 87, 0.32);
}

.button-secondary {
  color: #087580;
  background: rgba(255, 248, 234, 0.72);
  border: 2px solid var(--teal-bright);
}

.button-secondary:hover {
  background: rgba(232, 246, 239, 0.92);
}

.section,
.routine-shell {
  width: min(100% - 96px, 1100px);
  margin: 0 auto;
}

.section {
  padding-top: 22px;
}

.section-heading,
.reviews-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.section-heading h2,
.reviews-heading-wrap h2 {
  margin: 0;
  color: var(--teal);
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
}

.section-heading span {
  position: relative;
  width: 18px;
  height: 24px;
}

.section-heading span::before,
.section-heading span::after {
  content: "";
  position: absolute;
  left: 4px;
  width: 16px;
  height: 3px;
  background: var(--coral);
  border-radius: 999px;
}

.section-heading span::before {
  top: 3px;
  transform: rotate(18deg);
}

.section-heading span::after {
  bottom: 3px;
  transform: rotate(-18deg);
}

.section-heading span:first-child::before,
.section-heading span:first-child::after {
  left: auto;
  right: 4px;
}

.section-heading span:first-child::before {
  transform: rotate(-18deg);
}

.section-heading span:first-child::after {
  transform: rotate(18deg);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.program-card {
  min-height: 168px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(12, 140, 149, 0.25);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(55, 38, 21, 0.05);
}

.program-card-peach {
  background: linear-gradient(135deg, rgba(255, 231, 214, 0.84), rgba(255, 248, 234, 0.94));
  border-color: rgba(255, 87, 87, 0.34);
}

.program-card-mint {
  background: linear-gradient(135deg, rgba(232, 246, 239, 0.92), rgba(242, 252, 247, 0.94));
  border-color: rgba(12, 140, 149, 0.28);
}

.program-card img {
  width: 142px;
  height: 142px;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
}

.program-photo-infants {
  object-position: 58% 34%;
}

.program-photo-preschool {
  object-position: 36% 42%;
}

.program-copy h3 {
  margin: 0 0 8px;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: clamp(1.95rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 0.94;
}

.program-card-mint .program-copy h3 {
  color: var(--teal-bright);
}

.program-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.program-copy .age {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 1.15rem;
  font-weight: 900;
}

.program-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.program-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--white);
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.program-icon.coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
}

.program-icon.teal {
  background: linear-gradient(135deg, var(--teal-bright), #04737d);
}

.life {
  padding-top: 24px;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
}

.life-card {
  position: relative;
  min-width: 0;
  margin: 0;
}

.life-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.pill {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -13px;
  min-height: 30px;
  padding: 7px 10px;
  color: var(--white);
  text-align: center;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 15px rgba(55, 38, 21, 0.12);
}

.teal-pill {
  background: linear-gradient(135deg, #0a9aa1, #06747c);
}

.green-pill {
  background: #9fbe79;
}

.coral-pill {
  background: var(--coral);
}

.yellow-pill {
  background: #f0a91e;
}

.routine-shell {
  margin-top: 44px;
  padding: 10px 34px 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f2ce, #d7eab0);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(78, 117, 64, 0.12);
}

.routine-heading {
  margin-bottom: 12px;
}

.routine-list {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(76px, 1fr));
  gap: 12px;
  list-style: none;
}

.routine-list::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  z-index: -1;
  border-top: 3px dashed rgba(255, 255, 255, 0.85);
}

.routine-list li {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
}

.routine-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(78, 117, 64, 0.12);
}

.routine-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--teal);
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.reviews {
  padding-top: 18px;
  padding-bottom: 28px;
}

.about-hero {
  min-height: clamp(500px, 50vw, 620px);
  padding-block: clamp(72px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(10, 16, 18, 0.7), rgba(10, 16, 18, 0.42) 48%, rgba(10, 16, 18, 0.12)),
    url("assets/about-hero-outdoor-yard.jpeg") center 48% / cover no-repeat;
}

.programs-hero {
  /* Programs page intro is a quieter photo banner, distinct from the homepage CTA hero. */
  position: relative;
  min-height: clamp(390px, 42vw, 520px);
  padding-block: clamp(64px, 7vw, 92px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 16, 18, 0.76), rgba(10, 16, 18, 0.46) 52%, rgba(10, 16, 18, 0.18)),
    url("assets/home-hero-activity.jpeg") center 48% / cover no-repeat;
}

.programs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 62%),
    radial-gradient(circle at 22% 50%, rgba(0, 0, 0, 0.18), transparent 42%);
  pointer-events: none;
}

.programs-hero .hero-card {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.programs-hero h1 {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.4vw, 5.2rem);
  font-weight: 900;
  line-height: 0.96;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
}

.programs-hero p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  font-weight: 800;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.32);
}

.contact-hero {
  min-height: clamp(500px, 50vw, 620px);
  padding-block: clamp(72px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(10, 16, 18, 0.7), rgba(10, 16, 18, 0.42) 48%, rgba(10, 16, 18, 0.12)),
    url("assets/contact-hero-shelves.jpg") center 52% / cover no-repeat;
}

.contact-hero .hero-card {
  width: min(650px, 100%);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.contact-hero h1 {
  color: var(--white);
  font-family: var(--body);
  font-size: clamp(3.7rem, 7.6vw, 6.2rem);
  font-weight: 1000;
  line-height: 0.92;
  white-space: nowrap;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
}

.contact-hero p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-actions {
  margin-top: 30px;
}

.contact-hero .button-primary {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.contact-hero .button-secondary {
  color: var(--teal-dark);
  background: rgba(255, 248, 234, 0.82);
  border-color: var(--teal-bright);
}

.inquire-hero {
  min-height: clamp(500px, 50vw, 620px);
  padding-block: clamp(72px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(10, 16, 18, 0.72), rgba(10, 16, 18, 0.44) 48%, rgba(10, 16, 18, 0.14)),
    url("assets/inquire-hero-circle-story-blur-two.jpg") center 70% / cover no-repeat;
}

.inquire-hero-card {
  width: min(650px, 100%);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.inquire-hero h1 {
  color: var(--white);
  font-family: var(--body);
  font-size: clamp(3.9rem, 8.5vw, 6.4rem);
  font-weight: 1000;
  line-height: 0.92;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
}

.inquire-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.3);
}

.inquire-hero .flower-dots {
  display: none;
}

.flower-dots {
  display: flex;
  gap: 18px;
}

.flower-dot {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  color: var(--coral);
}

.flower-dot::before,
.flower-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  background:
    radial-gradient(circle at 50% 0%, currentColor 0 26%, transparent 27%),
    radial-gradient(circle at 100% 50%, currentColor 0 26%, transparent 27%),
    radial-gradient(circle at 50% 100%, currentColor 0 26%, transparent 27%),
    radial-gradient(circle at 0% 50%, currentColor 0 26%, transparent 27%);
}

.flower-dot::after {
  transform: rotate(45deg);
}

.flower-dot.teal {
  color: var(--teal-bright);
}

.flower-dot.yellow {
  color: #eda416;
}

.about-hero .hero-card {
  width: min(690px, 100%);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.about-hero h1 {
  color: var(--white);
  font-family: var(--body);
  font-size: clamp(3.7rem, 7.6vw, 6.2rem);
  font-weight: 1000;
  line-height: 0.92;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
}

.about-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-actions {
  margin-top: 30px;
}

.about-hero .button-primary {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.about-hero .button-secondary {
  color: var(--teal-dark);
  background: rgba(255, 248, 234, 0.82);
  border-color: var(--teal-bright);
}

.about-hero h1 span {
  white-space: nowrap;
}

.about-intro {
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 42px;
}

.about-intro-image {
  width: 100%;
  min-height: 212px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.about-intro-copy {
  max-width: 430px;
}

.about-copy-heading {
  justify-content: flex-start;
  margin-bottom: 20px;
  text-align: left;
}

.about-intro-copy p {
  margin: 0 0 18px;
  color: #3d484f;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.55;
}

.expectations {
  padding-top: 18px;
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.expectation-card {
  min-height: 174px;
  padding: 20px 18px 22px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(12, 140, 149, 0.24);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(55, 38, 21, 0.05);
}

.expectation-peach {
  background: linear-gradient(135deg, rgba(255, 231, 214, 0.78), rgba(255, 248, 234, 0.96));
  border-color: rgba(255, 87, 87, 0.33);
}

.expectation-blue {
  background: linear-gradient(135deg, rgba(230, 246, 243, 0.9), rgba(246, 255, 252, 0.96));
  border-color: rgba(12, 140, 149, 0.28);
}

.expectation-green {
  background: linear-gradient(135deg, rgba(234, 244, 211, 0.9), rgba(255, 248, 234, 0.96));
  border-color: rgba(128, 166, 83, 0.36);
}

.expectation-yellow {
  background: linear-gradient(135deg, rgba(255, 240, 207, 0.9), rgba(255, 248, 234, 0.96));
  border-color: rgba(245, 184, 46, 0.42);
}

.expectation-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(55, 38, 21, 0.1);
}

.expectation-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.expectation-icon.coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
}

.expectation-icon.teal {
  background: linear-gradient(135deg, var(--teal-bright), #04737d);
}

.expectation-icon.green {
  background: linear-gradient(135deg, #91ba5c, #78a348);
}

.expectation-icon.orange {
  background: linear-gradient(135deg, #f5b82e, #eb9400);
}

.expectation-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.expectation-peach h3 {
  color: var(--coral-dark);
}

.expectation-blue h3 {
  color: var(--teal-bright);
}

.expectation-green h3 {
  color: #7ca64a;
}

.expectation-yellow h3 {
  color: #e58a00;
}

.expectation-card p {
  max-width: 170px;
  margin: 0;
  color: #3d484f;
  font-weight: 700;
  line-height: 1.25;
}

.about-highlights {
  padding-top: 20px;
}

.about-reviews {
  padding-top: 34px;
}

.eyebrow,
.program-kicker {
  margin: 0 0 8px;
  color: var(--teal-bright);
  font-size: 0.92rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-detail-section {
  padding-top: 34px;
}

.program-detail-list {
  display: grid;
  gap: 26px;
}

.program-detail-card {
  /* Large photo/text program panels on the Programs page. */
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(118, 90, 60, 0.15);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(55, 38, 21, 0.07);
}

.program-detail-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.14fr) minmax(260px, 0.86fr);
}

.program-detail-card:nth-child(even) img {
  order: 2;
}

.program-detail-peach {
  background: linear-gradient(135deg, rgba(255, 238, 226, 0.92), rgba(255, 252, 246, 0.96));
  border-color: rgba(255, 87, 87, 0.22);
}

.program-detail-mint {
  background: linear-gradient(135deg, rgba(232, 249, 246, 0.92), rgba(255, 252, 246, 0.96));
  border-color: rgba(0, 134, 138, 0.22);
}

.program-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.program-detail-copy {
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  align-content: center;
}

.program-detail-copy h3 {
  margin: 0;
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 0.98;
}

.program-detail-peach h3 {
  color: var(--coral-dark);
}

.program-detail-copy > p:not(.program-kicker) {
  margin: 16px 0 18px;
  color: #3d484f;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.48;
}

.program-detail-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.program-detail-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.program-detail-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
}

.program-detail-mint li::before {
  background: var(--teal-bright);
}

.program-includes,
.children-do {
  padding-top: 34px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.included-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(118, 90, 60, 0.15);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.included-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.included-photo-indoor {
  object-position: center 56%;
}

.included-photo-circle {
  object-position: center 62%;
}

.included-photo-creative {
  object-position: center 42%;
}

.included-photo-meals {
  object-position: center 52%;
}

.included-photo-outdoor {
  object-position: center 48%;
}

.included-photo-rest {
  object-position: center 44%;
}

.included-card h3 {
  margin: 18px 20px 8px;
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.included-card p {
  margin: 0 20px 22px;
  color: #3d484f;
  font-weight: 800;
  line-height: 1.35;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.activity-card {
  position: relative;
  min-width: 0;
  margin: 0;
}

.activity-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.activity-pill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  min-height: 48px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  border-radius: 0 0 18px 18px;
  font-size: 1.05rem;
  font-weight: 1000;
  box-shadow: 0 8px 15px rgba(55, 38, 21, 0.12);
}

.activity-pill span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: inherit;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.activity-pill svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.activity-pill.coral-pill span,
.activity-pill.coral-pill svg {
  color: var(--coral);
}

.activity-pill.teal-pill span,
.activity-pill.teal-pill svg {
  color: var(--teal-bright);
}

.activity-pill.green-pill span,
.activity-pill.green-pill svg {
  color: #88a95e;
}

.activity-pill.yellow-pill span,
.activity-pill.yellow-pill svg {
  color: #eda416;
}

.activity-wide-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.activity-wide-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.programs-routine {
  margin-top: 24px;
}

.questions-cta {
  margin-top: 20px;
  margin-bottom: 18px;
  padding: 16px clamp(22px, 4vw, 72px);
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(255, 87, 87, 0.22);
}

.cta-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.cta-copy p {
  margin: 5px 0 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.cta-button {
  min-width: 180px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-dark);
  background: rgba(255, 248, 234, 0.96);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 1000;
  box-shadow: 0 8px 18px rgba(55, 38, 21, 0.14);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.cta-button:hover {
  background: var(--white);
  box-shadow: 0 10px 22px rgba(55, 38, 21, 0.18);
}

.cta-flower {
  position: relative;
  width: 62px;
  height: 62px;
  justify-self: center;
  color: rgba(255, 255, 255, 0.9);
}

.cta-flower::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 36px;
  width: 5px;
  height: 27px;
  background: currentColor;
  border-radius: 999px;
}

.cta-flower span {
  position: absolute;
  left: 20px;
  top: 8px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform-origin: 11px 24px;
}

.cta-flower span:nth-child(2) {
  transform: rotate(72deg);
}

.cta-flower span:nth-child(3) {
  transform: rotate(144deg);
}

.cta-flower span:nth-child(4) {
  transform: rotate(216deg);
}

.cta-flower span:nth-child(5) {
  transform: rotate(288deg);
}

.contact-info-section {
  padding-top: 26px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  min-height: 174px;
  padding: 22px 18px 24px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(12, 140, 149, 0.24);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(55, 38, 21, 0.05);
}

.contact-coral {
  background: linear-gradient(135deg, rgba(255, 231, 214, 0.78), rgba(255, 248, 234, 0.96));
  border-color: rgba(255, 87, 87, 0.34);
}

.contact-teal {
  background: linear-gradient(135deg, rgba(230, 246, 243, 0.9), rgba(246, 255, 252, 0.96));
  border-color: rgba(12, 140, 149, 0.28);
}

.contact-orange {
  background: linear-gradient(135deg, rgba(255, 240, 207, 0.9), rgba(255, 248, 234, 0.96));
  border-color: rgba(245, 184, 46, 0.42);
}

.contact-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(55, 38, 21, 0.1);
}

.contact-icon.coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
}

.contact-icon.teal {
  background: linear-gradient(135deg, var(--teal-bright), #04737d);
}

.contact-icon.orange {
  background: linear-gradient(135deg, #f5b82e, #eb9400);
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.contact-card h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.contact-coral h2 {
  color: var(--coral-dark);
}

.contact-teal h2 {
  color: var(--teal-bright);
}

.contact-orange h2 {
  color: #e58a00;
}

.contact-card p {
  margin: 0;
  color: #3d484f;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-section {
  padding-top: 20px;
}

.map-embed-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(118, 90, 60, 0.14);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.map-embed-card iframe {
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
}

.map-embed-card a {
  display: block;
  padding: 12px 18px 14px;
  color: var(--teal);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 248, 234, 0.78);
}

.map-embed-card a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-placeholder {
  position: relative;
  min-height: 206px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(221, 239, 193, 0.42) 0 12%, transparent 12% 100%),
    linear-gradient(18deg, transparent 0 35%, rgba(153, 211, 226, 0.42) 35% 39%, transparent 39% 100%),
    #f3efe8;
  border: 1px solid rgba(118, 90, 60, 0.14);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: -60px;
  background-image:
    linear-gradient(23deg, transparent 48%, rgba(255, 255, 255, 0.9) 49%, rgba(255, 255, 255, 0.9) 51%, transparent 52%),
    linear-gradient(95deg, transparent 47%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.9) 50%, transparent 51%),
    linear-gradient(151deg, transparent 48%, rgba(255, 255, 255, 0.86) 49%, rgba(255, 255, 255, 0.86) 51%, transparent 52%);
  background-size: 180px 120px, 210px 170px, 260px 180px;
  opacity: 0.78;
}

.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, transparent 49%, rgba(184, 178, 168, 0.34) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(184, 178, 168, 0.28) 50%, transparent 51%);
  background-size: 115px 82px;
  opacity: 0.55;
}

.map-line {
  position: absolute;
  z-index: 1;
  height: 3px;
  background: rgba(211, 203, 192, 0.72);
  border-radius: 999px;
}

.map-line-one {
  width: 46%;
  left: 5%;
  top: 31%;
  transform: rotate(-9deg);
}

.map-line-two {
  width: 58%;
  right: -6%;
  top: 48%;
  transform: rotate(16deg);
}

.map-line-three {
  width: 38%;
  left: 28%;
  bottom: 22%;
  transform: rotate(-4deg);
}

.map-line-four {
  width: 30%;
  left: 14%;
  bottom: 42%;
  transform: rotate(30deg);
}

.map-line-five {
  width: 36%;
  right: 12%;
  top: 24%;
  transform: rotate(-28deg);
}

.map-park {
  position: absolute;
  z-index: 1;
  background: rgba(194, 225, 164, 0.68);
  border-radius: 10px;
}

.park-one {
  left: 6%;
  top: 10%;
  width: 115px;
  height: 62px;
  transform: rotate(-15deg);
}

.park-two {
  right: 9%;
  bottom: 14%;
  width: 150px;
  height: 76px;
  transform: rotate(13deg);
}

.map-river {
  position: absolute;
  z-index: 1;
  width: 230px;
  height: 44px;
  right: -32px;
  top: 68px;
  border: 10px solid rgba(135, 205, 224, 0.6);
  border-color: rgba(135, 205, 224, 0.6) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(112deg);
}

.map-marker {
  position: absolute;
  left: 47.5%;
  top: 38%;
  z-index: 3;
  width: 42px;
  height: 42px;
  color: var(--coral);
  filter: drop-shadow(0 7px 9px rgba(232, 75, 75, 0.28));
}

.map-marker svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.map-marker circle {
  fill: var(--white);
}

.map-placeholder p {
  position: absolute;
  left: calc(47.5% + 40px);
  top: 43%;
  z-index: 3;
  margin: 0;
  color: var(--coral-dark);
  font-size: 1rem;
  font-weight: 1000;
  line-height: 1.05;
}

.visit-card {
  margin-top: 18px;
  padding: 8px 10px 8px 36px;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  background: rgba(255, 248, 234, 0.7);
  border: 1px solid rgba(255, 87, 87, 0.26);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(55, 38, 21, 0.04);
}

.visit-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 10px;
}

.visit-card img.visit-logo-banner {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.visit-copy {
  text-align: center;
}

.visit-heading {
  margin-bottom: 12px;
}

.visit-copy p {
  margin: 0 0 16px;
  color: #3d484f;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.visit-copy .button {
  min-width: 146px;
  padding: 14px 22px;
}

.contact-gallery {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.contact-gallery img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.contact-review {
  padding-top: 18px;
  padding-bottom: 28px;
}

.review-highlight {
  position: relative;
  width: min(78%, 760px);
  margin: 0 auto;
  padding: 20px 74px 22px;
  display: grid;
  justify-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(118, 90, 60, 0.16);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(55, 38, 21, 0.05);
}

.review-highlight p {
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
}

.review-highlight strong {
  color: var(--ink);
  font-weight: 800;
}

.review-highlight svg {
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--coral);
  stroke-linejoin: round;
  stroke-width: 2.2;
  transform: rotate(-12deg);
}

.inquiry-layout {
  padding-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 22px;
}

.inquiry-form-card,
.inquiry-help-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(118, 90, 60, 0.16);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(55, 38, 21, 0.06);
}

.inquiry-form-card {
  padding: 26px 30px 22px;
}

.field-group {
  margin-bottom: 14px;
}

.field-label {
  margin-bottom: 8px;
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.field-label span {
  color: var(--coral);
}

.split-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field-control label {
  margin-top: 6px;
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.inquiry-form-card input,
.inquiry-form-card textarea {
  width: 100%;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  box-shadow: inset 0 1px 2px rgba(55, 38, 21, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.inquiry-form-card input:focus,
.inquiry-form-card textarea:focus {
  background: var(--white);
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(12, 140, 149, 0.12);
  outline: none;
}

.inquiry-form-card textarea {
  min-height: 96px;
  resize: vertical;
}

.form-submit {
  min-width: 116px;
  padding: 12px 22px;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border: 0;
  border-radius: 7px;
  box-shadow: 0 8px 17px rgba(255, 87, 87, 0.24);
  cursor: pointer;
  transition: box-shadow 180ms ease;
}

.form-submit:hover {
  box-shadow: 0 11px 22px rgba(255, 87, 87, 0.3);
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-weight: 800;
  line-height: 1.3;
}

.form-status.success {
  color: var(--teal-bright);
}

.form-status.error {
  color: var(--coral-dark);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.inquiry-help-card {
  padding: 40px 24px;
  background: linear-gradient(135deg, rgba(230, 246, 243, 0.78), rgba(255, 248, 234, 0.92));
  border-color: rgba(12, 140, 149, 0.24);
}

.help-block {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0 0 34px;
}

.help-block + .help-block {
  padding-top: 32px;
  border-top: 1px solid rgba(6, 75, 87, 0.16);
}

.help-block:last-child {
  padding-bottom: 0;
}

.help-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(55, 38, 21, 0.1);
}

.help-icon.teal {
  background: linear-gradient(135deg, var(--teal-bright), #04737d);
}

.help-icon.coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
}

.help-icon.yellow {
  background: linear-gradient(135deg, #f5b82e, #eb9400);
}

.help-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.help-block h2 {
  margin: 8px 0 10px;
  color: var(--teal-bright);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.help-block h2.coral-text {
  color: var(--coral-dark);
}

.help-block h2.yellow-text {
  color: #e58a00;
}

.help-block p {
  margin: 0;
  color: #3d484f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.help-block a:not(.button) {
  color: inherit;
}

.help-button {
  min-width: 148px;
  margin-top: 22px;
  padding: 14px 22px;
}

.inquiry-gallery {
  padding-top: 22px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.inquiry-gallery img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.choose-heading {
  gap: 12px;
}

.heading-sprinkles {
  position: relative;
  width: 18px;
  height: 24px;
  flex: 0 0 auto;
}

.heading-sprinkles::before,
.heading-sprinkles::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 3px;
  background: var(--coral);
  border-radius: 999px;
}

.heading-sprinkles.left::before {
  right: 4px;
  top: 3px;
  transform: rotate(-18deg);
}

.heading-sprinkles.left::after {
  right: 4px;
  bottom: 3px;
  transform: rotate(18deg);
}

.heading-sprinkles.right::before {
  left: 4px;
  top: 3px;
  transform: rotate(18deg);
}

.heading-sprinkles.right::after {
  left: 4px;
  bottom: 3px;
  transform: rotate(-18deg);
}

.reviews-heading-wrap {
  gap: 10px;
  margin-bottom: 10px;
}

.reviews-heading-wrap svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--coral);
  stroke-width: 2.1;
  transform: rotate(-10deg);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.google-review-strip {
  /* Horizontal review scroller; review text lives in src/components/Reviews.astro. */
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(0, 134, 138, 0.45) rgba(255, 255, 255, 0.7);
}

.google-review-strip > * {
  scroll-snap-align: start;
}

.google-static-review span {
  color: var(--teal-bright);
  font-weight: 900;
}

.review-card {
  min-height: 126px;
  padding: 18px 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--ink);
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(118, 90, 60, 0.16);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(55, 38, 21, 0.05);
}

.stars {
  color: var(--coral);
  font-size: 1.2rem;
  letter-spacing: 0.22rem;
  line-height: 1;
}

.review-card p {
  max-width: 260px;
  margin: 10px 0 12px;
  font-weight: 700;
  line-height: 1.25;
}

.review-card strong {
  font-weight: 800;
}

.google-static-review {
  min-height: 250px;
  align-content: start;
  justify-items: start;
  text-align: left;
}

.google-static-review p {
  max-width: none;
  margin: 12px 0;
  line-height: 1.42;
}

.google-static-review .review-excerpt {
  display: -webkit-box;
  min-height: 5.65em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-full {
  width: 100%;
  margin: 2px 0 12px;
}

.review-full summary {
  width: max-content;
  max-width: 100%;
  padding: 0;
  color: var(--teal-bright);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.review-full summary::-webkit-details-marker {
  display: none;
}

.review-full summary:hover {
  color: var(--teal-dark);
}

.review-full p {
  margin-bottom: 0;
}

.review-full .read-less {
  display: none;
}

.review-full[open] .read-more {
  display: none;
}

.review-full[open] .read-less {
  display: inline;
}

.review-meta {
  display: grid;
  gap: 2px;
  margin-top: 10px;
}

.review-meta strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.review-meta span,
.google-static-review .review-source {
  font-size: 0.84rem;
}

.site-footer {
  margin-top: 0;
  padding: 24px max(48px, calc((100vw - 1100px) / 2 + 48px)) 14px;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(135deg, #ff5757, #ef4444);
  border-radius: 8px 8px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 0.9fr 1.4fr;
  align-items: center;
  gap: 32px;
}

.footer-brand,
.footer-message {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand-logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-logo-image {
  width: min(190px, 100%);
  height: auto;
}

.footer-brand h2 {
  margin: 0 0 10px;
  color: #090f11;
  font-family: var(--body);
  font-size: 1.25rem;
  font-weight: 1000;
  line-height: 0.95;
  text-transform: uppercase;
}

.footer-brand p,
.footer-message p {
  margin: 0;
  font-weight: 900;
}

.footer-logo-mark,
.outline-flower {
  position: relative;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
}

.footer-logo-mark::after,
.outline-flower::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 38px;
  width: 6px;
  height: 30px;
  background: currentColor;
  border-radius: 999px;
}

.footer-logo-mark span,
.outline-flower span {
  position: absolute;
  left: 23px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f8c43b;
  border: 2px solid var(--teal);
  transform-origin: 12px 25px;
}

.footer-logo-mark span:nth-child(2),
.outline-flower span:nth-child(2) {
  transform: rotate(72deg);
}

.footer-logo-mark span:nth-child(3),
.outline-flower span:nth-child(3) {
  transform: rotate(144deg);
}

.footer-logo-mark span:nth-child(4),
.outline-flower span:nth-child(4) {
  transform: rotate(216deg);
}

.footer-logo-mark span:nth-child(5),
.outline-flower span:nth-child(5) {
  transform: rotate(288deg);
}

.footer-column {
  min-height: 94px;
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 1000;
}

.footer-column a {
  width: fit-content;
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.footer-column a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--coral);
  background: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--teal);
  transform: translateY(-2px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  display: block;
}

.social-links .icon-fill {
  fill: currentColor;
}

.social-links .icon-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-message {
  min-height: 94px;
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.outline-flower {
  color: rgba(255, 255, 255, 0.88);
}

.outline-flower::after {
  background: rgba(255, 255, 255, 0.88);
}

.outline-flower span {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.88);
}

.copyright {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  /* Tablet layout: stack dense sections before they get cramped. */
  .nav-shell,
  .section,
  .routine-shell {
    width: min(100% - 40px, 760px);
  }

  .nav-shell {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-header.is-compact .nav-shell {
    min-height: auto;
    padding: 10px 0;
  }

  .brand-link {
    width: auto;
  }

  .brand-link img {
    max-height: 68px;
  }

  .site-header.is-compact .brand-link img {
    max-height: 52px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .site-header.is-compact .brand-name {
    font-size: 0.92rem;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 18px 26px;
    flex-wrap: wrap;
  }

  .site-header.is-compact .nav-links {
    gap: 10px 22px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-card {
    margin: 0 auto;
  }

  .home-hero .hero-card {
    margin: 0;
  }

  .program-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .expectation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .life-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-page-grid .program-card {
    grid-template-columns: 170px minmax(0, 1fr) 62px;
  }

  .program-page-grid .program-card img {
    width: 170px;
    height: 176px;
  }

  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .activity-card:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
  }

  .activity-wide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-detail-card,
  .program-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .program-detail-card:nth-child(even) img {
    order: 0;
  }

  .program-detail-card img {
    min-height: 280px;
    aspect-ratio: 1.7 / 1;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visit-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-highlight {
    width: 100%;
  }

  .questions-cta {
    grid-template-columns: 70px 1fr;
  }

  .cta-button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-intro-copy {
    max-width: none;
  }

  .about-copy-heading {
    justify-content: center;
    text-align: center;
  }

  .routine-shell {
    padding-inline: 22px;
  }

  .routine-list {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    row-gap: 20px;
  }

  .routine-list::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .footer-column,
  .footer-message {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  /* Phone layout: single-column cards and smaller hero spacing. */
  body {
    font-size: 15px;
  }

  .nav-shell,
  .section,
  .routine-shell {
    width: min(100% - 28px, 430px);
  }

  .nav-links {
    gap: 10px 18px;
    font-size: 0.95rem;
  }

  .brand-link {
    gap: 8px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .site-header.is-compact .brand-name {
    font-size: 0.82rem;
  }

  .nav-links .nav-button {
    width: 100%;
    max-width: 210px;
    padding: 12px 20px;
  }

  .hero {
    min-height: 520px;
    align-items: end;
    background-position: 58% center;
  }

  .hero-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .home-hero {
    min-height: 560px;
    align-items: center;
    background-position: 54% center;
  }

  .home-hero-copy {
    padding: 0;
    border-radius: 0;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .home-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.35rem);
  }

  .about-hero h1 span {
    white-space: normal;
  }

  .contact-hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.25rem);
  }

  .inquire-hero h1 {
    font-size: clamp(3.6rem, 18vw, 4.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .program-card {
    grid-template-columns: 94px minmax(0, 1fr) 50px;
    gap: 12px;
    padding: 16px 14px;
  }

  .program-card img {
    width: 94px;
    height: 94px;
    border-width: 5px;
  }

  .program-copy h3 {
    font-size: 1.55rem;
  }

  .program-copy .age {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .program-copy p {
    font-size: 0.92rem;
  }

  .program-icon {
    width: 50px;
    height: 50px;
  }

  .program-page-grid .program-card {
    min-height: 146px;
    grid-template-columns: 100px minmax(0, 1fr) 48px;
    padding: 0 12px 0 0;
    gap: 12px;
  }

  .program-page-grid .program-card img {
    width: 100px;
    height: 146px;
  }

  .program-page-grid .program-copy h3 {
    font-size: 1.45rem;
  }

  .programs-hero {
    min-height: 390px;
    background-position: center;
  }

  .programs-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .programs-hero p {
    font-size: 1rem;
  }

  .program-detail-card img {
    min-height: 220px;
  }

  .program-detail-copy {
    padding: 26px 22px;
  }

  .life-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .expectation-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .expectation-card {
    min-height: 152px;
  }

  .activity-grid,
  .activity-wide-grid {
    grid-template-columns: 1fr;
  }

  .activity-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .activity-card img,
  .activity-wide-grid img {
    aspect-ratio: 1.55 / 1;
  }

  .contact-card-grid,
  .contact-gallery {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    min-height: 190px;
  }

  .map-embed-card iframe {
    height: 250px;
  }

  .map-marker {
    left: 41%;
  }

  .map-placeholder p {
    left: calc(41% + 38px);
    top: 44%;
    font-size: 0.9rem;
  }

  .visit-card {
    padding: 20px;
  }

  .visit-card img {
    height: auto;
    aspect-ratio: 1.65 / 1;
  }

  .review-highlight {
    padding: 20px 24px 58px;
  }

  .review-highlight svg {
    right: 22px;
    bottom: 16px;
  }

  .inquiry-form-card {
    padding: 22px 20px;
  }

  .split-fields,
  .inquiry-gallery {
    grid-template-columns: 1fr;
  }

  .help-block {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .inquiry-help-card {
    padding: 30px 22px;
  }

  .questions-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cta-button {
    width: 100%;
  }

  .about-intro-copy p {
    text-align: center;
  }

  .routine-shell {
    margin-top: 34px;
    border-radius: 18px;
  }

  .routine-list {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }

  .review-card {
    padding-inline: 20px;
  }

  .site-footer {
    padding: 28px 20px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-logo {
    align-items: center;
    text-align: center;
  }
}

.day-gallery {
  padding-top: 28px;
}

.day-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.day-gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.day-gallery-tall {
  grid-row: span 2;
}

.day-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.day-photo-circle-song {
  object-position: center 46%;
}

.day-photo-story-baby {
  object-position: center 62%;
}

.day-photo-story-rug {
  object-position: center 58%;
}

.day-photo-drawing-books {
  object-position: center 52%;
}

.day-photo-shape-sorting {
  object-position: 58% 50%;
}

.day-photo-creative-collage {
  object-position: center;
}

.day-photo-bouncy-play,
.space-photo-bouncy-play {
  object-position: center 52%;
}

.day-photo-building-beads {
  object-position: center 48%;
}

.day-photo-flower-art-glue {
  object-position: center 78%;
}

@media (max-width: 980px) {
  .day-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
}

@media (max-width: 640px) {
  .day-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .day-gallery-tall {
    grid-row: auto;
  }
}

.space-hero {
  min-height: clamp(430px, 44vw, 560px);
  padding: clamp(48px, 6vw, 76px) max(28px, calc((100vw - 1120px) / 2 + 28px));
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(12, 28, 32, 0.72), rgba(12, 28, 32, 0.28) 46%, rgba(12, 28, 32, 0.08)),
    url("/assets/space-main-room-wide.jpeg") center / cover;
}

.space-hero-card {
  width: min(560px, 100%);
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
}

.space-kicker {
  margin: 0 0 10px;
  color: #ffe7a3;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.space-hero-card h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.space-hero-card p:not(.space-kicker) {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
}

.space-intro {
  padding-top: 34px;
}

.space-lede {
  width: min(780px, 100%);
  margin: 0 auto 24px;
  color: #3d484f;
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.6;
  text-align: center;
}

.space-highlight-grid,
.space-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.space-highlight-grid article,
.space-placeholder-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 133, 143, 0.18);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.space-highlight-grid h3,
.space-placeholder-grid h3 {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: 1.6rem;
}

.space-highlight-grid p,
.space-placeholder-grid p {
  margin: 0;
  color: #3d484f;
  font-weight: 750;
  line-height: 1.45;
}

.space-tour {
  padding-top: 32px;
}

.space-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.space-photo-card {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 87, 87, 0.16);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.space-photo-wide {
  grid-column: span 2;
}

.space-photo-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.space-photo-wide img {
  height: 330px;
}

.space-photo-entry {
  object-position: center 54%;
}

.space-photo-board {
  object-position: center 48%;
}

.space-photo-outdoor {
  object-position: center 56%;
}

.space-photo-snack,
.space-photo-calendar,
.space-photo-activity {
  object-position: center 44%;
}

.space-photo-card figcaption {
  padding: 18px 20px 20px;
}

.space-photo-card h3 {
  margin: 0 0 6px;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 1.65rem;
}

.space-photo-card p {
  margin: 0;
  color: #33424a;
  font-weight: 750;
  line-height: 1.42;
}

.space-more {
  padding-top: 34px;
}

.space-placeholder-grid article {
  border-style: dashed;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 87, 87, 0.12), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(0, 133, 143, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.68);
}

.space-cta {
  margin-bottom: 44px;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.space-cta h2 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.space-cta p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 850;
}

.space-cta .button {
  color: var(--coral-dark);
  background: rgba(255, 248, 234, 0.94);
  box-shadow: none;
}

@media (max-width: 980px) {
  .space-hero {
    min-height: 430px;
  }

  .space-highlight-grid,
  .space-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .space-tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .space-photo-wide {
    grid-column: span 2;
  }

  .space-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .space-hero {
    min-height: 390px;
    padding: 42px 22px;
    background-position: 46% center;
  }

  .space-tour-grid {
    grid-template-columns: 1fr;
  }

  .space-photo-wide {
    grid-column: auto;
  }

  .space-photo-card img,
  .space-photo-wide img {
    height: 250px;
  }

  .space-cta {
    padding: 24px;
  }
}
