/* Service menu — horizontal cards + detail page */

.services-page-head {
  margin-bottom: 28px;
}

.services-page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.services-page-head .eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.services-page-head .lead {
  margin-top: 10px;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 52ch;
}

/* Horizontal service cards */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}

.service-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(20, 18, 16, 0.08);
}

.service-row__thumb {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(155deg, #E8E2DA 0%, #D8D0C6 45%, #C8BDB0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface);
  box-shadow: 0 2px 12px rgba(20, 18, 16, 0.08);
}

.service-row__thumb span {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(20, 18, 16, 0.35);
  padding: 4px;
  line-height: 1.3;
}

.service-row__body {
  min-width: 0;
}

.service-row__body h2,
.service-row__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 6px;
}

.service-row__body p {
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-row__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  text-align: right;
}

.service-row__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  white-space: nowrap;
}

.service-row__price small {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-faint);
}

.service-row__time {
  font-size: 0.75rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.service-row__arrow {
  font-size: 1rem;
  color: var(--text-faint);
  margin-left: 8px;
}

/* Detail page */
.service-detail-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.service-detail-hero__thumb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(155deg, #E8E2DA 0%, #D8D0C6 45%, #C8BDB0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(20, 18, 16, 0.1);
}

.service-detail-hero__thumb span {
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20, 18, 16, 0.35);
  text-align: center;
  padding: 8px;
}

.service-detail-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 8px;
}

.service-detail-hero .lead {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 52ch;
}

.service-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.8125rem;
}

.service-detail-meta strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-tier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-tier {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 4px);
}

.service-tier h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.service-tier-note {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.service-tier-side {
  text-align: right;
}

.service-tier-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.service-tier-time {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 2px;
}

.service-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-soft);
  text-decoration: none;
  margin-bottom: 20px;
}

.service-back:hover { color: var(--text); }

@media (max-width: 640px) {
  .service-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .service-row__meta {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .service-row__arrow { display: none; }

  .service-detail-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-detail-hero__thumb {
    margin: 0 auto;
  }

  .service-detail-meta,
  .service-detail-actions {
    justify-content: center;
  }

  .service-tier {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .service-tier-side {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}
