/* ════════════════════════════════════════════════════════════════
   seasonal.css — /seasonal/ sw3d Delicious-mode explorer.
   ════════════════════════════════════════════════════════════════ */

.page-content {
  max-width: 1400px;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* ── Page header ─────────────────────────────────────────────── */
.sw-pagehead {
  margin-bottom: 1.4rem;
}
.sw-pagetitle {
  font-family: 'Noto Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -.012em;
  line-height: 1.05;
  margin: 0 0 .3rem;
  color: var(--primary);
}
.sw-pagesub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ── Stage ───────────────────────────────────────────────────── */
.sw-stage {
  position: relative;
}

/* ── Viewport frame ──────────────────────────────────────────── */
.sw-vp-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 10px;
}
.sw-vp-canvas {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #f8f2e6;
  aspect-ratio: 16 / 9;
  width: 100%;
}

/* ── Camera controls ─────────────────────────────────────────── */
.sw-controls {
  position: absolute;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.sw-ctrl-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(244,237,224,.88);
  backdrop-filter: blur(6px);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.sw-ctrl-btn .material-symbols-outlined {
  font-size: 18px;
}
.sw-ctrl-btn:hover {
  background: var(--surface);
  color: var(--text);
  border-color: var(--accent);
}
.sw-ctrl-btn--on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.sw-ctrl-btn--on:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

/* ── Story caption overlay ───────────────────────────────────── */
.sw-caption {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(8px);
  z-index: 10;
  padding: .6rem 1.3rem;
  border-radius: var(--r-pill);
  background: rgba(244,237,224,.92);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic;
  font-size: .95rem;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.sw-caption--on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
