/* Photographic depth: only the image travels; service copy stays in place. */
.projects.service-gallery > .project {
  overflow: clip;
  isolation: isolate;
  background-image: none;
  background-color: var(--brand-primary);
}
.service-gallery__image {
  position: absolute;
  inset: -8% 0;
  background-image: var(--project-image);
  background-size: cover;
  background-position: center;
}
.service-gallery > .project::after {
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, color-mix(in srgb, var(--brand-text) 65%, transparent));
}
.service-gallery .project-copy { z-index: 1; }
.service-gallery > .project:focus-visible {
  outline: 3px solid var(--brand-background);
  outline-offset: -6px;
}
@media (prefers-reduced-motion: reduce) {
  .service-gallery__image { transform: none !important; }
}
