.service-anchors {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 65px;
  z-index: 50;
}
.service-anchors .container {
  display: flex;
  gap: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow-x: auto;
  white-space: nowrap;
}
.service-anchors a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}
.service-anchors a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
  opacity: 1;
}

.service-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.service-section.service-dark {
  background: var(--navy);
  color: var(--light);
}
.service-section.service-dark h2,
.service-section.service-dark .service-tag,
.service-section.service-dark .service-col h4 {
  color: var(--offwhite);
}
.service-section.service-dark .service-col h4 { color: var(--gold); }
.service-section.service-dark p { color: var(--light); }
.service-section.service-dark .muted-line { color: var(--muted); }
.service-section.service-dark .service-col li {
  color: var(--light);
  border-bottom-color: rgba(201, 168, 76, 0.18);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.service-meta {
  position: sticky;
  top: 130px;
}
.big-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 0.9;
  display: block;
  margin-bottom: 1.5rem;
  font-style: italic;
  opacity: 0.85;
}
.service-meta h2 {
  margin: 0.6rem 0 0.4rem;
  color: var(--navy);
}
.service-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.service-meta p {
  color: var(--soft);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}
.muted-line {
  font-size: 0.86rem !important;
  color: var(--muted) !important;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.service-list.four-col {
  grid-template-columns: 1fr 1fr;
}
.service-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.service-col ul {
  list-style: none;
}
.service-col li {
  padding: 0.85rem 0;
  font-size: 0.96rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 1.5rem;
}
.service-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.15rem;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.service-col li:last-child { border-bottom: none; }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-meta { position: static; }
}
@media (max-width: 640px) {
  .service-list, .service-list.four-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* CTA Band Light */
.cta-band-light {
  background: var(--cream);
  padding: 5rem var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-band-light h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}
.cta-band-light p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--soft);
  margin-bottom: 2rem;
}
