.wg-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  overflow: hidden;
  text-align: center;
}

.wg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 65%,
    rgba(200, 178, 115, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.wg-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to right, rgba(200,178,115,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200,178,115,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.5;
}

.wg-hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 5rem;
  max-width: 60rem;
  margin: 0 auto;
}

.wg-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin: 0 0 1.75rem;
}

.wg-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 2rem + 8vw, 9rem);
  font-weight: var(--fw-black);
  color: #ffffff;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 0 0 2.25rem;
}

.wg-hero-divider {
  width: 4rem;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-2),
    transparent
  );
  margin: 0 auto 2rem;
}

.wg-hero-sub {
  font-family: var(--font-body);
  font-size: var(--fs-h6);
  font-weight: var(--fw-regular);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.wg-hero-credits {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
}

.wg-hero-credits span {
  color: rgba(200, 178, 115, 0.6);
}

.wg-filter-section {
  background: #0d0d0d;
  padding: 0 1rem 0;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wg-filter-section::-webkit-scrollbar {
  display: none;
}

.wg-filter-bar {
  display: inline-flex;
  gap: 0;
  border-bottom: none;
  flex-shrink: 0;
}

.wg-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem 1.1rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.wg-filter-btn:hover {
  color: var(--primary-2);
}

.wg-filter-btn.active {
  color: var(--primary-2);
  border-bottom-color: var(--primary-2);
}

.wg-count {
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease;
}

.wg-filter-btn.active .wg-count {
  color: rgba(200, 178, 115, 0.55);
}

.wg-video-section {
  background: #111111;
  padding: 3.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.wg-video-inner {
  max-width: 900px;
  margin: 0 auto;
}

.wg-video-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--primary-2);
  text-align: center;
  margin: 0 0 1.5rem;
}

.wg-video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.wg-video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.wg-gallery-bg {
  background: #111111 !important;
}

.wg-gallery-bg .gallery-item:hover {
  transform: scale(1.02);
}

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

.wg-gallery-bg .gallery-item.wg-placeholder {
  background: linear-gradient(90deg, #1a1a1a 25%, #232323 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: wg-shimmer 1.6s infinite;
}

.wg-gallery-bg .gallery-item.wg-placeholder img {
  aspect-ratio: 3 / 2;
  width: 100%;
  opacity: 0;
}

.wg-gallery-bg .gallery-item img {
  transition: opacity 0.25s ease;
}

.wg-gallery-bg .gallery-item:not(.wg-placeholder) img {
  opacity: 1;
}

@keyframes wg-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.wg-scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary-2);
  color: #0d0d0d;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(200, 178, 115, 0.35);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}

.wg-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wg-scroll-top:hover {
  background: #d4bc7a;
}

@media (max-width: 768px) {
  .wg-hero {
    min-height: 52vh;
  }

  .wg-hero-content {
    padding: 5rem 1.5rem 4rem;
  }

  .wg-filter-btn {
    padding: 0.875rem 1.25rem 1rem;
    font-size: 0.9rem;
  }

  .wg-video-section {
    padding: 2.5rem 1.25rem;
  }

  .wg-scroll-top {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .wg-hero {
    min-height: 48vh;
  }

  .wg-hero-content {
    padding: 4.5rem 1.25rem 3.5rem;
  }

  .wg-filter-btn {
    padding: 0.75rem 1rem 0.875rem;
    font-size: 0.85rem;
  }

  .wg-count {
    display: none;
  }

  .wg-video-section {
    padding: 2rem 1rem;
  }

  .wg-scroll-top {
    bottom: 1rem;
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.9rem;
  }
}
