/* ---------------------------------------------------------------
   Desktop/tablet fallback: center a phone-width stage
--------------------------------------------------------------- */
.stage {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: var(--paper);
  overflow: hidden;
}

@media (min-width: 481px) {
  body {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
  }
  .stage {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.35);
  }
}

/* ---------------------------------------------------------------
   Scene sections — each is a full-viewport illustrated moment
--------------------------------------------------------------- */
.scene {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--safe-top) + var(--space-3));
  padding-bottom: calc(var(--safe-bottom) + var(--space-3));
  padding-left: calc(var(--safe-left) + var(--space-3));
  padding-right: calc(var(--safe-right) + var(--space-3));
}

.scene__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.scene__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.scene--content-bottom .scene__content {
  margin-top: auto;
  margin-bottom: var(--space-4);
}

.scene--content-top .scene__content {
  margin-top: var(--space-4);
  margin-bottom: auto;
}

/* soft legibility scrim, used only where text sits directly over busy art */
.scene__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---------------------------------------------------------------
   Signature divider — a small hand-drawn sprig, not a generic rule
--------------------------------------------------------------- */
.sprig {
  width: 34px;
  height: 18px;
  color: var(--sage);
  opacity: 0.85;
}

/* ---------------------------------------------------------------
   Utility
--------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
