/* Service pages shared additions */
.svc-intro {
  padding: 6rem var(--gutter);
  background: var(--creme);
}
.svc-intro__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.svc-intro h2 { max-width: 12ch; }
.svc-intro__text p {
  font-size: 1.08rem;
  color: var(--graphit-2);
  margin-bottom: 1.25rem;
  max-width: 58ch;
}
@media (max-width: 780px) { .svc-intro__inner { grid-template-columns: 1fr; gap: 2rem; } }

.svc-list {
  padding: 2rem var(--gutter) 7rem;
  background: var(--creme);
}
.svc-list__inner {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 2px solid var(--graphit);
}
.svc-row {
  display: grid;
  grid-template-columns: 90px 1.2fr 2fr auto;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
}
.svc-row__num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--graphit);
  opacity: 0.4;
}
.svc-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.svc-row__desc { font-size: 0.95rem; color: var(--graphit-3); max-width: 52ch; }
.svc-row__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--acid);
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .svc-row { grid-template-columns: 1fr; gap: 0.75rem; padding: 2rem 0; }
  .svc-row__price { justify-self: start; }
}

.pull-quote {
  background: var(--graphit);
  color: var(--creme);
  padding: 7rem var(--gutter);
  text-align: center;
}
.pull-quote blockquote {
  max-width: 22ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.pull-quote .mark {
  background: var(--acid);
  color: var(--graphit);
}
.pull-quote cite {
  display: block;
  margin-top: 2rem;
  font-size: 0.82rem;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
  font-style: normal;
}
