:root {
  --cream: #fffaf2;
  --paper: rgba(255, 255, 255, 0.8);
  --paper-strong: rgba(255, 255, 255, 0.94);
  --ink: #19324b;
  --muted: #617186;
  --line: rgba(25, 50, 75, 0.12);
  --red: #ff6f61;
  --yellow: #ffd54f;
  --blue: #4e8cff;
  --green: #34b98f;
  --orange: #ff9c52;
  --shadow: 0 24px 70px rgba(39, 66, 104, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 111, 97, 0.24), transparent 20%),
    radial-gradient(circle at 88% 10%, rgba(78, 140, 255, 0.22), transparent 22%),
    radial-gradient(circle at 18% 88%, rgba(255, 213, 79, 0.26), transparent 18%),
    linear-gradient(180deg, #fffdf8 0%, #fff6dc 100%);
}

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

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

button {
  font: inherit;
}

.background-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 34%, rgba(255, 111, 97, 0.14) 0 5%, transparent 5.5%),
    radial-gradient(circle at 92% 42%, rgba(78, 140, 255, 0.14) 0 6%, transparent 6.5%),
    radial-gradient(circle at 72% 80%, rgba(52, 185, 143, 0.12) 0 5%, transparent 5.5%),
    radial-gradient(circle at 28% 74%, rgba(255, 213, 79, 0.18) 0 4%, transparent 4.5%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 111, 97, 0.05) 0 88px,
      rgba(255, 213, 79, 0.05) 88px 176px,
      rgba(78, 140, 255, 0.05) 176px 264px
    );
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.72));
  backdrop-filter: blur(16px);
}

.nav-bar,
.nav-links,
.hero-grid,
.hero-actions,
.badges,
.split-layout,
.contact-grid,
.footer-bar,
.routine-controls,
.nav-cta,
.brand,
.hero-metrics,
.contact-list,
.hour-row {
  display: flex;
  gap: 16px;
}

.nav-bar,
.footer-bar,
.hour-row {
  align-items: center;
  justify-content: space-between;
}

.brand,
.nav-links,
.hero-actions,
.badges,
.routine-controls {
  align-items: center;
}

.brand {
  font-weight: 800;
}

.brand strong,
.hero h1,
.section-heading h2,
.program-card h3,
.story-panel h2,
.contact-panel h2 {
  font-family: "Baloo 2", cursive;
  line-height: 1;
  margin: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-family: "Baloo 2", cursive;
  font-size: 1.55rem;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  box-shadow: var(--shadow);
}

.nav-links {
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
}

.nav-cta,
.primary-button,
.ghost-button,
.routine-chip {
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 14px 30px rgba(255, 156, 82, 0.28);
}

.primary-button.full-width {
  width: 100%;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.nav-cta:hover,
.primary-button:hover,
.ghost-button:hover,
.routine-chip:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 42px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 18px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.story-panel p,
.contact-panel p,
.program-card p,
.trust-card p,
.testimonial-card p,
.hour-row span,
.contact-list span,
.footer-bar p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-metrics article,
.testimonial-card,
.hours-card,
.program-card,
.trust-card,
.story-panel,
.contact-panel,
.routine-board,
.photo-card,
.floating-note {
  background: var(--paper);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  flex: 1 1 180px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Baloo 2", cursive;
  font-size: 1.75rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.photo-card {
  overflow: hidden;
  border-radius: 30px;
}

.photo-card.large {
  min-height: 470px;
}

.photo-card.small {
  min-height: 220px;
}

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

.photo-stack {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.floating-note {
  align-self: center;
  max-width: 200px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.9), rgba(255, 255, 255, 0.8));
  font-weight: 800;
  line-height: 1.5;
}

.note-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 18px 0 0 var(--blue);
}

.partners-strip {
  padding: 18px 0 10px;
}

.badges {
  flex-wrap: wrap;
  justify-content: center;
}

.badges span,
.routine-chip {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.badges span:nth-child(1),
.routine-chip:nth-child(1) {
  background: rgba(255, 111, 97, 0.12);
}

.badges span:nth-child(2),
.routine-chip:nth-child(2) {
  background: rgba(255, 213, 79, 0.26);
}

.badges span:nth-child(3),
.routine-chip:nth-child(3) {
  background: rgba(78, 140, 255, 0.14);
}

.badges span:nth-child(4) {
  background: rgba(52, 185, 143, 0.14);
}

.badges span:nth-child(5) {
  background: rgba(255, 156, 82, 0.16);
}

.section {
  padding: 64px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin-bottom: 8px;
}

.program-grid,
.trust-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

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

.program-card,
.trust-card,
.testimonial-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.program-card.red {
  background: linear-gradient(145deg, rgba(255, 111, 97, 0.22), rgba(255, 255, 255, 0.86));
}

.program-card.yellow {
  background: linear-gradient(145deg, rgba(255, 213, 79, 0.32), rgba(255, 255, 255, 0.9));
}

.program-card.blue {
  background: linear-gradient(145deg, rgba(78, 140, 255, 0.18), rgba(255, 255, 255, 0.88));
}

.program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 18px;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  background: rgba(255, 255, 255, 0.85);
}

.program-card h3 {
  font-size: 2rem;
  margin-bottom: 4px;
}

.program-age {
  margin: 0 0 10px;
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.story-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.story-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.9);
}

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

.trust-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: "Baloo 2", cursive;
  font-size: 1.7rem;
}

.trust-card.coral {
  background: linear-gradient(145deg, rgba(255, 111, 97, 0.18), rgba(255, 255, 255, 0.88));
}

.trust-card.sky {
  background: linear-gradient(145deg, rgba(78, 140, 255, 0.16), rgba(255, 255, 255, 0.88));
}

.trust-card.sun {
  background: linear-gradient(145deg, rgba(255, 213, 79, 0.28), rgba(255, 255, 255, 0.9));
}

.trust-card.mint {
  background: linear-gradient(145deg, rgba(52, 185, 143, 0.16), rgba(255, 255, 255, 0.88));
}

.routine-controls {
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.routine-chip {
  border: 0;
  cursor: pointer;
}

.routine-chip.active {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.routine-board {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.routine-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.routine-time {
  font-weight: 800;
  color: var(--ink);
}

.routine-row h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}

.routine-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-section {
  overflow: hidden;
}

.gallery-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  align-items: stretch;
}

.gallery-card {
  overflow: hidden;
  min-height: 280px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.gallery-card.tall {
  min-height: 600px;
}

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

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

.testimonial-card strong {
  display: block;
  margin-top: 16px;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.contact-panel,
.hours-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.contact-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 220, 0.82));
}

.hours-card {
  background: linear-gradient(145deg, rgba(78, 140, 255, 0.14), rgba(255, 255, 255, 0.9));
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong,
.hour-row strong {
  font-size: 1.08rem;
}

.hour-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hour-row:last-of-type {
  margin-bottom: 22px;
}

.site-footer {
  padding: 18px 0 34px;
}

.footer-bar {
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(25, 50, 75, 0.1);
}

@media (max-width: 1080px) {
  .nav-bar,
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-grid,
  .program-grid,
  .split-layout,
  .contact-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.tall {
    min-height: 360px;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .container {
    width: min(100% - 20px, 1180px);
  }

  .hero {
    padding-top: 24px;
  }

  .hero-metrics,
  .trust-grid,
  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .routine-row {
    grid-template-columns: 1fr;
  }

  .footer-bar,
  .nav-bar {
    justify-content: center;
    text-align: center;
  }
}
