#gallery { padding: 80px 6vw; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-thumb { width: 100%; padding-bottom: 72%; position: relative; overflow: hidden; }
.gallery-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; filter: brightness(0.82) saturate(0.85); }
.gallery-item:hover .gallery-thumb img { transform: scale(1.07); filter: brightness(0.9) saturate(1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,12,11,0.88) 0%, rgba(13,12,11,0.1) 55%); opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 24px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px 14px; background: linear-gradient(to top, rgba(13,12,11,0.8) 0%, transparent 100%); }
.gallery-label-cat { font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 0.22em; color: #C8A97E88; text-transform: uppercase; margin-bottom: 3px; }
.gallery-label-name { font-size: 14px; font-weight: 300; color: #D0C0A8; }