/* ──────────────────────────────────────────────────────────────
   BCB — Services Hub page CSS
   Loads automatically by the slug-match auto-loader on /services/.
   All selectors scoped to body.page-services so utility class names
   (.sec, .inner, .eyebrow, .h-title, .body-lg, .cluster, .svc-card,
   etc.) cannot bleed into other pages that may use the same names
   differently.
   Hard rules applied: no Fraunces, every font-variation-settings:
   "SOFT" declaration removed (Manrope has no SOFT axis); brand color
   resolved through var() tokens so the live re-tone flows through.
   ────────────────────────────────────────────────────────────── */

/* ─── Page shell ─────────────────────────────────────────── */
body.page-services {
  font-family: var(--font-sans);
  color: var(--navy-500);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body.page-services img { max-width: 100%; display: block; }

/* ─── Services hero: extra right-side darkening ───────────────
   The Services Hero Option-2 photo (side-lying nursing) shows more of
   the body on the lower-right of the wide desktop crop. Layer a soft
   left-transparent -> right-dark gradient ON TOP of the shared center
   scrim so the right edge reads quieter, without touching the global
   .hub-band--center scrim. The pseudo sits above the scrim (both
   z-index:-1; ::after paints later) and below the white type (content,
   z 0). The band's own bottom mask-image fades it at the seam too. */
body.page-services #services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(12, 16, 24, 0)    45%,
    rgba(12, 16, 24, 0.28) 78%,
    rgba(12, 16, 24, 0.50) 100%
  );
}

/* ─── Shared section primitives ───────────────────────── */
body.page-services .sec { padding: var(--sec-pad-y) 24px; background: transparent; }
body.page-services .sec--sm { padding: var(--sec-pad-y-sm) 24px; }
body.page-services .sec--lg { padding: clamp(72px, 9vw, 112px) 24px; }
body.page-services .inner { max-width: 1180px; margin: 0 auto; }
body.page-services .inner--narrow { max-width: 880px; }

body.page-services .eyebrow {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pink-600);
  margin: 0 0 14px;
}
body.page-services .h-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1; letter-spacing: -0.018em;
  color: var(--navy-700);
  margin: 0 0 18px;
  text-wrap: balance;
}
body.page-services .h-title em { font-style: italic; font-weight: 700; color: var(--pink-600); }
body.page-services .body-lg {
  font-size: clamp(16px, 1.15vw, 17.5px);
  line-height: 1.65;
  color: var(--navy-600);
  margin: 0 0 18px;
  text-wrap: pretty;
}
body.page-services .body-lg + .body-lg { margin-top: 18px; }
body.page-services .link-arrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--pink-600);
  text-decoration: none;
  border-bottom: 1px solid rgba(194,99,138,0.30);
  padding-bottom: 2px;
  font-style: italic;
}
body.page-services .link-arrow:hover { color: var(--pink-700); border-color: var(--pink-500); }

/* ─── START WHERE YOU ARE ─────────────────────────────── */
body.page-services .swyu {
  padding: clamp(44px, 6vw, 80px) 24px clamp(48px, 6vw, 80px);
  position: relative;
}
body.page-services .swyu__inner {
  max-width: 1180px; margin: 0 auto;
}
body.page-services .swyu__head {
  max-width: 760px; margin: 0 auto clamp(28px, 3vw, 40px);
  text-align: center;
}
body.page-services .swyu__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08; letter-spacing: -0.018em;
  color: var(--navy-700);
  margin: 0 0 8px;
}
body.page-services .swyu__title em { font-style: italic; color: var(--pink-600); }
body.page-services .swyu__sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy-500);
  margin: 0;
}
body.page-services .swyu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 780px) { body.page-services .swyu__grid { grid-template-columns: 1fr; } }

body.page-services .swyu__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62,80,104,0.10);
  border-left: 3px solid var(--pink-500);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
  box-shadow: 0 1px 3px rgba(31,45,64,0.04), 0 10px 28px rgba(31,45,64,0.06);
}
body.page-services .swyu__row:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(31,45,64,0.06), 0 22px 48px rgba(31,45,64,0.13);
  background: #fff;
  border-left-color: var(--pink-600);
}
body.page-services .swyu__cue {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--navy-700);
  margin: 0 0 4px;
}
body.page-services .swyu__service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-600);
}
body.page-services .swyu__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(194,99,138,0.10);
  color: var(--pink-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
body.page-services .swyu__row:hover .swyu__arrow {
  background: var(--pink-500);
  color: #fff;
  transform: translateX(3px);
}
body.page-services .swyu__arrow svg { width: 16px; height: 16px; }

body.page-services .swyu__footnote {
  margin: 28px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--navy-500);
}
body.page-services .swyu__footnote strong { color: var(--navy-700); font-weight: 600; }
body.page-services .swyu__footnote a { color: var(--pink-600); text-decoration: none; border-bottom: 1px solid rgba(194,99,138,0.30); padding-bottom: 1px; }
body.page-services .swyu__footnote a:hover { color: var(--pink-700); border-color: var(--pink-500); }

/* ─── SERVICE CLUSTERS ────────────────────────────────── */
body.page-services .cluster { padding: 0 24px clamp(40px, 5vw, 64px); }
body.page-services .cluster__inner { max-width: 1180px; margin: 0 auto; }
body.page-services .cluster__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(62,80,104,0.16);
}
body.page-services .cluster__num {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-600);
}
body.page-services .cluster__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--navy-700);
  margin: 6px 0 0;
}

body.page-services .cluster__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
body.page-services .cluster__grid--solo { grid-template-columns: 1fr; max-width: 720px; }
@media (max-width: 780px) { body.page-services .cluster__grid { grid-template-columns: 1fr; } }

body.page-services .svc-card {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62,80,104,0.10);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: 0 1px 3px rgba(31,45,64,0.04), 0 14px 36px rgba(31,45,64,0.08);
  position: relative;
  overflow: hidden;
}
body.page-services .svc-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--pink-500);
  opacity: 0;
  transition: opacity .15s ease;
}
body.page-services .svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 6px rgba(31,45,64,0.07), 0 28px 60px rgba(31,45,64,0.16);
  border-color: rgba(194,99,138,0.22);
}
body.page-services .svc-card:hover::after { opacity: 1; }
/* QA6: Starting Solids is a static info card (no dedicated page yet) — not clickable */
body.page-services .svc-card--soon { cursor: default; }
body.page-services .svc-card--soon:hover {
  transform: none;
  box-shadow: 0 1px 3px rgba(31,45,64,0.04), 0 14px 36px rgba(31,45,64,0.08);
  border-color: rgba(62,80,104,0.10);
}
body.page-services .svc-card--soon:hover::after { opacity: 0; }
body.page-services .svc-card--body { --accent: var(--sky-500); }
body.page-services .svc-card--body::after { background: var(--sky-500); }

body.page-services .svc-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy-700);
  margin: 0 0 12px;
}
body.page-services .svc-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy-600);
  margin: 0 0 14px;
}
body.page-services .svc-card__tags {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--navy-500);
  margin: 0 0 18px;
}
body.page-services .svc-card__tags::before { content: ""; }
body.page-services .svc-card__cta {
  margin-top: auto;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid rgba(194,99,138,0.30);
  align-self: flex-start;
  transition: border-color .15s ease;
}
body.page-services .svc-card--body .svc-card__cta { color: var(--sky-700); border-color: rgba(142,204,230,0.45); }
body.page-services .svc-card__cta svg { width: 14px; height: 14px; transition: transform .15s ease; }
body.page-services .svc-card:hover .svc-card__cta { border-color: var(--pink-500); }
body.page-services .svc-card--body:hover .svc-card__cta { border-color: var(--sky-700); }
body.page-services .svc-card:hover .svc-card__cta svg { transform: translateX(3px); }

/* ─── HOW OUR CARE WORKS ──────────────────────────────── */
body.page-services .how__inner { max-width: 860px; margin: 0 auto; }

/* ─── LOCATIONS ───────────────────────────────────────── */
body.page-services .locs__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
body.page-services .locs__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 28px 0 22px;
}
body.page-services .locs__chip {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 14px;
  color: var(--navy-700);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(62,80,104,0.12);
  backdrop-filter: blur(4px);
  transition: all .15s ease;
}
body.page-services .locs__chip:hover {
  background: var(--pink-500);
  color: #fff;
  border-color: var(--pink-500);
}

/* ─── STATS BAND ──────────────────────────────────────── */
body.page-services .stats__inner {
  max-width: 1180px; margin: 0 auto;
  background: var(--card-lift-bg);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(62,80,104,0.10);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 40px) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { body.page-services .stats__inner { grid-template-columns: 1fr; } }
body.page-services .stats__copy .eyebrow { color: var(--pink-600); }
body.page-services .stats__copy .h-title { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 14px; }
body.page-services .stats__copy p { font-size: 15px; line-height: 1.6; color: var(--navy-600); margin: 0; }
body.page-services .stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
}
body.page-services .stats__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1;
  color: var(--pink-500);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
body.page-services .stats__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--navy-600);
}

/* ─── INSURANCE BLOCK ─────────────────────────────────── */
body.page-services .ins {
  padding: 0 24px clamp(48px, 6vw, 72px);
}
body.page-services .ins__inner {
  max-width: 1180px; margin: 0 auto;
  background: rgba(220, 240, 248, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(142, 204, 230, 0.35);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { body.page-services .ins__inner { grid-template-columns: 1fr; } }
body.page-services .ins__copy .eyebrow { color: var(--pink-700); }
body.page-services .ins__copy .h-title {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 12px;
}
body.page-services .ins__copy p {
  font-size: 15.5px; line-height: 1.6;
  color: var(--navy-600); margin: 0;
}
body.page-services .ins__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
body.page-services .ins__btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 54px; padding: 0 28px;
  border-radius: 999px;
  background: var(--sky-500);
  color: var(--navy-800);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
body.page-services .ins__btn:hover { background: var(--sky-600); transform: translateY(-1px); }
body.page-services .ins__btn-meta {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 13px;
  color: var(--navy-500);
}

/* GETTING STARTED CLOSER → LIGHT frosted card + Case-A fade (enabled below). Was a flat navy CTA. */
body.page-services .gs {
  position: relative;
  background: transparent;
  color: var(--navy-500);
  padding: clamp(48px, 7vw, 80px) 24px;
  margin-top: clamp(24px, 4vw, 48px);
}
body.page-services .footer-ombre-blend { display: block; }
body.page-services .ins { position: relative; z-index: 1; }
body.page-services .gs__inner {
  max-width: 860px; margin: 0 auto;
  background: var(--card-lift-bg); backdrop-filter: var(--card-lift-blur); -webkit-backdrop-filter: var(--card-lift-blur);
  border: 1px solid rgba(255,255,255,0.6); border-radius: var(--radius-xl);
  padding: clamp(40px,5.5vw,60px) clamp(28px,4vw,48px); box-shadow: 0 18px 50px -28px rgba(41,52,72,0.35);
}
body.page-services .gs__eyebrow {
  font-family: var(--font-accent);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pink-600);
  margin: 0 0 16px;
}
body.page-services .gs__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy-700);
  margin: 0 0 26px;
  text-wrap: balance;
}
body.page-services .gs p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  margin: 0 0 18px;
  color: var(--navy-500);
}
body.page-services .gs p strong { color: var(--navy-700); font-weight: 700; }
body.page-services .gs__cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
body.page-services .gs__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 54px; padding: 0 30px;
  border-radius: 999px;
  background: var(--pink-500);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
body.page-services .gs__btn:hover { background: var(--pink-600); transform: translateY(-1px); }
body.page-services .gs__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy-400);
  text-decoration: none;
  border-bottom: 1px solid rgba(41,52,72,0.30);
  padding-bottom: 2px;
}
body.page-services .gs__sub:hover { color: var(--navy-700); border-color: var(--navy-700); }
