/* =========================
   Front Page / Home Scene
========================= */

.home-scene-page {
  padding-block: 32px 64px;
}

.home-scene__stage {
  position: relative;
  min-height: 72vh;
  border: 1px solid #dfd8cc;
  border-radius: 32px;
  background: #ffffff;
  overflow: hidden;
  padding: 20px;
}

.home-scene__image-placeholder {
  width: 100%;
  min-height: 68vh;
  border: 2px dashed #cfc7ba;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #f5eee2 0%, #f0e6d6 100%);
  display: grid;
  place-items: center;
  color: #7a7268;
  font-size: 1rem;
}

/* =========================
   Hotspot
========================= */
.scene-hotspot {
  position: absolute;
  z-index: 10;
  border: 1px solid #b8afa2;
  background: rgba(255, 255, 255, 0.92);
  color: #3d3a36;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.scene-hotspot:hover {
  transform: translateY(-1px);
}

/* =========================
   Modal
========================= */
.scene-modal[hidden] {
  display: none;
}

.scene-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 20, 20, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.scene-modal__panel {
  position: relative;
  width: min(560px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.scene-modal__panel h2 {
  margin-top: 0;
}

.scene-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f4f0e8;
  cursor: pointer;
  font-size: 1.25rem;
}

/* =========================
   RWD
========================= */
@media (max-width: 768px) {
  .home-scene__stage {
    min-height: auto;
    padding: 14px;
  }

  .home-scene__image-placeholder {
    min-height: 56vh;
  }

  .scene-hotspot {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}