/* 
    ANASWARA AUDITORIUM - Minimal Luxury Style Override System 2026
    Plus Jakarta Sans + Manrope Typography Integration
    Primary Theme: Luxury Dark Charcoal & Gold Spotlight
*/

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* Responsive Logo adjustment for short screens */
@media (max-height: 800px) and (min-width: 768px) {
  img.responsive-logo {
    width: 130px !important;
    height: 130px !important;
    top: -12px !important;
  }
}
@keyframes logoPulse {
  from {
    opacity: 0.6;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* ─── Aurora Mesh Background ───────────────────────────────────────── */
.aurora-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes auroraFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(15vw, -10vh) scale(1.25);
  }

  66% {
    transform: translate(-10vw, 15vh) scale(0.75);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  mix-blend-mode: screen;
  animation: auroraFloat 10s ease-in-out infinite alternate;
}

.aurora-1 {
  background: radial-gradient(circle, rgba(200, 169, 106, 0.25) 0%, transparent 70%);
  width: 50vw;
  height: 50vw;
  top: -10%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.aurora-2 {
  background: radial-gradient(circle, rgba(139, 99, 64, 0.25) 0%, transparent 70%);
  width: 45vw;
  height: 45vw;
  bottom: -10%;
  right: -10%;
  animation-delay: -2s;
  animation-duration: 15s;
}

.aurora-3 {
  background: radial-gradient(circle, rgba(200, 169, 106, 0.15) 0%, transparent 70%);
  width: 40vw;
  height: 40vw;
  top: 30%;
  right: 20%;
  animation-delay: -4s;
  animation-duration: 10s;
}

.aurora-4 {
  background: radial-gradient(circle, rgba(139, 99, 64, 0.15) 0%, transparent 70%);
  width: 35vw;
  height: 35vw;
  bottom: 20%;
  left: 20%;
  animation-delay: -6s;
  animation-duration: 14s;
}





/* ─── Reserve Glow Animation ───────────────────────────────────────── */
@keyframes reserve-glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(200, 169, 106, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(200, 169, 106, 0.65);
  }
}



/* ─── Ripple/Expanding Scale Animation ─────────────────────────────── */
@keyframes ripple-effect {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 169, 106, 0.8);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(200, 169, 106, 0);
  }
}




/* ─── Ticker banner marquee animation ──────────────────────────────── */
@keyframes ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}





/* Hide Sticky Badge when Sidebar is Active */
.sidebar-active .wa-sticky-badge {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.5);
  transition: all 0.5s ease;
}



/* Step States */
.bv-step.active {
  color: #c8a96a;
}

.bv-step.active span {
  background-color: #c8a96a;
  border-color: #c8a96a;
  color: #121212;
}

.bv-step.done span {
  background-color: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

.bv-step-line.done {
  background-color: #10b981;
}

/* Step Pane Fade In */
.bv-pane {
  display: none;
}

.bv-pane.active {
  display: block;
  animation: bvFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bvFadeIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* Custom Scrollbar Utility */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}

.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}




/* ─── Venue Spaces Scroll-Jacking ──────────────────────────────────── */
.venue-scroll-section {
  position: relative;
}

@media (min-width: 768px) and (min-height: 800px) {
  .venue-scroll-section {
    height: 400vh;
    /* 4 viewports of scrolling */
  }
}

.venue-sticky {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 2rem;
}

@media (min-width: 768px) and (min-height: 800px) {
  .venue-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    padding-bottom: 0;
  }
  .venue-scroll-wrapper {
    overflow: visible !important;
    scroll-snap-type: none !important;
  }
}

.venue-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .venue-track {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1280px) {
  .venue-track {
    padding-left: calc((100vw - 80rem) / 2 + 3rem);
    padding-right: calc((100vw - 80rem) / 2 + 3rem);
  }
}

/* ─── Horizontal Scroll Panel Styling ──────────────────────────────── */
:root {
  --hs-black: #0D0D0D;
  --hs-gold: #C8A96B;
  --hs-gold-dim: #a0803f;
  --hs-ivory: #F5F1EA;
  --hs-bronze: #8B6340;
  --hs-glass: rgba(18, 14, 8, 0.55);
  --hs-glass-b: rgba(200, 169, 107, 0.14);
  --hs-font-serif: 'Plus Jakarta Sans', sans-serif;
  --hs-font-body: 'Manrope', sans-serif;
  --hs-ease: cubic-bezier(0.76, 0, 0.24, 1);
  --hs-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

.hscroll-section {
  position: relative;
  height: 300vh;
  background: var(--hs-black);
  z-index: 1;
}

.hscroll-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hscroll-track {
  display: flex;
  width: 300%;
  height: 100%;
  transform: translateX(0);
  will-change: transform;
  transition: transform 0.85s var(--hs-ease);
}

.hpanel {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex: 0 0 100vw;
  overflow: hidden;
}

.hpanel-bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 1.2s var(--hs-ease-out);
  z-index: 0;
}

.hpanel-3-bg {
  background-image: url('images/panel3-heritage.png');
  background-position: center 30%;
  filter: brightness(0.60) saturate(1.15) sepia(0.08);
}

.hpanel-4-bg {
  background-image: url('images/panel4-grand.png');
  background-position: center 40%;
  filter: brightness(0.50) saturate(1.1) sepia(0.06);
}

.hpanel-5-bg {
  background-image: url('images/panel2-interior.png');
  background-position: center;
  filter: brightness(0.45) saturate(1.05) sepia(0.05);
}

/* Vignette overlays */
.hpanel-overlay-3 {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.4) 55%, rgba(13, 13, 13, 0.75) 100%),
    linear-gradient(to top, rgba(13, 13, 13, 0.90) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(13, 13, 13, 0.55) 0%, transparent 30%);
  z-index: 1;
}

.hpanel-overlay-4 {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.3) 40%, rgba(13, 13, 13, 0.65) 100%),
    linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, transparent 50%);
  z-index: 1;
}

.hpanel-overlay-5 {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.35) 45%, rgba(13, 13, 13, 0.7) 100%),
    linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, transparent 50%);
  z-index: 1;
}

/* Spotlights */
@keyframes spotlightPulse {
  from {
    opacity: 0.7;
    transform: translateX(-50%) scaleX(1);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.08);
  }
}

.hp3-spotlight {
  position: absolute;
  top: 0;
  left: 30%;
  width: 60vw;
  height: 70vh;
  background: radial-gradient(ellipse at 30% top, rgba(200, 169, 107, 0.12) 0%, rgba(200, 169, 107, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  animation: spotlightPulse 7s ease-in-out infinite alternate;
}

.hp4-spotlight {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 90vh;
  background: radial-gradient(ellipse at center top, rgba(200, 169, 107, 0.13) 0%, rgba(200, 169, 107, 0.05) 30%, transparent 65%);
  pointer-events: none;
  z-index: 2;
  animation: spotlightPulse 8s ease-in-out infinite alternate;
}

.hp5-spotlight {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 90vh;
  background: radial-gradient(ellipse at center top, rgba(200, 169, 107, 0.13) 0%, rgba(200, 169, 107, 0.05) 30%, transparent 65%);
  pointer-events: none;
  z-index: 2;
  animation: spotlightPulse 8s ease-in-out infinite alternate;
}

/* Particle and texture elements */
.hpanel-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}

.hp3-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hpanel-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

/* Panel 3 specific typography & cards */
.hpanel-3-content {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 5vh, 5rem) clamp(3rem, 8vw, 10rem);
  gap: clamp(2rem, 5vw, 6rem);
}

.hp3-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  position: relative;
}



.hp3-glass-card {
  position: relative;
  width: 100%;
  background: var(--hs-glass);
  border: 1px solid var(--hs-glass-b);
  border-radius: 18px;
  padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  box-shadow:
    0 0 0 1px rgba(200, 169, 107, 0.07),
    0 32px 64px rgba(0, 0, 0, 0.50),
    0 0 50px rgba(200, 169, 107, 0.04) inset;
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 1s 0.3s var(--hs-ease-out), transform 1s 0.3s var(--hs-ease-out);
}

.hp3-glass-card.hp3e-visible {
  opacity: 1;
  transform: translateX(0);
}

.hp3-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.45), transparent);
}

.hp3-ornament {
  text-align: center;
  margin: 0.5rem 0;
}

.hp3-ornament svg {
  width: clamp(48px, 6vw, 80px);
  height: auto;
}

.hp3-card-quote {
  font-family: var(--hs-font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 600;
  color: var(--hs-ivory);
  line-height: 1.65;
  text-align: center;
  margin: clamp(0.8rem, 1.5vh, 1.2rem) 0;
  letter-spacing: 0;
}

.hp3-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: clamp(1rem, 2vh, 1.5rem);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s 0.4s var(--hs-ease-out), transform 0.7s 0.4s var(--hs-ease-out);
}

.hp3-chips.hp3e-visible {
  opacity: 1;
  transform: translateY(0);
}

.hp3-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--hs-font-body);
  font-size: clamp(0.5rem, 0.72vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 169, 107, 0.75);
  background: rgba(200, 169, 107, 0.08);
  border: 1px solid rgba(200, 169, 107, 0.18);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
}

.hp3-chip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hs-gold);
  flex-shrink: 0;
}

/* Panel 4 specific typography & features */
.hpanel-4-content {
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(2rem, 6vw, 8rem) clamp(3rem, 7vh, 7rem);
  gap: clamp(2rem, 4vh, 4rem);
}

.hp4-heading-block {
  text-align: center;
  position: relative;
  z-index: 4;
}

.hp4-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: clamp(1rem, 2.5vh, 2rem);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hs-ease-out), transform 0.7s var(--hs-ease-out);
}

.hp4-eyebrow.hp4e-visible {
  opacity: 1;
  transform: translateY(0);
}

.hp4-eyebrow-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hs-gold);
  flex-shrink: 0;
}

.hp4-eyebrow-text {
  font-family: var(--hs-font-body);
  font-size: clamp(0.55rem, 0.8vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hs-gold);
}

.hp4-heading {
  font-family: var(--hs-font-serif);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  font-weight: 700;
  color: var(--hs-ivory);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(1rem, 2.5vh, 2rem);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s 0.1s var(--hs-ease-out), transform 1s 0.1s var(--hs-ease-out);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hp4-heading.hp4e-visible {
  opacity: 1;
  transform: translateY(0);
}

.hp4-heading-italic {
  display: block;
  font-weight: 300;
  background: linear-gradient(120deg, #e8c97a, #c8a96b, #a0793a, #c8a96b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hp4-rule {
  width: clamp(60px, 8vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hs-gold), transparent);
  margin: 0 auto;
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.9s 0.2s var(--hs-ease-out), opacity 0.6s 0.2s ease;
}

.hp4-rule.hp4e-visible {
  opacity: 1;
  transform: scaleX(1);
}

.hp4-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  width: 100%;
  max-width: clamp(600px, 80vw, 1100px);
  position: relative;
  z-index: 4;
}

.hp4-feat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  background: rgba(18, 14, 8, 0.52);
  border: 1px solid rgba(200, 169, 107, 0.13);
  border-radius: 16px;
  padding: clamp(1.2rem, 2.5vw, 2rem) clamp(0.8rem, 1.5vw, 1.5rem);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--hs-ease-out), transform 0.8s var(--hs-ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hp4-feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.4), transparent);
}

.hp4-feat-card:hover {
  border-color: rgba(200, 169, 107, 0.30);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 169, 107, 0.06) inset;
  transform: translateY(-2px) !important;
}

.hp4-feat-card.hp4e-visible {
  opacity: 1;
  transform: translateY(0);
}



/* Panel 5 specific typography & stats */
.hpanel-5-content {
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(2rem, 6vw, 8rem) clamp(3rem, 7vh, 7rem);
  gap: clamp(2rem, 4vh, 4rem);
}

.hp5-heading-block {
  text-align: center;
  position: relative;
  z-index: 4;
}

.hp5-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: clamp(1rem, 2.5vh, 2rem);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--hs-ease-out), transform 0.7s var(--hs-ease-out);
}

.hp5-eyebrow.hp5e-visible {
  opacity: 1;
  transform: translateY(0);
}

.hp5-eyebrow-line {
  display: block;
  width: clamp(24px, 3vw, 44px);
  height: 1px;
  background: var(--hs-gold);
  flex-shrink: 0;
}

.hp5-eyebrow-text {
  font-family: var(--hs-font-body);
  font-size: clamp(0.55rem, 0.8vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hs-gold);
}

.hp5-heading {
  font-family: var(--hs-font-serif);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  font-weight: 700;
  color: var(--hs-ivory);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(1rem, 2.5vh, 2rem);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s 0.1s var(--hs-ease-out), transform 1s 0.1s var(--hs-ease-out);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hp5-heading.hp5e-visible {
  opacity: 1;
  transform: translateY(0);
}

.hp5-heading-italic {
  font-weight: 300;
  background: linear-gradient(120deg, #e8c97a, #c8a96b, #a0793a, #c8a96b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: goldShimmer 6s linear infinite;
  display: block;
}

.hp5-rule {
  width: clamp(60px, 8vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hs-gold), transparent);
  margin: 0 auto;
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.9s 0.2s var(--hs-ease-out), opacity 0.6s 0.2s ease;
}

.hp5-rule.hp5e-visible {
  opacity: 1;
  transform: scaleX(1);
}

.hp5-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  width: 100%;
  max-width: clamp(600px, 80vw, 1100px);
  position: relative;
  z-index: 4;
}

.hp5-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  background: rgba(18, 14, 8, 0.52);
  border: 1px solid rgba(200, 169, 107, 0.13);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--hs-ease-out), transform 0.8s var(--hs-ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hp5-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.4), transparent);
}

.hp5-stat-card:hover {
  border-color: rgba(200, 169, 107, 0.30);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 169, 107, 0.06) inset;
  transform: translateY(-2px) !important;
}

.hp5-stat-card.hp5e-visible {
  opacity: 1;
  transform: translateY(0);
}

.hp5-stat-icon {
  width: clamp(38px, 4.8vw, 56px);
  height: clamp(38px, 4.8vw, 56px);
  border: 1px solid rgba(200, 169, 107, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs-gold);
  background: rgba(200, 169, 107, 0.06);
  flex-shrink: 0;
}

.hp5-stat-icon svg {
  width: clamp(18px, 2.2vw, 24px);
  height: clamp(18px, 2.2vw, 24px);
}

.hp5-stat-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hp5-stat-number {
  font-family: var(--hs-font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--hs-gold);
  line-height: 1.1;
  background: linear-gradient(160deg, #e8c97a 0%, #c8a96b 40%, #a0793a 80%, #c8a96b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp5-stat-label {
  font-family: var(--hs-font-body);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 600;
  color: rgba(245, 241, 234, 0.7);
  letter-spacing: 0.05em;
}

.hp5-bg-text {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--hs-font-serif);
  font-size: clamp(10rem, 28vw, 34rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 169, 107, 0.045);
  text-stroke: 1px rgba(200, 169, 107, 0.045);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  line-height: 1;
  white-space: nowrap;
}

/* Horizontal Scroll Cue */
.hscroll-cue {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.hscroll-cue.hidden {
  opacity: 0;
  pointer-events: none;
}

.hscroll-cue-label {
  font-family: var(--hs-font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(200, 169, 107, 0.6);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hscroll-cue-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 169, 107, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs-gold);
  animation: cueFloat 2.2s ease-in-out infinite;
}

.hscroll-cue-arrow svg {
  width: 16px;
  height: 16px;
}

@keyframes cueFloat {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

/* Horizontal scroll indicator dots */
.hscroll-dots {
  position: absolute;
  bottom: clamp(1.5rem, 3vh, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hsdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.3);
  border: 1px solid rgba(200, 169, 107, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.4s ease, transform 0.3s ease, width 0.4s ease;
}

.hsdot.active {
  background: var(--hs-gold);
  width: 28px;
  border-radius: 4px;
}

/* Responsive constraints for horizontal scrolling */
@media (max-width: 900px) {
  .hscroll-section {
    height: 450vh;
  }

  .hpanel-3-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .hp3-left-col {
    align-items: center;
  }

  .hp3-ghost-word {
    display: none;
  }

  .hp3-v-rule {
    display: none;
  }

  .hp3-glass-card {
    max-width: 92vw;
  }

  .hp4-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp4-heading {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  .hp5-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .hp5-heading {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }
}

@media (max-width: 520px) {
  .hscroll-section {
    height: 500vh;
  }

  .hp3-heading {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .hp4-heading {
    font-size: 1.8rem;
  }

  .hp4-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hp5-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .hp5-stat-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 1.2rem;
    gap: 1rem;
    text-align: left;
  }

  .hp5-stat-icon {
    width: 42px;
    height: 42px;
  }

  .hp5-stat-number {
    font-size: 1.8rem;
  }

  .hp5-heading {
    font-size: 1.8rem;
  }

  .hscroll-cue {
    display: none;
  }
}

.hscroll-section * {
  box-sizing: border-box;
}

/* Scrollbar Hiding Utility */
.scrollbar-none::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.scrollbar-none {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

scrollbar-width: none;
/* Firefox */
}