/* CLG Motion — Phase 3 scroll-telling scene, "How Our Leather Gifts Are Made"
   page only. Pinned section scrubbed by scroll: hide -> die presses ->
   verse debossed -> patina deepens. Respects prefers-reduced-motion (static
   fallback below). Opacity/transform/filter only — no layout-shifting props. */

.clg-scene {
  position: relative;
  height: 100vh;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 0 8px;
}
.clg-scene-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://christiangiftsusa.com/wp-content/uploads/2026/07/leather-grain-scene.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(1) saturate(1) sepia(0);
  transition: filter .1s linear;
}
.clg-scene-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(20,14,10,.35) 100%);
  pointer-events: none;
}
.clg-scene-stage {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clg-scene-die {
  position: absolute;
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  transform: translateY(-140%);
  opacity: 0;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.4));
}
.clg-scene-die svg { width: 100%; height: 100%; display: block; }
.clg-scene-verse {
  position: relative;
  max-width: 640px;
  padding: 0 24px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3.6vw, 36px);
  line-height: 1.35;
  color: #2a1a0f;
  opacity: 0;
  text-shadow: 0 1px 0 rgba(255,255,255,.35), 0 -1px 1px rgba(23,18,15,.1);
}
.clg-scene-verse .clg-scene-ref {
  display: block;
  margin-top: 14px;
  font-size: .42em;
  font-style: italic;
  letter-spacing: .04em;
  color: #4a3420;
  opacity: .85;
}
.clg-scene-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  text-align: center;
  font-size: 14px;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  padding: 0 24px;
  opacity: 0;
}
.clg-scene-progress {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.clg-scene-progress span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .3s ease, transform .3s ease;
}
.clg-scene-progress span.clg-scene-dot-on {
  background: #fff;
  transform: scale(1.3);
}

/* No-JS or reduced-motion: show the calm final state, statically, no pin/scrub. */
.clg-scene.clg-scene-static { height: auto; min-height: 0; max-height: none; border-radius: 14px; }
.clg-scene.clg-scene-static .clg-scene-bg { position: static; height: 320px; filter: sepia(.18) brightness(.92) saturate(1.05); }
.clg-scene.clg-scene-static .clg-scene-stage { position: absolute; inset: 0; }
.clg-scene.clg-scene-static .clg-scene-die { display: none; }
.clg-scene.clg-scene-static .clg-scene-verse,
.clg-scene.clg-scene-static .clg-scene-caption { opacity: 1; }
.clg-scene.clg-scene-static .clg-scene-progress { display: none; }

@media (max-width: 640px) {
  .clg-scene { max-height: 620px; }
}
