:root {
  --cream: #fdf8f3;
  --warm: #fffcf9;
  --sage: #c9885a;
  --sage-light: #faf0e8;
  --sage-dark: #a87244;
  --peach: #e8917a;
  --peach-light: #fae8e2;
  --sky: #d4e8f0;
  --honey: #f4d58d;
  --honey-light: #fdf3d4;
  --ink: #3d3429;
  --muted: #7a7168;
  --border: #ebe4db;
  --white: #ffffff;
  --radius: 1.25rem;
  --radius-sm: 0.875rem;
  --shadow-soft: 0 8px 32px rgba(61, 52, 41, 0.06);
  --shadow-warm: 0 12px 40px rgba(232, 145, 122, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Header ─── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 243, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; max-width: 1080px; margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: inherit; }

.logo-mark {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--peach-light));
  color: var(--sage-dark);
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif; font-weight: 500;
  font-size: 1.1rem; color: var(--ink);
}

.nav { display: flex; align-items: center; gap: 1.75rem; }

.nav a:not(.btn) {
  color: var(--muted); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  transition: color 0.15s;
}
.nav a:not(.btn):hover { color: var(--sage-dark); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.6rem; border-radius: 999px;
  font-weight: 600; text-decoration: none; font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-big { padding: 0.95rem 2rem; font-size: 1rem; }

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 136, 90, 0.18);
}
.btn-primary:hover { background: var(--sage-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { background: var(--sage-light); border-color: var(--sage); }

/* ─── Hero ─── */
.hero {
  padding: 3.5rem 0 5rem;
  background:
    radial-gradient(ellipse at 10% 0%, var(--peach-light) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, var(--sky) 0%, transparent 50%),
    var(--cream);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 1.75rem 3.5rem;
  align-items: start;
}

.hero-title-banner {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 0.25rem;
  max-width: none;
}

.hero-copy {
  grid-column: 1;
  grid-row: 2;
}

.hero-visual {
  grid-column: 2;
  grid-row: 2;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.85rem; font-weight: 600; color: var(--sage-dark);
  letter-spacing: 0.04em; margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  margin-bottom: 0.5rem; color: var(--ink);
  font-weight: 700;
}

.hero-title .accent { color: var(--peach); font-weight: 700; }

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem; font-weight: 500; color: var(--muted);
  margin-bottom: 1.5rem; letter-spacing: 0.01em;
}

.hero-lead {
  font-size: 1.1rem; color: var(--muted);
  margin-bottom: 1.25rem; max-width: 30rem; line-height: 1.75;
}

.hero-lead:last-of-type {
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}

.trust-pill {
  font-size: 0.8rem; font-weight: 600; color: var(--sage-dark);
  background: var(--sage-light); padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
}

.collage-main {
  grid-row: span 2;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 380px;
}

.collage-main img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 72%;
}

.collage-sub img {
  width: 100%; height: 100%; object-fit: cover;
}

.collage-sub {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 180px;
}

.collage-sub:nth-child(3) { border-radius: var(--radius-sm) var(--radius) var(--radius-sm) var(--radius-sm); }

.hero-float {
  position: absolute; bottom: 0.25rem; left: 0; right: 0;
  padding: 0.75rem 1rem 1rem;
  max-width: none;
  z-index: 1;
}

.hero-float p {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif; font-size: 1rem;
  color: var(--white); line-height: 1.45; font-style: italic;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65), 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-float span {
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.92);
  display: block; margin-top: 0.5rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

/* ─── Problem band ─── */
.problem-band {
  background: var(--white);
  padding: 2rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.problem-band p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Philosophy band ─── */
.philosophy-band {
  background: var(--sage-light);
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(201, 136, 90, 0.1);
  border-bottom: 1px solid rgba(201, 136, 90, 0.1);
}

.philosophy-band p {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--sage-dark);
  max-width: 38rem; margin: 0 auto;
}

/* ─── AI coach section ─── */
.coach-section { background: var(--cream); }

.coach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.coach-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  margin-bottom: 1rem;
  color: var(--ink);
}

.coach-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.coach-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.coach-list li {
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}

.coach-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.coach-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ─── Sections ─── */
.section { padding: 5rem 0; }

.section-intro { text-align: center; max-width: 34rem; margin: 0 auto 3rem; }

.section-kicker {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--peach); margin-bottom: 0.85rem;
}

.section-intro h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  color: var(--ink); margin-bottom: 0.85rem;
}

.section-intro p { color: var(--muted); font-size: 1.05rem; }

/* Pillars — ChildRoots-style */
.pillars-section { background: var(--warm); }

.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.pillar {
  padding: 2rem 1.75rem; border-radius: var(--radius);
  transition: transform 0.2s;
}
.pillar:hover { transform: translateY(-3px); }

.pillar h4 {
  font-size: 1.1rem; margin-bottom: 0.65rem; color: var(--ink);
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
}

.pillar p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

.pillar-sage { background: var(--sage-light); }
.pillar-peach { background: var(--peach-light); }
.pillar-sky { background: var(--sky); }
.pillar-honey { background: var(--honey-light); }

/* Photo row */
.moments-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 3rem;
}

.moment {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.moment img { width: 100%; height: 220px; object-fit: cover; }

.moment-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(61, 52, 41, 0.55));
  color: var(--white); font-size: 0.8rem; font-weight: 600;
}

/* Shared peach band — parent quote */
.parent-quote {
  background: var(--peach-light);
}

.how-section {
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: rgba(255, 255, 255, 0.9);
}

.how-section .section-kicker {
  color: var(--peach-light);
}

.how-section .section-intro h2 {
  color: var(--white);
}

.how-section .section-intro p {
  color: rgba(255, 255, 255, 0.85);
}

.parent-quote {
  padding: 4.5rem 0;
  text-align: center;
}

.parent-quote blockquote {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink); font-weight: 500;
  max-width: 28rem; margin: 0 auto 0.75rem;
  line-height: 1.35;
}

.parent-quote cite {
  font-style: normal; font-size: 0.9rem;
  color: var(--muted); font-weight: 500;
}

/* Stories */
.stories-section { background: var(--cream); }

.story-spotlight {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.story-spotlight-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.story-spotlight-img img {
  width: 100%; height: 100%; min-height: 300px; object-fit: cover;
}

.story-spotlight-body .story-text {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: 1.1rem; line-height: 1.7; color: var(--ink);
  margin-bottom: 1rem;
}

.story-kicker {
  font-size: 1rem; color: var(--peach); font-weight: 600;
  margin-bottom: 1.75rem;
}

.story-person {
  display: flex; align-items: center; gap: 0.85rem;
  padding-top: 1.25rem; border-top: 1px solid var(--border);
}

.person-avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--sage-light); color: var(--sage-dark);
  font-weight: 700; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}

.story-person strong { display: block; font-size: 0.9rem; }
.story-person span { font-size: 0.8rem; color: var(--muted); }

.story-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.story-card {
  background: var(--white); padding: 1.75rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.story-card p {
  font-size: 0.95rem; color: var(--ink); line-height: 1.65;
  margin-bottom: 1.25rem;
}

.story-card footer { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

/* Village / Connect */
.village-section {
  background:
    radial-gradient(ellipse at 80% 0%, var(--honey-light) 0%, transparent 45%),
    var(--warm);
}

.village-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-bottom: 3rem;
}

.village-top h2 {
  font-size: clamp(1.85rem, 3vw, 2.2rem);
  margin-bottom: 0.85rem;
}

.village-lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.75rem; }

.village-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.village-photo img { width: 100%; height: 340px; object-fit: cover; }

.family-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}

.family-card {
  background: var(--white); padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
}
.family-card:hover { transform: translateY(-2px); }

.family-faces { display: flex; margin-bottom: 0.85rem; }

.face {
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); border: 2px solid var(--white);
  margin-left: -0.35rem;
}
.face:first-child { margin-left: 0; background: var(--sage); }
.face:nth-child(2) { background: var(--peach); }
.face:nth-child(3) { background: var(--honey); color: var(--ink); font-size: 0.55rem; }

.family-place {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted);
}

.family-race { font-weight: 600; font-size: 0.88rem; margin: 0.2rem 0 0.6rem; }

.family-note {
  font-size: 0.88rem; color: var(--muted); line-height: 1.5;
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif; font-style: italic;
}

/* How */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}

.steps-six {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  text-align: center; padding: 1.5rem 1rem;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: inline-flex; width: 2.25rem; height: 2.25rem;
  align-items: center; justify-content: center;
  background: var(--peach-light); color: var(--peach);
  border-radius: 50%; font-weight: 700; font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; color: var(--muted); }

/* CTA */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage-dark) 100%);
  text-align: center; color: rgba(255,255,255,0.9);
}

.final-cta h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  color: var(--white); margin-bottom: 0.85rem;
}

.final-cta p {
  font-size: 1.05rem; margin-bottom: 2rem;
  max-width: 30rem; margin-left: auto; margin-right: auto;
  opacity: 0.92;
}

.final-cta .btn-primary {
  background: var(--white); color: var(--sage-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.final-cta .btn-primary:hover { background: var(--honey-light); }

/* Footer */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 3rem 0; text-align: center;
}

.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  color: var(--white); font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: 1.05rem; margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.9rem; margin-bottom: 0.25rem; }
.footer-small { font-size: 0.8rem; opacity: 0.55; margin-bottom: 0.75rem; }

.footer a { color: var(--peach-light); text-decoration: none; font-weight: 500; }
.footer a:hover { text-decoration: underline; }

.footer .logo-mark { width: 2rem; height: 2rem; font-size: 0.6rem; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-wrap { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-title-banner { grid-column: 1; }
  .hero-copy { grid-column: 1; grid-row: auto; }
  .hero-visual { grid-column: 1; grid-row: auto; max-width: 460px; margin: 0 auto; width: 100%; }
  .coach-layout { grid-template-columns: 1fr; }
  .coach-photo img { height: 300px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .moments-row { grid-template-columns: repeat(2, 1fr); }
  .story-spotlight { grid-template-columns: 1fr; }
  .story-cards { grid-template-columns: 1fr; }
  .village-top { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps-six { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nav a:not(.btn) { display: none; }
  .pillars-grid, .family-grid, .steps, .steps-six, .moments-row { grid-template-columns: 1fr; }
  .collage-main { min-height: 260px; }
  .collage-sub { min-height: 130px; }
}
