/* ============================================================================
   SCENE SWITCHER — loaded only on pages that carry it (the homepage does not
   load pages.css, which is why interactive components get their own files).
   ============================================================================ */
.scene-switcher { max-width: 940px; margin-inline: auto; }

.scene-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl, 18px);
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 18px 40px -12px rgba(10,26,46,0.4));
}

.scene-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.scene-img.is-active { opacity: 1; }

.scene-btns {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 9px;
  margin-top: 16px;
}

.scene-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-size: 13.5px; font-weight: 700;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1.5px solid rgba(20,36,60,0.18);
  background: white; color: #14243c;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.scene-btn .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--dot, #999);
  box-shadow: inset 0 0 2px rgba(0,0,0,0.25);
}

.scene-btn:hover { transform: translateY(-1px); border-color: rgba(20,36,60,0.4); }

.scene-btn.is-active {
  border-color: var(--brand-blue, #0b7db3);
  box-shadow: 0 0 0 3px rgba(11,125,179,0.18);
}

.scene-btn:focus-visible { outline: 2px solid var(--brand-blue, #0b7db3); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .scene-img { transition: none; }
}
