.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 40px 60px;
  background: #f2f7f5;
}

.filter-chip {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a2820;
  background: transparent;
  border: 1px solid #90c4b4;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip:hover {
  border-color: #4a8070;
  color: #4a8070;
}

.filter-chip.active {
  background: #4a8070;
  color: #fdfbf8;
  border-color: #4a8070;
}

.filter-chip.active:hover {
  opacity: 0.9;
  color: #fdfbf8;
}

.gallery-section {
  padding: 0 40px 120px;
  background: #f2f7f5;
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item[data-size="sm"] {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item[data-size="tall"] {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item[data-size="wide"] {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item[data-size="lg"] {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item-img-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.28s ease;
}

.gallery-item:hover .gallery-item-img-wrap {
  transform: scale(1.02);
}

.gallery-item-img-wrap.contain-bg {
  background-color: #1a2820;
}

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

.gallery-item img.orientation-fix-rotate-grid {
  transform: rotate(90deg) scale(1.9);
  transform-origin: center center;
}

.gallery-item img.contain {
  object-fit: contain;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 40, 32, 0.92), rgba(26, 40, 32, 0));
  padding: 40px 20px 18px;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  text-align: left;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption-venue {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: #fdfbf8;
  font-style: italic;
  margin-bottom: 4px;
}

.gallery-caption-city {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.75);
}

.empty-state {
  padding: 60px 40px 120px;
  text-align: center;
  display: none;
}

.empty-state.visible {
  display: block;
}

.empty-state p {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: #2a3c34;
  margin-top: 16px;
}

footer {
  background: #1a2820;
  padding: 80px 40px 60px;
  text-align: center;
}

.footer-label {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c89050;
  margin-bottom: 16px;
}

footer h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: #fdfbf8;
  margin-bottom: 8px;
}

footer h2 em {
  font-style: italic;
}

.footer-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fdfbf8;
  background: #4a8070;
  padding: 14px 36px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-cta:hover {
  opacity: 0.85;
}

.footer-bottom {
  margin-top: 60px;
}

.footer-bottom img {
  height: 64px;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(253, 251, 248, 0.4);
  letter-spacing: 0.05em;
}

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 26, 17, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}

#lightbox.open {
  display: flex;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(253, 251, 248, 0.3);
  background: transparent;
  color: #fdfbf8;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-close:hover {
  background: rgba(253, 251, 248, 0.1);
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(253, 251, 248, 0.3);
  background: transparent;
  color: #fdfbf8;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(253, 251, 248, 0.1);
}

.lb-prev {
  left: 24px;
}

.lb-next {
  right: 24px;
}

.lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  max-height: 100%;
}

.lb-img-wrap {
  width: 100%;
  max-width: 900px;
  height: min(70vh, 600px);
  margin-bottom: 24px;
}

.lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lb-img-wrap img.orientation-fix-rotate {
  transform: rotate(90deg) scale(0.667);
  transform-origin: center center;
}

.lb-caption {
  text-align: center;
}

.lb-venue {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: #fdfbf8;
  margin-bottom: 8px;
}

.lb-city {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 251, 248, 0.7);
  margin-bottom: 4px;
}

.lb-counter {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c89050;
  margin-top: 12px;
}
