.gallery-section { background:#0a0f08; }
.gallery-wrap { max-width:1180px; margin:auto; text-align:center; }
.gallery { margin-top:40px; display:grid; grid-template-columns:1.2fr .8fr .8fr; grid-template-rows:270px 270px; gap:16px; }
.gallery-item { min-height:220px; background:var(--green) center/cover no-repeat; border:1px solid rgba(184,153,90,.18); cursor:pointer; transition:.2s ease; }
.gallery-item:hover { transform:translateY(-2px); border-color:rgba(212,189,124,.55); }
.gallery-item.large { grid-row:span 2; }
.lightbox { position:fixed; inset:0; z-index:999; display:none; align-items:center; justify-content:center; background:rgba(0,0,0,.9); opacity:0; transition:opacity .2s ease; }
.lightbox.open { display:flex; opacity:1; }
.lightbox-image { max-width:92vw; max-height:86vh; border:1px solid rgba(184,153,90,.45); box-shadow:0 25px 70px rgba(0,0,0,.55); }
.lightbox-btn { position:absolute; z-index:1000; padding:10px 18px; background:rgba(23,32,17,.92); color:var(--gold-light); border:1px solid rgba(212,189,124,.45); font-size:34px; line-height:1; cursor:pointer; }
.lightbox-close { top:22px; right:26px; }
.lightbox-prev { left:24px; }
.lightbox-next { right:24px; }
.lightbox-counter { position:absolute; left:50%; bottom:24px; transform:translateX(-50%); padding:8px 12px; color:var(--paper-light); background:rgba(23,32,17,.78); border:1px solid rgba(212,189,124,.3); font-family:Arial,sans-serif; font-size:14px; letter-spacing:1px; }
