/* ══════════════════════════════════════════════
   HERO PHOTO SHOWCASE (replaces inquiry card)
══════════════════════════════════════════════ */
.hero-photo-showcase {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeRight 0.8s 0.2s ease both;
  align-self: center;
  width: 100%;
}
.showcase-img-top,
.showcase-img-bottom {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(201,168,76,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  flex: 1;
}
.showcase-img-top img,
.showcase-img-bottom img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.showcase-img-top:hover img,
.showcase-img-bottom:hover img { transform: scale(1.04); }
.showcase-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,10,7,0.88));
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 10px 8px;
  text-align: center;
}
