.gallery {
  background: #fffaf2;
}

.gallery-grid {
  max-width: 1000px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,.12);
}

.gallery-grid img:first-child {
  height: 740px;
  grid-row: span 2;
}

.gallery-grid img {
  cursor: pointer;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(.92);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,12,8,.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 30px;
  color: white;
  font-size: 42px;
  cursor: pointer;
}
