.gallery-tabs { background: var(--navy-mid); padding: 24px 5%; border-bottom: 1px solid var(--border); display: flex; gap: 4px; flex-wrap: wrap; }
.gallery-tab { font-family: 'Cinzel', serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 24px; border: 1px solid var(--border); color: var(--text-muted); cursor: pointer; transition: all 0.3s; }
.gallery-tab:hover, .gallery-tab.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* MASONRY GRID */
.gallery-section { background: var(--navy); }
.gallery-grid { columns: 3; gap: 4px; column-gap: 4px; }
.gallery-item { break-inside: avoid; margin-bottom: 4px; position: relative; overflow: hidden; cursor: pointer; background: var(--navy-light); display: block; }
.gallery-item-inner { position: relative; overflow: hidden; }
.gallery-placeholder { width: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy-light), #0d1828); color: var(--gold); font-size: 60px; opacity: 0.12; transition: transform 0.5s; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-tall { height: 360px; }
.gallery-wide { height: 240px; }
.gallery-square { height: 280px; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,30,0.9) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.gallery-overlay-sub { font-size: 11px; color: var(--text-muted); }
.gallery-overlay-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay-icon { opacity: 1; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 800px; width: 100%; position: relative; }
.lightbox-img { width: 100%; height: 480px; background: var(--navy-light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 120px; color: var(--gold); opacity: 0.2; }
.lightbox-caption { padding: 20px 0; }
.lightbox-caption h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--white); margin-bottom: 4px; }
.lightbox-caption p { font-size: 13px; color: var(--text-muted); }
.lightbox-close { position: absolute; top: -20px; right: 0; width: 40px; height: 40px; background: var(--gold); border: none; cursor: pointer; font-size: 16px; color: var(--navy); font-weight: bold; transition: background 0.3s; }
.lightbox-close:hover { background: var(--gold-light); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(201,168,76,0.2); border: 1px solid var(--border); color: var(--gold); cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.lightbox-nav:hover { background: rgba(201,168,76,0.4); }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

/* VIDEO SECTION */
.videos-section { background: var(--navy-mid); }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.video-card { background: var(--navy-light); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.video-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.video-thumb { height: 180px; background: linear-gradient(135deg, var(--navy-light), #0c1828); display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.video-thumb-icon { font-size: 60px; opacity: 0.1; color: var(--gold); }
.video-play { position: absolute; width: 56px; height: 56px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; transition: background 0.3s; }
.video-card:hover .video-play { background: rgba(201,168,76,0.15); }
.video-duration { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.8); font-family: 'Cinzel', serif; font-size: 10px; color: var(--gold); padding: 3px 8px; }
.video-info { padding: 20px 22px 24px; }
.video-category { font-family: 'Cinzel', serif; font-size: 8px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.video-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.25; }

@media(max-width:900px){ .gallery-grid { columns: 2; } .videos-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .gallery-grid { columns: 1; } .videos-grid { grid-template-columns: 1fr; } .lightbox-prev, .lightbox-next { display: none; } }