/* ========================================
   Service Gallery — mini portfolio on service/room pages
   ======================================== */

.service-gallery {
  padding: var(--space-8) 0;
  position: relative;
  z-index: 2;
}

.service-gallery__heading {
  text-align: center;
  margin-bottom: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-gray-900);
}

@media (min-width: 768px) {
  .service-gallery__heading {
    font-size: var(--text-4xl);
  }
}

/* Grid: 2 cols mobile, 3 cols tablet+ */
.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .service-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* Gallery item */
.service-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.service-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

.service-gallery__item:hover .service-gallery__img {
  transform: scale(1.05);
}

/* "See all works" link */
.service-gallery__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: var(--space-6) auto 0;
  padding: 14px 36px;
  background: rgba(44, 36, 23, 0.06);
  border: 1px solid rgba(44, 36, 23, 0.10);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-700);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.service-gallery__more:hover {
  background: rgba(44, 36, 23, 0.10);
  transform: translateY(-1px);
  color: var(--color-gray-900);
}

.service-gallery__more svg {
  width: 18px;
  height: 18px;
}
