.gallery-section { padding: 5rem 0; }
.gallery-category { margin-bottom: 4rem; }
.gallery-category-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}
.gallery-category-title span {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gal-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-dark);
}
.gal-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gal-item.tall img { aspect-ratio: 3/4; }
.gal-item:hover img { transform: scale(1.05); }
.gal-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,46,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-caption { opacity: 1; }
.gal-caption p {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .gallery-grid-3, .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid-3, .gallery-grid-4 { grid-template-columns: 1fr; }
}
