/* Real-image layout refinements. Images retain their natural proportions instead of being forced into placeholder crops. */
.real-photo-card {
  margin: 0;
  border: 1px solid var(--line);
  background: #070707;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.real-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}
.real-photo-card figcaption {
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(210,162,58,.28);
  background: linear-gradient(180deg, rgba(8,8,8,.92), #050505);
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}
.real-photo-card figcaption strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-family: Marcellus, Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
}

/* Hero photographs: natural ratio, contained within the existing two-column hero. */
.page-hero .real-photo-card {
  align-self: center;
}
.page-hero .real-photo-card img {
  max-height: 620px;
  object-fit: contain;
  background: #050505;
}

/* About page photographic stack. */
.about-photo-stack {
  display: grid;
  gap: 18px;
}
.about-photo-stack .real-photo-card:first-child img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 26%;
}
.about-photo-stack .real-photo-card:last-child img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
}

/* Occasions: keep the corporate hero substantial without creating a very tall page header. */
.occasions-hero-refined .real-photo-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.occasions-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.occasions-photo-strip .real-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.occasions-photo-strip .real-photo-card:nth-child(2) img,
.occasions-photo-strip .real-photo-card:nth-child(3) img {
  object-position: center 26%;
}

/* To Hell or Verona supplied images are landscape/square, so the page now uses those shapes instead of tall placeholder slots. */
.toh-hero .real-photo-card img {
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}
.toh-section-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.toh-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.toh-photo-strip .real-photo-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Gallery: masonry-style columns let portrait, square and landscape photographs keep their natural ratios. */
.real-gallery-grid {
  columns: 3;
  column-gap: 18px;
}
.real-gallery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  border: 1px solid rgba(210,162,58,.38);
  background: #070707;
  box-shadow: 0 16px 42px rgba(0,0,0,.34);
  overflow: hidden;
  vertical-align: top;
}
.real-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}
.real-gallery-card figcaption {
  padding: 13px 15px 15px;
  border-top: 1px solid rgba(210,162,58,.22);
  background: #080706;
}
.real-gallery-card figcaption span {
  display: block;
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.real-gallery-card figcaption strong {
  color: var(--cream);
  font-family: Marcellus, Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.25;
}
.gallery-feature-photo {
  margin-bottom: 20px;
}
.gallery-feature-photo img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}
.gallery-thov-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: 28px;
  align-items: start;
}
.gallery-thov-main img {
  width: 100%;
  height: auto;
}
.gallery-thov-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}
.gallery-thov-mini .real-photo-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 900px) {
  .real-gallery-grid { columns: 2; }
  .occasions-photo-strip,
  .toh-photo-strip { grid-template-columns: 1fr 1fr; }
  .gallery-thov-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .real-gallery-grid { columns: 1; }
  .occasions-photo-strip,
  .toh-photo-strip { grid-template-columns: 1fr; }
  .page-hero .real-photo-card img { max-height: none; }
  .real-photo-card figcaption { padding: 12px 14px 14px; }
}
