/* ===== Panorama hero ===== */
.hero-pano { position: relative; background: #101314; }
.hp-viewport {
  position: relative; overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none;
}
.hp-viewport::-webkit-scrollbar { display: none; }
.hp-track { position: relative; }
.hp-track > img { display: block; user-select: none; -webkit-user-drag: none; }
@media (min-width: 768px) {
  .hp-viewport { aspect-ratio: 5504 / 1554; overflow-x: hidden; }
  .hp-track { width: 100%; height: 100%; }
  .hp-track > img { width: 100%; height: 100%; object-fit: cover; }
}
@media (max-width: 767px) {
  .hp-viewport { height: 20rem; }
  .hp-track { width: max-content; height: 100%; }
  .hp-track > img { height: 100%; width: auto; max-width: none; }
}
.hp-zone {
  position: absolute; top: 0; bottom: 0;
  background: rgba(16,19,20,0.28);
  transition: background 0.5s ease; cursor: pointer;
}
.hp-zone:hover { background: rgba(16,19,20,0); }
.hp-zone .zl {
  position: absolute; left: 50%; bottom: 35%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0; transition: opacity 0.4s, transform 0.4s;
  background: rgba(255,255,255,0.94); color: var(--cube-black);
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
[dir="rtl"] .hp-zone .zl { font-family: var(--font-arabic); }
.hp-zone .zl svg { width: 0.875rem; height: 0.875rem; color: var(--cube-gold-dark); }
.hp-zone:hover .zl { opacity: 1; transform: translateX(-50%) translateY(0); }
.hp-overlay {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(16,19,20,0.8), rgba(16,19,20,0.3) 24%, transparent 44%),
    linear-gradient(to top, rgba(16,19,20,0.6), transparent 24%);
}
.hp-copy {
  position: absolute; left: 0; right: 0; top: 2rem; z-index: 7;
  color: #fff; pointer-events: none; text-align: center;
}
.hp-copy h1 { color: #fff; margin-bottom: 0.5rem; }
.hp-copy p { color: rgba(255,255,255,0.78); font-size: 1.0625rem; white-space: nowrap; }
.hp-ctas {
  position: absolute; left: 0; right: 0; bottom: 2rem; z-index: 7;
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  pointer-events: none;
}
.hp-ctas a { pointer-events: auto; }
.hero-pano .room-hotspot { z-index: 8; }
.hero-pano .room-hotspot.open { z-index: 12; }
.hero-pano .hotspot-tip { z-index: 40; }
@media (max-width: 767px) {
  .hp-overlay { display: none; }
  .hp-copy { position: static; padding: 1.75rem 1rem 0; }
  .hp-copy h1 { font-size: 1.75rem; }
  .hp-copy p { font-size: 0.9375rem; white-space: normal; }
  .hp-ctas { position: static; padding: 1.25rem 1rem 2rem; }
  .hp-zone .zl { bottom: 33%; }
}
@media (prefers-reduced-motion: reduce) {
  .hp-zone, .hp-zone .zl { transition: none; }
}
