:root {
    --lsp-glass-slate: rgba(15, 23, 42, 0.55);
    --lsp-surface-deep: #0b0d10;
    --lsp-sky-wash: rgba(14, 165, 233, 0.85);
    --lsp-glass-slate-85: rgba(15, 23, 42, 0.85);
}
/* Still / Render plate — fills #tour-overlay (same bounds as panorama), not the full page */
.luma-still-plate {
    position: absolute;
    inset: 0;
    z-index: 10; /* token-oneoff: local stacking */
    display: flex;
    flex-direction: column;
    background: var(--lsp-surface-deep);
    color: var(--luma-text-heading, #ffffff);
}
.luma-still-plate[hidden] {
    display: none !important;
}
.luma-still-plate-stage {
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
    width: 100%;
    height: 100%;
    /* No padding — image must cover the same rect as the map frustum */
    padding: 0;
    overflow: hidden;
}
.luma-still-plate-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
}
.luma-still-plate-chrome {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 11; /* token-oneoff: local stacking */
}
.luma-still-plate-title {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font: 600 0.95rem/1.3 var(--luma-font-ui, system-ui, sans-serif);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55); /* token-oneoff: shadow */
    max-width: min(48vw, 22rem);
}
.luma-still-plate-opts {
    pointer-events: auto;
    position: absolute;
    left: 50%;
    bottom: max(1.1rem, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem; /* token-oneoff: off-scale spacing */
    justify-content: center;
    max-width: min(92vw, 40rem);
}
.luma-still-plate-opt {
    border: 1px solid rgba(248, 250, 252, 0.35); /* token-oneoff: glass */
    background: var(--lsp-glass-slate);
    color: var(--luma-text-heading, #ffffff);
    border-radius: var(--luma-radius-pill);
    padding: 0.35rem 0.75rem; /* token-oneoff: off-scale spacing */
    min-height: var(--luma-touch-min, 44px);
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: 600 0.78rem/1.2 var(--luma-font-ui, system-ui, sans-serif);
    cursor: pointer;
}
.luma-still-plate-opt.is-active,
.luma-still-plate-opt:hover {
    background: var(--lsp-sky-wash);
    border-color: transparent;
}
.luma-still-plate-nav {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--luma-touch-min, 44px);
    height: var(--luma-touch-min, 44px);
    min-width: var(--luma-touch-min, 44px);
    min-height: var(--luma-touch-min, 44px);
    border: 0;
    border-radius: var(--luma-radius-pill);
    background: var(--lsp-glass-slate);
    color: var(--luma-text-heading, #ffffff);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.luma-still-plate-prev { left: max(0.75rem, env(safe-area-inset-left)); }
.luma-still-plate-next { right: max(0.75rem, env(safe-area-inset-right)); }
.luma-still-plate-nav:hover {
    background: var(--lsp-glass-slate-85);
}
/* Back button sits above the plate (tour-overlay .pano-back-btn is z-index 3000) */
body.luma-still-plate-open #tour-overlay .pano-back-btn {
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .luma-still-plate-title {
        left: max(1rem, env(safe-area-inset-left));
        top: max(1rem, env(safe-area-inset-top));
    }
}
