/* AURA — price tables & schedule service cards */
.schedule-services {
  padding-block: clamp(2rem, 5vw, 4rem);
  background: transparent;
}

.schedule-services__title {
  font-family: 'Jost', var(--font-sans);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  color: var(--aura-cream);
  margin: 0 0 var(--sp-6);
  letter-spacing: 0.04em;
}

.schedule-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-5);
}

.schedule-service-card {
  background: var(--aura-bg);
  border: 1px solid rgba(200, 169, 110, 0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  transition: border-color var(--duration) var(--ease);
}

.schedule-service-card:hover {
  border-color: rgba(200, 169, 110, 0.28);
}

.schedule-service-card__name {
  font-family: 'Jost', var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--aura-cream);
  margin: 0 0 var(--sp-2);
}

.schedule-service-card__desc {
  color: var(--aura-cream-dim);
  font-size: var(--text-sm);
  font-weight: 300;
  margin: 0 0 var(--sp-4);
}

.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  font-size: var(--text-sm);
  font-weight: 300;
}

.price-table th {
  text-align: left;
  padding: var(--sp-2) var(--sp-3);
  color: var(--aura-gold);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.625rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.price-table td {
  padding: var(--sp-2) var(--sp-3);
  color: var(--aura-cream-dim);
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}

.price-table td:first-child {
  color: var(--aura-cream);
}

.price-table td:last-child {
  color: var(--aura-gold-light);
}

.price-table__row--highlight td {
  color: var(--aura-gold-light);
}

@media (max-width: 600px) {
  .price-table th,
  .price-table td {
    padding: var(--sp-2);
    font-size: 0.8125rem;
  }
}
