/* =============================================================================
   for-parents.css  —  page-specific styles for for-parents.html
   Loaded AFTER main.css. Reuses shared components; only adds what this page needs.
   ========================================================================== */

/* ---- Split hero: copy left on linen, console photo full-bleed right ---- */
.parents-hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: stretch;
  background: var(--linen);
}
.parents-hero .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 96px) clamp(24px, 4vw, 56px)
           clamp(44px, 6vw, 96px) clamp(24px, 7vw, 120px);
}
.parents-hero .hero-copy-inner { max-width: 540px; }
.parents-hero .eyebrow { display: block; margin-bottom: 18px; }
.parents-hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 4px;
}
.parents-hero .rule { margin: 26px 0 0; }               /* left-aligned short rule */
.parents-hero .hero-sub {
  font-size: 1.0625rem;
  color: var(--body);
  margin: 26px 0 0;
  max-width: 30ch;
}
.parents-hero .btn { margin-top: 30px; align-self: flex-start; }
.parents-hero .hero-img { position: relative; min-height: 380px; }
.parents-hero .hero-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 860px) {
  .parents-hero { grid-template-columns: 1fr; }
  .parents-hero .hero-copy { padding: clamp(40px, 9vw, 60px) var(--gutter); }
  .parents-hero .hero-img { min-height: 62vw; order: 2; }
}

/* ---- Full-bleed mother + child photo ---- */
.parents-bleed img { width: 100%; height: clamp(280px, 40vw, 540px); object-fit: cover; }

/* ---- "When worry takes up too much room" text-left / photo-right split ---- */
.worry .worry-text h2 { margin-bottom: 0; }
.worry .worry-text .rule { margin: 22px 0 30px; }
.worry .worry-text p { max-width: 46ch; }
.worry .worry-photo { border-radius: var(--radius); overflow: hidden; }
.worry .worry-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (max-width: 860px) {
  .worry .worry-photo img { aspect-ratio: 4 / 3; }
}

/* ---- SAGE 3-col band: circled sprig icons ---- */
.icon-circle {
  width: 58px; height: 58px; margin: 0 auto 18px;
  border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.icon-circle svg { width: 26px; height: 26px; stroke: var(--ivory); stroke-width: 1.4; fill: none; }
.parents-band .support-col h3 { color: var(--ivory); margin-bottom: 12px; }
.parents-band .support-col p { color: rgba(251,248,241,.9); font-size: .95rem; max-width: 30ch; margin-inline: auto; }

/* ---- "A process parents can understand" split: photo left / numbered steps right ---- */
.process .process-photo { border-radius: var(--radius); overflow: hidden; }
.process .process-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.process .process-copy h2 { margin-bottom: 0; }
.process .process-copy .rule { margin: 22px 0 34px; }
.proc-steps { display: flex; flex-direction: column; gap: 26px; }
.proc-step { display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: start; }
.proc-step .step-num.solid {
  width: 44px; height: 44px; margin: 0; font-size: 1.15rem;
}
.proc-step h3 { font-size: 1.2rem; margin: 6px 0 6px; }
.proc-step p { font-size: .95rem; }

/* ---- Quote interlude on linen-2 with soft palm-shadow decoration ---- */
.parents-quote { position: relative; background: var(--linen-2); overflow: hidden; }
.parents-quote .cta-inner, .parents-quote .quote { position: relative; z-index: 2; }
.parents-quote .palm {
  position: absolute; z-index: 1; pointer-events: none; opacity: .16;
  mix-blend-mode: multiply; width: min(340px, 40vw);
}
.parents-quote .palm-l { left: -60px; top: -40px; transform: scaleX(-1) rotate(-8deg); }
.parents-quote .palm-r { right: -60px; top: -40px; transform: rotate(-8deg); }
.parents-quote .quote blockquote { line-height: 1.4; }

/* ---- "Start with a thoughtful first conversation" contact split ---- */
.parents-contact { background: var(--linen-2); }
.parents-contact .split { align-items: stretch; }
.parents-contact .contact-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(48px, 6vw, 88px);
}
.parents-contact .contact-copy h2 { margin-bottom: 20px; }
.parents-contact .contact-copy > p { max-width: 42ch; margin-bottom: 26px; }
.contact-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.contact-row { display: flex; align-items: center; gap: 12px; color: var(--body); font-size: .98rem; }
.contact-row svg { flex: none; width: 18px; height: 18px; stroke: var(--sage-deep); stroke-width: 1.6; fill: none; }
.contact-row a { color: var(--body); border-bottom: 1px solid transparent; transition: border-color .2s var(--ease), color .2s var(--ease); }
.contact-row a:hover { color: var(--ink); border-bottom-color: var(--sage); }
.parents-contact .contact-copy .btn { align-self: flex-start; }
.parents-contact .contact-photo { position: relative; min-height: 320px; overflow: hidden; border-radius: var(--radius); }
.parents-contact .contact-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .parents-contact .contact-photo { min-height: 60vw; }
}
