/** Homepage photoshoot gallery — banner + seamless square grid. */
.photoshoot-gallery {
  --photoshoot-banner: #f5eaeb;
  --photoshoot-banner-text: #3a3434;
  background: var(--color-bg);
}

.photoshoot-gallery__banner {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.25rem) var(--space-5);
  text-align: center;
  background:
    radial-gradient(ellipse 85% 120% at 50% -20%, rgba(31, 163, 220, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #faf0f2 0%, var(--photoshoot-banner) 45%, #f3e4e7 100%);
  overflow: hidden;
}

.photoshoot-gallery__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(58, 52, 52, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
  pointer-events: none;
}

.photoshoot-gallery__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.photoshoot-gallery__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  margin: 0;
  max-width: 16ch;
  margin-inline: auto;
  line-height: 1.05;
}

.photoshoot-gallery__title-main {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 1.05rem + 1.1vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--photoshoot-banner-text);
  opacity: 0.88;
}

.photoshoot-gallery__title-accent {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 1.55rem + 2.4vw, 3.35rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--photoshoot-banner-text);
  background: linear-gradient(120deg, #2d2828 0%, var(--color-primary) 52%, #5bc4f0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.photoshoot-gallery__lead {
  position: relative;
  z-index: 1;
  max-width: 38ch;
  margin: var(--space-4) auto 0;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: rgba(58, 52, 52, 0.72);
}

.photoshoot-gallery__ornament {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.photoshoot-gallery__ornament-line {
  width: clamp(3rem, 12vw, 5.5rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(31, 163, 220, 0.45) 50%,
    transparent 100%
  );
}

.photoshoot-gallery__ornament-icon {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(31, 163, 220, 0.25);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 24px rgba(31, 163, 220, 0.12);
}

.photoshoot-gallery__ornament-icon .icon {
  opacity: 0.9;
}

.photoshoot-gallery__featured-wrap {
  padding: 0 var(--space-5) clamp(1rem, 3vw, 1.75rem);
  background: var(--photoshoot-banner);
}

.photoshoot-gallery__featured {
  position: relative;
  display: block;
  max-width: 72rem;
  margin: 0 auto;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(58, 52, 52, 0.12);
}

.photoshoot-gallery__featured-img {
  width: 100%;
  height: auto;
  max-height: min(52vh, 520px);
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.photoshoot-gallery__featured:hover .photoshoot-gallery__featured-img,
.photoshoot-gallery__featured:focus-visible .photoshoot-gallery__featured-img {
  transform: scale(1.02);
}

.photoshoot-gallery__featured-label {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--photoshoot-banner-text);
}

.photoshoot-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .photoshoot-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .photoshoot-gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.photoshoot-gallery__cell {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-section);
}

.photoshoot-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.photoshoot-gallery__cell:hover .photoshoot-gallery__img,
.photoshoot-gallery__cell:focus-visible .photoshoot-gallery__img {
  transform: scale(1.05);
}

.photoshoot-gallery__cell:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
  z-index: 1;
}

.photoshoot-gallery__footer {
  display: flex;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--space-5);
  background: var(--photoshoot-banner);
}

.photoshoot-gallery__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--photoshoot-banner-text);
  transition:
    color var(--transition-fast),
    gap var(--transition-fast);
}

.photoshoot-gallery__more:hover {
  color: var(--color-primary);
  gap: var(--space-3);
}

.has-animations .photoshoot-gallery__banner,
.has-animations .photoshoot-gallery__grid {
  opacity: 1;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.has-animations .photoshoot-gallery.is-in-view .photoshoot-gallery__banner,
.has-animations .photoshoot-gallery.is-in-view .photoshoot-gallery__grid {
  opacity: 1;
  transform: none;
}

.has-animations .photoshoot-gallery.is-in-view .photoshoot-gallery__grid {
  transition-delay: 0.08s;
}
