.svc-page .studio-hero-copy h1 {
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  max-width: 12ch;
}
.svc-page .studio-hero-copy h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}
.svc-zoom {
  overflow: hidden;
  background: var(--beige);
  clip-path: inset(4% 4% 4% 4%);
  animation: svc-reveal 0.8s ease both;
}
.svc-zoom img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.svc-zoom:hover img {
  transform: scale(1.03);
}
@keyframes svc-reveal {
  from {
    clip-path: inset(12% 12% 12% 12%);
    opacity: 0.4;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.svc-full {
  overflow: hidden;
  background: var(--beige);
}
.svc-full img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.svc-duo {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 700px) {
  .svc-duo {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.svc-duo .svc-zoom img {
  aspect-ratio: 4 / 5;
  height: 100%;
}
.svc-expect {
  display: grid;
  gap: 0;
}
.svc-expect article {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.svc-expect article:last-child {
  border-bottom: 1px solid var(--line);
}
.svc-locs {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .svc-locs {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.svc-locs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.svc-related {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .svc-related {
    grid-template-columns: repeat(4, 1fr);
  }
}
.svc-related a {
  color: inherit;
  text-decoration: none;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: block;
}
.svc-related h3 {
  font-size: 1.4rem;
  margin: 0.35rem 0 0.5rem;
}
@media (max-width: 700px) {
  .svc-duo {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.65rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .svc-duo .svc-zoom {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}
.svc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 18, 16, 0.88);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.svc-lightbox[hidden] {
  display: none;
}
.svc-lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
}
.svc-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: #f7f4ee;
  border: 1px solid rgba(247, 244, 238, 0.35);
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .svc-zoom img {
    transition: none;
  }
  .svc-zoom:hover img {
    transform: none;
  }
  .svc-zoom {
    animation: none;
    clip-path: none;
  }
}
