.gallery-grid {
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  break-inside: avoid;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  filter: saturate(.84);
  transition: transform .55s ease, filter .35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.018);
  filter: saturate(1);
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 9, 8, .97);
  color: white;
}

.lightbox.open { display: flex; }
.lightbox figure {
  margin: 0;
  width: calc(100% - 210px);
  height: calc(100% - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lightbox figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lightbox figcaption {
  position: absolute;
  bottom: -24px;
  font-size: .72rem;
  letter-spacing: .14em;
}
.lightbox button {
  position: absolute;
  z-index: 2;
  border: 0;
  background: none;
  color: white;
  font: 500 .72rem var(--sans);
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  padding: 18px;
}
.lightbox-close { right: 20px; top: 14px; }
.lightbox-prev { left: 16px; top: 50%; font-size: 1.7rem !important; }
.lightbox-next { right: 16px; top: 50%; font-size: 1.7rem !important; }
body.lightbox-open { overflow: hidden; }

.about {
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  align-items: center;
  min-height: 0;
  padding: 8vw 7vw;
  gap: 7vw;
}

.about-image {
  align-self: center;
}

.about-image img {
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-position: 48% center;
  filter: none;
}

.about-copy {
  padding: 0;
  max-width: 760px;
}

.about-copy > p {
  max-width: 680px;
}

@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}

@media (max-width: 760px) {
  .stories { padding-left: 12px; padding-right: 12px; }
  .section-heading { margin-left: 8px; margin-right: 8px; }
  .gallery-grid { columns: 2; column-gap: 7px; }
  .gallery-item { margin-bottom: 7px; }
  .lightbox figure { width: calc(100% - 24px); height: calc(100% - 120px); }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 10px; }
  .lightbox-prev { left: 22px; }
  .lightbox-next { right: 22px; }
  .about { display: block; padding: 90px 20px; }
  .about-image { width: 78%; margin: 0 0 70px auto; }
  .about-copy { padding: 0; }
}
