/* ==========================================================================
   Shuvatara — Modern On-Site Services
   Scoped under `sh-service` so it never collides with the legacy theme CSS.
   ========================================================================== */

#services {
  background: #fff;
}

.sh-services__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.sh-services__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-gold, #d4af6a);
  margin-bottom: 14px;
}

.sh-services__eyebrow::before,
.sh-services__eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--sh-gold, #d4af6a);
}

.sh-services__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 14px;
}

.sh-services__lead {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: #5c6470;
  margin: 0;
}

.sh-service {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 20, 32, .07);
  box-shadow: 0 20px 40px -28px rgba(11, 20, 32, .28);
  transition: transform .3s ease, box-shadow .3s ease;
}

.sh-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -24px rgba(11, 20, 32, .35);
}

.sh-service__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sh-service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.sh-service:hover .sh-service__media img { transform: scale(1.08); }

.sh-service__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 24px 28px;
}

.sh-service__title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 10px;
}

.sh-service__desc {
  font-family: 'Lato', sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: #7c8492;
}

.sh-service__desc p:last-child { margin-bottom: 0; }
