/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services-sec {
  padding: 5rem 6vw;
  background: #FAF6F0;
  padding-bottom: 0;
}

.sec-tag2 {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .7rem;
}
.sec-tag2::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--bark-mid);
  border-radius: 2px;
}

.sec-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}
.sec-h2 em {
  font-style: italic;
  color: var(--bark);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.svc {
  border-radius: 22px;
  padding: 1.8rem;
  transition: transform .25s, box-shadow .25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
}
.svc:nth-child(1) { background: linear-gradient(145deg, #ffd0e4, #ffb8d0); }
.svc:nth-child(2) { background: linear-gradient(145deg, #c8eedd, #a8e2c8); }
.svc:nth-child(3) { background: linear-gradient(145deg, #ffd8b0, #ffbe80); }
.svc:nth-child(4) { background: linear-gradient(145deg, #cce4ff, #b0d4ff); }
.svc:nth-child(5) { background: linear-gradient(145deg, #e0d4ff, #ccc0f0); }
.svc:nth-child(6) { background: linear-gradient(145deg, #f0f0b0, #e4e490); }

/* Цвет иконки совпадает с акцентом карточки */
.svc:nth-child(1) .svc-icon svg { color: #b04060; }
.svc:nth-child(2) .svc-icon svg { color: #2a7a4a; }
.svc:nth-child(3) .svc-icon svg { color: #a06820; }
.svc:nth-child(4) .svc-icon svg { color: #2a5090; }
.svc:nth-child(5) .svc-icon svg { color: var(--bark); }
.svc:nth-child(6) .svc-icon svg { color: #1a7050; }

.svc-icon {
  display: block;
  margin-bottom: .9rem;
  width: 32px;
  height: 32px;
}
.svc-icon svg {
  width: 100%;
  height: 100%;
}
.svc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}
.svc p {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.svc-price {
  margin-top: 1rem;
  font-weight: 700;
  font-size: .88rem;
  color: rgba(0, 0, 0, .5);
}
.svc-note-inline {
  font-size: .74rem;
  color: var(--text-soft);
  margin-top: .4rem;
  line-height: 1.4;
}
.svc-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-soft);
  margin-top: 1.5rem;
}
