:root {
  --bg: #f9fafb;
  --bg-muted: #f2f4f7;
  --surface: #ffffff;
  --primary: #2563eb;
  --primary-soft: #dbeafe;
  --accent: #f97316;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background-color: #fdfbff;
  background-image: url("./bg-kawaii.svg"),
    radial-gradient(circle at top left, #eff6ff, #f9fafb 40%, #ffffff);
  background-repeat: repeat, no-repeat;
  background-size: 400px 400px, auto;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.max-width {
  max-width: 1120px;
  padding-inline: 1.25rem;
  margin-inline: auto;
}

.site-logo-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.logo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding-block: 0.6rem;
}

.logo-flags {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #0f172a;
  font-size: 0.9rem;
  opacity: 0.85;
}

.logo-flags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(380px, 75vw);
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 1.1rem;
  background: conic-gradient(from 210deg, #f97316, #facc15, #22c55e, #38bdf8, #f97316);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.brand-sparkle {
  width: 75%;
  height: 75%;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0, #fff, rgba(255, 255, 255, 0) 60%);
  mix-blend-mode: screen;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-nav a {
  position: relative;
  padding-block: 0.25rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  bottom: 0;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease-out;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  transition: transform 150ms ease, opacity 150ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.btn {
  border-radius: 999px;
  border: none;
  padding: 0.68rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 550;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: background 160ms ease, transform 120ms ease, box-shadow 160ms ease, color 120ms ease,
    border-color 120ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
}

.btn-outline:hover {
  background: #0f172a;
  color: #f9fafb;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #0f172a;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.04);
}

.btn-full {
  width: 100%;
}

.header-cta {
  display: none;
}

.enrollment-banner {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: radial-gradient(circle at top left, #dbeafe, #eff6ff 40%, #fef9c3);
}

.enrollment-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}

.enrollment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.25);
}

.status-text {
  font-size: 0.85rem;
  font-weight: 550;
}

.status-closed {
  display: none;
}

.enrollment-banner[data-status="closed"] .status-dot {
  background: #94a3b8;
  box-shadow: 0 0 0 5px rgba(148, 163, 184, 0.35);
}

.enrollment-banner[data-status="closed"] .status-open {
  display: none;
}

.enrollment-banner[data-status="closed"] .status-closed {
  display: inline;
}

.enrollment-toggle {
  border-radius: 999px;
  border: none;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.89);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.enrollment-toggle::after {
  content: "●";
  font-size: 0.6rem;
  color: #f97316;
}

main {
  padding-bottom: 3rem;
}

.hero {
  padding-block: 2.8rem 3.6rem;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: center;
  padding: 2.2rem 2.4rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.hero-content h1 {
  font-size: clamp(2.3rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 30rem;
  margin-top: 0;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4b5563;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.8rem;
}

.hero-metrics dt {
  font-weight: 650;
}

.hero-metrics dd {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-panel {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.4rem;
  backdrop-filter: blur(12px);
}

.hero-card-main {
  position: relative;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.hero-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.87rem;
}

.hero-timeline li {
  display: flex;
  gap: 0.6rem;
}

.hero-timeline .time {
  width: 3.2rem;
  font-variant-numeric: tabular-nums;
  color: #9ca3af;
}

.hero-card-secondary {
  position: absolute;
  right: 0;
  bottom: -2.3rem;
  width: 75%;
  transform: translateX(10%);
  background: radial-gradient(circle at top left, #eef2ff, #fff);
  font-size: 0.9rem;
}

.hero-card-secondary p {
  margin: 0 0 0.3rem 0;
}

.hero-parent {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-wave {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 80px;
  background: radial-gradient(circle at top, rgba(209, 213, 219, 0.5), rgba(249, 250, 251, 0) 55%);
  pointer-events: none;
}

.section {
  padding-block: 3.2rem;
  scroll-margin-top: 6.5rem;
}

/* Floating content cards over the kawaii wallpaper */
main > .section > .max-width {
  padding: 2.2rem 2.4rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.section.muted {
  background: transparent;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-top: 0.3rem;
  margin-bottom: 0.6rem;
  font-size: 1.65rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: start;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.feature-card {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.program-card {
  padding: 1.3rem 1.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.sample-day {
  margin: 0;
  padding: 0;
  border: none;
}

.sample-day > summary {
  list-style: none;
}

.sample-day > summary::-webkit-details-marker {
  display: none;
}

.sample-day-body {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  font-size: 0.84rem;
  color: var(--text-muted);
}

.program-card header h3 {
  margin: 0;
  font-size: 1.05rem;
}

.age-range {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.program-card ul {
  margin: 0.2rem 0 0.8rem 1rem;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.chip {
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  background: rgba(248, 250, 252, 0.95);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.chip::after {
  content: "↗";
  font-size: 0.7rem;
}

.chip:hover {
  background: #0f172a;
  color: #f9fafb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gallery-media {
  border-radius: 1.2rem;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.1), transparent 55%);
}

.gallery-media-1 {
  background-image: linear-gradient(135deg, #fee2e2, #e0f2fe);
}

.gallery-media-2 {
  background-image: linear-gradient(135deg, #fef3c7, #e9d5ff);
}

.gallery-media-3 {
  background-image: linear-gradient(135deg, #dcfce7, #e0f2fe);
}

.gallery-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.testimonial-card {
  padding: 1.3rem 1.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.testimonial-card p {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.testimonial-name {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials-header .testimonials-google-badge {
  margin-top: 0.5rem;
}

.testimonials-google-link {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
}

.testimonials-google-link a {
  color: var(--primary);
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #4b5563;
}

.faq-panel {
  padding: 0 1rem 0.9rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  display: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-item[open] .faq-panel {
  display: block;
}

.faq-item[open] .faq-icon {
  background: #0f172a;
  color: #e5e7eb;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.2rem;
  align-items: stretch;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-details li + li {
  margin-top: 0.35rem;
}

.contact-form {
  padding: 1.3rem 1.4rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  color: #4b5563;
}

.field input,
.field select,
.field textarea {
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 130ms ease, box-shadow 130ms ease, background 130ms ease;
  background: #f9fafb;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
  background: #ffffff;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.map-reviews {
  padding: 1.3rem 1.4rem;
  border-radius: 1.4rem;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.map-card {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  background: #ffffff;
  height: 280px;
}

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

.yelp-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 280px;
  overflow-y: auto;
}

.yelp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.yelp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
}

.yelp-reviews-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.yelp-review-name {
  font-weight: 600;
  font-size: 0.8rem;
}

.yelp-link {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--primary);
}

.yelp-link a {
  color: inherit;
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #f9fafb;
  padding-block: 1.3rem 1.6rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-copy {
  display: block;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.footer-nav {
  display: flex;
  gap: 1.3rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .hero-card-secondary {
    position: relative;
    inset: unset;
    width: 100%;
    transform: none;
    margin-top: 1rem;
  }

  .split-inner,
  .section-grid,
  .programs-grid,
  .gallery-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .map-reviews {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-block: 0.75rem;
  }

  .site-nav {
    position: absolute;
    inset-inline: 1.25rem;
    top: 100%;
    margin-top: 0.35rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 999px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    justify-content: space-between;
    font-size: 0.8rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .enrollment-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-block: 2rem 2.8rem;
  }
}

@media (max-width: 640px) {
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding-block: 2.4rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    gap: 1rem;
  }
}

