/* CSS Variables & Reset */
:root {
  --rl-teal: #173a34;
  --rl-teal2: #1f4a42;
  --rl-green: #2f5d4f;
  --rl-gold: #c9a878;
  --rl-cream: #ece7da;
  --rl-ivory: #f5f2e9;
  
  --font-display: 'Telegraf', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
}

@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/Telegraf-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0b1a17; /* Deepest teal as background fallback */
  color: var(--rl-ivory);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Floating Navigation */
.aurum-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -20px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  background: rgba(23, 58, 52, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(236, 231, 218, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aurum-nav.nav-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--rl-cream);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--rl-cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--rl-gold);
}

/* CTA button styling */
.nav-cta {
  background: transparent;
  color: var(--rl-cream);
  border: 1px solid var(--rl-gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--rl-gold);
  color: var(--rl-teal);
}

.mobile-menu-toggle,
.mobile-dropdown {
  display: none;
}

/* Hero Section Base */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Canvas full screen edge-to-edge */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* Custom visual overlays */
.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 58, 52, 0.25); /* Subtle dark teal tint */
  z-index: 2;
  pointer-events: none;
}

.hero-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 26, 23, 0.85) 0%, rgba(11, 26, 23, 0.5) 15vh, rgba(11, 26, 23, 0.2) 28vh, transparent 42vh);
  z-index: 3;
  pointer-events: none;
}

/* Subtle Technical Grid Overlay */
#hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.15;
}

/* Lower-Center Text Layout */
/* Lower-Center Text Layout */
.hero-content {
  position: absolute;
  bottom: 110px; /* Sitting cleanly above the scroll cue */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.luxury-title-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Compact gap for cleaner look */
}

.hero-brand-present-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--rl-cream);
  opacity: 0.85;
  text-transform: uppercase;
}

.hero-main-title {
  font-family: 'Georgia', 'Playfair Display', serif; /* Refined luxury serif fallback */
  font-size: clamp(2.6rem, 5vw, 5.8rem); /* Controlled responsive size */
  font-weight: 400;
  color: var(--rl-ivory);
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin: 2px 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  text-shadow: 0 4px 25px rgba(11, 26, 23, 0.75);
}

.hero-signature {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--rl-cream);
  opacity: 0.8;
  vertical-align: middle;
}

.gold-text {
  color: var(--rl-gold);
}

.hero-metadata {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.2vw, 0.8rem); /* Slightly smaller, more controlled metadata */
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--rl-cream);
  opacity: 0.85;
  line-height: 1.4;
  max-width: 90%;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(11, 26, 23, 0.6);
  margin-top: 4px;
}

.hero-cta-wrap {
  margin: 20px 0 6px 0;
  pointer-events: auto; /* Allow button click */
}

.hero-cta-btn {
  background: var(--rl-gold);
  color: var(--rl-teal);
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-cta-btn:hover {
  background: var(--rl-cream);
  color: var(--rl-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-finance-note {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1.1vw, 0.72rem); /* More subtle finance note */
  color: var(--rl-cream);
  opacity: 0.45;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(11, 26, 23, 0.6);
  margin-top: 2px;
}

/* Minimal Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  pointer-events: none;
}

.scroll-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rl-cream);
  opacity: 0.6;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rl-cream) 50%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--rl-gold);
  animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { transform: translateY(-100%); }
  80% { transform: translateY(200%); }
  100% { transform: translateY(200%); }
}

/* Spacer section for scrolling distance */
.hero-scroll-spacer {
  height: 300vh; /* Scroll volume to control pinning duration */
  position: relative;
}

/* Secondary/Footer placeholder for visual context */
.content-section {
  min-height: 100vh;
  background: #0b1a17;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  z-index: 10;
}

.content-wrapper {
  max-width: 800px;
  text-align: center;
}

.content-wrapper h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--rl-gold);
  margin-bottom: 24px;
}

.content-wrapper p {
  color: var(--rl-cream);
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.8;
}

/* Responsive adjustment for Mobile */
@media screen and (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }

  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--rl-cream);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
  }

  /* Toggle Animation to 'X' */
  .aurum-nav.mobile-menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(1px, -1px);
    background-color: var(--rl-gold);
  }

  .aurum-nav.mobile-menu-open .hamburger-line:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  .aurum-nav.mobile-menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 1px);
    background-color: var(--rl-gold);
  }

  .aurum-nav {
    flex-wrap: wrap;
    padding: 14px 24px;
    border-radius: 30px;
    transition: border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
  }

  .aurum-nav.mobile-menu-open {
    border-radius: 20px;
    background: rgba(11, 26, 23, 0.96);
    border-color: rgba(201, 168, 120, 0.3);
  }

  /* Mobile Dropdown styling inside the wrapper */
  .mobile-dropdown {
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin-top 0.3s ease;
  }

  .aurum-nav.mobile-menu-open .mobile-dropdown {
    max-height: 300px;
    opacity: 1;
    margin-top: 20px;
    border-top: 1px solid rgba(236, 231, 218, 0.1);
    padding-top: 20px;
  }

  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    padding-left: 4px;
  }

  .mobile-nav-links a {
    color: var(--rl-cream);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    display: block;
    cursor: pointer;
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a.active {
    color: var(--rl-gold);
  }

  .mobile-nav-cta {
    width: 100%;
    background: var(--rl-gold);
    color: #031b18;
    border: 1px solid var(--rl-gold);
    padding: 10px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }

  .mobile-nav-cta:hover {
    background: transparent;
    color: var(--rl-cream);
  }

  .hero-content {
    bottom: 110px;
  }

  /* Pinned Feature Walkthrough Mobile Overrides */
  .feature-walkthrough {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    padding-top: 100px !important; /* Prevent main nav from overlapping content */
    padding-bottom: 80px !important;
  }
  
  .feature-grid {
    height: 100% !important;
  }

  .feature-nav {
    display: none !important; /* Hide left vertical nav completely on mobile */
  }

  .feature-stage {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 20px !important; /* 20px gutter-based padding */
    display: flex !important;
    flex-direction: column !important;
    gap: 80px !important; /* Stacked layout vertical spacing */
  }

  .feature-state {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important; /* Vertical spacing between media & content */
    width: 100% !important;
    height: auto !important;
    z-index: 2 !important;
  }

  /* Remove Core Concept technical labels on mobile only */
  .tech-label {
    display: none !important;
  }

  .state-media-wrap {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
  }

  .state-headline-wrap {
    margin-top: 12px !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .state-headline-bottom {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    text-align: left !important;
    line-height: 1.35 !important;
  }

  /* Mobile layout rules for split layout states */
  .state-split-container {
    flex-direction: column !important; /* No side-by-side on mobile */
    gap: 28px !important;
    align-items: stretch !important;
  }

  .standard-media-card {
    width: 100% !important;
    flex: none !important;
  }

  .media-video-wrap {
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
  }

  .standard-content {
    width: 100% !important;
    flex: none !important;
    gap: 16px !important;
  }

  .standard-headline {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    line-height: 1.3 !important;
  }

  .standard-support {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .standard-bullets {
    gap: 12px !important;
  }

  .bullet-text {
    font-size: 0.92rem !important;
    line-height: 1.4 !important;
  }
}

/* Desktop Pinned Feature Walkthrough Section */
@media screen and (min-width: 769px) {
  .feature-walkthrough {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: 
      radial-gradient(circle at 0% 100%, rgba(201, 168, 120, 0.16), transparent 26%),
      radial-gradient(circle at 0% 20%, rgba(201, 168, 120, 0.12), transparent 28%),
      linear-gradient(to bottom, #0b1a17 0%, #031b18 250px, #031b18 100%);
    overflow: hidden;
    z-index: 9;
  }

  /* Grid overlay */
  .feature-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
      linear-gradient(rgba(236,231,218,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(236,231,218,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 220px);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 220px);
  }

  /* Left vertical navigation */
  .feature-nav {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
  }

  .feature-nav button {
    background: transparent;
    border: none;
    color: var(--rl-cream);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-align: left;
    padding: 8px 16px;
    cursor: pointer;
    opacity: 0.4;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .feature-nav button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background-color: var(--rl-gold);
    transition: transform 0.3s ease;
  }

  .feature-nav button:hover,
  .feature-nav button.active {
    opacity: 1;
    color: var(--rl-ivory);
    padding-left: 24px;
  }

  .feature-nav button.active::before {
    transform: translateY(-50%) scale(1);
  }

  /* Feature Stage & State Switcher */
  .feature-stage {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 100px 80px 80px 180px; /* Shift right to clear left nav */
    box-sizing: border-box;
    z-index: 5;
  }

  .feature-state {
    position: absolute;
    top: 100px;
    left: 180px;
    right: 80px;
    bottom: 80px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  .feature-state.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 5;
  }
}

/* State 0 & 2 Layout: Centered Video/Image with Floating labels */
.state-media-wrap {
  position: relative;
  width: 65vw;
  height: 52vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.state-video, .state-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.state-image-placeholder {
  opacity: 0.85;
}

.state-headline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.state-headline-bottom {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  font-weight: 500;
  color: var(--rl-ivory);
  text-align: center;
  max-width: 980px;
  line-height: 1.4;
  margin-top: 0;
  letter-spacing: -0.01em;
}

/* Floating labels styling */
.tech-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--rl-cream);
  background: rgba(3, 27, 24, 0.8);
  border: 1px solid rgba(236, 231, 218, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 12;
}

.tech-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--rl-gold);
}

.tech-line {
  position: absolute;
  background-color: rgba(201, 168, 120, 0.4);
  pointer-events: none;
  z-index: 11;
  height: 1px;
}

/* State 0 Label Coordinates */
.label-envelope { top: 12%; left: 10%; }
.line-envelope { width: 120px; left: 100%; top: 50%; transform: rotate(15deg); transform-origin: left; }

.label-glass { top: 28%; right: 10%; }
.line-glass { width: 100px; right: 100%; top: 50%; transform: rotate(-10deg); transform-origin: right; }

.label-balcony { top: 48%; left: 5%; }
.line-balcony { width: 140px; left: 100%; top: 50%; transform: rotate(5deg); transform-origin: left; }

.label-core { top: 20%; left: 55%; }
.line-core { width: 1px; height: 80px; top: 100%; left: 20%; background-color: rgba(201, 168, 120, 0.4); }

.label-access { bottom: 15%; left: 15%; }
.line-access { width: 110px; left: 100%; top: 50%; transform: rotate(-15deg); transform-origin: left; }

.label-layers { bottom: 22%; right: 12%; }
.line-layers { width: 120px; right: 100%; top: 50%; transform: rotate(-5deg); transform-origin: right; }

/* State 1 & 3 Layout: Split container */
.state-split-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align columns to the same top line */
  width: 100%;
  max-width: 1200px; /* Wider desktop container for balanced layout */
  gap: 64px;
}

/* Left side: Standardized Media Card */
.standard-media-card {
  background: rgba(3, 27, 24, 0.6);
  border: 1px solid rgba(236, 231, 218, 0.1);
  border-radius: 6px;
  padding: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
  width: 100%;
}

@media (min-width: 769px) {
  .standard-media-card {
    flex: 0 0 50%; /* Media card occupies 50% of container */
    width: 50%;
  }
}

.standard-media-card:hover {
  border-color: rgba(201, 168, 120, 0.3);
}

.media-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--rl-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.media-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 10; /* Unified visual dimensions */
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.feature-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-caption {
  margin-top: 16px;
  border-top: 1px solid rgba(236, 231, 218, 0.08);
  padding-top: 16px;
}

.media-caption h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rl-ivory);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.media-caption p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--rl-cream);
  line-height: 1.5;
  opacity: 0.7;
}

/* Right side: Standardized Content Block */
.standard-content {
  display: flex;
  flex-direction: column;
  gap: 16px; /* Spacing between eyebrow, heading, paragraph, and bullets */
  text-align: left;
  width: 100%;
}

@media (min-width: 769px) {
  .standard-content {
    flex: 0 0 44%; /* Balanced 44% width to avoid narrow stacking */
    width: 44%;
  }
}

.standard-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 500;
  color: var(--rl-ivory);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.standard-support {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--rl-cream);
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

.standard-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.standard-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(236, 231, 218, 0.06);
  transition: border-color 0.3s ease;
}

.standard-bullets li:hover {
  border-bottom-color: rgba(201, 168, 120, 0.25);
}

.bullet-arrow {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullet-arrow::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: 2px solid var(--rl-gold);
  border-right: 2px solid var(--rl-gold);
  transform: rotate(45deg);
}

.bullet-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--rl-cream);
  line-height: 1.3;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.standard-bullets li:hover .bullet-text {
  color: var(--rl-ivory);
}

.standard-cta {
  align-self: flex-start;
  background: var(--rl-ivory);
  color: #031b18;
  border: 1px solid rgba(236, 231, 218, 0.2);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
}

.cta-plus {
  color: var(--rl-gold);
  font-weight: bold;
  font-size: 0.95rem;
}

.standard-cta:hover {
  background: #031b18;
  color: var(--rl-ivory);
  border-color: var(--rl-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .feature-stage {
    padding: 100px 32px 80px 150px;
  }
  .feature-state {
    left: 150px;
    right: 32px;
  }
  .state-media-wrap {
    width: 60vw;
  }
}





/* ==========================================================================
   WHY AURUM Editorial Section (FIND Real Estate style)
   ========================================================================== */
.why-aurum {
  background-color: var(--rl-ivory); /* #f5f2e9 */
  color: #07110f;
  padding: 140px 0;
  position: relative;
  z-index: 10;
}

.editorial-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 60px;
}

.editorial-header {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: start;
}

.editorial-label-col {
  padding-top: 12px;
}

.editorial-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #173a34;
  opacity: 0.65;
  text-transform: uppercase;
}

.editorial-content-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.editorial-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #07110f;
  margin: 0;
  max-width: 900px;
}

.softer-text {
  color: #83928f;
}

.editorial-support {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: #173a34;
  max-width: 780px;
  margin: 0;
  opacity: 0.9;
}

.editorial-video-wrap {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 85vh;
}

/* Responsive Overrides for Editorial Section */
@media (max-width: 1024px) {
  .why-aurum {
    padding: 100px 0;
  }
  .editorial-header {
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin-bottom: 45px;
  }
  .editorial-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .why-aurum {
    padding: 80px 0;
  }
  .editorial-container {
    padding: 0 20px;
  }
  .editorial-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  .editorial-label-col {
    padding-top: 0;
  }
  .editorial-video-wrap {
    max-height: none;
    border-radius: 6px;
  }
}

/* ==========================================================================
   INVENTORY INTELLIGENCE Dashboard Section
   ========================================================================== */
.inventory-section {
  background-color: #0b1a17;
  color: var(--rl-ivory);
  padding: 120px 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(236, 231, 218, 0.05);
}

.inventory-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 60px;
}

.inventory-header {
  margin-bottom: 60px;
  max-width: 900px;
}

.inventory-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--rl-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.inventory-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--rl-ivory);
  margin-bottom: 20px;
}

.inventory-support {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  color: var(--rl-cream);
  opacity: 0.85;
}

/* Dashboard Wrapper Grid */
.dashboard-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr 420px;
  gap: 40px;
  align-items: start;
}

.dashboard-col {
  background: rgba(23, 58, 52, 0.25);
  border: 1px solid rgba(236, 231, 218, 0.08);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rl-gold);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(236, 231, 218, 0.08);
  padding-bottom: 12px;
}

/* Column 1: Building Stack Selector */
.floor-stack-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floor-bar {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  background: rgba(3, 27, 24, 0.4);
  border: 1px solid rgba(236, 231, 218, 0.05);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.floor-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rl-gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.floor-bar:hover {
  background: rgba(23, 58, 52, 0.6);
  border-color: rgba(201, 168, 120, 0.3);
  transform: translateX(4px);
}

.floor-bar.active {
  background: rgba(23, 58, 52, 0.8);
  border-color: var(--rl-gold);
}

.floor-bar.active::before {
  transform: scaleY(1);
}

.floor-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--rl-gold);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.floor-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rl-ivory);
}

.floor-stats {
  font-size: 0.7rem;
  color: var(--rl-cream);
  opacity: 0.6;
  margin-top: 4px;
  text-align: right;
}

/* Column 2: Search, Filters & Units */
.filter-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  background: rgba(3, 27, 24, 0.3);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(236, 231, 218, 0.05);
}

.search-wrap input {
  width: 100%;
  background: rgba(11, 26, 23, 0.6);
  border: 1px solid rgba(236, 231, 218, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--rl-ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-wrap input:focus {
  outline: none;
  border-color: var(--rl-gold);
  background: rgba(11, 26, 23, 0.8);
  box-shadow: 0 0 10px rgba(201, 168, 120, 0.1);
}

.filter-dropdowns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rl-cream);
  opacity: 0.7;
}

.filter-group select {
  background: rgba(11, 26, 23, 0.6);
  border: 1px solid rgba(236, 231, 218, 0.15);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--rl-ivory);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-group select:focus {
  border-color: var(--rl-gold);
}

.sliders-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.slider-group {
  margin-top: 4px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--rl-cream);
}

.highlight-val {
  color: var(--rl-gold);
  font-weight: 600;
}

.filter-group input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(236, 231, 218, 0.15);
  outline: none;
  margin-top: 8px;
}

.filter-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rl-gold);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.filter-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

/* Unit Cards Grid */
.unit-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  max-height: 540px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Custom Scrollbars */
.unit-grid-container::-webkit-scrollbar,
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.unit-grid-container::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track {
  background: rgba(236, 231, 218, 0.03);
  border-radius: 10px;
}

.unit-grid-container::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 120, 0.2);
  border-radius: 10px;
}

.unit-grid-container::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 120, 0.4);
}

.unit-card {
  background: rgba(3, 27, 24, 0.4);
  border: 1px solid rgba(236, 231, 218, 0.08);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}

.unit-card:hover {
  border-color: rgba(201, 168, 120, 0.3);
  transform: translateY(-2px);
  background: rgba(23, 58, 52, 0.4);
}

.unit-card.selected {
  border-color: var(--rl-gold);
  background: rgba(23, 58, 52, 0.6);
  box-shadow: 0 4px 20px rgba(201, 168, 120, 0.08);
}

.unit-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.unit-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--rl-ivory);
}

.unit-status-tag {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.unit-status-tag.available {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.unit-status-tag.reserved {
  background: rgba(230, 126, 34, 0.15);
  color: #e67e22;
}

.unit-card-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rl-cream);
  margin-bottom: 8px;
}

.unit-card-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--rl-cream);
  opacity: 0.65;
  margin-bottom: 12px;
}

.unit-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(236, 231, 218, 0.05);
  padding-top: 10px;
}

.unit-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--rl-gold);
}

.comparing-indicator {
  font-size: 0.6rem;
  color: var(--rl-gold);
  border: 1px solid var(--rl-gold);
  border-radius: 20px;
  padding: 1px 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.empty-results-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--rl-cream);
  opacity: 0.6;
}

/* Column 3: Unit Detail Panel */
.details-card-panel {
  min-height: 600px;
  position: relative;
}

.details-empty-state {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 85%;
  color: var(--rl-cream);
  opacity: 0.65;
}

.empty-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px auto;
  background-image: radial-gradient(circle, rgba(201, 168, 120, 0.2) 0%, transparent 70%);
  border: 1px dashed var(--rl-gold);
  border-radius: 50%;
  position: relative;
}

.empty-icon::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--rl-gold);
  font-size: 1.2rem;
}

.details-empty-state p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.detail-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.detail-header-info h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--rl-ivory);
}

.status-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.status-badge.available {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.status-badge.reserved {
  background: rgba(230, 126, 34, 0.15);
  color: #e67e22;
}

.details-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  background: rgba(3, 27, 24, 0.3);
  border: 1px solid rgba(236, 231, 218, 0.04);
  padding: 12px;
  border-radius: 6px;
}

.spec-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--rl-cream);
  opacity: 0.6;
  margin-bottom: 4px;
}

.detail-val {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rl-ivory);
}

.detail-price-wrap {
  background: rgba(201, 168, 120, 0.08);
  border: 1px solid rgba(201, 168, 120, 0.2);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.price-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rl-cream);
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--rl-gold);
}

.details-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.details-actions button {
  padding: 12px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-compare-action {
  background: transparent;
  border: 1px solid var(--rl-gold);
  color: var(--rl-gold);
}

.btn-compare-action:hover {
  background: rgba(201, 168, 120, 0.1);
}

.btn-compare-action.active {
  background: var(--rl-gold);
  color: #0b1a17;
}

.btn-3d-placeholder {
  background: rgba(236, 231, 218, 0.05);
  border: 1px solid rgba(236, 231, 218, 0.1);
  color: var(--rl-cream);
  opacity: 0.5;
  cursor: not-allowed !important;
}

/* Metrics blocks styling */
.metrics-block {
  border-top: 1px solid rgba(236, 231, 218, 0.08);
  padding-top: 24px;
  margin-bottom: 24px;
}

.block-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--rl-gold);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.roi-flex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 10px;
}

.roi-card {
  background: rgba(3, 27, 24, 0.3);
  border: 1px solid rgba(236, 231, 218, 0.04);
  padding: 12px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.roi-lbl {
  font-size: 0.65rem;
  color: var(--rl-cream);
  opacity: 0.6;
  margin-bottom: 4px;
}

.roi-val-pct {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #2ecc71;
  margin-bottom: 2px;
}

.roi-val-rent {
  font-size: 0.75rem;
  color: var(--rl-cream);
  opacity: 0.8;
}

.doc-disclaimer {
  font-size: 0.65rem;
  color: var(--rl-cream);
  opacity: 0.5;
  display: block;
}

/* Mortgage inputs and outputs */
.calculator-inputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-input-group label {
  font-size: 0.6rem;
  color: var(--rl-cream);
  opacity: 0.6;
  text-transform: uppercase;
}

.calc-input-group input {
  background: rgba(11, 26, 23, 0.6);
  border: 1px solid rgba(236, 231, 218, 0.1);
  border-radius: 4px;
  padding: 8px 10px;
  color: var(--rl-ivory);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
}

.calc-input-group input:focus {
  border-color: var(--rl-gold);
}

.calculator-outputs {
  background: rgba(3, 27, 24, 0.4);
  border: 1px solid rgba(236, 231, 218, 0.05);
  border-radius: 6px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-out-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--rl-cream);
}

.calc-out-item strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--rl-ivory);
}

.calc-out-item.total-emi {
  border-top: 1px solid rgba(236, 231, 218, 0.08);
  padding-top: 10px;
  margin-top: 4px;
  font-size: 0.8rem;
}

.calc-out-item.total-emi strong {
  font-size: 1.1rem;
  color: var(--rl-gold);
}

.payment-plan-note {
  background: rgba(201, 168, 120, 0.04);
  border-left: 2px solid var(--rl-gold);
  padding: 12px;
  border-radius: 0 6px 6px 0;
  margin-top: 24px;
}

.payment-plan-note h6 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--rl-gold);
  margin-bottom: 4px;
}

.payment-plan-note p {
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--rl-cream);
  opacity: 0.8;
}

/* Floating Comparison Dock */
.comparison-dock {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: 90%;
  max-width: 1000px;
  background: rgba(23, 58, 52, 0.95);
  border: 1px solid var(--rl-gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-radius: 100px;
  padding: 12px 24px;
  z-index: 100;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

.comparison-dock.visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dock-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dock-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rl-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.dock-slots {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  justify-content: flex-end;
}

.compare-slot-tag {
  background: rgba(11, 26, 23, 0.6);
  border: 1px solid rgba(236, 231, 218, 0.15);
  border-radius: 50px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--rl-ivory);
}

.remove-slot {
  background: transparent;
  border: none;
  color: #ff6b6b;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-trigger-compare-view {
  background: var(--rl-gold);
  color: #0b1a17;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-trigger-compare-view:hover {
  background: var(--rl-ivory);
  transform: scale(1.03);
}

/* Fullscreen Modal / Comparison Overlay */
.comparison-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 27, 24, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.comparison-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.comparison-modal {
  background: #0b1a17;
  border: 1px solid rgba(236, 231, 218, 0.1);
  border-radius: 12px;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-overlay.visible .comparison-modal {
  transform: translateY(0);
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid rgba(236, 231, 218, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--rl-gold);
  text-transform: uppercase;
}

.close-modal-btn {
  background: transparent;
  border: none;
  color: var(--rl-cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.close-modal-btn:hover {
  color: var(--rl-gold);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(236, 231, 218, 0.05);
  font-size: 0.85rem;
  color: var(--rl-cream);
}

.compare-row-header {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--rl-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  width: 260px;
}

.comparison-table tr:hover td {
  background: rgba(23, 58, 52, 0.2);
}

.modal-footer-note {
  padding: 16px 24px;
  border-top: 1px solid rgba(236, 231, 218, 0.08);
  font-size: 0.7rem;
  color: var(--rl-cream);
  opacity: 0.5;
  background: rgba(3, 27, 24, 0.4);
}

/* ==========================================================================
   Responsive Overrides for Dashboard
   ========================================================================== */
@media (max-width: 1400px) {
  .dashboard-wrapper {
    grid-template-columns: 280px 1fr 360px;
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .dashboard-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .floor-selector-col {
    order: 2;
  }
  
  .unit-explorer-col {
    order: 1;
  }
  
  .unit-details-col {
    order: 3;
  }
  
  .floor-stack-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }
  
  .floor-bar:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .inventory-container {
    padding: 0 20px;
  }
  
  .inventory-section {
    padding: 80px 0;
  }
  
  .filter-dropdowns, .sliders-wrap {
    grid-template-columns: 1fr;
  }
  
  .comparison-dock {
    border-radius: 16px;
    padding: 16px;
    bottom: 12px;
    width: 94%;
  }
  
  .dock-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .dock-slots {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .compare-row-header {
    width: 140px;
    font-size: 0.7rem;
  }
  
  .comparison-table td {
    padding: 10px;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   Spaces & Amenities Cinematic Gallery Section
   ========================================================================== */
.gallery-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #0b1a17; /* Deep teal background fallback */
  z-index: 15;
}

.gallery-scroller {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

.gallery-scroller::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
}

.gallery-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 23, 0.95) 0%, rgba(11, 26, 23, 0.35) 45%, transparent 85%);
  z-index: 2;
  pointer-events: none;
}

.gallery-info {
  position: absolute;
  bottom: 16%;
  left: 8%;
  z-index: 3;
  max-width: 650px;
  color: var(--rl-ivory);
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.gallery-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--rl-gold);
  text-transform: uppercase;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--rl-ivory);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gallery-desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--rl-cream);
  line-height: 1.6;
  opacity: 0.85;
  max-width: 540px;
}

/* Micro-animations / Staggered Transitions */
.gallery-slide .gallery-info > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide.active .gallery-info > * {
  opacity: 1;
  transform: translateY(0);
}

.gallery-slide.active .gallery-info .gallery-kicker {
  transition-delay: 0.1s;
}

.gallery-slide.active .gallery-info .gallery-title {
  transition-delay: 0.2s;
}

.gallery-slide.active .gallery-info .gallery-desc {
  transition-delay: 0.3s;
}

/* Gallery Controls */
.gallery-controls {
  position: absolute;
  bottom: 5%;
  left: 8%;
  right: 8%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.gallery-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(236, 231, 218, 0.15);
  position: relative;
  border-radius: 1px;
  overflow: hidden;
}

.gallery-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--rl-gold);
  transition: width 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-indicators {
  display: flex;
  gap: 32px;
}

.gallery-indicator {
  background: none;
  border: none;
  color: var(--rl-cream);
  opacity: 0.35;
  display: flex;
  align-items: baseline;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.gallery-indicator:hover,
.gallery-indicator.active {
  opacity: 1;
  color: var(--rl-ivory);
}

.gallery-indicator.active .indicator-num {
  color: var(--rl-gold);
}

.indicator-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.indicator-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gallery-counter {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--rl-cream);
  letter-spacing: 0.1em;
  min-width: 48px;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 6px;
}

#current-slide-num {
  color: var(--rl-gold);
}

.counter-divider {
  opacity: 0.3;
}

/* Responsive Overrides for Spaces & Amenities */
@media (max-width: 1024px) {
  .gallery-info {
    left: 6%;
    bottom: 18%;
  }
  .gallery-controls {
    left: 6%;
    right: 6%;
  }
  .gallery-indicators {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-info {
    left: 20px;
    right: 20px;
    bottom: 22%;
    max-width: 100%;
  }
  
  .gallery-controls {
    left: 20px;
    right: 20px;
    bottom: 8%;
    gap: 20px;
  }
  
  .gallery-progress-bar {
    display: none; /* Hide progress bar on mobile to prioritize indicator spacing */
  }

  .gallery-indicator .indicator-label {
    display: none; /* Hide descriptive labels, show numbers only on small screens */
  }

  .gallery-indicators {
    gap: 16px;
  }

  .gallery-overlay {
    background: linear-gradient(to top, rgba(11, 26, 23, 0.98) 0%, rgba(11, 26, 23, 0.6) 50%, transparent 90%); /* Stronger gradient on mobile for high legibility */
  }
}

/* ==========================================================================
   Premium Brand Footer Section
   ========================================================================== */
.aurum-footer {
  background-color: #031b18; /* Deep Realco teal */
  color: var(--rl-ivory);
  padding: 100px 8% 40px 8%;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(236, 231, 218, 0.08);
}

.footer-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
}

.footer-brand-kicker {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--rl-gold);
  text-transform: uppercase;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--rl-ivory);
  margin: 8px 0 16px 0;
  letter-spacing: 0.05em;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--rl-cream);
  opacity: 0.8;
  max-width: 480px;
  line-height: 1.6;
}

.footer-cta-block {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.footer-cta-btn {
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
}

.footer-cta-btn.btn-gold {
  background: var(--rl-gold);
  color: #031b18;
  border: 1px solid var(--rl-gold);
}

.footer-cta-btn.btn-gold:hover {
  background: transparent;
  color: var(--rl-ivory);
  border-color: var(--rl-gold);
}

.footer-cta-btn.btn-outline {
  background: transparent;
  color: var(--rl-ivory);
  border: 1px solid rgba(236, 231, 218, 0.2);
}

.footer-cta-btn.btn-outline:hover {
  background: rgba(236, 231, 218, 0.05);
  border-color: var(--rl-gold);
  color: var(--rl-gold);
}

.footer-divider {
  height: 1px;
  width: 100%;
  margin: 40px 0;
}

.footer-divider.divider-gold {
  background: linear-gradient(90deg, rgba(201, 168, 120, 0.3) 0%, rgba(201, 168, 120, 0.05) 100%);
}

.footer-divider.divider-muted {
  background: rgba(236, 231, 218, 0.08);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rl-ivory);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-bullet {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--rl-gold);
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--rl-cream);
  text-decoration: none;
  opacity: 0.65;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav-links a:hover {
  opacity: 1;
  color: var(--rl-gold);
  transform: translateX(4px);
}

.footer-location-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loc-text-main {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--rl-ivory);
  margin: 0;
}

.loc-text-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--rl-cream);
  opacity: 0.7;
  margin: 0;
}

.footer-map-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--rl-gold);
  text-decoration: none;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
  width: fit-content;
}

.footer-map-link:hover {
  text-decoration: underline;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--rl-cream);
  opacity: 0.5;
}

/* Responsive Overrides for Footer */
@media (max-width: 1024px) {
  .aurum-footer {
    padding: 80px 6% 40px 6%;
  }
  .footer-columns {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .aurum-footer {
    padding: 60px 20px 40px 20px;
  }
  .footer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-cta-block {
    flex-direction: column;
    align-items: stretch;
    margin-top: 12px;
  }
  .footer-cta-btn {
    text-align: center;
    width: 100%;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .footer-col-title {
    margin-bottom: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}




