/* ============================================================================
   07-SERVICES.CSS — Components for the Practice Area deep-dive sub-pages
   Loaded ONLY by /services/*.html (modular; nothing else references it).
   Reuses 06-pages.css primitives (.page-hero, .section, .svc-list, .faq,
   .cta-band, .up) and adds: breadcrumb, process steps, related grid, pull-quote.
   ========================================================================== */

/* ---- Breadcrumb -------------------------------------------------------- */
.breadcrumb {
  position: relative; z-index: 2;
  width: var(--container-act); margin: 0 auto;
  padding: 6.5rem var(--gutter) 0;   /* clears the fixed HUD */
}
.breadcrumb ol {
  display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0;
  font-size: var(--fs-micro); letter-spacing: var(--ls-label); text-transform: uppercase;
}
.breadcrumb li { color: var(--c-mist); display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li + li::before { content: "›"; color: var(--c-gold); }
.breadcrumb a { color: var(--c-mist); text-decoration: none; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--c-gold); }
.breadcrumb [aria-current="page"] { color: var(--c-paper); }

/* The service hero sits right under the breadcrumb, so trim its top padding. */
.svc-page .page-hero { min-height: auto; padding-top: 2.5rem; }

/* ---- Service "what's included" list (richer than svc-list) ------------- */
.included { list-style: none; margin: var(--space-md) 0 0; padding: 0; }
.included li {
  padding: 1.1rem 0 1.1rem 2rem; position: relative;
  border-bottom: 1px solid var(--c-dot-line); color: var(--c-mist); font-size: 0.98rem;
}
.included li::before {
  content: ""; position: absolute; left: 0; top: 1.45rem;
  width: 9px; height: 9px; background: var(--c-gold); transform: rotate(45deg);
}
.included b { color: var(--c-paper); font-weight: var(--fw-semi); display: block; margin-bottom: 0.2rem; }

/* ---- Numbered process steps ------------------------------------------- */
.process-steps { list-style: none; counter-reset: step; margin: var(--space-lg) 0 0; padding: 0; display: grid; gap: var(--space-md); }
@media (min-width: 760px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
.process-steps li {
  counter-increment: step; border: var(--border-hairline); border-radius: 6px;
  padding: var(--space-md); position: relative;
}
.process-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.2rem; color: var(--c-gold);
  display: block; margin-bottom: 0.4rem; line-height: 1;
}
.process-steps h3 { font-size: 1.15rem; color: var(--c-paper); margin-bottom: 0.4rem; }
.process-steps p { color: var(--c-mist); font-size: 0.92rem; margin: 0; }

/* ---- Pull-quote (the cinematic line lifted from each .docx) ------------ */
.pull-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.4; color: var(--c-paper);
  max-width: 30ch; margin: var(--space-md) 0; border-left: 2px solid var(--c-gold);
  padding-left: var(--space-md);
}
.pull-quote .gold-w { color: var(--c-gold); }

/* ---- Related practice areas grid -------------------------------------- */
.related-grid { display: grid; gap: var(--space-md); margin-top: var(--space-lg); }
@media (min-width: 620px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }
.related-card {
  display: block; text-decoration: none; border: var(--border-hairline); border-radius: 6px;
  padding: var(--space-md); transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.related-card:hover, .related-card:focus-visible {
  border-color: var(--c-gold-line); transform: translateY(-3px); background: rgba(255,255,255,0.02);
}
.related-card .num { font-family: var(--font-display); color: var(--c-gold); font-size: 0.9rem; letter-spacing: 0.4em; }
.related-card h3 { font-family: var(--font-display); color: var(--c-paper); font-size: 1.25rem; margin: 0.3rem 0 0.4rem; }
.related-card p { color: var(--c-mist); font-size: 0.85rem; margin: 0; }
.related-card .go { display: inline-block; margin-top: 0.8rem; color: var(--c-gold); font-size: 0.74rem; font-weight: var(--fw-bold); letter-spacing: var(--ls-kicker); text-transform: uppercase; }

/* ---- Dual CTA pills on the final scene -------------------------------- */
.cta-pills { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 1.4rem; }
