/* ---- page: services ----
   Support for Growing Minds. Linen hero w/ flanking interior photos, Coral
   Gables street band, "What Dr. Wald Treats" 8-item grid, serif statement band,
   How She Helps, warm-space photo split, age cards, sage CTA. */

/* 1. HERO: flanking interior photos + centered copy */
.svc-hero { background: var(--linen); }
.svc-hero-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(0, 2.4fr) minmax(120px, 0.9fr);
  align-items: stretch;
  max-width: 1320px;
  margin-inline: auto;
}
.svc-hero-side { overflow: hidden; }
.svc-hero-side img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-copy {
  text-align: center;
  padding: clamp(40px, 6vw, 84px) clamp(20px, 4vw, 56px) clamp(44px, 6vw, 88px);
  max-width: 640px;
  margin-inline: auto;
}
.svc-hero-copy .eyebrow { display: block; margin-bottom: 18px; }
.svc-hero-copy h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 20px; }
.svc-hero-copy p { max-width: 44ch; margin-inline: auto; }
.svc-hero-copy .btn { margin-top: 30px; }
@media (max-width: 860px) {
  .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-hero-side { display: none; }
  .svc-hero-copy { padding-block: clamp(48px, 12vw, 72px); }
}

/* 2. Coral Gables street band */
.street-band img { width: 100%; height: clamp(240px, 30vw, 420px); object-fit: cover; }

/* 3. What Dr. Wald Treats */
.treats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.5vw, 44px) clamp(40px, 6vw, 96px);
  max-width: 960px;
  margin: clamp(40px, 5vw, 60px) auto 0;
}
.treat {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
}
.treat-ic {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.treat-ic svg { width: 26px; height: 26px; stroke: var(--ivory); stroke-width: 1.5; fill: none; }
.treat h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: 3px; line-height: 1.2; }
.treat p { font-size: .95rem; color: var(--body); line-height: 1.55; }
.treat a.treat-link { color: inherit; }
.treat a.treat-link h3 { transition: color .2s var(--ease); }
.treat a.treat-link:hover h3 { color: var(--sage-deep); }
.treats-more { text-align: center; margin-top: clamp(36px, 4.5vw, 52px); }
@media (max-width: 700px) {
  .treats-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* 4. Big serif statement band */
.statement-band { background: var(--ivory); text-align: center; }
.statement-band h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.15;
  max-width: 16ch;
  margin-inline: auto;
}

/* 5. How She Helps (3 line-icon columns) */
.helps-head { text-align: center; margin-bottom: clamp(36px, 4.5vw, 56px); }
.help-col { text-align: center; }
.help-ic { width: 40px; height: 40px; margin: 0 auto 18px; }
.help-ic svg { width: 100%; height: 100%; stroke: var(--sage-deep); stroke-width: 1.4; fill: none; }
.help-col h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 12px; }
.help-col p { font-size: .95rem; max-width: 34ch; margin-inline: auto; }
@media (min-width: 861px) {
  .helps-cols { gap: 0; }
  .helps-cols .help-col { padding-inline: clamp(24px, 3vw, 44px); }
  .helps-cols .help-col + .help-col { border-left: 1px solid var(--line); }
}

/* 6. Warm supportive space photo split */
.space-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.space-split .space-photo { overflow: hidden; min-height: 320px; }
.space-split .space-photo img { width: 100%; height: 100%; object-fit: cover; }
.space-split .space-text {
  background: var(--linen);
  padding: clamp(44px, 5vw, 84px) clamp(28px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.space-split .space-text h2 { margin-bottom: 20px; }
.space-split .space-text .place {
  margin-top: 26px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em; color: var(--sage-deep);
}
@media (max-width: 860px) {
  .space-split { grid-template-columns: 1fr; }
  .space-split .space-photo { min-height: 260px; }
}

/* 7. Age cards */
.age-head { text-align: center; margin-bottom: clamp(36px, 4.5vw, 56px); }
.age-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3.5vw, 44px); }
.age-card { text-align: center; }
.age-card .age-photo {
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
  margin-bottom: 20px;
}
.age-card .age-photo img { width: 100%; height: clamp(200px, 20vw, 240px); object-fit: cover; display: block; }
.age-card h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.age-card p { font-size: .95rem; max-width: 32ch; margin-inline: auto; }
@media (max-width: 860px) {
  .age-cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* 8. Sage CTA band with palm-frond decoration */
.svc-cta { position: relative; background: var(--sage); color: var(--ivory); text-align: center; overflow: hidden; }
.svc-cta .cta-inner { position: relative; z-index: 2; }
.svc-cta h2 { color: var(--ivory); margin-bottom: 4px; }
.svc-cta p { color: rgba(251,248,241,.92); max-width: 46ch; margin: 18px auto 0; }
.svc-cta .rule { background: rgba(255,255,255,.55); }
.svc-cta .btn-light {
  margin-top: 30px;
  background: var(--ivory); color: var(--ink);
  border: 1px solid transparent;
}
.svc-cta .btn-light:hover { background: #fff; transform: translateY(-1px); }
.svc-cta .cta-foot {
  display: block; margin-top: 30px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em; color: rgba(251,248,241,.85);
}
.svc-cta .palm { position: absolute; z-index: 1; pointer-events: none; opacity: .28; width: min(320px, 30vw); }
.svc-cta .palm-l { left: -40px; bottom: -30px; transform: scaleX(-1); }
.svc-cta .palm-r { right: -40px; top: -30px; }
@media (max-width: 620px) { .svc-cta .palm { width: 150px; opacity: .22; } }
