.service {
  background: var(--paper);
}

.service-wrap {
  width: min(calc(100% - 64px), 1040px);
  margin-inline: auto;
}

.service-hero {
  padding: 92px 0 68px;
  border-bottom: 1px solid var(--rule);
}

.service-kicker {
  margin: 0 0 24px;
  color: var(--amber);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.service-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6.5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.service-lede {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--body);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.42;
}

.service-section {
  padding: 68px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.service-section:last-of-type {
  border-bottom: 0;
}

.service-section h2 {
  margin: 0 0 30px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.service-section p {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.service-section p:last-child {
  margin-bottom: 0;
}

.service-list {
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.service-list li:first-child {
  padding-top: 0;
}

.service-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 600;
}

.service-steps {
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: service-step;
}

.service-steps li {
  position: relative;
  padding: 18px 0 18px 64px;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  counter-increment: service-step;
}

.service-steps li:first-child {
  padding-top: 0;
}

.service-steps li:first-child::before {
  top: 2px;
}

.service-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-steps li::before {
  content: counter(service-step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--amber);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 600;
}

.service-cta {
  padding: 76px 0 104px;
}

.service-cta h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.service-cta p {
  max-width: 620px;
  margin: 0 0 34px;
  color: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.service-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 26px;
  background: var(--forest);
  border-radius: 1px;
  color: #fbf7ef;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.service-button:hover {
  background: var(--forest-hover);
  transform: translateY(-1px);
}

.service-button svg {
  width: 16px;
  height: 16px;
  color: #d79052;
  stroke-width: 1.8;
  transition: transform 180ms var(--ease-out);
}

.service-button:is(:hover, :focus-visible) svg {
  transform: translateX(4px);
}

.service-section p > a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-section p > a:hover {
  color: var(--forest-hover);
}

.service-inline-link {
  margin-top: 26px !important;
}

.service-inline-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-inline-link a:hover {
  color: var(--forest-hover);
}

.service-inline-link svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
  stroke-width: 1.8;
  transition: transform 180ms var(--ease-out);
}

.service-inline-link a:is(:hover, :focus-visible) svg {
  transform: translateX(4px);
}

.service-cta-alt {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.service-cta-alt a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .service-wrap {
    width: min(calc(100% - 40px), 1040px);
  }

  .service-hero {
    padding: 64px 0 48px;
  }

  .service-section {
    padding: 52px 0;
  }

  .service-cta {
    padding: 56px 0 76px;
  }

  .service-steps li {
    padding-left: 48px;
  }
}
