/* ==========================================================================
   SubjectRX — services.css
   Page-specific styles for services.html only.
   All shared tokens, reset, nav, footer, buttons, and typography
   come from global.css — do not redefine them here.
   ========================================================================== */


/* ─────────────────────────────────────────────────────────────────────────
   HERO (sub-page text variant)
   Inherits .page-hero base from global.css.
   Override: max-width and internal padding only.
   ───────────────────────────────────────────────────────────────────────── */
/* Uses global .page-hero, .page-hero-inner, .page-hero-eyebrow,
   .page-hero-rule, .page-hero-h1, .page-hero-sub — no overrides needed. */


/* ─────────────────────────────────────────────────────────────────────────
   WHO WE RECRUIT — stakeholder grid
   ───────────────────────────────────────────────────────────────────────── */
.stakeholders {
  background: var(--cream);
  border-top: 1px solid var(--bdr);
  padding: 88px 0;
}

.stakeholders-header {
  max-width: 640px;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--bdr);
}

.stake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stake-cell {
  padding: 18px 44px 18px 0;
  border-bottom: 1px solid var(--bdr-lt);
}

.stake-cell:nth-child(even) {
  padding-left: 44px;
  padding-right: 0;
  border-left: 1px solid var(--bdr-lt);
}

.stake-cell:nth-last-child(-n+2) {
  border-bottom: none;
}

/* Stake cell headings — h3 within h2-scoped section */
.stake-cell h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.stake-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--muted);
}

@media (max-width: 768px) {
  .stakeholders {
    padding: 60px 0;
  }

  .stakeholders-header {
    padding-bottom: 24px;
    margin-bottom: 28px;
  }

  .stake-grid {
    grid-template-columns: 1fr;
  }

  .stake-cell {
    padding: 22px 0;
    border-left: none !important;
  }

  .stake-cell:nth-child(even) {
    padding-left: 0;
  }

  .stake-cell:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--bdr-lt);
  }

  .stake-cell:last-child {
    border-bottom: none;
  }
}


/* ─────────────────────────────────────────────────────────────────────────
   HOW WE WORK — image left, dark panel right
   ───────────────────────────────────────────────────────────────────────── */
.how {
  display: grid;
  grid-template-columns: 35fr 65fr;
  border-top: 1px solid var(--bdr);
  align-items: stretch;
}

.how-photo {
  overflow: hidden;
}

.how-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.how-text {
  background: linear-gradient(135deg, #0C5642 0%, #093F32 42%, #072F24 100%);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(110, 146, 130, .6);
  display: block;
  margin-bottom: 18px;
}

.how-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.55vw, 19px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 28px;
}

.how-text h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.22em;
  font-weight: 400;
  color: var(--white);
}

.how-body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.76;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}

.how-body:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .how {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .how-photo {
    height: 320px;
    position: relative;
  }

  .how-text {
    padding: 52px 44px;
  }
}

@media (max-width: 600px) {
  .how-photo {
    height: 240px;
  }

  .how-text {
    padding: 44px 22px;
  }
}


/* ─────────────────────────────────────────────────────────────────────────
   STEPS — 3-column process overview
   ───────────────────────────────────────────────────────────────────────── */
.steps {
  background: var(--surf);
  border-top: 1px solid var(--bdr);
  padding: 72px 0 80px;
}

.steps-eyebrow-wrap {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bdr);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.step-item {
  padding: 0 56px 0 0;
  border-right: 1px solid var(--bdr);
}

.step-item:last-child {
  border-right: none;
  padding-right: 0;
}

.step-item:not(:first-child) {
  padding-left: 56px;
}

.step-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 16px;
}

/* Step titles are presentational headings within the steps h2 scope */
.step-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-body {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--muted);
}

@media (max-width: 900px) {
  .steps {
    padding: 56px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-item {
    padding: 28px 0;
    border-right: none;
    border-bottom: 1px solid var(--bdr-lt);
  }

  .step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .step-item:not(:first-child) {
    padding-left: 0;
  }
}


/* ─────────────────────────────────────────────────────────────────────────
   WHO WE WORK WITH — clients section
   ───────────────────────────────────────────────────────────────────────── */
.clients {
  background: var(--cream);
  border-top: 1px solid var(--bdr);
  padding: 88px 0;
}

.clients-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.clients-pos {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  line-height: 1.32;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-top: 20px;
}

.clients-types {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 24px;
}

.clients-prose {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.76;
  color: var(--muted);
  margin-bottom: 16px;
}

.clients-prose:last-of-type {
  margin-bottom: 28px;
}

.clients-prose--faq {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .clients {
    padding: 64px 0;
  }

  .clients-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* ─────────────────────────────────────────────────────────────────────────
   CLOSING BAND — services-specific CTA section
   Note: this is a different component from homepage .cta-band.
   Different class, different layout (centred vs offset), same visual family.
   ───────────────────────────────────────────────────────────────────────── */
.closing {
  padding: 88px 0;
  background: linear-gradient(135deg, #0C503E 0%, #0A4A39 50%, #083D30 100%);
}

.closing-inner {
  max-width: 460px;
}

.closing-h {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 4px;
}

.closing-h-em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--white);
  display: block;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .closing {
    padding: 64px 0;
  }
}
