/* Styles for standalone service landing pages (weight-management-program.html,
   pre-and-post-natal-exercise.html, chronic-condition-management.html).
   Loaded alongside index.css, which supplies :root variables, fonts, header/footer,
   buttons, and the .wmp-* / .why-card component styles reused here. */

/* index.css's .mobile-nav is unconditionally shown at <=920px because the React
   homepage only mounts that element while open. These static pages always render
   it, so give it an explicit closed/open toggle instead. */
.mobile-nav { display: none; }
.mobile-nav.open { display: flex; flex-direction: column; gap: 18px; padding: 0 22px 28px; border-bottom: 1px solid var(--rule); }
@media (min-width: 921px) { .mobile-nav.open { display: none; } }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  padding: 18px 0 0;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 16px;
  color: var(--blue-deep);
  font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.breadcrumb a:hover { background: var(--blue-deep); color: #fff; }
.breadcrumb span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11.5px;
}

.svc-hero {
  padding: 40px 0 48px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
/* mirror index.css's .eyebrow::before line on the right side, so the
   centered hero eyebrow reads as "— SERVICE —" */
.svc-hero .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue-deep);
  display: inline-block;
}
.svc-hero h1 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  margin: 14px auto 16px;
  color: var(--ink);
  max-width: 20ch;
}
.svc-hero .lead {
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto 26px;
}
.svc-hero .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.svc-article { padding: 56px 32px; max-width: 824px; margin: 0 auto; }
.svc-article h2 {
  font-family: 'Cormorant Upright', serif;
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--blue-deep);
  margin: 64px 0 20px;
  text-align: center;
}
.svc-article h2:first-child { margin-top: 0; }
.svc-article p { color: var(--ink-soft); line-height: 1.7; margin: 0 0 16px; }
.svc-article ul { margin: 0 0 16px; padding-left: 22px; color: var(--ink-soft); line-height: 1.7; }
.svc-article li { margin-bottom: 8px; }
.svc-article strong { color: var(--ink); }

.svc-cta-band {
  background: var(--blue-deep);
  padding: 48px 0;
  text-align: center;
}
.svc-cta-band h2 { color: #fff; margin: 0 0 10px; font-family: 'Cormorant Upright', serif; font-weight: 500; font-size: clamp(26px, 3.4vw, 36px); }
.svc-cta-band p { color: rgba(255,255,255,.85); margin: 0 0 24px; }
.svc-cta-band .hero-actions { justify-content: center; }
.svc-cta-band .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.svc-cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); }

.svc-related {
  padding: 40px 0 60px;
}
.svc-related h3 {
  font-family: 'Cormorant Upright', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 14px;
}
.svc-related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-related-links a {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 16px;
  color: var(--blue-deep);
  text-decoration: none;
  font-size: 14px;
}
.svc-related-links a:hover { background: var(--blue-deep); color: #fff; }

@media (max-width: 720px) {
  .svc-article { padding: 40px 22px; }
  .svc-article h2 { margin: 48px 0 16px; }
}
