/* =========================================================
   Sedona Camp — Stylesheet
   Aesthetic: playful, joyful, energetic — palette pulled from logo
   Coral, teal, sunshine, peach on warm cream
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..900&family=DM+Sans:opsz,wght@9..40,400..700&display=swap');

:root {
  /* Colors pulled from the logo */
  --cream:        #fdf8ee;
  --cream-deep:   #f5ecd8;
  --coral:        #f06b6b;
  --coral-dark:   #d94545;
  --orange:       #f59052;
  --sun:          #ffd24a;
  --sun-deep:     #f5b820;
  --teal:         #4cc9b0;
  --teal-deep:    #2da793;
  --peach:        #ffc59c;
  --ink:          #1a1a1a;
  --ink-soft:     #4a4a4a;
  --ink-subtle:   #777;
  --line:         rgba(26, 26, 26, 0.1);

  --shadow-soft:  0 6px 20px -8px rgba(26, 26, 26, 0.18);
  --shadow-pop:   0 18px 40px -12px rgba(240, 107, 107, 0.35);

  --max:          1180px;
  --r-lg:         28px;
  --r-md:         18px;
  --r-sm:         12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--coral-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral); }
ul { list-style: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-deep);
  background: rgba(76, 201, 176, 0.12);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section { padding: 6rem 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-sub { color: var(--ink-soft); font-size: 1.1rem; margin-top: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 238, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.brand img {
  height: 88px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover {
  background: var(--coral-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 22px 45px -12px rgba(240, 107, 107, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-small { padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.btn-large { padding: 1.15rem 2.2rem; font-size: 1.05rem; }
.btn-arrow::after { content: '→'; transition: transform 0.25s; }
.btn-arrow:hover::after { transform: translateX(5px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.32;
}
.blob-1 { width: 400px; height: 400px; background: var(--coral); top: -100px; left: -80px; }
.blob-2 { width: 320px; height: 320px; background: var(--teal); bottom: -60px; right: 10%; }
.blob-3 { width: 280px; height: 280px; background: var(--sun); top: 30%; right: -80px; }
.blob-4 { width: 240px; height: 240px; background: var(--peach); bottom: 20%; left: 30%; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 1.5rem; }
.hero-copy p.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--coral-dark);
  line-height: 1;
}
.hero-trust span {
  font-size: 0.78rem;
  color: var(--ink-subtle);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
}

/* Hero visual — logo card with floating stickers */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
.hero-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: 0 30px 80px -20px rgba(26, 26, 26, 0.18);
  transform: rotate(-3deg);
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.hero-card img {
  width: 100%;
  height: auto;
}
.hero-sticker {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  z-index: 3;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.sticker-1 { top: 5%;    left: -5%;  background: var(--coral); color: white;     animation-delay: 0s; }
.sticker-2 { top: 20%;   right: -8%; background: var(--teal);  color: white;     animation-delay: 1.5s; }
.sticker-3 { bottom: 22%; left: -8%; background: var(--sun);   color: var(--ink); animation-delay: 3s; }
.sticker-4 { bottom: 6%;  right: -2%; background: var(--peach); color: var(--ink); animation-delay: 4.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* =========================================================
   PROGRAMS
   ========================================================= */
.programs { background: var(--cream-deep); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.program-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0.2;
  transition: transform 0.4s;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(26, 26, 26, 0.2);
}
.program-card:hover::before {
  transform: scale(1.15);
}
.card-coral::before { background: var(--coral); }
.card-teal::before  { background: var(--teal); }
.card-sun::before   { background: var(--sun); }

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.card-coral .card-tag { background: rgba(240, 107, 107, 0.14); color: var(--coral-dark); }
.card-teal  .card-tag { background: rgba(76, 201, 176, 0.16); color: var(--teal-deep); }
.card-sun   .card-tag { background: rgba(245, 184, 32, 0.18); color: #a07a00; }

.program-card h3 { margin-bottom: 1rem; position: relative; z-index: 2; }
.program-card p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.card-list {
  margin-bottom: 1.75rem;
  border-top: 1px dashed var(--line);
  padding-top: 1.25rem;
  position: relative;
  z-index: 2;
}
.card-list li {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.card-link {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}
.card-coral .card-link { color: var(--coral-dark); }
.card-teal  .card-link { color: var(--teal-deep); }
.card-sun   .card-link { color: #a07a00; }

/* =========================================================
   MISSION
   ========================================================= */
.mission-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.mission-aside h2 { margin-bottom: 1rem; }
.mission-body p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.value h4 { margin-bottom: 0.4rem; }
.value p { font-size: 0.92rem; margin: 0; }
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--c);
  color: white;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  background: var(--coral);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before, .cta-strip::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}
.cta-strip::before {
  width: 280px; height: 280px;
  background: var(--sun);
  top: -100px; left: -50px;
}
.cta-strip::after {
  width: 320px; height: 320px;
  background: var(--teal);
  bottom: -120px; right: -60px;
}
.cta-inner { text-align: center; position: relative; z-index: 2; max-width: 640px; }
.cta-inner h2 { color: white; margin-bottom: 0.75rem; }
.cta-inner h2 em { color: var(--sun); }
.cta-inner p { color: rgba(255, 255, 255, 0.92); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-strip .btn-primary {
  background: white;
  color: var(--coral-dark);
}
.cta-strip .btn-primary:hover {
  background: var(--ink);
  color: white;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--cream-deep); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.contact-cards {
  display: grid;
  gap: 1rem;
}
.contact-card {
  display: block;
  background: white;
  padding: 1.6rem 1.85rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s;
  color: var(--ink);
}
.contact-card:hover { transform: translateX(6px); color: var(--ink); }
.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ink-subtle);
  display: block;
  margin-bottom: 0.4rem;
}
.contact-card strong { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; }
.contact-card-cta { background: var(--ink); color: var(--cream); }
.contact-card-cta:hover { background: var(--coral); color: white; }
.contact-card-cta .contact-label { color: rgba(255,255,255,0.6); }
.contact-card-cta strong { color: var(--cream); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4.5rem 0 2rem;
}
.site-footer .wrap { padding: 0 1.75rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--cream);
  padding: 0.5rem;
  border-radius: var(--r-sm);
}
.footer-brand p { color: rgba(253, 248, 238, 0.65); font-size: 0.95rem; max-width: 300px; }
.site-footer h4 {
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.site-footer ul li { padding: 0.35rem 0; }
.site-footer ul a { color: rgba(253, 248, 238, 0.7); font-size: 0.95rem; }
.site-footer ul a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(253, 248, 238, 0.1);
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(253, 248, 238, 0.5);
}
.footer-bottom p { margin-bottom: 1rem; }
.disclaimer { font-size: 0.78rem; line-height: 1.6; }

/* =========================================================
   PROGRAMS PAGE
   ========================================================= */
.page-hero {
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; color: var(--ink-soft); max-width: 600px; margin: 0 auto; }

.program-detail {
  padding: 3.5rem 0;
  border-bottom: 1px dashed var(--line);
}
.program-detail:last-child { border-bottom: none; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.detail-side .pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.detail-side h2 { margin-bottom: 1rem; }
.detail-side .price-block {
  background: white;
  border-radius: var(--r-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
  margin-top: 2rem;
}
.detail-side .price-block strong { display: block; margin-bottom: 0.4rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-subtle); }
.detail-side .price-block ul li { padding: 0.4rem 0; font-size: 0.95rem; }
.detail-body p { color: var(--ink-soft); margin-bottom: 1.25rem; font-size: 1.05rem; }
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
.feature {
  background: white;
  border-radius: var(--r-sm);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.feature h4 { margin-bottom: 0.35rem; }
.feature p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }

/* =========================================================
   REGISTER PAGE
   ========================================================= */
.register-page { background: var(--cream-deep); min-height: 100vh; }
.register-shell { max-width: 880px; margin: 0 auto; padding: 3rem 1.75rem 5rem; }
.register-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 3rem;
  box-shadow: 0 30px 70px -20px rgba(26, 26, 26, 0.18);
}
.register-head { text-align: center; margin-bottom: 2.5rem; }
.register-head h1 { margin-bottom: 0.6rem; font-size: clamp(2rem, 4.5vw, 3rem); }
.register-head p { color: var(--ink-soft); }

/* Step indicator */
.step-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.step-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  background: var(--cream-deep);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-subtle);
  transition: all 0.3s;
}
.step-pill.active {
  background: var(--coral);
  color: white;
}
.step-pill.done {
  background: var(--teal);
  color: white;
}
.step-pill .num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}
.step-pill.active .num,
.step-pill.done .num { background: rgba(255,255,255,0.25); }

.step { display: none; animation: fadeIn 0.4s ease; }
.step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.step h2 { margin-bottom: 0.5rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.step .step-sub { color: var(--ink-subtle); margin-bottom: 2rem; font-size: 0.98rem; }

/* Form fields */
.field { margin-bottom: 1.4rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.field label .req { color: var(--coral); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: white;
}
.field textarea { resize: vertical; min-height: 100px; }
.field .hint { font-size: 0.82rem; color: var(--ink-subtle); margin-top: 0.4rem; }
.field-error { color: var(--coral-dark); font-size: 0.85rem; margin-top: 0.4rem; display: none; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--coral); }
.field.has-error .field-error { display: block; }

/* Program selector cards */
.program-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.program-option {
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  display: block;
}
.program-option input { position: absolute; opacity: 0; }
.program-option .opt-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-bottom: 0.5rem;
}
.program-option h4 { margin-bottom: 0.4rem; font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; }
.program-option p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }
.program-option:hover { background: white; border-color: var(--line); }
.program-option.selected {
  background: white;
  border-color: var(--coral);
  box-shadow: 0 4px 16px -6px rgba(240, 107, 107, 0.3);
}

/* Pricing tier rows (radio cards) */
.tier-list { display: grid; gap: 0.75rem; }
.tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.tier:hover { background: white; border-color: var(--line); }
.tier.selected { background: white; border-color: var(--coral); }
.tier input { position: absolute; opacity: 0; }
.tier-info strong { display: block; font-size: 1rem; font-weight: 600; }
.tier-info span { font-size: 0.85rem; color: var(--ink-subtle); }
.tier-price { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; color: var(--coral-dark); }

/* Days checkboxes */
.day-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.day-chip {
  position: relative;
  padding: 0.7rem 0.5rem;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.day-chip input { position: absolute; opacity: 0; }
.day-chip:hover { background: white; }
.day-chip.checked { background: var(--teal); color: white; border-color: var(--teal-deep); }

/* Children list */
.child-block {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.child-block .child-num {
  position: absolute;
  top: -10px;
  left: 1.25rem;
  background: var(--teal);
  color: white;
  padding: 0.2rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.child-block .remove-child {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: none;
  border: none;
  color: var(--ink-subtle);
  cursor: pointer;
  font-size: 0.85rem;
}
.child-block .remove-child:hover { color: var(--coral-dark); }
.btn-add-child {
  width: 100%;
  padding: 0.85rem;
  background: transparent;
  border: 2px dashed var(--line);
  border-radius: var(--r-sm);
  color: var(--ink-soft);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-add-child:hover { border-color: var(--teal); color: var(--teal-deep); background: rgba(76, 201, 176, 0.04); }

/* Waiver block */
.waiver-block {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--teal);
}
.waiver-block h4 { margin-bottom: 0.6rem; font-size: 1rem; }
.waiver-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-height: 130px;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
}
.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--coral);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-row label {
  font-size: 0.93rem;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
}

/* Signature pad */
.sig-wrap {
  border: 2px dashed var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.sig-wrap canvas {
  width: 100%;
  height: 160px;
  display: block;
  cursor: crosshair;
  background: white;
  border-radius: calc(var(--r-sm) - 2px);
}
.sig-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.85rem;
  background: var(--cream);
  font-size: 0.82rem;
  color: var(--ink-subtle);
}
.sig-clear {
  background: none;
  border: none;
  color: var(--coral-dark);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

/* Summary */
.summary-block {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  border-radius: var(--r-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--ink-subtle); }
.summary-row .val { font-weight: 600; text-align: right; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--ink);
}
.summary-total .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.summary-total .total-amt {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral-dark);
  line-height: 1;
}

.payment-note {
  background: rgba(76, 201, 176, 0.1);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}
.payment-note strong { color: var(--teal-deep); }

/* Step nav */
.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 1rem;
}
.step-nav .btn { flex: 0 0 auto; }
.step-nav.solo { justify-content: flex-end; }

/* =========================================================
   THANK YOU
   ========================================================= */
.thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thanks-card {
  max-width: 620px;
  position: relative;
  z-index: 2;
}
.thanks-icon {
  width: 84px;
  height: 84px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 2rem;
  animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  0%   { transform: scale(0); }
  100% { transform: scale(1); }
}
.thanks h1 { margin-bottom: 1rem; }
.thanks p.lede { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 2.5rem; }
.thanks-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.thanks-info {
  background: white;
  border-radius: var(--r-md);
  padding: 1.75rem;
  margin-top: 3rem;
  text-align: left;
  box-shadow: var(--shadow-soft);
}
.thanks-info h4 { margin-bottom: 0.85rem; }
.thanks-info ol { padding-left: 1.25rem; }
.thanks-info ol li {
  padding: 0.35rem 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  list-style: decimal;
}

/* 4-program grid (used on register page) */
.program-options-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Error state for per-child week blocks */
.child-program-detail.has-error .day-grid {
  outline: 2px solid var(--coral);
  border-radius: var(--r-sm);
  padding: 0.5rem;
}
.child-program-detail.has-error label {
  color: var(--coral-dark);
}

@media (max-width: 960px) {
  .program-options-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .program-options-4 { grid-template-columns: 1fr; }
  .brand img { height: 64px; }
}
@media (max-width: 960px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; padding: 1.25rem 1.75rem; background: var(--cream); border-bottom: 1px solid var(--line); align-items: stretch; gap: 0.5rem; }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.65rem 0; }
  .nav-toggle { display: block; }

  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { min-height: 380px; }
  .hero-trust { gap: 1.5rem; }

  .program-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .value-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .register-card { padding: 1.75rem 1.5rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .program-options { grid-template-columns: 1fr; }
  .day-grid { grid-template-columns: repeat(3, 1fr); }
  .step-pill { padding: 0.45rem 0.7rem; font-size: 0.75rem; }
  .step-pill .label-text { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .summary-total .total-amt { font-size: 2rem; }
}

/* =========================================================
   WEEK CARDS — Summer/Spring per-child selector
   ========================================================= */
.week-grid { display: grid; gap: 1rem; }
.week-card {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem;
  transition: border-color 0.2s;
}
.week-card-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.week-emoji { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.week-card-info { display: flex; flex-direction: column; gap: 0.2rem; }
.week-name  { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; }
.week-dates { font-size: 0.82rem; font-weight: 600; color: var(--coral-dark); }
.week-theme { font-size: 0.82rem; color: var(--ink-subtle); }

/* Full Week / Day Drop-In / Not Attending toggle */
.week-type-toggle { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
.wtt-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.65rem 0.5rem;
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s;
  gap: 0.15rem;
  position: relative;
}
.wtt-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.wtt-option:hover { border-color: var(--coral); }
.wtt-option.wtt-active:not(.wtt-none) { border-color: var(--coral); background: rgba(240, 107, 107, 0.07); }
.wtt-label { font-size: 0.75rem; font-weight: 600; color: var(--ink); }
.wtt-price { font-size: 0.8rem; font-weight: 700; color: var(--coral-dark); }
.wtt-none.wtt-active { border-color: var(--line); background: var(--cream); }
.wtt-none .wtt-label { color: var(--ink-subtle); font-weight: 400; }

/* Day drop-in picker */
.week-day-picker { margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px dashed var(--line); }
.day-row { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.day-row .day-chip {
  padding: 0.5rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  display: inline-block;
}
.day-row .day-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.day-row .day-chip:hover { border-color: var(--teal); color: var(--teal-deep); }
.day-row .day-chip.checked { background: var(--teal); color: white; border-color: var(--teal-deep); }

/* =========================================================
   SUMMER WEEK DETAIL CARDS — programs.html
   ========================================================= */
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}
@media (max-width: 960px) { .weeks-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .weeks-grid { grid-template-columns: 1fr; } }

/* Week 5 spans full width on its own row when there are 5 items in a 3-col grid */
.weeks-grid .week-detail-card:nth-child(4) { grid-column: 1 / 2; }
.weeks-grid .week-detail-card:nth-child(5) { grid-column: 2 / 4; }
@media (max-width: 960px) {
  .weeks-grid .week-detail-card:nth-child(4),
  .weeks-grid .week-detail-card:nth-child(5) { grid-column: auto; }
}

.week-detail-card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.week-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px -12px rgba(26,26,26,0.18);
}
.wdc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
}
.wdc-week-badge {
  background: var(--coral);
  color: white;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.wdc-dates {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.wdc-body {
  padding: 1.5rem;
  flex: 1;
}
.wdc-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.week-detail-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  color: var(--ink);
}
.week-detail-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.wdc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.wdc-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--cream-deep);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  color: var(--ink-soft);
}
.week-detail-card .card-link {
  display: block;
  padding: 0 1.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* =========================================================
   SIGN IN / SIGN OUT toggle
   ========================================================= */
.signinout-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.sio-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1.1rem 1rem;
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.sio-btn small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-subtle);
}
.sio-icon { font-size: 1.4rem; line-height: 1; }
.sio-btn:hover { border-color: var(--teal); }
.sio-in.active {
  border-color: var(--teal-deep);
  background: rgba(76, 201, 176, 0.12);
  color: var(--teal-deep);
}
.sio-out.active {
  border-color: var(--coral-dark);
  background: rgba(240, 107, 107, 0.10);
  color: var(--coral-dark);
}

/* =========================================================
   SIGN IN / OUT homepage banner
   ========================================================= */
.sio-banner {
  background: linear-gradient(120deg, var(--teal-deep) 0%, var(--teal) 100%);
  padding: 2.5rem 0;
}
.sio-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.sio-banner-text h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.4rem; }
.sio-banner-text p { color: rgba(255,255,255,0.92); margin: 0; }
.sio-banner .btn-primary { background: #fff; color: var(--teal-deep); }
.sio-banner .btn-primary:hover { background: var(--ink); color: #fff; }
@media (max-width: 640px) {
  .sio-banner-inner { flex-direction: column; align-items: flex-start; }
}
