/* =========================================================
   Koga Orthodontics — Kids landing page
   ========================================================= */

:root {
  --color-white: #FFFFFF;
  --color-light: #F7F7F7;
  --color-teal: #0096AC;
  --color-teal-dark: #007a8d;
  --color-teal-soft: #e6f5f7;
  --color-orange: #FC7F1F;
  --color-yellow: #FFE200;
  --color-red: #E83E3E;
  --color-text: #101922;
  --color-muted: #4a5560;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 0 rgba(16, 25, 34, 0.08);
  --shadow-md: 0 14px 28px -16px rgba(16, 25, 34, 0.18), 0 4px 0 rgba(16, 25, 34, 0.05);
  --shadow-lift: 0 20px 40px -22px rgba(16, 25, 34, 0.25);
  --shadow-stamp: 0 6px 0 rgba(16, 25, 34, 0.12);

  --ease: cubic-bezier(.2,.7,.2,1);

  --container: 1180px;
  --gutter: 24px;

  --font-display: "Fredoka", "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--color-teal); text-decoration: none; }
a:hover { color: var(--color-teal-dark); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  text-wrap: balance;
  line-height: 1.1;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
h4 { font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-yellow); color: var(--color-text);
  padding: 10px 14px; border-radius: var(--radius-sm); font-weight: 700;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; }

:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-family: var(--font-body);
  border: 3px solid transparent;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  line-height: 1.25;
}
.btn--lg { padding: 17px 26px; font-size: 1.02rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }

.btn--primary {
  background: var(--color-yellow);
  color: var(--color-text);
  border-color: var(--color-text);
  box-shadow: 0 4px 0 var(--color-text);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 var(--color-text), var(--shadow-lift);
  color: var(--color-text);
}
.btn--primary:active { transform: translateY(0); box-shadow: 0 2px 0 var(--color-text); }

.btn--secondary {
  background: var(--color-white);
  color: var(--color-teal);
  border-color: var(--color-teal);
}
.btn--secondary:hover {
  background: var(--color-teal-soft);
  transform: translateY(-2px);
  color: var(--color-teal-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--color-white); transform: translateY(-2px); }

.btn-arrow { display: inline-block; flex-shrink: 0; transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(8px);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid rgba(16,25,34,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.primary-nav { margin-left: 24px; flex: 1; }
.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 4px; flex-wrap: wrap;
}
.primary-nav a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: var(--color-text);
  font-size: .95rem;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.primary-nav a:hover { background: var(--color-teal-soft); color: var(--color-teal); }

.header-cta { padding: 10px 18px; font-size: .95rem; }

.hamburger {
  display: none;
  background: var(--color-white);
  border: 2px solid var(--color-text);
  width: 44px; height: 44px;
  border-radius: 14px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 20px; height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid rgba(16,25,34,.08);
  background: var(--color-white);
  padding: 12px 0;
}
.mobile-menu ul {
  list-style: none; padding: 0 var(--gutter); margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--color-text);
}
.mobile-menu a:hover { background: var(--color-teal-soft); color: var(--color-teal); }
.mobile-menu .btn { margin-top: 8px; }

/* ---------- Eyebrows ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  padding: 6px 14px 6px 8px;
  background: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.eyebrow--center { margin: 0 auto; }
.eyebrow--on-teal { background: rgba(255,255,255,.95); }
.eyebrow-dot {
  display: inline-block;
  width: 10px; height: 14px;
  border-radius: 3px;
}
.eyebrow-dot--teal { background: var(--color-teal); }
.eyebrow-dot--yellow { background: var(--color-yellow); }
.eyebrow-dot--orange { background: var(--color-orange); }
.eyebrow-dot--red { background: var(--color-red); }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head--left { text-align: left; margin-left: 0; margin-right: 0; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-sub {
  color: var(--color-muted);
  font-size: 1.08rem;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.section-head--left .section-sub { margin-left: 0; margin-right: 0; }

.hero-grid > *,
.family-card > *,
.intro-grid > *,
.age7-grid > *,
.signs-head > *,
.awareness-strip > *,
.meet-grid > *,
.coloring-grid > *,
.final-card > *,
.footer-grid > * {
  min-width: 0;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 0;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(0,150,172,0.08), transparent 60%),
    linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
  overflow: hidden;
}

/* grid paper texture */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,150,172,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,150,172,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 85%);
  pointer-events: none;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(40px); opacity: .35;
}
.blob-1 { top: -80px; right: -60px; width: 360px; height: 360px; background: var(--color-yellow); }
.blob-2 { bottom: -120px; left: -80px; width: 380px; height: 380px; background: var(--color-teal); opacity: .18; }

.sticker { position: absolute; }
.sticker-tooth { top: 18%; left: 6%; transform: rotate(-12deg); }
.sticker-star { top: 8%; right: 38%; transform: rotate(15deg); }
.sticker-spark { bottom: 28%; right: 8%; transform: rotate(10deg); opacity: .8; }
.sticker-zig { bottom: 14%; left: 12%; opacity: .8; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-copy h1 { margin-top: 18px; }
.hero-copy .lede {
  font-size: 1.18rem;
  color: var(--color-muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  font-weight: 700;
  color: var(--color-text);
  font-size: .96rem;
}
.trust-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-teal-soft); border: 2px solid var(--color-teal);
}

/* ----- Hero mascot card ----- */
.hero-mascot { position: relative; display: flex; justify-content: center; }
.mascot-card {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1 / 1.05;
  background: var(--color-white);
  border: 3px solid var(--color-text);
  border-radius: 36px;
  box-shadow: 0 10px 0 var(--color-text), 0 30px 60px -30px rgba(16,25,34,.3);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform .35s var(--ease);
}
.mascot-card:hover { transform: rotate(-1deg) translateY(-4px); }
.mascot-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,226,0,.35), transparent 60%),
    repeating-linear-gradient(0deg, rgba(0,150,172,.07) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(0,150,172,.07) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #f3fbfc 0%, #ffffff 100%);
  z-index: 0;
}
.mascot-card .chompers { position: relative; z-index: 1; }

.mascot-sticker {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--color-text);
  box-shadow: var(--shadow-sm);
  transform: rotate(8deg);
  font-size: .9rem;
}

.speech-bubble {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 3;
  background: var(--color-yellow);
  border: 2.5px solid var(--color-text);
  padding: 10px 16px;
  border-radius: 20px 20px 20px 4px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: .95rem;
  transform: rotate(-3deg);
}
.speech-bubble strong { color: var(--color-text); }

/* ----- Family photo card ----- */
.family-card-wrap { position: relative; }
.family-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--color-white);
  border: 3px solid var(--color-text);
  border-radius: 28px;
  box-shadow: 0 12px 0 var(--color-text), 0 30px 60px -30px rgba(16,25,34,.25);
  margin: -10px auto 0;
  max-width: 940px;
  overflow: hidden;
  transform: rotate(0.5deg);
}
.family-photo {
  position: relative;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.family-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.family-card figcaption {
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px; justify-content: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,226,0,.28), transparent 50%),
    var(--color-white);
}
.family-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}
.family-card figcaption span { color: var(--color-muted); font-size: .98rem; }

/* =========================================================
   CHOMPERS sprite mapping
   ========================================================= */
.chompers {
  width: 100%;
  height: 100%;
  background-image: url(assets/chompers-sheet.png);
  background-size: 400% 200%;
  background-repeat: no-repeat;
}
/* layout helper -- ensures squareish aspect inside containers */
.hero-mascot .chompers,
.signs-mascot .chompers,
.book-mascot,
.meet-mascot .chompers,
.awareness-mascot,
.final-mascot .chompers { aspect-ratio: 384 / 512; }

/* Top row */
.chompers--smile-braces { background-position: 0% 0%; }      /* waving + braces */
.chompers--surprised    { background-position: 33.333% 0%; } /* O mouth */
.chompers--wink         { background-position: 66.666% 0%; } /* winking + braces */
.chompers--sleep        { background-position: 100% 0%; }    /* eyes closed */
/* Bottom row */
.chompers--worried      { background-position: 0% 100%; }
.chompers--gentle-smile { background-position: 33.333% 100%; }
.chompers--big-smile    { background-position: 66.666% 100%; }
.chompers--brace-smile  { background-position: 100% 100%; }

/* =========================================================
   INTRO
   ========================================================= */
.intro { background: var(--color-light); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.intro-copy p { color: var(--color-muted); font-size: 1.06rem; }
.intro-copy p:first-of-type {
  font-size: 1.18rem;
  color: var(--color-text);
  font-weight: 700;
}

.intro-card {
  position: relative;
  background: var(--color-white);
  border: 3px solid var(--color-text);
  border-radius: 28px;
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
}
.intro-card-tape {
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 120px; height: 28px;
  background: var(--color-yellow);
  border: 2px solid var(--color-text);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  opacity: .95;
}
.intro-card-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.badge-smile { display: inline-block; }
.intro-card-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0;
}
.intro-card-byline { font-size: .92rem; color: var(--color-muted); margin: 0; font-weight: 700; }

/* =========================================================
   WHY AGE 7 MATTERS
   ========================================================= */
.age7 { background: var(--color-white); }
.age7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.age7-copy p { color: var(--color-muted); font-size: 1.06rem; }

.growth-timeline {
  list-style: none; padding: 0; margin: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.growth-timeline::before {
  content: "";
  position: absolute;
  left: 6%; right: 6%; top: 32px;
  height: 4px;
  background-image: linear-gradient(90deg, var(--color-teal) 0 14px, transparent 14px 28px);
  background-size: 28px 4px;
  border-radius: 2px;
  z-index: 0;
}
.growth-step {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  z-index: 1;
}
.growth-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--color-white);
  border: 3px solid var(--color-teal);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-teal);
  box-shadow: var(--shadow-sm);
}
.growth-dot--hero {
  background: var(--color-yellow);
  border-color: var(--color-text);
  color: var(--color-text);
  width: 76px; height: 76px;
  font-size: 1.8rem;
  box-shadow: 0 6px 0 var(--color-text);
}
.growth-label { font-weight: 700; font-size: .92rem; color: var(--color-muted); }
.growth-step--hero .growth-label { color: var(--color-text); }
.growth-pin {
  position: absolute;
  top: -18px; right: 8px;
  color: var(--color-orange);
  font-size: 1.4rem;
  transform: rotate(15deg);
}

/* highlight sticker */
.highlight-sticker {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-white);
  border: 3px solid var(--color-teal);
  border-radius: 28px;
  padding: 32px 36px 28px;
  text-align: center;
  box-shadow: 0 8px 0 rgba(0,150,172,.18);
  transform: rotate(-0.6deg);
}
.highlight-sticker-tab {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  line-height: 0;
}
.highlight-sticker-body p { color: var(--color-text); font-size: 1.08rem; }
.highlight-sticker-body p:first-child {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.highlight-sticker-body p:last-child { color: var(--color-muted); margin: 0; }

/* =========================================================
   SIGNS
   ========================================================= */
.signs { background: var(--color-light); }
.signs-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
.signs-mascot {
  position: relative;
  width: 200px;
  background: var(--color-white);
  border: 3px solid var(--color-text);
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(-3deg);
  box-shadow: 0 8px 0 var(--color-text);
}
.signs-mascot .chompers { width: 100%; }
.signs-mascot-bubble {
  position: absolute;
  bottom: -14px; right: -22px;
  background: var(--color-orange);
  color: var(--color-white);
  border: 2.5px solid var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: .88rem;
  transform: rotate(8deg);
  box-shadow: var(--shadow-sm);
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sign-card {
  background: var(--color-white);
  border: 3px solid var(--color-text);
  border-top: 8px solid var(--color-teal);
  border-radius: 22px;
  padding: 24px 22px 22px;
  box-shadow: 0 6px 0 var(--color-text);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.sign-card:nth-child(even) { transform: rotate(.6deg); }
.sign-card:nth-child(odd)  { transform: rotate(-.5deg); }
.sign-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 12px 0 var(--color-text);
}
.sign-card::after {
  content: "";
  position: absolute;
  top: -14px; right: 18px;
  width: 38px; height: 14px;
  background: var(--color-yellow);
  border: 2px solid var(--color-text);
  border-radius: 4px;
  transform: rotate(-6deg);
}
.sign-icon {
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  background: var(--color-teal-soft);
  border: 2px dashed var(--color-teal);
  padding: 14px 18px;
  border-radius: 18px;
}
.sign-card h3 { margin-bottom: 6px; }
.sign-card p { color: var(--color-muted); margin: 0; font-size: .98rem; }

.awareness-strip {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  padding: 22px 26px;
  background: var(--color-white);
  border: 3px solid var(--color-text);
  border-radius: 24px;
  box-shadow: 0 8px 0 var(--color-text);
}
.awareness-mascot {
  width: 80px;
  border-radius: 14px;
  overflow: hidden;
  border: 2.5px solid var(--color-text);
}
.awareness-copy h3 { margin: 0 0 4px; }
.awareness-copy p { margin: 0; color: var(--color-muted); }

/* =========================================================
   MEET CHOMPERS
   ========================================================= */
.meet {
  position: relative;
  background: var(--color-teal);
  color: var(--color-white);
  overflow: hidden;
}
.meet-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.meet-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.meet-mascot {
  position: relative;
  width: min(360px, 100%);
  background: var(--color-yellow);
  border: 3px solid var(--color-text);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 12px 0 var(--color-text);
  transform: rotate(-2deg);
  margin: 0 auto;
}
.float-word {
  position: absolute;
  background: var(--color-white);
  color: var(--color-text);
  border: 2.5px solid var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
}
.float-word--1 { top: 6%; right: -40px; transform: rotate(8deg); background: var(--color-white); }
.float-word--2 { bottom: 14%; left: -34px; transform: rotate(-6deg); background: var(--color-orange); color: var(--color-white); }
.float-word--3 { bottom: -16px; right: 10%; transform: rotate(4deg); }
.meet-copy h2 { color: var(--color-white); }
.meet-copy p { color: rgba(255,255,255,.92); font-size: 1.08rem; }
.meet-copy .eyebrow { color: var(--color-text); }

/* =========================================================
   COLORING BOOK
   ========================================================= */
.coloring { background: var(--color-light); }
.coloring-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.coloring-cover { display: flex; justify-content: center; }
.coloring-book {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 3 / 4;
  background: var(--color-white);
  border: 4px solid var(--color-teal);
  border-radius: 16px 24px 24px 16px;
  box-shadow:
    0 14px 30px -16px rgba(16,25,34,.3),
    -8px 0 0 -4px var(--color-yellow),
    -8px 0 0 -2px var(--color-text);
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform .4s var(--ease);
}
.coloring-book:hover { transform: rotate(-1deg) translateY(-4px); }
.book-spine {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 14px;
  background: repeating-linear-gradient(0deg, var(--color-teal) 0 8px, var(--color-yellow) 8px 16px);
  border-right: 2px solid var(--color-text);
}
.book-inner {
  position: relative;
  height: 100%;
  padding: 24px 24px 24px 32px;
  display: flex; flex-direction: column;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,226,0,.25), transparent 30%),
    radial-gradient(circle at 80% 90%, rgba(252,127,31,.16), transparent 35%),
    repeating-linear-gradient(0deg, rgba(0,150,172,.08) 0 1px, transparent 1px 26px);
}
.book-eyebrow {
  display: inline-block;
  font-family: ui-monospace, monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--color-teal);
  text-transform: uppercase;
  background: var(--color-white);
  border: 2px solid var(--color-teal);
  padding: 3px 8px;
  border-radius: 6px;
  width: max-content;
}
.book-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin: 14px 0 6px;
  color: var(--color-text);
  line-height: 1;
}
.book-title span { color: var(--color-orange); font-size: 1.5rem; display: inline-block; transform: rotate(-3deg); }
.book-mascot {
  flex: 1;
  width: 100%;
  margin-top: 8px;
}
.book-crayons {
  position: absolute;
  right: 14px; bottom: 14px;
  display: flex; gap: 6px;
  transform: rotate(-12deg);
}
.crayon {
  display: inline-block;
  width: 12px; height: 60px;
  border-radius: 4px;
  border: 2px solid var(--color-text);
  position: relative;
}
.crayon::after {
  content: "";
  position: absolute;
  top: -8px; left: -2px; right: -2px;
  height: 10px;
  background: inherit;
  filter: brightness(.7);
  border: 2px solid var(--color-text);
  border-radius: 4px 4px 2px 2px;
}
.crayon--teal { background: var(--color-teal); }
.crayon--orange { background: var(--color-orange); }
.crayon--yellow { background: var(--color-yellow); }
.crayon--red { background: var(--color-red); }

.book-stamp {
  position: absolute;
  top: 18px; right: 14px;
  background: var(--color-orange);
  color: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  transform: rotate(12deg);
}

.coloring-copy h2 { margin-top: 14px; }
.coloring-copy .section-sub { margin-left: 0; }
.coloring-copy p { color: var(--color-muted); }
.coloring-meta {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.coloring-meta li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-weight: 700;
  font-size: .9rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; border: 2px solid var(--color-text); }
.dot--teal { background: var(--color-teal); }
.dot--orange { background: var(--color-orange); }
.dot--yellow { background: var(--color-yellow); }

/* =========================================================
   VISIT PROCESS
   ========================================================= */
.visit { background: var(--color-white); position: relative; }
.visit-path {
  display: block;
  width: 100%;
  height: 80px;
  margin: 0 0 -40px;
  opacity: .6;
}
.visit-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.visit-step {
  background: var(--color-white);
  border: 3px solid var(--color-text);
  border-radius: 24px;
  padding: 28px 22px 24px;
  position: relative;
  box-shadow: 0 8px 0 var(--color-text);
  transition: transform .25s var(--ease);
}
.visit-step:nth-child(1) { transform: rotate(-1deg); }
.visit-step:nth-child(2) { transform: rotate(1deg); margin-top: 24px; }
.visit-step:nth-child(3) { transform: rotate(-1deg); }
.visit-step:nth-child(4) { transform: rotate(1deg); margin-top: 24px; }
.visit-step:hover { transform: translateY(-4px) rotate(0); }
.visit-number {
  position: absolute;
  top: -22px; left: 22px;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-yellow);
  border: 3px solid var(--color-text);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  box-shadow: 0 4px 0 var(--color-text);
}
.visit-step h3 { margin-top: 18px; margin-bottom: 6px; }
.visit-step p { color: var(--color-muted); margin: 0; font-size: .96rem; }

/* =========================================================
   LOCATIONS
   ========================================================= */
.locations {
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}
.locations-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 18%, var(--color-yellow) 6px, transparent 6.5px),
    radial-gradient(circle at 82% 22%, var(--color-orange) 5px, transparent 5.5px),
    radial-gradient(circle at 92% 70%, var(--color-teal) 6px, transparent 6.5px),
    radial-gradient(circle at 8% 76%, var(--color-orange) 4px, transparent 4.5px);
  background-size: 600px 600px, 700px 700px, 500px 500px, 600px 600px;
  background-position: 0 0, 200px 0, 0 200px, 100px 100px;
  opacity: .5;
  pointer-events: none;
}
.locations-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,150,172,.06) 0 1px, transparent 1px 22px);
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.loc-card {
  display: block;
  position: relative;
  background: var(--color-white);
  border: 3px solid var(--color-text);
  border-radius: 22px;
  padding: 26px 22px 22px;
  box-shadow: 0 6px 0 var(--color-text);
  transition: transform .25s var(--ease);
  color: inherit;
  text-decoration: none;
}
.loc-card:nth-child(1) { transform: rotate(-1deg); }
.loc-card:nth-child(2) { transform: rotate(1deg); }
.loc-card:nth-child(3) { transform: rotate(-.5deg); }
.loc-card:nth-child(4) { transform: rotate(.8deg); }
.loc-card:hover { transform: translateY(-4px) rotate(0); }
.pin { display: inline-block; margin-bottom: 8px; }
.loc-card h3 { margin: 0 0 6px; }
.loc-card p { margin: 0; color: var(--color-muted); font-size: .98rem; line-height: 1.4; }
.loc-card:hover h3,
.loc-card:hover p { color: var(--color-teal); }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta { background: var(--color-white); }
.final-card {
  position: relative;
  background: var(--color-teal);
  color: var(--color-white);
  border: 3px solid var(--color-text);
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 14px 0 var(--color-text);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.final-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,226,0,.18), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(252,127,31,.18), transparent 30%);
  pointer-events: none;
}
.final-mascot {
  position: relative;
  background: var(--color-yellow);
  border: 3px solid var(--color-text);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 0 var(--color-text);
  transform: rotate(-3deg);
}
.final-copy { position: relative; }
.final-copy h2 { color: var(--color-white); }
.final-copy p { color: rgba(255,255,255,.94); font-size: 1.1rem; max-width: 560px; }
.final-copy .btn--ghost { color: var(--color-white); }

.awareness-copy h3,
.awareness-copy p,
.final-copy h2,
.final-copy p,
.footer-note p {
  overflow-wrap: anywhere;
}

.final-confetti {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--color-text);
  border-radius: 4px;
}
.final-confetti--1 { background: var(--color-yellow); top: 18px; right: 60px; transform: rotate(12deg); }
.final-confetti--2 { background: var(--color-orange); bottom: 30px; right: 90px; transform: rotate(-18deg); border-radius: 50%; }
.final-confetti--3 { background: var(--color-red); top: 60px; right: 28px; transform: rotate(-25deg); }
.final-confetti--4 { background: var(--color-white); bottom: 60px; right: 30px; transform: rotate(8deg); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand img {
  height: 70px; width: auto;
  background: var(--color-white);
  padding: 12px 18px;
  border-radius: 16px;
}
.footer-tag {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 14px;
  color: var(--color-yellow);
}
.site-footer h4 {
  color: var(--color-white);
  margin-bottom: 14px;
  font-size: .82rem;
  letter-spacing: .14em;
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.site-footer li, .site-footer a { color: rgba(255,255,255,.78); font-weight: 600; font-size: .96rem; }
.site-footer a:hover { color: var(--color-yellow); }
.footer-note p { color: rgba(255,255,255,.78); margin: 0; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px;
  font-size: .9rem; color: rgba(255,255,255,.6);
  flex-wrap: wrap; gap: 12px;
}
.footer-dots { display: inline-flex; gap: 6px; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 48px; height: 48px;
  background: var(--color-yellow);
  border: 2.5px solid var(--color-text);
  border-radius: 50%;
  box-shadow: 0 4px 0 var(--color-text);
  display: flex; align-items: center; justify-content: center;
  z-index: 40;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

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

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .primary-nav, .header-cta { display: none; }
  .hamburger { display: inline-flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 60px; }
  .hero-mascot { order: -1; }
  .mascot-card { width: min(360px, 88%); }

  .family-card { grid-template-columns: 1fr; }
  .family-photo { min-height: 220px; }

  .intro-grid, .age7-grid, .meet-grid, .coloring-grid { grid-template-columns: 1fr; gap: 32px; }

  .signs-head { grid-template-columns: 1fr; gap: 24px; }
  .signs-head,
  .section-head--left { text-align: center; }
  .signs-mascot { margin: 0 auto; }
  .signs-grid { grid-template-columns: repeat(2, 1fr); }

  .visit-steps { grid-template-columns: repeat(2, 1fr); }
  .visit-step:nth-child(n) { margin-top: 0; }
  .visit-path { display: none; }

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

  .final-card { grid-template-columns: 1fr; padding: 32px; text-align: center; }
  .final-mascot { max-width: 220px; margin: 0 auto; }
  .final-copy .cta-row { justify-content: center; }

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

  .growth-timeline { grid-template-columns: repeat(5, 1fr); }
  .growth-timeline::before { top: 28px; }
  .growth-dot { width: 50px; height: 50px; font-size: 1.2rem; }
  .growth-dot--hero { width: 58px; height: 58px; font-size: 1.4rem; }
  .growth-label { font-size: .8rem; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .section-head { margin-bottom: 32px; }
  .section-sub,
  .hero-copy .lede,
  .meet-copy p,
  .final-copy p,
  .intro-copy p:first-of-type { font-size: 1rem; }

  .eyebrow {
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: .72rem;
    line-height: 1.35;
  }

  .hero { padding-top: 32px; }
  .blob-1, .blob-2 { display: none; }
  .hero-grid { gap: 24px; padding-bottom: 48px; }
  .hero-copy h1 { margin-top: 14px; }
  .hero-copy .lede { margin-bottom: 22px; }
  .trust-note {
    display: flex;
    align-items: flex-start;
    line-height: 1.45;
  }
  .mascot-card { width: min(340px, 100%); }
  .family-card,
  .intro-card,
  .highlight-sticker,
  .meet-mascot,
  .sign-card,
  .visit-step,
  .loc-card,
  .final-card { transform: none; }
  .family-card { margin-top: 0; }
  .family-card figcaption,
  .intro-card,
  .highlight-sticker,
  .visit-step,
  .loc-card { padding-left: 18px; padding-right: 18px; }
  .highlight-sticker { padding-top: 26px; padding-bottom: 22px; }

  .signs-grid { grid-template-columns: 1fr; }
  .visit-steps { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .awareness-strip {
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding: 18px 16px;
    border-radius: 20px;
  }
  .awareness-mascot { width: 72px; }
  .awareness-strip .btn { grid-column: 1 / -1; justify-self: stretch; justify-content: center; }

  .growth-timeline { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .growth-dot { width: 40px; height: 40px; font-size: 1rem; }
  .growth-dot--hero { width: 48px; height: 48px; font-size: 1.15rem; }
  .growth-label { font-size: .7rem; }
  .growth-timeline::before { top: 22px; }

  .coloring-meta { gap: 10px; }
  .coloring-meta li { width: 100%; justify-content: center; }

  .cta-row .btn,
  .awareness-strip .btn,
  .final-copy .btn {
    width: 100%;
    justify-content: center;
  }
  .final-copy .cta-row { flex-direction: column; gap: 12px; }
  .btn,
  .btn--lg { padding: 15px 18px; font-size: 1rem; }

  .final-card {
    padding: 24px 16px 20px;
    gap: 20px;
    border-radius: 28px;
    box-shadow: 0 10px 0 var(--color-text);
  }
  .final-mascot { max-width: 180px; }
  .final-copy p { max-width: none; }
  .final-confetti--1 { top: 14px; right: 16px; }
  .final-confetti--2 { right: 28px; bottom: 26px; }
  .final-confetti--3 { top: 34px; right: 44px; }
  .final-confetti--4 { display: none; }

  .footer-grid,
  .footer-bottom { text-align: center; }
  .footer-brand,
  .footer-nav,
  .footer-locs,
  .footer-note {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand img { margin: 0 auto; }
  .site-footer ul { align-items: center; }
  .footer-bottom { justify-content: center; }
  .footer-dots { width: 100%; justify-content: center; }
}
