/* ==========================================================================
   Cinematic Tour — homepage-only, full-bleed video slider ("A Closer Look,
   In Motion") between the About section and the Amenities teaser.
   New, self-contained stylesheet, same pattern as micro-doc-reel.css: reuses
   styles.css's design tokens (colors, spacing, radius, shadows, fonts) via
   var(--hv-*) but doesn't modify that file. Slides are edge-to-edge and
   full-viewport-width (one cinematic frame at a time), unlike the gallery's
   doc-reel strip of small side-by-side cards — deliberately mirrors the
   hero's own full-bleed video treatment rather than the boxed/rounded media
   card language used elsewhere on the site.
   ========================================================================== */

.tour-reel {
  background: linear-gradient(135deg, var(--hv-deep), #0e211d);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.tour-reel-head {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  padding: 0 var(--space-md);
  text-align: center;
}
.tour-reel-head .eyebrow { color: rgba(255, 255, 255, 0.85); }
.tour-reel-head h2 { color: var(--hv-white); }
.tour-reel-sub { color: rgba(255, 255, 255, 0.72); margin: 0; }

.tour-reel-viewport {
  position: relative;
}

.tour-reel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tour-reel-track::-webkit-scrollbar { display: none; }
.tour-reel-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.tour-reel-track:focus-visible { outline: 2px solid var(--hv-brass); outline-offset: -4px; }

.tour-reel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: clamp(360px, 62vh, 640px);
  scroll-snap-align: start;
  background: var(--hv-ink);
  overflow: hidden;
}

.tour-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.tour-reel-caption-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-xl) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(10, 16, 14, 0.85), rgba(10, 16, 14, 0) 70%);
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
}
.tour-reel-caption-index {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  flex: none;
  padding-bottom: 0.2rem;
}
.tour-reel-caption {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.15;
  color: var(--hv-white);
  margin: 0;
}

.tour-reel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(247, 241, 230, 0.94);
  color: var(--hv-teal);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tour-reel-nav:hover { background: var(--hv-white); transform: translateY(-50%) scale(1.06); }
.tour-reel-nav:focus-visible { outline: 2px solid var(--hv-brass); outline-offset: 2px; }
.tour-reel-prev { left: var(--space-md); }
.tour-reel-next { right: var(--space-md); }
@media (max-width: 640px) { .tour-reel-nav { display: none; } }

.tour-reel-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding: 0 var(--space-md);
}
.tour-reel-progress {
  display: flex;
  gap: 6px;
}
.tour-reel-progress-seg {
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.3s ease;
}
.tour-reel-progress-seg.is-active { background: var(--hv-brass); }

.tour-reel-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0;
}

.tour-reel-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  .tour-reel { padding: var(--space-xl) 0; }
  .tour-reel-slide { height: clamp(320px, 52vh, 480px); }
}
