/* ============================================================
   ENVOYAGE — Ultra-Premium Luxury Stylesheet v2
   ============================================================ */

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

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --white-soft:   #F8F5EE;
  --white-warm:   #F9F7F2;
  --black:        #0A0A0A;
  --black-soft:   #151515;
  --gold:         #e3a52a;
  --gold-light:   #f4bc4c;
  --gold-dim:     #b3801d;
  --gold-subtle:  rgba(227, 165, 42, 0.1);
  --grey:         #666666;
  --grey-light:   #999999;
  --grey-pale:    #E5E5E5;
  --accent-soft:  rgba(227, 165, 42, 0.05);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;

  --ease:         cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans:        0.5s var(--ease);
  --trans-slow:   0.8s var(--ease-out);

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;

  --shadow-subtle: 0 10px 40px rgba(0,0,0,0.04);
  --shadow-medium: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-gold:   0 15px 45px rgba(179, 142, 68, 0.12);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Grain overlay (luxury texture) ────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

/* ─── Utility ────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 110px 0; }
.text-center { text-align: center; }
.gold-text { color: var(--gold); }

/* ─── Typography Components ──────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  display: inline-block;
  padding-right: 5px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.9;
  font-weight: 500;
}

.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 32px;
}
.gold-rule span {
  display: block;
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.gold-rule i {
  color: var(--gold);
  font-size: 0.55rem;
  font-style: normal;
}
.gold-rule.center { justify-content: center; }
.gold-rule.center span:last-child { background: linear-gradient(90deg, transparent, var(--gold)); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.7s ease;
  z-index: 1;
}
.btn:hover::after { left: 150%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dim) 100%);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 20px rgba(227,165,42,0.3);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(227,165,42,0.45);
  color: var(--white);
}
.btn-gold:active { transform: translateY(-1px); }

.btn-glass {
  background: rgba(179, 142, 68, 0.05);
  color: var(--gold);
  border: 1px solid rgba(179, 142, 68, 0.2);
  backdrop-filter: blur(12px);
}
.btn-glass:hover {
  border-color: rgba(200,169,106,0.6);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(200,169,106,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(179, 142, 68, 0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(200,169,106,0.15);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  background: transparent;
  transition: all 0.5s var(--ease);
}
.navbar.scrolled {
  background: var(--white);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(227, 165, 42, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  transition: transform 0.4s var(--ease);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }

.nav-menu {
  display: flex;
  align-items: center;
}

@media (min-width: 769px) {
  .nav-menu {
    gap: 8px; /* Compact capsule spacing */
    background: rgba(255, 255, 255, 0.45); /* Ultra-fine light glass backdrop */
    border: 1px solid rgba(227, 165, 42, 0.18); /* Delicate gold outline */
    padding: 6px 10px;
    border-radius: 100px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.5s var(--ease);
  }

  .navbar.scrolled .nav-menu {
    background: rgba(255, 255, 255, 0.88); /* Higher opacity scrolled state */
    border-color: rgba(227, 165, 42, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  }
  
  .nav-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black) !important;
    padding: 8px 20px;
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    display: inline-block;
    opacity: 0.85;
    position: relative;
  }

  .nav-link:hover {
    color: var(--gold) !important;
    background: rgba(227, 165, 42, 0.08); /* Gold highlight backdrop */
    opacity: 1;
    transform: translateY(-1px);
  }

  .nav-link.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dim) 100%);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(227, 165, 42, 0.25);
  }
}

.nav-cta {
  padding: 11px 28px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  background: var(--white); /* White by default on dark hero background */
  border-radius: 2px;
  transition: var(--trans);
}

.navbar.scrolled .hamburger span {
  background: var(--black); /* Black when navbar scrolled (white background) */
}

.hamburger.open span {
  background: var(--white); /* White when mobile menu open (dark backdrop) */
}
.hamburger span:nth-child(1) { width: 28px; height: 1px; }
.hamburger span:nth-child(2) { width: 20px; height: 1px; }
.hamburger span:nth-child(3) { width: 28px; height: 1px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 28px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO & SLIDER ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  padding-top: 100px;
}

.hero-slider-section {
  position: relative;
  height: 100vh;
  min-height: 850px; /* Increased to allow breathing room for large typography */
  background: var(--white);
  padding: 110px 0; /* Add safety margins below navbar and above controls */
  display: flex;
  align-items: center;
}

/* Right-side Media Containers */
.hero-slider-media {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
  background: var(--black-soft);
  overflow: hidden;
}

.slider-media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.slider-media-item.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.media-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: none;
}

/* Premium Ken Burns Animation triggered on active slide */
.slider-media-item.active .media-bg {
  animation: premiumKenBurns 12s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes premiumKenBurns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.5%, -0.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--white) 35%, rgba(255,255,255,0.2) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Left-side Text Containers */
.hero-slider-container {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-slider-content {
  position: relative;
  width: 50%;
  max-width: 680px;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.slider-content-item {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  z-index: 1;
}

.slider-content-item.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  position: relative;
  top: auto;
  transform: none;
}

/* Staggered text reveals for premium boutique aesthetic */
.slider-content-item .eyebrow,
.slider-content-item .hero-title,
.slider-content-item .hero-sub,
.slider-content-item .hero-actions {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-content-item.active .eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.slider-content-item.active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.slider-content-item.active .hero-sub {
  opacity: 0.8;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.slider-content-item.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.slider-content-item .eyebrow {
  margin-bottom: 14px; /* Slightly tighter spacing for slider */
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.4rem); /* Balanced visual weight to prevent overlap */
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px; /* Safer margin to keep elements inside viewport */
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.hero-title span {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 5px 0;
  padding-right: 10px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 500px;
  margin-bottom: 30px; /* Safer spacing */
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  pointer-events: auto;
}

/* Floating Thumbnail Previews */
.slider-thumbnails {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thumbnail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: rgba(15, 15, 15, 0.7); /* Darker backdrop glass overlay */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Crisper highlight boundary */
  border-radius: 12px;
  padding: 10px;
  width: 250px;
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(110px); /* Slightly more visible track placement */
  opacity: 0.85; /* Increased opacity to resolve sky bleed and sky contrast issues */
}

.thumbnail-item:hover {
  transform: translateX(0);
  background: rgba(10, 10, 10, 0.85); /* Richer interactive state */
  border-color: rgba(227, 165, 42, 0.4);
  opacity: 1;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.thumbnail-item.active {
  transform: translateX(0);
  background: rgba(10, 10, 10, 0.95); /* Ultimate visual density for active card */
  border-color: var(--gold);
  opacity: 1;
  box-shadow: 0 12px 40px rgba(227, 165, 42, 0.3);
}

.thumb-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.4s var(--ease);
}

.thumbnail-item:hover .thumb-img {
  transform: scale(1.08);
}

.thumb-caption {
  display: flex;
  flex-direction: column;
}

.thumb-caption span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold) !important; /* Force gold color for legibility */
  text-transform: uppercase;
}

.thumb-caption strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white) !important; /* Force high-contrast white text color */
  line-height: 1.25;
  margin-top: 2px;
}

/* Bottom Controls Layout */
.slider-bottom-controls {
  position: absolute;
  bottom: 50px;
  left: 5%;
  right: 5%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.slider-nav-wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  pointer-events: auto;
}

.slide-number-display {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  color: var(--black);
}

.slide-number-display .curr-num {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.slide-number-display .sep {
  font-size: 1.1rem;
  opacity: 0.35;
}

.slide-number-display .total-num {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.6;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(227,165,42,0.3);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 165, 42, 0.25);
}

/* Horizontal Timeline Ticker Indicators */
.slider-timeline {
  display: flex;
  gap: 40px;
  pointer-events: auto;
}

.timeline-dot {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 110px;
}

.timeline-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  transition: color 0.3s;
  margin-bottom: 6px;
}

.timeline-dot:hover .timeline-label,
.timeline-dot.active .timeline-label {
  color: var(--gold) !important; /* Force golden glow on active/hover */
}

.timeline-bar-bg {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.timeline-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
}

.timeline-dot.active .timeline-bar-fill {
  /* JS will update width dynamically, fallback to 100% if no JS */
  width: 100%;
}


/* Floating Decorative Elements */
.hero-deco-1 {
  position: absolute;
  left: 5%; bottom: 15%;
  width: 180px; height: 180px;
  border: 1px solid var(--gold-subtle);
  border-radius: 50%;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.hero-deco-2 {
  position: absolute;
  left: 45%; top: 15%;
  width: 400px; height: 400px;
  border: 1px dashed rgba(227, 165, 42, 0.2);
  border-radius: 50%;
  z-index: 2;
  animation: floatReverse 10s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes floatReverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 5%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: float 3s ease-in-out infinite, heroContentFade 1s forwards 1.2s;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1px solid var(--black);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.scroll-mouse-dot {
  width: 4px; height: 4px;
  background: var(--black);
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}
.scroll-indicator-text {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--black);
}
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(15px); opacity: 0; } }
@keyframes heroContentFade { to { opacity: 1; transform: translateY(0); } }

/* hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--black);
  border-top: 1px solid rgba(227,165,42,0.2);
}
.hero-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
}
.hero-stat {
  flex: 1;
  padding: 22px 32px;
  border-right: 1px solid rgba(200,169,106,0.1);
  display: flex;
  flex-direction: column;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ─── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  padding: 200px 0 120px;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.5) 100%),
    linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 50%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,106,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}
.page-hero .container { position: relative; z-index: 2; }

/* Frosted highlight panel behind page-hero text (all pages) */
.page-hero .hero-content {
  background: rgba(247, 244, 237, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 44px 16px;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.page-hero .hero-title {
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.85);
}
.page-hero .hero-sub {
  font-weight: 600;
  color: var(--black);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--gold); transition: opacity 0.3s; }
.breadcrumb a:hover { opacity: 0.7; }

/* ─── GLASS CARDS ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid rgba(227,165,42,0.1);
  border-radius: var(--r-lg);
  padding: 48px 36px;
  position: relative;
  transition: all 0.5s var(--ease);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  overflow: hidden;
  z-index: 1;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dim));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-12px);
  border-color: rgba(227,165,42,0.3);
  box-shadow: 0 20px 50px rgba(227,165,42,0.12);
}
.card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
  color: var(--gold);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 15px;
}
.card-text {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 500;
}

/* ─── GRIDS ────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── FEATURE STRIP ───────────────────────────────────────── */
.feature-strip {
  background: linear-gradient(180deg, var(--black) 0%, #111 100%);
  border-top:    1px solid rgba(227,165,42,0.2);
  border-bottom: 1px solid rgba(227,165,42,0.2);
  display: flex;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  position: relative;
  z-index: 10;
}
.feature-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(227,165,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.feature-strip .container {
  display: flex;
  width: 100%;
}
.feature-item {
  flex: 1;
  padding: 45px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-right: 1px solid rgba(227,165,42,0.1);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  background: transparent;
}
.feature-item:hover {
  background: rgba(227,165,42,0.03);
  transform: translateY(-3px);
  z-index: 2;
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e3a52a 0%, #b3801d 100%);
  border: 1px solid rgba(227, 165, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(227, 165, 42, 0.25);
  transition: all 0.4s var(--ease);
}
.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(227, 165, 42, 0.4);
}
.feature-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}
.feature-text span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ─── QUOTE BLOCK ─────────────────────────────────────────── */
.quote-block {
  position: relative;
  padding: 36px 44px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(200,169,106,0.06), transparent);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  margin: 36px 0;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-family: var(--font-accent);
  font-size: 8rem;
  color: rgba(200,169,106,0.12);
  line-height: 1;
  pointer-events: none;
}
.quote-block p {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-style: italic;
  color: var(--black);
  line-height: 1.55;
  font-weight: 400;
  position: relative;
}

/* ─── STATS ROW ───────────────────────────────────────────── */
.stats-row {
  display: flex;
  border: 1px solid rgba(227,165,42,0.25);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #151515 0%, #0a0a0a 100%);
  box-shadow: 0 20px 60px rgba(227,165,42,0.15);
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 55px 24px;
  border-right: 1px solid rgba(227,165,42,0.15);
  transition: background var(--trans);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,106,0.08), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.stat-item:hover::before { opacity: 1; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  position: relative;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 10px;
  display: block;
}

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.cta-banner:hover .cta-banner-bg { transform: scale(1.08); }
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,8,8,0.85), rgba(8,8,8,0.6)),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(200,169,106,0.08), transparent);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}
.cta-banner-sub {
  font-size: 1.05rem;
  color: #c0c0c0;
  margin-bottom: 44px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
  font-weight: 500;
}

/* ─── IMAGE FRAME ─────────────────────────────────────────── */
.img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,106,0.12), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,169,106,0.18);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 2;
}
.img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.img-frame:hover img { transform: scale(1.06); }

/* Gold corner accent */
.corner-tl, .corner-br {
  position: absolute;
  width: 60px; height: 60px;
  z-index: 3;
}
.corner-tl {
  top: -10px; left: -10px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: var(--r-lg) 0 0 0;
}
.corner-br {
  bottom: -10px; right: -10px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 var(--r-lg) 0;
}

/* ─── BADGE ────────────────────────────────────────────────── */
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,169,106,0.08);
  border: 1px solid rgba(200,169,106,0.2);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.gold-badge::before, .gold-badge::after {
  content: '✦';
  font-size: 0.5rem;
  opacity: 0.6;
}

/* ─── CHECK LIST ──────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.05rem;
  color: var(--grey);
  font-weight: 500;
}
.check-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.58rem;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ─── TAG ──────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(200,169,106,0.08);
  color: var(--gold);
  border: 1px solid rgba(200,169,106,0.18);
}

/* ─── SPLIT LAYOUT ─────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ─── FORM STYLES ──────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-input, .form-select, .form-textarea {
  background: var(--white-soft);
  border: 1px solid var(--grey-pale);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: var(--trans);
  width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-light); opacity: 0.6; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(200,169,106,0.5);
  background: rgba(200,169,106,0.04);
  box-shadow: 0 0 0 3px rgba(200,169,106,0.08);
}
.form-select option { background: var(--white); color: var(--black); }
.form-textarea { resize: vertical; min-height: 130px; }

/* ─── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── BG VARIANTS ──────────────────────────────────────────── */
.bg-soft {
  background: var(--white-soft);
  position: relative;
}
.bg-dark {
  background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 100%);
  color: var(--white);
  position: relative;
  border-top: 1px solid rgba(227,165,42,0.1);
  border-bottom: 1px solid rgba(227,165,42,0.1);
}
.bg-dark .section-title {
  color: var(--white);
}
.bg-dark .section-subtitle, .bg-dark .faq-answer-inner {
  color: rgba(255,255,255,0.85);
}
.bg-dark .eyebrow {
  color: var(--gold-light);
}
.bg-dark .faq-question {
  color: var(--white);
}
.bg-dark .faq-question:hover {
  color: var(--gold);
}
.bg-dark .btn-outline {
  color: var(--white);
  border-color: rgba(227,165,42,0.5);
}
.bg-dark .btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 50px;
  border-top: 1px solid rgba(227,165,42,0.1);
}
.footer-top { padding: 90px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 12px rgba(227,165,42,0.4));
  transition: opacity var(--trans);
}
.footer-logo-img:hover { opacity: 0.85; }
/* Legacy text fallbacks */
.footer-logo { display: none; }
.footer-logo-sub { display: none; }
.footer-desc {
  font-size: 0.84rem;
  color: #c9c9c9;
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 270px;
  font-weight: 500;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,106,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--grey);
  transition: var(--trans);
  font-style: normal;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,106,0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(200,169,106,0.15);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 1px;
  background: var(--gold);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.83rem;
  color: #c9c9c9;
  font-weight: 600;
  transition: color var(--trans), transform var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--white); transform: translateX(4px); }

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(200,169,106,0.07);
  border: 1px solid rgba(200,169,106,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-contact-item p {
  font-size: 0.84rem;
  color: var(--grey-light);
  line-height: 1.6;
  font-weight: 300;
  padding-top: 7px;
}
.footer-contact-item a { color: var(--grey-light); transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,106,0.1), transparent);
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #a8a8a8; font-weight: 500; }
.footer-bottom span { color: var(--gold); }

/* ─── MODAL SYSTEM ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.6s var(--ease-spring);
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(227,165,42,0.2);
}
.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 30px 40px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-close {
  background: var(--white-soft);
  border: 1px solid var(--grey-pale);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  color: var(--black);
}
.modal-close:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.modal-body {
  padding: 0 40px 40px;
}

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transform: translateY(0);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-text h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 5px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease) 0.1s;
}
.gallery-text p {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease) 0.2s;
}
.gallery-item:hover .gallery-text h4,
.gallery-item:hover .gallery-text p {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-item { aspect-ratio: 16/9; }
}

/* ─── FAQ ACCORDION ───────────────────────────────────────── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(227,165,42,0.2);
  margin-bottom: 15px;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold-dim); }
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.4s var(--ease-spring);
}
.faq-icon::before { width: 100%; height: 2px; }
.faq-icon::after { height: 100%; width: 2px; }
.faq-item.active .faq-icon::after { transform: rotate(90deg) scale(0); }
.faq-item.active .faq-icon::before { transform: rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
  padding-bottom: 0;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  transition: padding-bottom 0.5s var(--ease);
}
.faq-item.active .faq-answer-inner {
  padding-bottom: 30px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-accent-line { display: none; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 45%; border-bottom: 1px solid rgba(227,165,42,0.08); }

  /* Responsive Slider adjustments */
  .hero-slider-section {
    min-height: 800px;
  }
  .hero-slider-media {
    width: 100%;
    clip-path: none;
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 45%, rgba(10,10,10,0.92) 100%);
  }
  .hero-slider-content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
  }
  .slider-content-item {
    text-align: center;
  }
  .slider-content-item .hero-title {
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
  .slider-content-item .hero-sub {
    color: rgba(255,255,255,0.8);
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  .slider-content-item .hero-actions {
    justify-content: center;
    display: flex;
    gap: 15px;
  }
  .slider-content-item .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
  }
  .slider-content-item .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  .slider-thumbnails {
    display: none; /* Hide vertical thumbnails on tablet/mobile for spacing */
  }
  .slider-bottom-controls {
    bottom: 40px;
  }
}

@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 700px) {
  .dest-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse { direction: ltr; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(227,165,42,0.1); }
  .feature-strip { flex-wrap: wrap; }
  .feature-strip .container { flex-wrap: wrap; gap: 20px; }
  .feature-item { flex: 1 1 48%; min-width: 260px; border-right: none !important; border-bottom: 1px solid rgba(227,165,42,0.1); }
  
  .slider-timeline {
    display: none; /* Hide timeline progress bars on small tablets/mobile */
  }
  .slider-bottom-controls {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 80px 0; }

  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-menu .nav-link {
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    color: var(--white) !important;
    padding: 10px;
    display: inline-block;
    transition: color 0.3s;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--gold) !important;
  }
  .hamburger { display: flex; }
  .scroll-indicator { display: none !important; }
}

@media (max-width: 520px) {
  .hero-slider-section {
    min-height: 640px;
    height: 100vh;
  }
  .slider-content-item .hero-title { font-size: 2.4rem; }
  .slider-content-item .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
    align-items: stretch;
  }
  .slider-content-item .btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .hero-stats { display: none; }
  .btn { justify-content: center; text-align: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-item { flex: 1 1 100%; }
  .feature-item { flex: 1 1 100%; min-width: 100%; padding: 28px 24px; }
}
