 .gallery-section {
   position: relative;
   width: 100%;
   padding: var(--spacing-2xl, 4rem) 1rem;
 }

 .gallery-grid {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 1rem;
 }

 .gallery-item {
   border-radius: 16px;
  overflow: hidden;
   display: block;
 }

 .gallery-item img {
   width: 100%;
  height: auto;
  object-fit: contain; /* show full image, no cropping */
   display: block;
 }

.gallery-more-btn {
  margin: 1.5rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.85);
  color: #2B2217;
  font-size: 0.95rem;
  cursor: pointer;
}

.gallery-more-btn:hover {
  background: #fff;
}

