.kicker{
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:0.75rem;
  color:var(--accent-strong);
  margin:0 0 8px;
  font-weight:700;
}

.photos-hero-panel{
  margin-bottom:24px;
}

.photos-filter-row{
  align-items:flex-start;
  flex-wrap:wrap;
}

.range-filter-group{
  flex:1 1 320px;
}

.filter-label{
  font-weight:700;
  font-size:0.85rem;
  margin-bottom:8px;
  display:block;
}

.range-filter-select{
  width:100%;
  min-height:42px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:var(--panel);
  color:var(--ink);
  padding:10px 12px;
  font-size:0.9rem;
}

.range-filter-select option{
  color:var(--ink);
  background:var(--panel);
}

.range-filter-help{
  margin:8px 0 0;
  font-size:0.75rem;
  color:var(--muted);
}

.photos-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:0 0 20px;
}

.pagination-button{
  background:var(--panel);
  color:var(--ink);
  border:1px solid var(--stroke);
  border-radius:8px;
  padding:8px 14px;
  font-weight:600;
  cursor:pointer;
}

.pagination-button:disabled{
  opacity:0.5;
  cursor:not-allowed;
}

.pagination-status{
  color:var(--muted);
}

.photos-container{
  display:flex;
  flex-direction:column;
  gap:32px;
}

.range-section{
  padding:18px 0;
  border-top:1px solid var(--stroke);
}

.range-heading{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:16px;
}

.range-heading h2{
  margin:0;
  font-size:clamp(22px, 4vw, 30px);
  color:var(--accent);
}

.range-heading hr{
  width:100%;
  border:0;
  border-top:2px solid var(--accent);
  margin:0;
}

.peak-section{
  margin-bottom:24px;
}

.peak-heading{
  margin:0 0 12px;
  font-size:1.05rem;
  color:var(--accent-strong);
  text-transform:uppercase;
  letter-spacing:0.08em;
}

.photo-grid{
  display:grid;
  gap:8px;
  grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
}

.photo-figure{
  margin:0;
  background:var(--card);
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(255, 255, 255, 0.08);
  cursor:zoom-in;
}

.photo-figure img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.photo-lightbox{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999;
}

.photo-lightbox[hidden]{
  display:none;
}

.photo-lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(6, 8, 16, 0.85);
}

.photo-lightbox__content{
  position:relative;
  max-width:min(1100px, 92vw);
  max-height:90vh;
  background:var(--card);
  border-radius:16px;
  padding:16px;
  border:1px solid var(--stroke);
  box-shadow:0 20px 60px rgba(0, 0, 0, 0.45);
  display:flex;
  flex-direction:column;
  gap:12px;
}

.photo-lightbox__close{
  position:absolute;
  top:8px;
  right:10px;
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid var(--stroke);
  background:var(--panel);
  color:var(--ink);
  font-size:1.4rem;
  line-height:1;
  cursor:pointer;
}

.photo-lightbox__figure{
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.photo-lightbox__figure img{
  max-width:100%;
  max-height:70vh;
  object-fit:contain;
  border-radius:12px;
  background:rgba(0, 0, 0, 0.25);
}

.photo-lightbox__figure figcaption{
  color:var(--muted);
  font-size:0.9rem;
  line-height:1.4;
}

.lightbox-open{
  overflow:hidden;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

@media(max-width:640px){
  .photos-pagination{
    flex-direction:column;
  }

  .range-filter-group{
    width:100%;
  }
}
