.section-heading .section-kicker,
.intro-copy .section-kicker,
.membership-copy .section-kicker {
  margin-bottom: 12px;
}

.quick-card .card-number,
.activity-card .activity-number {
  font-family: 'Merriweather', serif;
}

.site-header .brand strong {
  font-family: 'Merriweather', serif;
}

.site-footer .brand strong {
  font-family: 'Merriweather', serif;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  z-index: 4;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.slider-btn.prev { left: 22px; }
.slider-btn.next { right: 22px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-dot.active {
  width: 30px;
  border-radius: 999px;
  background: var(--white);
}

.gallery-item img,
.product-card img,
.news-card img,
.intro-image-wrap img {
  transition: transform 0.45s ease;
}

.gallery-item:hover img,
.product-card:hover img,
.news-card:hover img,
.intro-image-wrap:hover img {
  transform: scale(1.04);
}

.site-nav a,
.quick-card,
.activity-card,
.focus-card,
.support-item,
.product-card,
.news-card,
.gallery-item,
.btn,
.icon-button,
.slider-btn,
.slider-dot {
  transition: all 0.25s ease;
}

/* Gallery lightbox stays out of the document flow until an image is opened. */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(7, 25, 15, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox > img {
  width: auto;
  max-width: min(100%, 1100px);
  height: auto;
  max-height: calc(100vh - 64px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-green);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: var(--warm-gold);
  transform: scale(1.04);
}
