/* Services landing page: page-specific layout only. Core section, button,
   service-card, and typography styling comes from style.css. */

.services-page-hero {
  text-align: left;
}

/* Two-column hero: copy on the left, van photo on the right.
   Scoped to the index hero so deep service-page heroes stay centered. */
.services-page-hero .service-hero__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  justify-items: stretch;
  text-align: left;
  gap: var(--space-3xl);
}

.services-page-hero .service-hero__content {
  align-items: flex-start;
  max-width: none;
}

.services-page-hero .service-hero__title {
  max-width: none;
}

.services-page-hero__media {
  position: relative;
  z-index: 1;
}

.services-page-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.services-page-hero__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--space-md);
  margin-top: 0;
}

@media (max-width: 860px) {
  .services-page-hero .service-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .services-page-hero__img {
    max-height: 320px;
  }
}

.services-page__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: var(--space-xl);
}

.services-page__card {
  color: inherit;
  text-decoration: none;
}

.services-page__card .card__link {
  margin-top: auto;
}

.services-page__icon {
  overflow: hidden;
}

.services-page__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-page-cta .about-final__title {
  color: var(--color-white);
  font-size: var(--text-3xl);
  font-weight: 900;
  letter-spacing: 0;
  margin: var(--space-xs) 0 var(--space-sm);
}

.services-page-cta .about-final__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
}

@media (min-width: 768px) {
  .services-page-cta .about-final__actions {
    flex-direction: row;
    width: auto;
  }
}
