/* ══════════════════════════════════════════════════════════
   OUR SERVICES
══════════════════════════════════════════════════════════ */
.services-section {
  background: #F2E8D5;
  padding: 6rem 2.5rem;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

/* ── LEFT COLUMN ─────────────────────────────────────────── */
.services-left {
  flex: 0 0 54%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.services-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin-top: 0.5rem;
}

.services-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 0.5rem;
}

/* ── SERVICE GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1rem;
  margin-top: 1rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-label {
  font-size: 0.88rem;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  padding-top: 0.3rem;
}

/* ── RIGHT COLUMN ────────────────────────────────────────── */
.services-right {
  flex: 1;
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
}

.services-img-wrap {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #ddd;
}

.services-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.services-img-wrap:hover .services-img {
  transform: scale(1.04);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .services-left {
    flex: none;
    width: 100%;
  }

  .services-right {
    width: 100%;
  }

  .services-img-wrap {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
