:root {
  --blue: #175C8C;
  --blue-deep: #0F4470;
  --blue-darker: #0A3358;
  --blue-soft: #DCEAF6;
  --blue-mist: #F1F7FC;
  --orange: #E8702A;
  --orange-deep: #C8530F;
  --orange-soft: #FFE9D6;
  --green: #5BAF3F;
  --cream: #FFF9F0;
  --paper: #FFFDF8;
  --ink: #1A1A1A;
  --ink-soft: #2E2A26;
  --muted: #6B635A;
  --line: #E7DFCF;
  --line-cool: #DCE6EE;
  --ring: rgba(23, 92, 140, 0.22);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 30, 45, 0.04), 0 2px 8px rgba(15, 30, 45, 0.05);
  --shadow: 0 2px 4px rgba(15, 30, 45, 0.06), 0 8px 28px rgba(15, 30, 45, 0.10);
  --shadow-lg: 0 4px 8px rgba(15, 30, 45, 0.08), 0 20px 56px rgba(15, 30, 45, 0.14);

  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ===== Type ===== */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow.cool { color: var(--blue); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 160ms var(--ease-out),
              box-shadow 200ms var(--ease-out),
              background-color 200ms var(--ease-out),
              color 200ms var(--ease-out),
              border-color 200ms var(--ease-out);
  will-change: transform;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 6px 18px rgba(23, 92, 140, 0.3);
}
.btn-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 10px 26px rgba(23, 92, 140, 0.4);
}
.btn-primary:active { transform: scale(0.97); }

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 6px 18px rgba(232, 112, 42, 0.34);
}
.btn-orange:hover {
  background: var(--orange-deep);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 10px 26px rgba(232, 112, 42, 0.42);
}
.btn-orange:active { transform: scale(0.97); }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-secondary:active { transform: scale(0.97); }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding: 10px 0;
  font-size: 14px;
}
.btn-ghost:hover { color: var(--orange-deep); }

.btn .arrow { transition: transform 200ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

@media (hover: none) {
  .btn:hover { background: inherit; }
  .btn-primary:hover { background: var(--blue); }
  .btn-orange:hover { background: var(--orange); }
}

/* ===== Top bar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 249, 240, 0.84);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
}
.nav a:hover { background: var(--blue-soft); color: var(--blue-deep); }
.nav a.active { background: var(--blue-soft); color: var(--blue-deep); }
.nav a.external::after {
  content: "↗";
  margin-left: 4px;
  font-size: 11px;
  opacity: 0.6;
}
.top-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
}
.top-cta:hover { background: var(--orange-deep); }
.top-cta:active { transform: scale(0.97); }

.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.nav-mobile {
  display: none;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 16px;
}
.nav-mobile a:hover { background: var(--blue-soft); }
.nav-mobile a.active { background: var(--blue-soft); color: var(--blue-deep); }

/* ===== Hero (home page) ===== */
.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -200px;
  width: 560px; height: 560px;
  background: radial-gradient(circle at center, rgba(23, 92, 140, 0.10), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle at center, rgba(232, 112, 42, 0.10), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-content > * + * { margin-top: 24px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 112, 42, 0.18);
  animation: pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 112, 42, 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(232, 112, 42, 0); }
}

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: clamp(40px, 6.6vw, 82px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 8px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 16px;
  color: var(--muted);
  font-size: 14px;
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-item svg { color: var(--blue); flex-shrink: 0; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blue-soft);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 30, 45, 0) 60%, rgba(15, 30, 45, 0.18) 100%);
  pointer-events: none;
}
.hero-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  transition: transform 320ms var(--ease-out);
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .hero-card:hover { transform: translateY(-3px) rotate(0deg) !important; }
}
.hero-card.stat {
  bottom: 5%;
  left: -3%;
  transform: rotate(-4deg);
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  padding: 22px 24px;
  max-width: 220px;
}
.hero-card.stat strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.hero-card.stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.35;
}
.hero-card.tag {
  top: 6%;
  right: -4%;
  transform: rotate(3deg);
  padding: 14px 18px;
  background: var(--orange-soft);
  border-color: var(--orange-soft);
  color: var(--orange-deep);
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}
.hero-card.tag svg { color: var(--orange); }
.hero-card.tag-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== Page hero (about / contact) ===== */
.page-hero {
  padding: 80px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -220px;
  width: 540px; height: 540px;
  background: radial-gradient(circle at center, rgba(23, 92, 140, 0.10), transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 760px;
  position: relative;
}
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--ink);
}
.page-hero h1 em { font-style: italic; color: var(--orange); }
.page-hero p {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 620px;
  line-height: 1.55;
}

/* ===== Pillars ===== */
.pillars {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 96;
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 14px 0 16px;
  color: var(--ink);
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
  line-height: 1.55;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .pillar:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(23, 92, 140, 0.3);
  }
}
.pillar img {
  width: 84px; height: 84px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.pillar h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ===== About narrative ===== */
.narrative {
  padding: 88px 0;
  background: var(--cream);
}
.narrative-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.narrative-aside .eyebrow { display: block; margin-bottom: 14px; }
.narrative-aside h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
}
.narrative-aside p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
  line-height: 1.55;
  max-width: 380px;
}
.narrative-body > * + * { margin-top: 22px; }
.narrative-body p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.62;
}
.narrative-quote {
  border-left: 3px solid var(--orange);
  padding: 6px 0 6px 22px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.narrative-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ===== Vision / Mission cards ===== */
.vm {
  padding: 96px 0;
  background: var(--paper);
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.vm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .vm-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
}
.vm-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.vm-card.vision::before { background: var(--blue); }
.vm-card.mission::before { background: var(--orange); }
.vm-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 14px 0 14px;
  color: var(--ink);
}
.vm-card p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
  line-height: 1.6;
}

/* ===== Values ===== */
.values {
  padding: 96px 0;
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .value:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(23, 92, 140, 0.3);
  }
}
.value-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--orange);
}
.value p {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* ===== CTA band ===== */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-mist) 0%, var(--blue-soft) 100%);
}
.cta-card {
  background: #fff;
  border: 1px solid var(--line-cool);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
}
.cta-card p { margin: 0; color: var(--ink-soft); font-size: 17px; }
.cta-card-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ===== Programs (kept for future) ===== */
.programs { padding: 96px 0; background: var(--cream); }

/* ===== KidsWay band ===== */
.kidsway {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--blue-mist) 0%, var(--blue-soft) 100%);
}
.kidsway-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-cool);
  position: relative;
  overflow: hidden;
}
.kidsway-logo-wrap { text-align: center; }
.kidsway-logo-wrap img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.kidsway-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 12px 0 14px;
  color: var(--ink);
}
.kidsway-card p {
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-size: 17px;
  max-width: 540px;
}
.kidsway-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.kidsway-pill {
  padding: 8px 14px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.kidsway-pill.active { background: var(--orange); color: #fff; }
.kidsway-pill.muted { background: var(--line-cool); color: var(--muted); }
.kidsway-cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* ===== Impact stat band ===== */
.impact {
  padding: 96px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle at center, rgba(232, 112, 42, 0.18), transparent 65%);
}
.impact::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -200px;
  width: 540px; height: 540px;
  background: radial-gradient(circle at center, rgba(23, 92, 140, 0.36), transparent 65%);
}
.impact-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.impact-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 14px 0 18px;
}
.impact-inner h2 em { color: var(--orange); font-style: italic; }
.impact-inner p {
  color: rgba(255,255,255,0.74);
  font-size: 17px;
  margin: 0;
  max-width: 540px;
}
.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.impact-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 26px 24px;
}
.impact-stat strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.025em;
  display: block;
  margin-bottom: 6px;
  color: #fff;
  line-height: 1;
}
.impact-stat strong em {
  font-style: normal;
  color: var(--orange);
}
.impact-stat span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ===== Contact ===== */
.contact {
  padding: 80px 0 96px;
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info > * + * { margin-top: 18px; }
.contact-info h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 12px 0 0;
  color: var(--ink);
}
.contact-info p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
  max-width: 460px;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
}
.info-list li .info-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-list li strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.info-list li span { color: var(--muted); }
.info-list li a { color: inherit; text-decoration: none; }
.info-list li a:hover { color: var(--blue); }

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-head { margin-bottom: 24px; }
.form-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.form-head p { margin: 0; color: var(--muted); font-size: 14px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field + .field { margin-top: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.field-row .field { margin-top: 0; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.field label .req { color: var(--orange); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 180ms var(--ease-out),
              box-shadow 180ms var(--ease-out),
              background 180ms var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B635A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px var(--ring);
}
.field textarea { resize: vertical; min-height: 110px; }

.submit-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 22px; gap: 16px;
  flex-wrap: wrap;
}
.privacy { font-size: 12px; color: var(--muted); max-width: 220px; line-height: 1.4; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px 12px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(91, 175, 63, 0.15);
  color: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 6px;
}
.form-success p { margin: 0; color: var(--muted); font-size: 14px; }

/* ===== Footer (CityWay blue) ===== */
.footer {
  padding: 64px 0 36px;
  background: var(--blue-deep);
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -240px; right: -200px;
  width: 520px; height: 520px;
  background: radial-gradient(circle at center, rgba(232, 112, 42, 0.14), transparent 65%);
  pointer-events: none;
}
.footer::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle at center, rgba(23, 92, 140, 0.45), transparent 65%);
  pointer-events: none;
}
.footer .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer .brand-logo {
  height: 52px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a {
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  transition: color 180ms var(--ease-out);
}
.footer ul a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.footer-mission {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.72);
  max-width: 380px;
  line-height: 1.55;
}
.footer-affiliation {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
  max-width: 380px;
}
.footer-affiliation strong { color: #fff; }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 60ms; }
.reveal.delay-2 { transition-delay: 120ms; }
.reveal.delay-3 { transition-delay: 180ms; }
.reveal.delay-4 { transition-delay: 240ms; }
.reveal.delay-5 { transition-delay: 300ms; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .hero { padding: 40px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { aspect-ratio: 1.1 / 1; max-width: 520px; margin: 0 auto; }
  .narrative-grid { grid-template-columns: 1fr; gap: 36px; }
  .vm-grid { grid-template-columns: 1fr; }
  .kidsway-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; text-align: center; }
  .kidsway-card p { margin-inline: auto; }
  .kidsway-cta { justify-content: center; }
  .kidsway-pills { justify-content: center; }
  .impact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; }
  .cta-card-actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar-inner { height: 64px; }
  .brand-logo { height: 32px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .impact-stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .submit-row { flex-direction: column; align-items: stretch; }
  .submit-row .btn { width: 100%; }
  .privacy { max-width: none; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .top-cta span { display: none; }
  .top-cta { width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: 12px; }
  .pillar { padding: 22px 16px; }
  .pillar img { width: 64px; height: 64px; }
  .contact-form { padding: 28px 22px; }
  .kidsway-card { padding: 32px 22px; }
  .nav-mobile { top: 64px; }
  .vm-card { padding: 32px 26px; }
  .page-hero { padding: 48px 0 32px; }
}

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