/* ==========================================================================
   Services page styles
   Depends on: tokens.css, base.css, layout.css, components.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Services index layout
   -------------------------------------------------------------------------- */
.services-page {
  background-color: var(--ivory);
  padding-bottom: var(--space-3xl);
}

/* --------------------------------------------------------------------------
   Category section
   -------------------------------------------------------------------------- */
.category-section {
  padding-block: var(--space-2xl) var(--space-3xl);
  border-bottom: 1px solid var(--champagne);
}

.category-section:last-child {
  border-bottom: none;
}

.category-section__header {
  margin-bottom: var(--space-2xl);
}

.category-eyebrow {
  color: var(--gold-accent);
  margin-bottom: var(--space-sm);
}

.category-heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--charcoal);
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-sm);
}

/* Decorative gradient underline */
.category-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-gold), transparent);
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Subcategory group
   -------------------------------------------------------------------------- */
.subcategory-group {
  margin-top: var(--space-2xl);
}

.subcategory-group + .subcategory-group {
  margin-top: var(--space-3xl);
}

.subcategory-heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal-muted);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--champagne);
}
