/* services-page-hero — full-width intro banner */
.services-page-hero {
  background: var(--black);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 3rem 6rem;
  border-bottom: 1px solid var(--border);
}

/* eyebrow / headline / divider / body — mirrored from about.css */
.svc-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.svc-page-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.svc-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.svc-divider {
  width: 48px;
  height: 1px;
  background: var(--silver-muted);
  margin-bottom: 2rem;
}
.svc-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.svc-standfirst {
  max-width: 560px;
  margin-bottom: 0;
}

/* section layout */
.svc-section {
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
}
.svc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* reverse column order for section B */
.svc-inner--reverse {
  direction: rtl;
}
.svc-inner--reverse > * {
  direction: ltr;
}

/* image */
.svc-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) contrast(1.05);
}

/* CTA */
.svc-cta {
  margin-top: 2.5rem;
}

/* responsive */
@media (max-width: 1024px) {
  .svc-inner {
    grid-template-columns: 1fr;
  }
  .svc-inner--reverse {
    direction: ltr;
  }
}
@media (max-width: 768px) {
  .services-page-hero {
    padding: 7rem 1.5rem 4rem;
  }
  .svc-section {
    padding: 5rem 1.5rem;
  }
}
