.gallery{padding:70px 44px 0;}
.gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.gallery-photo{position:relative;display:block;overflow:hidden;border-radius:16px;background:var(--line);aspect-ratio:4/3;}
.gallery-photo img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .25s ease;}
.gallery-photo:hover img{transform:scale(1.035);}
.gallery-photo>span{position:absolute;inset:auto 12px 12px;display:flex;justify-content:space-between;align-items:center;color:white;font-size:13px;text-shadow:0 1px 5px #000;}
.gallery-photo>span>span{display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:#181b18b3;font-size:20px;}
.gallery-more{margin-top:24px;}
.gallery-more summary{display:flex;align-items:center;justify-content:center;gap:24px;width:fit-content;min-height:48px;margin:0 auto 24px;padding:12px 24px;border:1px solid var(--line);border-radius:30px;cursor:pointer;font-size:14px;font-weight:600;list-style:none;}
.gallery-more summary::-webkit-details-marker{display:none;}
.gallery-more summary:hover{background:var(--accent);}
.gallery-more summary:focus-visible{outline:3px solid #648000;outline-offset:5px;}
.gallery-more-icon{font-size:22px;line-height:1;transition:transform .2s;}
.gallery-more[open] .gallery-more-icon{transform:rotate(45deg);}
body:has(.photo-viewer[open]){overflow:hidden;}
.photo-viewer{position:fixed;inset:0;margin:auto;width:min(1120px,94vw);max-width:94vw;max-height:94dvh;padding:16px;border:1px solid #ffffff26;border-radius:20px;background:#181b18;color:white;}
.photo-viewer::backdrop{background:#090c09e8;}
.photo-viewer[open]{display:grid;grid-template-rows:auto minmax(0,1fr) auto;gap:12px;}
.viewer-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;}
.viewer-count{font-size:14px;padding-left:8px;}
.photo-viewer button{display:grid;place-items:center;width:48px;height:48px;border:1px solid #ffffff40;border-radius:50%;background:transparent;color:white;font-size:25px;cursor:pointer;}
.photo-viewer button:hover{background:var(--accent);color:var(--ink);}
.viewer-image{display:block;width:100%;height:min(65dvh,720px);object-fit:contain;}
.viewer-controls{display:flex;justify-content:center;gap:16px;}
@media(max-width:760px){.gallery{padding:45px 24px 0;}.gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}.gallery-photo{border-radius:12px;}.photo-viewer{padding:12px;}.viewer-image{height:60dvh;}}
@media(prefers-reduced-motion:reduce){.gallery-photo img,.gallery-more-icon{transition:none;}}
