/* Services section header — eyebrow, serif title, pill nav (reference layout) */
.section-services .eyebrow {
  color: #0d6d66;
  letter-spacing: 0.24em;
  margin-bottom: clamp(0.85rem, 2vw, 1.1rem);
}

.section-services .eyebrow::before {
  width: 2rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b5e20 0%, #1b5e20 55%, #c8a008 55%, #fbc02d 100%);
}

.section-services h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 clamp(0.65rem, 1.8vw, 0.85rem);
  color: #0c1222;
  text-align: left;
}

.section-services .section-lead {
  max-width: 38rem;
  margin: 0 0 clamp(1.35rem, 3.2vw, 1.85rem);
  font-size: clamp(0.98rem, 1.6vw, 1.06rem);
  line-height: 1.65;
  color: #4a5d78;
  text-align: left;
}

.section-services .service-page-nav {
  justify-content: flex-start;
  gap: clamp(0.55rem, 1.6vw, 0.75rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.35rem);
}

.section-services .service-page-nav__link {
  padding: 0.58rem 1.28rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0d6d66;
  background: #ffffff;
  border: 1px solid rgba(13, 109, 102, 0.22);
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition:
    border-color var(--duration-fast) ease,
    background-color var(--duration-fast) ease,
    color var(--duration-fast) ease;
}

.section-services .service-page-nav__link:hover,
.section-services .service-page-nav__link:focus-visible {
  transform: none;
  color: #0a5c56;
  background: #ffffff;
  border-color: rgba(13, 109, 102, 0.42);
  box-shadow: none;
}

.section-services .service-page-nav__link:active {
  transform: scale(0.98);
}

@media (max-width: 640px) {
  .section-services .service-page-nav {
    gap: 0.5rem;
  }

  .section-services .service-page-nav__link {
    padding: 0.52rem 1.05rem;
    font-size: 0.8125rem;
  }
}
