/* ── PAGE-SPECIFIC: SERVICES ── */
.svc-wrap { padding: 100px 50px; max-width: 1300px; margin: 0 auto; }

.svc-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.svc-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.svc-item.rev .svc-img { order: 2; }
.svc-item.rev .svc-body { order: 1; }

.svc-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.svc-img-wrap.img-ph { background: linear-gradient(135deg, #1a1410 0%, #0a0a0a 100%); }
.svc-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-playfair-display), serif;
  font-size: 12px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  background: rgba(7, 7, 7, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-dim);
  padding: 5px 13px;
  border-radius: 100px;
  z-index: 2;
}

.svc-cat {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-cat::before {
  content: "";
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.svc-body h2 {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.svc-body p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-mute);
  margin-bottom: 28px;
  text-wrap: pretty;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

/* ── DECORATIVE SLIDE ART ── */
.svc-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .svc-wrap { padding: 80px 32px; }
  .svc-item { gap: 48px; padding: 64px 0; }
}
@media (max-width: 768px) {
  .svc-wrap { padding: 60px 20px; }
  .svc-item {
    grid-template-columns: 1fr;
    gap: 32px; padding: 52px 0;
  }
  .svc-item.rev .svc-img,
  .svc-item.rev .svc-body { order: unset; }
}
