/* ═══════════════════════════════════════════════
   SERVICES.CSS — Section 8: Work With Us
   Clean offering list — no hover arrows or
   clickable feel.
═══════════════════════════════════════════════ */

#services {
  background: var(--warm-white);
  padding: var(--section-v) var(--section-h);
}

/* Split header */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--parchment);
}
.services-header-left h2 {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.1;
  margin-top: 8px;
}
.services-header-right {
  font-family: var(--f-elegant);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.7;
  text-align: right;
  flex-shrink: 0;
}

/* List layout */
.services-list {
  list-style: none;
}

.service-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--parchment);
}

/* Gold dot accent on the left instead of number */
.service-num {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.service-body h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-body p {
  font-family: var(--f-elegant);
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
}

/* Tag badge — static, no hover state */
.service-tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 7px 12px;
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-header-right {
    text-align: left;
    max-width: 100%;
  }
  .service-tag {
    display: none;
  }
}
@media (max-width: 560px) {
  .service-row {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 28px 0;
  }
}
