/* Gallery hero — pinned studio wall (gallery.html only) */

.gallery-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 5vw 60px;
  z-index: 1;
  background-image:
    linear-gradient(#162436 1px, transparent 1px),
    linear-gradient(90deg, #162436 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #00d4ff;
  z-index: 10;
}

.gallery-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 100% at 18% 50%, rgba(8,14,28,0.92) 0%, transparent 100%),
    radial-gradient(ellipse 30% 80% at 0% 50%, rgba(8,14,28,1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 380px;
  flex-shrink: 0;
}

.gallery-hero .hero-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 12px;
}

.gallery-hero .hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.88;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  color: inherit;
}

.gallery-hero .hero-title .line-solid {
  color: #e8edf5;
  display: block;
}

.gallery-hero .hero-title .line-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px #2e4560;
  display: block;
  transition: -webkit-text-stroke-color 0.3s;
}

.gallery-hero .hero-line {
  width: 48px;
  height: 2px;
  background: #00d4ff;
  margin-bottom: 20px;
}

.gallery-hero .hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #7a96b5;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
}

.hero-count {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 8px;
  padding: 10px 18px;
}

.hero-count .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #00d4ff;
  line-height: 1;
}

.hero-count .label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a96b5;
}

.hero-wall {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pin-card {
  position: absolute;
  background: #0d1525;
  border: 1.5px solid #1e3448;
  border-radius: 4px;
  overflow: visible;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.6),
    0 1px 3px rgba(0,0,0,0.4);
  opacity: 0;
  animation: cardDrop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pin-card:nth-child(1) { animation-delay: 0.1s; }
.pin-card:nth-child(2) { animation-delay: 0.22s; }
.pin-card:nth-child(3) { animation-delay: 0.34s; }
.pin-card:nth-child(4) { animation-delay: 0.46s; }

@keyframes cardDrop {
  from { opacity: 0; transform: var(--card-rotation) translateY(-12px); }
  to   { opacity: 1; transform: var(--card-rotation); }
}

.pin-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px 2px 0 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.pin-card .ph {
  width: 100%;
  height: 100%;
  background: #0f1e33;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px 2px 0 0;
}

.pin-card .ph svg { opacity: 0.15; }

.pin-card .caption {
  padding: 6px 10px 8px;
  background: #0d1525;
}

.pin-card .caption-title {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #e8edf5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pin-card .caption-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  color: #2e4560;
  letter-spacing: 0.06em;
}

.pin-dot {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 8px rgba(0,212,255,0.18);
  z-index: 2;
}

.pin-card[data-slot="1"] {
  --card-rotation: rotate(-5deg);
  top: 8%;
  left: 34%;
  width: 180px;
  height: 154px;
}
.pin-card[data-slot="1"] .ph,
.pin-card[data-slot="1"] img { height: 120px; }

.pin-card[data-slot="2"] {
  --card-rotation: rotate(4.5deg);
  top: 5%;
  left: 58%;
  width: 200px;
  height: 172px;
}
.pin-card[data-slot="2"] .ph,
.pin-card[data-slot="2"] img { height: 138px; }

.pin-card[data-slot="3"] {
  --card-rotation: rotate(-2.5deg);
  top: 50%;
  left: 44%;
  width: 170px;
  height: 148px;
}
.pin-card[data-slot="3"] .ph,
.pin-card[data-slot="3"] img { height: 114px; }

.pin-card[data-slot="4"] {
  --card-rotation: rotate(6deg);
  top: 44%;
  left: 66%;
  width: 190px;
  height: 162px;
}
.pin-card[data-slot="4"] .ph,
.pin-card[data-slot="4"] img { height: 128px; }

@media (max-width: 768px) {
  .gallery-hero {
    min-height: 420px;
    padding: 70px 20px 40px;
    align-items: flex-end;
  }

  .gallery-hero::after {
    background:
      linear-gradient(to top, rgba(8,14,28,0.97) 0%, rgba(8,14,28,0.7) 40%, transparent 70%),
      linear-gradient(to right, rgba(8,14,28,0.8) 0%, transparent 50%);
  }

  .hero-copy { max-width: 100%; }
  .gallery-hero .hero-title { font-size: clamp(58px, 18vw, 80px); }
  .gallery-hero .hero-sub { display: none; }

  .pin-card[data-slot="1"] {
    top: 4%; left: 28%; width: 120px; height: 108px;
  }
  .pin-card[data-slot="1"] .ph,
  .pin-card[data-slot="1"] img { height: 76px; }

  .pin-card[data-slot="2"] {
    top: 2%; left: 56%; width: 130px; height: 114px;
  }
  .pin-card[data-slot="2"] .ph,
  .pin-card[data-slot="2"] img { height: 82px; }

  .pin-card[data-slot="3"] {
    top: 42%; left: 34%; width: 114px; height: 102px;
  }
  .pin-card[data-slot="3"] .ph,
  .pin-card[data-slot="3"] img { height: 70px; }

  .pin-card[data-slot="4"] {
    top: 38%; left: 62%; width: 120px; height: 106px;
  }
  .pin-card[data-slot="4"] .ph,
  .pin-card[data-slot="4"] img { height: 74px; }
}

.hero-wall-empty {
  display: none;
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: #2e4560;
  font-family: 'Barlow', sans-serif;
}
.hero-wall-empty.visible { display: block; }
.hero-wall-empty p { font-size: 12px; line-height: 1.6; }

@media (max-width: 500px) {
  .gallery-hero { padding: 120px 4vw 40px; }
}
