@import url('https://fonts.googleapis.com/css2?family=Anton&family=Shadows+Into+Light&family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  --font-script: 'Shadows Into Light', cursive;
  --font-display: 'Anton', sans-serif;

  /* Ultra-Luxury #252321 Obsidian Charcoal Palette */
  --bg-cream: #252321;
  --bg-linen: #1D1B1A;
  --bg-card-white: #2D2A28;
  --bg-dark-forest: #252321;
  --bg-dark-footer: #181615;
  
  --text-dark: #F7F4EF;
  --text-slate: #D3CDC6;
  --text-light: #F7F5F0;
  --text-muted-light: #B0A79E;
  
  --terracotta: #D95D39;
  --terracotta-hover: #E86B47;
  --gold-accent: #E5B869;
  --forest-moss: #2E2B29;
  --gold-light: rgba(229, 184, 105, 0.15);
  --wood-warm: #C89968;
  
  --savings-green: #2A9D8F;
  --savings-bg: rgba(42, 157, 143, 0.18);
  
  --border-light: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(255, 255, 255, 0.15);
  
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
}

body {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #252321 !important;
  color: #F7F4EF !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .serif-title, .serif-title-lg, .cabin-title-serif {
  font-family: var(--font-display) !important;
  font-weight: 400;
  letter-spacing: 1.5px;
}

/* NAVBAR (PERFECTLY SYMMETRICAL & BALANCED HEADER) */
.header-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(37, 35, 33, 0.96) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0.65rem 2rem;
  transition: var(--transition);
}

.navbar {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left: Brand Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-light);
  flex-shrink: 0;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  background: transparent;
  transition: transform 0.3s ease;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  color: var(--gold-accent);
}

.brand-sub {
  font-size: 0.58rem;
  color: var(--text-muted-light);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  display: block;
  margin-top: -3px;
}

/* Center: Links */
.nav-links {
  display: flex;
  gap: 0.55rem;
  list-style: none;
  align-items: center;
  margin: 0 auto;
}

.nav-links a {
  position: relative;
  color: var(--text-muted-light);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.4rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: var(--transition);
}

.nav-links a:hover {
  background: rgba(184, 90, 71, 0.22);
  border-color: var(--terracotta);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 90, 71, 0.3);
}

.nav-links a i {
  font-size: 0.75rem;
  color: var(--terracotta);
  transition: transform 0.3s ease;
}

/* Right: Symmetrical Action Buttons & Language Switcher */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* PURE FLAGS ONLY LANGUAGE TOGGLE */
.lang-toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 2px 5px;
  height: 30px;
}

.lang-flag-btn {
  background: transparent;
  border: none;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0.15rem 0.4rem;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0.45;
  filter: grayscale(40%);
}

.lang-flag-btn.active {
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
  filter: grayscale(0%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.lang-flag-btn:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  user-select: none;
}

.quick-booking-bar {
  background: #2D2A28 !important;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
  margin-top: -3.5rem;
  position: relative;
  z-index: 30;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.quick-booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.25rem;
  align-items: flex-end;
}

.quick-booking-field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-accent) !important;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quick-booking-field input,
.quick-booking-field select {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(217, 93, 57, 0.35) !important;
  background: #1D1B1A !important;
  color: #F7F4EF !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.9rem;
  font-weight: 700 !important;
  outline: none;
  transition: var(--transition);
}

.quick-booking-field input::-webkit-calendar-picker-indicator {
  cursor: pointer !important;
  filter: invert(1) !important;
  opacity: 0.85 !important;
}

.quick-booking-field select option {
  background: #252321 !important;
  color: #F7F4EF !important;
  font-weight: 600 !important;
}

.nav-btn {
  height: 38px;
  padding: 0 1.15rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.nav-btn-whatsapp {
  background: #25D366;
  color: #051C0D;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

.nav-btn-terracotta {
  background: var(--terracotta);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(184, 90, 71, 0.25);
}

/* MOBILE HAMBURGER BUTTON */
.mobile-hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-hamburger-btn:hover {
  background: var(--terracotta);
}

/* MOBILE SLIDE-OUT DRAWER MENU */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 22, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: var(--bg-dark-forest);
  border-left: 1px solid var(--border-dark);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-overlay.active .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-drawer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 0.5rem;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.mobile-drawer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mobile-drawer-links a i {
  color: var(--terracotta);
}

/* DANCE HOVER ANIMATIONS */
@keyframes danceWiggle {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(-1.5deg); }
  75% { transform: translateY(-3px) rotate(1.5deg); }
  100% { transform: translateY(-2px) rotate(0deg); }
}

.dance-link:hover {
  color: var(--terracotta) !important;
  animation: danceWiggle 0.4s ease forwards;
}

.dance-link:hover i {
  transform: rotate(360deg) scale(1.15);
}

.dance-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.dance-on-hover:hover {
  animation: danceWiggle 0.4s ease forwards;
}

/* OTHER BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  text-transform: uppercase;
}

.btn-terracotta {
  background: var(--terracotta);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
}

.btn-terracotta-lg {
  padding: 1.05rem 2.2rem;
  font-size: 0.85rem;
  background: var(--terracotta);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(184, 90, 71, 0.35);
}

.btn-whatsapp-lg {
  background: #25D366;
  color: #000;
  padding: 1.05rem 2.2rem;
  font-size: 0.88rem;
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.3);
}

/* HERO SECTION */
.hero-nordlys-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  background: var(--bg-dark-forest);
}

.hero-view-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-view-container.active {
  opacity: 1;
  pointer-events: auto;
}

#video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hero-drone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(14, 22, 17, 0.35) 0%, rgba(10, 16, 12, 0.88) 100%);
}

.hero-video-watermark {
  position: absolute;
  bottom: 8.5rem;
  right: 3.5rem;
  z-index: 15;
  pointer-events: none;
  opacity: 0.22;
}

.hero-video-watermark img {
  height: 160px;
  width: auto;
}

#photo-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-photo-slide-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 2;
}

.hero-photo-slide-layer.active {
  opacity: 1;
}

#hero-drone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.2s ease-in-out;
}

#hero-drone-video.fade-out {
  opacity: 0;
}

/* View Mode Toggle Controls */
.view-mode-toggle {
  position: absolute;
  top: 5.8rem;
  right: 2.5rem;
  z-index: 50;
  background: rgba(14, 22, 17, 0.88);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(16px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.toggle-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.toggle-buttons {
  display: flex;
  gap: 0.4rem;
}

.toggle-btn, .btn-mode-3d {
  padding: 0.4rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--text-muted-light);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-btn.active, .btn-mode-3d.active {
  background: var(--forest-moss);
  border-color: var(--terracotta);
  color: #FFFFFF;
  font-weight: 600;
}

/* HERO CONTENT OVERLAY */
.hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem 11rem 2rem;
  z-index: 20;
}

.canyon-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(14, 22, 17, 0.9);
  border: 1px solid var(--terracotta);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  font-weight: 700;
  pointer-events: auto;
}

.canyon-badge-pill i {
  color: var(--terracotta);
}

/* ELEGANT HERO MAIN BRAND TITLE BANNER */
.hero-brand-display {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0.4rem !important;
  margin-bottom: 0.35rem !important;
  opacity: 0;
  transform: translateY(25px) scale(0.96);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform !important;
}

.hero-brand-display.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.hero-brand-main {
  font-family: var(--font-display) !important;
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
  font-weight: 400 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5E6C8 45%, #E5B869 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.95)) !important;
  display: block !important;
  line-height: 1.1 !important;
}

.hero-content-wrapper {
  padding: 3.5rem 1.5rem 6.5rem 1.5rem !important;
  position: relative;
  z-index: 10;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.hero-main-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem) !important;
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  text-align: center !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF5EC 55%, #E8D5B7 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.95)) !important;
  margin-bottom: 0.6rem !important;
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-subtext {
  font-family: var(--font-script) !important;
  font-size: clamp(1.4rem, 2.8vw, 2.05rem) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  line-height: 1.4 !important;
  text-align: center !important;
  color: #E5B869 !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.95), 0 0 30px rgba(229, 184, 105, 0.25) !important;
  max-width: 820px !important;
  margin: 0 auto 0.45rem auto !important;
  padding: 0 0.8rem !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.hero-desc-lead {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(0.86rem, 1.5vw, 1.02rem) !important;
  font-weight: 400 !important;
  text-align: center !important;
  color: #F4EFE6 !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95) !important;
  max-width: 780px !important;
  margin: 0.1rem auto 1.25rem auto !important;
  padding: 0.3rem 1rem !important;
  border-radius: 50px !important;
  background: rgba(37, 35, 33, 0.45) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-sizing: border-box !important;
  width: fit-content !important;
  line-height: 1.5 !important;
}

.hero-cta-group {
  display: flex;
  gap: 0.85rem;
  pointer-events: auto;
  margin-bottom: 0.8rem !important;
}

/* FLOATING BOOKING STRIP */
.floating-booking-bar {
  position: absolute;
  bottom: 4.8rem !important;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1360px;
  z-index: 30;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1rem 1.4rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  box-sizing: border-box;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) minmax(160px, 1.2fr) minmax(110px, 0.9fr) minmax(150px, 1.1fr) minmax(160px, auto);
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.booking-field label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--terracotta);
  font-weight: 700;
  white-space: nowrap;
}

.booking-field input,
.booking-field select {
  background: #1D1B1A !important;
  border: 1.5px solid rgba(217, 93, 57, 0.35) !important;
  border-radius: 10px !important;
  padding: 0.5rem 0.75rem !important;
  color: #F7F4EF !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  outline: none !important;
  transition: var(--transition) !important;
  height: 44px !important;
  box-sizing: border-box !important;
}

.booking-field input[type="date"] {
  color: #F7F4EF !important;
  font-weight: 700 !important;
}

.booking-field input::-webkit-calendar-picker-indicator {
  cursor: pointer !important;
  filter: invert(1) !important;
  opacity: 0.85 !important;
}

.booking-field select option {
  background: #252321 !important;
  color: #F7F4EF !important;
  font-weight: 600 !important;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--terracotta) !important;
  box-shadow: 0 0 0 3px rgba(217, 93, 57, 0.2) !important;
}

.savings-badge-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--savings-bg);
  border: 1px solid var(--savings-green);
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  height: 44px;
  box-sizing: border-box;
}

.savings-icon {
  font-size: 1.15rem;
  color: var(--savings-green);
}

.savings-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--savings-green);
  line-height: 1.1;
}

.savings-subtitle {
  font-size: 0.72rem;
  color: var(--text-slate);
  line-height: 1.1;
}

.booking-grid button.btn-terracotta {
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-radius: 12px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(184, 90, 71, 0.35);
  box-sizing: border-box;
}

/* SECTIONS & TYPOGRAPHY */
.section {
  padding: 8rem 2.5rem;
}

.section-cream {
  background-color: var(--bg-cream);
}

.section-linen {
  background-color: var(--bg-linen);
}

/* CTA SIDE LOGO & PARAGRAPH FLEX BOX */
.cta-logo-paragraph-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  max-width: 840px;
  margin: 0 auto 2.5rem auto;
  text-align: left;
}

.cta-side-logo {
  height: 95px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 18px rgba(184, 90, 71, 0.25));
  transition: transform 0.4s ease;
}

.cta-side-logo:hover {
  transform: scale(1.08) rotate(-3deg);
}

.cta-lead-paragraph {
  margin: 0 !important;
  line-height: 1.8;
}

/* VIDEO BACKGROUND FINAL CTA SECTION */
.section-video-cta {
  position: relative;
  padding: 8rem 1.5rem;
  overflow: hidden;
}

.cta-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(1.1) contrast(1.08);
}

.cta-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 22, 17, 0.25) 0%, rgba(10, 16, 13, 0.4) 100%);
  z-index: 2;
}

.cta-glass-card {
  background: rgba(14, 22, 17, 0.22) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}

/* AMENITIES SECTION WITH BACKGROUND VIDEO */
.section-video-amenities {
  position: relative;
  padding: 8rem 2.5rem;
  overflow: hidden;
}

.section-video-amenities .section-title-wrapper {
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-video-amenities h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FAF7F2 !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  margin-bottom: 1rem;
}

.section-video-amenities h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.section-video-amenities .subtitle-text {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.92) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.amenities-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(1.08) contrast(1.05);
}

.amenities-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 22, 17, 0.25) 0%, rgba(10, 16, 13, 0.4) 100%);
  z-index: 2;
}

.glass-amenity-card {
  background: rgba(14, 22, 17, 0.22) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  color: #FFFFFF !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
  transition: all 0.3s ease !important;
}

.glass-amenity-card h4 {
  color: #FAF7F2 !important;
}

.glass-amenity-card p {
  color: rgba(250, 247, 242, 0.92) !important;
}

.glass-amenity-card:hover {
  background: rgba(184, 90, 71, 0.3) !important;
  border-color: var(--terracotta) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 45px rgba(184, 90, 71, 0.35) !important;
}

.section-dark-accent {
  background-color: var(--bg-dark-forest);
  color: var(--text-light);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 850px;
  margin: 0 auto;
}

.section-tag-canyon {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: max-content !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  font-size: 0.72rem !important;
  letter-spacing: 2.2px !important;
  text-transform: uppercase !important;
  color: var(--terracotta);
  font-weight: 800 !important;
  margin: 0 auto 0.85rem auto !important;
  padding: 0.35rem 1.05rem !important;
  border-radius: 50px !important;
  background: rgba(184, 90, 71, 0.1) !important;
  border: 1px solid rgba(184, 90, 71, 0.25) !important;
  white-space: nowrap !important;
}

.serif-title-lg {
  font-family: var(--font-display) !important;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.text-white {
  color: var(--text-light) !important;
}

.canyon-divider,
.gold-divider {
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(217, 93, 57, 0.45) 30%, rgba(255, 140, 66, 0.6) 50%, rgba(217, 93, 57, 0.45) 70%, transparent 100%);
  margin: 1.8rem auto 2.2rem auto;
  position: relative;
  border-radius: 10px;
  overflow: visible;
}

.lead-text {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-slate);
  line-height: 1.8;
  font-weight: 400;
}

.subtitle-text {
  color: var(--text-slate);
  font-size: 1.05rem;
  font-weight: 400;
}

/* DRONE STORY SECTION WITH PARALLAX BACKGROUND LAYER */
.section-drone-story {
  position: relative;
  padding: 7rem 1.5rem;
  overflow: hidden;
  background: transparent;
}

.drone-story-bg-layer {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  background: url('assets/images/rac/exterior/DJI_0210.webp') center/cover no-repeat;
  z-index: 0;
  will-change: transform;
}

/* SCROLL REVEAL ANIMATIONS FOR DRONE STORY & BACKGROUND SECTIONS */
/* 10X COOLER SCROLL REVEAL ENGINE (CINEMATIC MOTION BLUR & SCALE-SPRING CASCADE) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(8px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* CINEMATIC HEADING MOTION (H1 / H2) */
h1, h2, .serif-title-lg, .hero-main-title, .location-title {
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

h1.is-visible, h2.is-visible, .serif-title-lg.is-visible, .hero-main-title.is-visible, .location-title.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* DYNAMIC SCALE-SPRING CASCADE ANIMATION FOR BENEFIT/FEATURE LISTS & CARDS */
.activity-card,
.amenity-card-dunlap,
.rule-card,
.drone-pill,
.canyon-pills-row .pill-tag {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(45px) scale(0.92) rotate(-0.5deg);
  filter: blur(4px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: opacity, transform, filter;
}

.activity-card.is-visible,
.amenity-card-dunlap.is-visible,
.rule-card.is-visible,
.drone-pill.is-visible,
.canyon-pills-row .pill-tag.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: blur(0px);
}

/* RADIANT SHIMMER LIGHT BEAM SWEEP ON CARDS REVEAL */
.activity-card::after,
.amenity-card-dunlap::after,
.rule-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 184, 105, 0.16), transparent);
  transform: skewX(-25deg);
  transition: left 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

.activity-card.is-visible::after,
.amenity-card-dunlap.is-visible::after,
.rule-card.is-visible::after {
  left: 150%;
}

/* REALISTIC PARABOLIC SUNSET ARC ANIMATION */
.canyon-divider::before,
.gold-divider::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10%;
  width: 80%;
  height: 6px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.3) 0%, transparent 75%);
  animation: sunsetHorizonPulse 4.8s ease-in-out infinite;
  pointer-events: none;
}

.canyon-divider::after,
.gold-divider::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFCC70;
  box-shadow: 0 0 10px #FFCC70, 0 0 4px #F7931E;
  animation: sunsetParabolicArc 4.8s cubic-bezier(0.35, 0, 0.25, 1) infinite;
  will-change: transform, background-color, box-shadow, opacity;
  pointer-events: none;
}

@keyframes sunsetHorizonPulse {
  0% {
    opacity: 0.15;
    transform: scaleX(0.7);
  }
  60% {
    opacity: 0.85;
    transform: scaleX(1.1);
  }
  100% {
    opacity: 0.15;
    transform: scaleX(0.7);
  }
}

@keyframes sunsetParabolicArc {
  0% {
    transform: translate3d(-68px, -10px, 0) scale(0.85);
    opacity: 0;
    background-color: #FFDF85;
    box-shadow: 0 0 8px #FFDF85, 0 0 3px #FFCC70;
  }
  12% {
    opacity: 1;
    background-color: #FFCC70;
    box-shadow: 0 0 12px #FFCC70, 0 0 5px #F7931E;
  }
  35% {
    transform: translate3d(-24px, -18px, 0) scale(1);
    opacity: 1;
    background-color: #F7931E;
    box-shadow: 0 0 14px #FF9F1C, 0 0 6px #F7931E;
  }
  65% {
    transform: translate3d(20px, -10px, 0) scale(1.1);
    opacity: 1;
    background-color: #FF6B35;
    box-shadow: 0 0 16px #FF6B35, 0 0 8px #E8603C;
  }
  88% {
    transform: translate3d(52px, -1px, 0) scale(1.15);
    opacity: 0.95;
    background-color: #E8603C;
    box-shadow: 0 0 18px #E8603C, 0 0 10px #B83A20;
  }
  95% {
    transform: translate3d(62px, 3px, 0) scale(0.9);
    opacity: 0.25;
    background-color: #B83A20;
    box-shadow: 0 0 8px #B83A20;
  }
  100% {
    transform: translate3d(68px, 6px, 0) scale(0.6);
    opacity: 0;
    background-color: #7A2113;
    box-shadow: none;
  }
}

/* GLOWING FOOTER SCROLL INDICATOR & PROGRESS TRACK */
.footer-scroll-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin: 1.75rem 0 1.25rem 0;
  text-align: center;
}

.scroll-progress-bar-track {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.scroll-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--gold-accent) 100%);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(229, 184, 105, 0.6);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-scroll-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gold-accent, #E5B869);
  letter-spacing: 0.5px;
  background: rgba(37, 35, 33, 0.85);
  border: 1px solid rgba(229, 184, 105, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.compass-pulse-icon {
  color: var(--terracotta);
  animation: compassPulse 3s infinite linear;
}

/* ==========================================================================
   AWWWARDS SITE OF THE DAY COMPETITION ANIMATION SUITE
   ========================================================================== */

/* 1. KINETIC GOLD FOLLOWER CURSOR (MINIMALIST & ELEGANT) */
.awwwards-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

.awwwards-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(229, 184, 105, 0.6);
  background: rgba(229, 184, 105, 0.04);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awwwards-cursor-follower.is-hovering {
  width: 36px;
  height: 36px;
  background: rgba(217, 93, 57, 0.18);
  border-color: var(--terracotta);
  box-shadow: 0 0 15px rgba(217, 93, 57, 0.35);
}

.awwwards-cursor-text {
  display: none !important;
}

/* Hide custom cursor on mobile touch screens */
@media (max-width: 1024px) {
  .awwwards-cursor-dot,
  .awwwards-cursor-follower {
    display: none !important;
  }
}

/* 2. DYNAMIC SPOTLIGHT RADIAL REFLECTION ON LUXURY CARDS */
.activity-card::before,
.amenity-card-dunlap::before,
.canyon-cabin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(229, 184, 105, 0.12) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.activity-card:hover::before,
.amenity-card-dunlap:hover::before,
.canyon-cabin-card:hover::before {
  opacity: 1;
}

/* 3. WORD MASK LINE SLIDE-UP ENTRANCE */
.word-mask-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 2px;
}

.word-mask-item {
  display: inline-block;
  transform: translateY(115%) filter blur(4px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter;
}

.is-visible .word-mask-item,
h1.is-visible .word-mask-item,
h2.is-visible .word-mask-item {
  transform: translateY(0) filter blur(0px);
}

/* 4. LEVITATION SINE MOTION FOR FLOATING BADGES */
.canyon-badge-pill,
.savings-badge-box {
  animation: floatingSine 5s ease-in-out infinite;
}

@keyframes floatingSine {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0px); }
}

@keyframes compassPulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

.drone-story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 22, 17, 0.82) 0%, rgba(10, 16, 13, 0.75) 100%);
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.glass-story-card {
  background: rgba(14, 22, 17, 0.22) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 28px;
  padding: 3.5rem 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-cream {
  color: #FAF7F2 !important;
}

.text-cream-muted {
  color: rgba(250, 247, 242, 0.92) !important;
}

.gold-pill {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: max-content !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  margin: 0 auto 1.25rem auto !important;
  padding: 0.45rem 1.25rem !important;
  border-radius: 50px !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, rgba(184, 90, 71, 0.95), rgba(135, 55, 40, 0.98)) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.story-heading-cinema {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  line-height: 1.25 !important;
  color: #FFFFFF !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9) !important;
  margin-bottom: 0.5rem !important;
}

.story-body-formatted {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(0.98rem, 1.8vw, 1.12rem) !important;
  line-height: 1.75 !important;
  color: rgba(250, 247, 242, 0.92) !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.2rem !important;
  max-width: 720px !important;
  margin: 0 auto !important;
}

.story-lead-accent {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem) !important;
  font-weight: 700 !important;
  color: var(--gold-accent) !important;
  letter-spacing: 0.3px !important;
}

.story-poetic-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  margin: 0.5rem 0 !important;
  font-style: italic !important;
  font-size: clamp(1rem, 2vw, 1.15rem) !important;
  color: #FAF4EB !important;
  border-left: 2px solid var(--terracotta) !important;
  border-right: 2px solid var(--terracotta) !important;
  padding: 0.9rem 1.2rem !important;
  border-radius: 14px !important;
  background: rgba(37, 35, 33, 0.45) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

.story-closing-punch {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem) !important;
  font-style: italic !important;
  font-weight: 700 !important;
  color: #E5B869 !important;
  letter-spacing: 0.5px !important;
  margin-top: 1.85rem !important;
  margin-bottom: 0.5rem !important;
  padding-top: 1.25rem !important;
  position: relative !important;
  display: inline-block !important;
  text-shadow: 0 2px 20px rgba(229, 184, 105, 0.35) !important;
}

.story-closing-punch::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 48px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(229, 184, 105, 0.65), transparent) !important;
}

.gold-divider {
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent) !important;
  height: 2px !important;
  width: 100px !important;
  margin: 1.5rem auto 2rem auto !important;
}

.drone-highlights-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.drone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.drone-pill:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

/* CANYON CREEK STYLE PROPERTY CARD */
.canyon-cabin-card {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 3.5rem auto;
  padding: 2.5rem;
  background: #2D2A28 !important;
  border-radius: 24px;
  border: 1px solid rgba(217, 93, 57, 0.25) !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4) !important;
  color: #F7F4EF !important;
}

.canyon-cabin-card.reverse {
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
}

/* BACKGROUND PHOTO & DARK OVERLAY WITH CONTINUOUS KEN BURNS SLOW ZOOM IN FOR CABANA RAC */
#cabana-aries-section,
#cabana-rac-section {
  position: relative !important;
  overflow: hidden !important;
  background: #1D1B1A !important;
  border: 1px solid rgba(217, 93, 57, 0.35) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  z-index: 1 !important;
}

.canyon-card-bg-overlay-subtle {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(14, 22, 17, 0.45) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.canyon-card-bg-animated {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  transform: scale(1) !important;
  animation: kenBurnsSlowZoomIn 22s linear infinite !important;
  will-change: transform, opacity !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.canyon-card-bg-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  opacity: 1 !important;
  filter: brightness(1.05) contrast(1.05) !important;
}

/* Balanced Dark Overlay: Allows the armchair photo detail (DSC_9719) to be clearly visible while guaranteeing text readability */
.canyon-card-bg-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(14, 12, 11, 0.68) 0%, rgba(22, 19, 17, 0.78) 100%) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.canyon-cabin-card > .canyon-gallery-col,
.canyon-cabin-card > .canyon-info-col,
#cabana-aries-section > .canyon-gallery-col,
#cabana-aries-section > .canyon-info-col,
#cabana-rac-section > .canyon-gallery-col,
#cabana-rac-section > .canyon-info-col {
  position: relative !important;
  z-index: 10 !important;
}

/* Ken Burns Slow Zoom-In Keyframes with Smooth Crossfade Reset */
@keyframes kenBurnsSlowZoomIn {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  4% {
    opacity: 1;
  }
  94% {
    opacity: 1;
  }
  100% {
    transform: scale(1.14);
    opacity: 0.3;
  }
}

.canyon-cabin-card.reverse .canyon-gallery-col {
  order: 1;
}

.canyon-cabin-card.reverse .canyon-info-col {
  order: 2;
}

.canyon-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  max-width: 540px;
}

.canyon-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.canyon-main-photo {
  position: relative;
  width: 100%;
  height: 338px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  background: #1D1B1A;
}

.canyon-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease, opacity 0.35s ease;
}

.canyon-main-photo:hover img {
  transform: scale(1.03);
}

.canyon-badge-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: var(--terracotta);
  color: #FFFFFF;
  padding: 0.4rem 1.05rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(184, 90, 71, 0.35);
}

.photo-counter-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(15, 23, 20, 0.82);
  color: #FFFFFF;
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.photo-expand-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(250, 247, 242, 0.92);
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.photo-expand-badge:hover {
  background: var(--terracotta);
  color: #FFFFFF;
}

.gallery-filter-tabs {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}

.gallery-filter-btn {
  background: rgba(184, 90, 71, 0.08);
  color: var(--terracotta);
  border: 1px solid rgba(184, 90, 71, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
  box-shadow: 0 4px 12px rgba(184, 90, 71, 0.3);
}

.gallery-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-prev-arrow {
  left: 1rem;
}

.gallery-next-arrow {
  right: 1rem;
}

.gallery-nav-arrow:hover {
  background: var(--terracotta);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 22px rgba(184, 90, 71, 0.45);
}

.dunlap-thumbs-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.4rem 0.1rem;
  margin-top: 0.15rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.dunlap-thumbs-row::-webkit-scrollbar {
  height: 5px;
}

.dunlap-thumbs-row::-webkit-scrollbar-thumb {
  background: var(--terracotta);
  border-radius: 10px;
}

.aries-thumb-btn,
.rac-thumb-btn {
  flex: 0 0 80px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  padding: 0;
  background: none;
  transition: all 0.2s ease;
}

.aries-thumb-btn.active,
.aries-thumb-btn:hover,
.rac-thumb-btn.active,
.rac-thumb-btn:hover {
  opacity: 1;
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(184, 90, 71, 0.3);
}

.aries-thumb-btn img,
.rac-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aries-thumb-btn.active,
.aries-thumb-btn:hover,
.rac-thumb-btn.active,
.rac-thumb-btn:hover {
  opacity: 1;
  border-color: var(--terracotta);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 16px rgba(184, 90, 71, 0.35);
}

.aries-thumb-btn img,
.rac-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ANIMATED SWIPER GALLERY STYLES */
.aries-main-swiper,
.rac-main-swiper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  margin-top: 0.75rem;
}

.aries-main-swiper .swiper-slide,
.rac-main-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.aries-main-swiper .swiper-slide img,
.rac-main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.aries-main-swiper .swiper-slide:hover img,
.rac-main-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

.slide-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.5rem 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(15, 23, 20, 0.88), rgba(15, 23, 20, 0));
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  pointer-events: none;
}

.aries-prev-btn,
.aries-next-btn,
.rac-prev-btn,
.rac-next-btn {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 90, 71, 0.3) !important;
  border-radius: 50% !important;
  color: var(--terracotta) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
  transition: all 0.3s ease !important;
}

.aries-prev-btn:after,
.aries-next-btn:after,
.rac-prev-btn:after,
.rac-next-btn:after {
  display: none !important;
}

.aries-prev-btn:hover,
.aries-next-btn:hover,
.rac-prev-btn:hover,
.rac-next-btn:hover {
  background: var(--terracotta) !important;
  color: #FFFFFF !important;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(184, 90, 71, 0.4) !important;
}

.aries-pagination .swiper-pagination-bullet,
.rac-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.6) !important;
  opacity: 0.7 !important;
}

.aries-pagination .swiper-pagination-bullet-active,
.rac-pagination .swiper-pagination-bullet-active {
  background: var(--terracotta) !important;
  width: 24px !important;
  border-radius: 10px !important;
  opacity: 1 !important;
}

/* SWIPER THUMBNAILS CAROUSEL */
.aries-thumbs-swiper,
.rac-thumbs-swiper {
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}

.aries-thumbs-swiper .swiper-slide,
.rac-thumbs-swiper .swiper-slide {
  width: 90px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: all 0.3s ease;
}

.aries-thumbs-swiper .swiper-slide-thumb-active,
.aries-thumbs-swiper .swiper-slide:hover,
.rac-thumbs-swiper .swiper-slide-thumb-active,
.rac-thumbs-swiper .swiper-slide:hover {
  opacity: 1;
  border-color: var(--terracotta);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 16px rgba(184, 90, 71, 0.3);
}

.aries-thumbs-swiper .swiper-slide img,
.rac-thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.canyon-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.pill-tag {
  background: var(--bg-linen);
  border: 1px solid var(--border-light);
  color: var(--text-slate);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pill-tag i {
  color: var(--terracotta);
}

.cabin-kicker-canyon {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.cabin-title-serif {
  font-family: var(--font-display) !important;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cabin-body-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.cabin-body-text {
  color: rgba(250, 244, 235, 0.92) !important;
  font-size: 0.96rem !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  max-height: 165px !important;
  overflow-y: auto !important;
  padding-right: 0.6rem !important;
  transition: max-height 0.45s ease-in-out !important;
  scroll-behavior: smooth !important;
}

.cabin-body-text.expanded {
  max-height: 900px !important;
  overflow-y: visible !important;
}

/* Custom Scrollbar for Cabin Description */
.cabin-body-text::-webkit-scrollbar {
  width: 4px !important;
}

.cabin-body-text::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 10px !important;
}

.cabin-body-text::-webkit-scrollbar-thumb {
  background: var(--terracotta) !important;
  border-radius: 10px !important;
}

.cabin-body-text p {
  margin: 0 !important;
  color: rgba(250, 244, 235, 0.92) !important;
  line-height: 1.75 !important;
}

.cabin-story-punch {
  font-family: var(--font-script) !important;
  font-size: 1.35rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0.8px !important;
  color: #E5B869 !important;
  margin-top: 0.3rem !important;
  border-left: 2px solid var(--terracotta) !important;
  padding-left: 0.85rem !important;
}

.btn-toggle-desc {
  background: transparent !important;
  border: none !important;
  color: var(--terracotta) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  margin-top: 0.6rem !important;
  padding: 0.2rem 0 !important;
  transition: all 0.3s ease !important;
}

.btn-toggle-desc:hover {
  color: #E5B869 !important;
}

.canyon-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.price-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terracotta);
}

.price-label {
  font-size: 0.82rem;
  color: var(--text-slate);
  display: block;
}

/* HOUSE RULES & AMENITIES RESPONSIVE GRIDS */
.rules-grid-responsive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.rule-card {
  background: #2D2A28 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
  color: #F7F4EF !important;
}

/* BIDIRECTIONAL ZOOM-IN / ZOOM-OUT SCROLL ANIMATION FOR RULE CARDS */
.rule-card.zoom-scroll-card {
  opacity: 0 !important;
  transform: scale(0.88) !important;
  filter: none !important;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.65s ease-in-out,
              box-shadow 0.35s ease,
              border-color 0.35s ease !important;
  will-change: transform, opacity !important;
}

.rule-card.zoom-scroll-card.in-view {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.rule-card.zoom-scroll-card.in-view:hover {
  transform: scale(1.03) translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(217, 93, 57, 0.35) !important;
  border-color: rgba(217, 93, 57, 0.5) !important;
}

.rule-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  height: 120px;
}

.rule-custom-icon {
  height: 120px;
  width: 120px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(184, 90, 71, 0.3));
  transition: transform 0.4s ease;
}

.rule-card:hover .rule-custom-icon {
  transform: scale(1.12) rotate(2deg);
}

.amenities-grid-dunlap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.amenity-card-dunlap {
  background: var(--bg-card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.amenity-card-dunlap:hover {
  transform: translateY(-5px);
  border-color: var(--terracotta);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.amenity-icon-circle-canyon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(184, 90, 71, 0.12);
  border: 1px solid var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.amenity-card-dunlap h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.amenity-card-dunlap p {
  color: var(--text-slate);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}

.activities-grid-responsive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.activity-card {
  background: #2D2A28 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 1.35rem 1.25rem !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  height: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
}

/* ELEGANT VIDEO FRAME INSIDE ACTIVITY CARD */
.activity-card-with-frame {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  padding: 1.15rem 1rem !important;
}

.activity-video-frame {
  position: relative !important;
  width: 100% !important;
  height: 145px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  margin-bottom: 0.85rem !important;
  border: 1px solid rgba(217, 93, 57, 0.45) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
  background: #000000 !important;
}

.activity-frame-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  opacity: 1 !important;
  filter: brightness(1.05) contrast(1.05) !important;
}

.video-live-badge {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  background: rgba(217, 93, 57, 0.92) !important;
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  padding: 0.25rem 0.6rem !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  backdrop-filter: blur(4px) !important;
}

.activity-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(217, 93, 57, 0.25) !important;
  border-color: var(--terracotta) !important;
}

.activity-card h4 {
  color: #F7F4EF !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  margin: 0.2rem 0 0.45rem 0 !important;
  line-height: 1.3 !important;
}

.activity-card p {
  color: #D3CDC6 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.86rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  max-height: 140px !important;
  overflow-y: auto !important;
  padding-right: 4px !important;
  scroll-behavior: smooth !important;
}

.activity-card p::-webkit-scrollbar {
  width: 4px !important;
}

.activity-card p::-webkit-scrollbar-thumb {
  background: var(--terracotta) !important;
  border-radius: 10px !important;
}

/* BIKE RENTAL BADGE BLOCK IN ACTIVITY CARD */
.bike-rental-info {
  margin-top: 0.85rem !important;
  background: rgba(217, 93, 57, 0.08) !important;
  border: 1px solid rgba(217, 93, 57, 0.4) !important;
  border-radius: 12px !important;
  padding: 0.75rem 0.85rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.55rem !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.bike-rental-info:hover {
  background: rgba(217, 93, 57, 0.15) !important;
  border-color: var(--terracotta) !important;
  box-shadow: 0 6px 20px rgba(217, 93, 57, 0.35) !important;
}

.bike-rental-header {
  color: var(--terracotta) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
}

.bike-rental-details-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.5rem !important;
  width: 100% !important;
  flex-wrap: wrap !important;
}

.bike-tag-available {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #F7F4EF !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  padding: 0.25rem 0.6rem !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.bike-tag-price {
  background: var(--terracotta) !important;
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  padding: 0.25rem 0.65rem !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(217, 93, 57, 0.35) !important;
}

/* LOCATION SPLIT */
.location-map-split {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-dark-forest);
  color: #FFF;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
}

.location-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #FFF;
  margin-bottom: 1rem;
}

.map-actions-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-iframe-wrapper {
  height: 380px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-dark);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 22, 17, 0.95);
  backdrop-filter: blur(15px);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid var(--border-dark);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--terracotta);
  color: #FFFFFF;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0,0,0,0.9);
}

.lightbox-caption {
  margin-top: 1.25rem;
  color: var(--terracotta);
  font-size: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
}

/* BOOKING MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 22, 17, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  width: 92%;
  max-width: 580px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0,0,0,0.06);
  border: none;
  color: var(--text-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-brand-logo {
  display: block;
  height: 84px;
  width: auto;
  margin: 0 auto 0.5rem;
}

.modal-summary-box {
  background: #1D1B1A !important;
  border: 1px solid rgba(217, 93, 57, 0.3) !important;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  color: #F7F4EF !important;
}

.btn-block {
  width: 100%;
}

/* FOOTER */
.footer {
  background: var(--bg-dark-footer);
  color: var(--text-light);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 2.5rem 2.5rem 2.5rem;
}

.center-brand {
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-brand-logo {
  height: 80px;
  width: auto;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* ==========================================
   ADVANCED MOBILE & TABLET RESPONSIVENESS
========================================== */

@media (max-width: 1024px) {
  .section { padding: 4.5rem 1.25rem; }
  .nav-links { display: none !important; }
  .hide-on-mobile { display: none !important; }
  .mobile-hamburger-btn { display: inline-flex !important; }
  
  .canyon-cabin-card, .canyon-cabin-card.reverse {
    grid-template-columns: 1fr !important;
    gap: 1.75rem;
    margin-top: 2rem;
    padding: 1.5rem;
  }
  .canyon-cabin-card.reverse .canyon-gallery-col { order: 1; }
  .canyon-main-photo { height: 300px; }
  
  .rules-grid-responsive { grid-template-columns: 1fr; gap: 1rem; }
  .amenities-grid-dunlap { grid-template-columns: 1fr 1fr; }
  .activities-grid-responsive { grid-template-columns: 1fr 1fr; }
  .location-map-split { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.5rem; }
  .hero-video-watermark { display: none; }
  
  .floating-booking-bar {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 2rem;
    padding: 1.25rem;
  }
  
  .booking-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .savings-badge-box, #quick-booking-form button {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  *, *::before, *::after {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
  }

  .header-banner {
    padding: 0.4rem 0.5rem !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  
  .navbar {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: space-between !important;
    gap: 0.2rem !important;
  }
  
  .nav-brand {
    gap: 0.4rem !important;
  }
  
  .brand-logo-img { height: 26px !important; }
  .brand-name { font-size: 0.92rem !important; letter-spacing: 1px !important; }
  .brand-sub { display: none !important; }
  
  .nav-actions { gap: 0.3rem !important; }
  .lang-toggle-pill { padding: 1px 3px !important; height: 26px !important; }
  .lang-flag-btn { font-size: 0.95rem !important; padding: 0.1rem 0.2rem !important; }
  .mobile-hamburger-btn { width: 34px !important; height: 34px !important; font-size: 0.95rem !important; }

  .hero-nordlys-section { height: auto; min-height: 100vh; padding-bottom: 2.5rem; }
  .hero-content-wrapper { padding: 5.25rem 0.75rem 2rem 0.75rem; position: relative; height: auto; text-align: center; }
  .hero-main-title,
  .hero-title {
    font-size: clamp(1.75rem, 6.2vw, 2.4rem) !important;
    letter-spacing: 1px !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }
  .hero-subtext {
    font-size: clamp(1.05rem, 4.2vw, 1.35rem) !important;
    line-height: 1.4 !important;
    margin: 1.1rem auto 0.8rem auto !important;
    padding: 0 0.5rem !important;
    text-align: center !important;
  }
  .hero-desc-lead {
    font-size: 0.88rem !important;
    margin: 0.5rem auto 1.8rem auto !important;
    padding: 0.4rem 0.85rem !important;
    text-align: center !important;
  }
  
  .canyon-badge-pill { font-size: 0.65rem; padding: 0.35rem 0.85rem; }
  .hero-cta-group { flex-direction: column; width: 100%; gap: 0.75rem; }
  .btn-terracotta-lg, .btn-outline-light { width: 100%; text-align: center; justify-content: center; height: 46px; font-size: 0.82rem; }
  
  .canyon-cabin-card,
  .canyon-cabin-card.reverse {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.15rem 0.85rem !important;
    border-radius: 18px !important;
    margin: 1.75rem 0 !important;
    overflow: hidden !important;
  }

  .canyon-gallery-col {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .canyon-info-col {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
  }

  .canyon-info-col p,
  .canyon-info-col h3,
  .canyon-info-col div {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .canyon-main-photo { height: 210px !important; border-radius: 12px !important; width: 100% !important; }
  
  /* THUMBNAILS HORIZONTAL SCROLL FIT */
  .dunlap-thumbs-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0.4rem !important;
    padding-bottom: 0.4rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .dunlap-thumbs-row button {
    flex: 0 0 62px !important;
    height: 48px !important;
    width: 62px !important;
    border-radius: 8px !important;
  }

  /* CABIN KICKER & PILLS WRAP FIT */
  .cabin-kicker-canyon {
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 0.65rem !important;
    line-height: 1.4 !important;
    letter-spacing: 1.2px !important;
  }

  .canyon-pills-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.35rem !important;
    margin: 1rem 0 !important;
    width: 100% !important;
  }

  .pill-tag {
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 0.68rem !important;
    padding: 0.3rem 0.55rem !important;
    border-radius: 20px !important;
    max-width: 100% !important;
  }
  
  .canyon-action-row { flex-direction: column; align-items: stretch; gap: 1rem; }
  .select-cabin-btn { width: 100%; height: 46px; font-size: 0.82rem; justify-content: center; }
  
  .rules-grid-responsive { grid-template-columns: 1fr; gap: 1rem; }
  .amenities-grid-dunlap { grid-template-columns: 1fr; gap: 1rem; }
  .activities-grid-responsive { grid-template-columns: 1fr; gap: 1rem; }
  
  .map-actions-group { flex-direction: column; gap: 0.75rem; }
  .map-btn-full { width: 100%; text-align: center; justify-content: center; height: 44px; font-size: 0.82rem; }
  .map-iframe-wrapper { height: 260px; border-radius: 12px; }
  
  .btn-block-mobile { width: 100%; text-align: center; justify-content: center; }
  .cta-mobile-title { font-size: 1.85rem !important; line-height: 1.25 !important; }
  .cta-mobile-padding { padding: 3.5rem 0.75rem !important; }
  
  .floating-booking-bar {
    width: 100% !important;
    padding: 1.15rem 0.75rem !important;
    border-radius: 16px !important;
    margin-top: 1.5rem !important;
  }
  .booking-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .booking-field input, .booking-field select { height: 46px !important; font-size: 0.88rem !important; }
  .savings-badge-box, #quick-booking-form button { grid-column: span 1; width: 100%; }
  #quick-booking-form button { height: 48px !important; font-size: 0.85rem !important; }
  
  .cta-logo-paragraph-box {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }
  .cta-side-logo {
    height: 65px;
  }
  .glass-story-card {
    padding: 1.75rem 0.85rem !important;
    border-radius: 18px !important;
    width: 100% !important;
  }
  .section-drone-story, .section-video-amenities, .section-video-cta {
    padding: 3.25rem 0.5rem !important;
  }
  .modal-card { padding: 1.5rem 0.85rem; width: 95%; max-width: 95%; }
  
  .drone-highlights-row { flex-direction: column; gap: 0.5rem; width: 100%; }
  .drone-pill { width: 100%; justify-content: center; font-size: 0.76rem; padding: 0.45rem 0.85rem; }
}

@media (max-width: 480px) {
  .brand-sub { display: none !important; }
  .hero-brand-main { font-size: 1.85rem !important; letter-spacing: 3px !important; }
  .hero-main-title { font-size: 1.65rem !important; letter-spacing: 1.2px !important; }
  .hero-subtext { font-size: 1.3rem !important; letter-spacing: 0.5px !important; }
  .serif-title-lg { font-size: 1.65rem !important; letter-spacing: 1.2px !important; }
  .cabin-title-serif { font-size: 1.75rem !important; letter-spacing: 1.2px !important; }
  .location-title { font-size: 1.65rem !important; letter-spacing: 1.2px !important; }
  .pill-tag { font-size: 0.66rem !important; padding: 0.28rem 0.5rem !important; }
  
  .gold-pill, .section-tag-canyon {
    font-size: 0.62rem !important;
    letter-spacing: 1px !important;
    padding: 0.35rem 0.7rem !important;
    white-space: normal !important;
    text-align: center !important;
    max-width: 100% !important;
    word-break: break-word !important;
  }
  
  .canyon-cabin-card {
    padding: 0.85rem 0.65rem !important;
    border-radius: 14px !important;
  }
  .canyon-main-photo {
    height: 195px !important;
  }
}
