/* ===== services.css ===== */

/* ===== services.css ===== */

/* ============================================================
   SERVICES.CSS — Секция услуг (#services)
   ============================================================ */

#services {
  background: var(--cream);
  color: var(--ink);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

/* Декоративная фигура на фоне */
#services::before {
  content: '♟';
  position: absolute;
  right: -20px;
  bottom: -60px;
  font-size: 400px;
  color: rgba(201, 169, 110, .08);
  line-height: 1;
  pointer-events: none;
  font-family: serif;
}

/* ── Вводный текст раздела ── */
.services-intro {
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 380px;
  margin-left: auto;
}

/* ── Строка услуги ── */
.service-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 36px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  transition: background .25s, padding-left .3s;
  border-radius: 2px;
}

.service-row:hover {
  background: rgba(255, 255, 255, .85);
  padding-left: 44px;
  border-left: 3px solid var(--gold);
}

.service-row:last-child {
  border-bottom: none;
}

/* Порядковый номер */
.s-num {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 30px;
  color: var(--gold);
  padding-top: 6px;
  font-weight: 300;
}

/* Название услуги */
.s-name {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -.5px;
}

/* Описание */
.s-desc {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 18px;
}

/* Теги включённых опций */
.s-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.s-feat {
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(0, 0, 0, .12);
  padding: 5px 13px;
  background: rgba(255, 255, 255, .5);
}

/* ── Блок цены ── */
.s-price {
  text-align: right;
  flex-shrink: 0;
  padding-top: 6px;
}

.s-price-num {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.s-price-unit {
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}