/* ===================== HERO ===================== */
.ph-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--jg-dark);
}

/* single pre-composited collage image — replaces the old 44-img mosaic
   so the hero costs one request (assets/gallery_photos/photos-collage.jpg) */
.ph-hero__collage {
  position: absolute;
  inset: 0;
  background: url('/assets/gallery_photos/photos-collage.jpg') center / cover no-repeat;
}

.ph-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 23, 25, 0.62);
}

.ph-hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 24px;
}

.ph-hero__h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 1.0;
  color: var(--jg-light);
  margin: 0;
}

/* ===================== GALLERY ===================== */
/* collage blocks + lightbox live in photos-box.css; js/photos.js builds them */
.ph-gallery {
  background: var(--jg-dark);
  padding: var(--spacer-lg) 0 0;
}

.ph-gallery__wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px);
}

