.gallery-hero {
  background: linear-gradient(135deg, #fff 0%, #f7f4ef 100%);
  border-bottom: 1px solid #e7e0d7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  margin: 0;
  border: 1px solid #e7e0d7;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(31,41,51,.08);
}

.gallery-image-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0,0,0,.62), rgba(0,0,0,.18)),
    radial-gradient(circle at 25% 18%, rgba(154,106,47,.45), transparent 30%),
    linear-gradient(135deg, #17130f, #3a3024);
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 24px;
}

.gallery-image-placeholder span {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(0,0,0,.22);
}

.gallery-card figcaption {
  padding: 22px;
}

.gallery-card h3 {
  margin: 0 0 10px;
}

.gallery-card p {
  color: #5f6b7a;
}

.gallery-category {
  margin: 0 0 8px;
  color: #9a6a2f !important;
  font-size: .82rem !important;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
