/* ============ New 2 U Kids ============ */
:root {
  --teal: #0e9594;
  --teal-dark: #0b7776;
  --coral: #ff6f61;
  --coral-dark: #e85a4d;
  --sunny: #ffce5c;
  --cream: #fff8ef;
  --white: #ffffff;
  --ink: #2d3142;
  --ink-soft: #565b73;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(45, 49, 66, 0.10);
  --font-display: "Baloo 2", "Comic Sans MS", cursive, sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

img { max-width: 100%; }

a { color: var(--teal-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: .5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--teal);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .65rem; padding-bottom: .65rem;
}
.logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.logo-mark { font-size: 1.8rem; }
.logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; color: var(--ink);
}
.logo-text em { font-style: normal; color: var(--coral); }
.logo-text span { color: var(--teal); }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: .98rem;
}
.site-nav a:hover { color: var(--coral); }
.nav-cta {
  background: var(--coral); color: #fff !important;
  padding: .45rem .95rem; border-radius: 999px;
}
.nav-cta:hover { background: var(--coral-dark); color: #fff !important; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: .4rem;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--ink);
  margin: 5px 0; border-radius: 2px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0e9594 0%, #12b3b1 60%, #7fd4c1 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center;
  padding-top: 4.5rem; padding-bottom: 6rem;
}
.hero-eyebrow {
  display: inline-block; background: rgba(255,255,255,.18);
  padding: .3rem .9rem; border-radius: 999px;
  font-weight: 700; letter-spacing: .03em; font-size: .9rem; margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; margin-bottom: 1rem;
}
.squiggle {
  color: #ffe66d;
  text-decoration: underline wavy rgba(255, 230, 109, .6) 3px;
  text-underline-offset: 6px;
}
.hero-sub { font-size: 1.12rem; max-width: 34rem; opacity: .95; margin-bottom: 1.6rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.hero-badge { font-size: .95rem; opacity: .95; }
.hero-badge a { color: #ffe66d; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 800;
  font-family: var(--font-display);
  padding: .75rem 1.6rem; border-radius: 999px; font-size: 1.05rem;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline { border: 2.5px solid currentColor; color: #fff; }
.section .btn-outline { color: var(--teal-dark); }
.btn-small { padding: .5rem 1.1rem; font-size: .95rem; }

.hero-art { position: relative; display: flex; justify-content: center; }
.blob {
  position: absolute; inset: -10%;
  background: rgba(255,255,255,.12); border-radius: 46% 54% 60% 40% / 50% 45% 55% 50%;
}
.hero-emoji-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.hero-emoji-grid span {
  font-size: 2.6rem; background: rgba(255,255,255,.92);
  width: 5.2rem; height: 5.2rem; display: grid; place-items: center;
  border-radius: 22px; box-shadow: var(--shadow);
  transform: rotate(var(--tilt, 0deg));
}
.hero-emoji-grid span:nth-child(odd) { --tilt: -4deg; }
.hero-emoji-grid span:nth-child(even) { --tilt: 3deg; }

.wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.wave svg { width: 100%; height: 60px; display: block; }

/* ============ Sections ============ */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }

.section-title {
  font-family: var(--font-display); font-weight: 800; text-align: center;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: .6rem; color: var(--ink);
}
.section-title.left { text-align: left; }
.section-sub {
  text-align: center; color: var(--ink-soft); max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}
.card {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow); border-top: 5px solid var(--teal);
  transition: transform .15s ease;
}
.section-alt .card { border: 1px solid #eee; }
.card:hover { transform: translateY(-4px); }
.card:nth-child(3n+2) { border-top-color: var(--coral); }
.card:nth-child(3n) { border-top-color: #ffce5c; }
.card-icon { font-size: 2.2rem; display: block; margin-bottom: .6rem; }
.card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: .35rem; }
.card p { color: var(--ink-soft); font-size: .97rem; }

.note {
  text-align: center; margin-top: 2.2rem; color: var(--ink-soft);
  background: rgba(14, 149, 148, .08); border-radius: 999px;
  padding: .7rem 1.4rem; display: table; margin-left: auto; margin-right: auto;
}

/* ============ Steps ============ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.step {
  background: var(--cream); border-radius: var(--radius); padding: 1.8rem 1.5rem;
  text-align: center; position: relative;
}
.step-num {
  width: 2.6rem; height: 2.6rem; display: grid; place-items: center;
  margin: 0 auto .9rem; background: var(--coral); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  border-radius: 50%;
}
.step h3 { font-family: var(--font-display); margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .97rem; }

/* ============ About ============ */
.about-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
}
.about-copy p { margin-bottom: 1rem; color: var(--ink-soft); }
.perks { list-style: none; margin-top: 1.2rem; }
.perks li { padding: .35rem 0; font-weight: 700; }

.quote-card {
  background: linear-gradient(135deg, var(--teal), #12b3b1);
  color: #fff; border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); margin-bottom: 1.2rem;
}
.quote-mark { font-size: 3rem; font-family: Georgia, serif; line-height: .5; opacity: .6; }
.quote-text { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin: .6rem 0 .4rem; }
.quote-attr { font-size: .9rem; opacity: .9; }

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.stat {
  background: var(--white); border-radius: var(--radius); padding: 1.1rem;
  text-align: center; box-shadow: var(--shadow);
}
.stat strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--coral); }
.stat span { font-size: .85rem; color: var(--ink-soft); }

/* ============ FAQ ============ */
.faq-container { max-width: 760px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); margin-bottom: .9rem;
  padding: 0; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem;
  padding: 1.1rem 1.4rem; position: relative; padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--coral); font-weight: 800;
  transition: transform .15s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); }

/* ============ Visit ============ */
.visit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-bottom: 1.6rem;
}
.visit-card {
  background: var(--cream); border-radius: var(--radius); padding: 1.6rem;
}
.visit-card h3 { font-family: var(--font-display); margin-bottom: .7rem; }
.visit-card p { color: var(--ink-soft); margin-bottom: .9rem; }
.big-link {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 800;
  color: var(--coral); text-decoration: none;
}
.big-link:hover { text-decoration: underline; }
.btn-call { margin-bottom: 1rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: .8rem; }
.hours-table td { padding: .35rem 0; border-bottom: 1px dashed #ddd; }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.fine-print { font-size: .84rem; }

.map-wrap {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; }

/* ============ Footer ============ */
.site-footer {
  background: var(--ink); color: #cfd2e0; padding: 2.8rem 0 1.4rem;
}
.footer-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 1.8rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: #fff; }
.site-footer a { color: #ffe66d; }
.footer-fine { text-align: center; font-size: .85rem; opacity: .7; }

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 3rem; padding-bottom: 5rem; }
  .hero-art { display: none; }
  .steps, .visit-grid, .footer-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }

  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 3px solid var(--teal);
    flex-direction: column; padding: 1rem 1.25rem; gap: .9rem;
  }
  .site-nav.open { display: flex; }
}
