/* Services — commercial detail within the shared HUMMBL editorial shell. */
.services-layout > .services-lede {
  max-width: 850px;
  margin: -46px 0 86px;
  padding: 28px 32px;
  border-left: 3px solid var(--green);
  background: var(--mint);
  color: #34483f;
  font-size: 17px;
  line-height: 1.65;
}

.services-grid {
  padding: 0 0 110px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 460px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card-featured {
  border-color: var(--green);
  background: var(--mint-soft);
}

.service-header {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: start;
}

.service-header h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.price {
  flex-shrink: 0;
  padding-top: 7px;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 650;
}

.service-blurb {
  margin: 34px 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-blurb a {
  color: #12643c;
  text-underline-offset: 3px;
}

.service-includes {
  margin: 0 0 30px;
  padding: 0;
  color: #355144;
  list-style: none;
}

.service-includes li {
  padding: 9px 0 9px 22px;
  position: relative;
  border-top: 1px solid var(--border);
}

.service-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
}

.service-cta {
  margin-top: auto;
  color: #12643c;
  font-weight: 680;
  text-underline-offset: 3px;
}

.services-approach,
.services-boundary {
  padding: 108px 0;
  border-top: 1px solid var(--border-strong);
}

.approach-steps {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: service-step;
  border-top: 1px solid var(--border-strong);
}

.approach-steps li {
  min-height: 128px;
  padding: 30px 0 30px 92px;
  position: relative;
  border-bottom: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.approach-steps li::before {
  counter-increment: service-step;
  content: "0" counter(service-step);
  position: absolute;
  left: 0;
  top: 33px;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}

.approach-steps strong {
  color: var(--forest);
}

.services-boundary h2,
.services-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.boundary-list {
  margin: 54px 0 0;
  border-top: 1px solid var(--border-strong);
}

.boundary-list > div {
  padding: 28px 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(300px, 1.35fr);
  gap: 56px;
  border-bottom: 1px solid var(--border-strong);
}

.boundary-list dt {
  color: var(--forest);
  font-weight: 720;
}

.boundary-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.services-cta {
  margin-bottom: 8px;
  padding: 74px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--mint);
}

.services-cta p {
  max-width: 690px;
  margin: 28px 0 32px;
  color: #2c4539;
  font-size: 19px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .services-layout > .services-lede {
    margin: -10px 0 60px;
    padding: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  .service-card {
    min-height: 0;
  }

  .service-header {
    flex-direction: column;
    gap: 10px;
  }

  .services-approach,
  .services-boundary {
    padding: 72px 0;
  }

  .approach-steps li {
    padding-left: 52px;
  }

  .boundary-list > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-cta {
    padding: 42px 26px;
  }
}
