.service-hero {
  padding-top: clamp(3rem, 5.5vw, 5rem);
}

.service-hero__intro {
  max-width: 1080px;
  padding-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.service-hero__kicker {
  position: relative;
  padding-top: 1.35rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5f6560;
}

.service-hero__kicker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(8rem, 16vw, 12rem);
  height: 2px;
  background: rgba(94, 116, 102, 0.3);
}

.service-hero__kicker::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(2.75rem, 5vw, 4.25rem);
  height: 2px;
  background: rgba(168, 143, 85, 0.82);
}

.service-hero__title {
  max-width: 1080px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4.7vw, 4.35rem);
  line-height: 1.08;
  color: #1f2421;
  text-wrap: balance;
}

.service-hero__support {
  max-width: 820px;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.68;
  color: #5f6560;
}

.service-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e9e6de;
}

.service-hero__credit {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.45rem 0.7rem;
  background: rgba(250, 249, 246, 0.9);
  font-size: 0.67rem;
  line-height: 1.4;
  color: #5f6560;
}

.service-hero--walk .service-hero__media img {
  object-position: center 46%;
}

.service-hero__media img {
  display: block;
  width: 100%;
  height: min(29vw, 410px);
  min-height: 300px;
  object-fit: cover;
  object-position: center 58%;
}

.service-hero__rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  padding: 1.6rem clamp(1.25rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(94, 116, 102, 0.22);
  background: #faf9f6;
}

.service-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-hero__fact {
  min-width: 0;
}

.service-hero__fact + .service-hero__fact {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(94, 116, 102, 0.18);
}

.service-hero__fact-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.67rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7e6838;
}

.service-hero__fact-value {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #1f2421;
}

.service-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .service-hero__rail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-hero__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .service-page > section[class~="py-stack-lg"] {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .service-hero {
    padding-top: 2.75rem;
  }

  .service-hero__intro {
    padding-bottom: 2.25rem;
  }

  .service-hero__title {
    font-size: clamp(2.3rem, 11.5vw, 3.1rem);
    line-height: 1.08;
  }

  .service-hero__support {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-hero__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: center 58%;
  }

  .service-hero--walk .service-hero__media img {
    object-position: center 45%;
  }

  .service-hero__rail {
    padding: 1.5rem 1.15rem 1.35rem;
    border-bottom: 0;
  }

  .service-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }

  .service-hero__fact + .service-hero__fact {
    padding-left: 0;
    border-left: 0;
  }

  .service-hero__actions {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(94, 116, 102, 0.18);
  }
}
