
/* ── GLOBAL OVERFLOW GUARD — prevents ALL horizontal scroll ── */
html { overflow-x: hidden; max-width: 100vw; }
body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; max-width: 100%; }
img, video, iframe, embed, object { max-width: 100%; height: auto; }
table { max-width: 100%; }
input, textarea, select, button { max-width: 100%; }
pre, code { overflow-x: auto; max-width: 100%; }

:root {
    --black: #080808;
    --deep: #0d0d0d;
    --charcoal: #141414;
    --card: #111111;
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --gold-dim: rgba(212,175,55,0.15);
    --amber: #b8860b;
    --green: #1a2e1a;
    --text: #ffffff;
    --muted: #ffffff;
    --border: rgba(212,175,55,0.2);
  }

  /* ============================= */
  /* LIGHT MODE                    */
  /* ============================= */

body.light-mode {
  --black: #ebebea;
  --deep: #e4e4e2;
  --charcoal: #dcdcda;
  --card: #e4e4e2;
  --gold: #7a4f00;
  --gold-light: #9a6500;
  --gold-dim: rgba(122,79,0,0.12);
  --amber: #5a3a00;
  --text: #0a0a0a;
  --muted: #2a2a2a;
  --border: rgba(0,0,0,0.15);
}

body.light-mode {
    background: #ebebea;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body.light-mode * {
    font-weight: 500 !important;
  }

  body.light-mode h1,
  body.light-mode h2,
  body.light-mode h3,
  body.light-mode h4,
  body.light-mode h5,
  body.light-mode h6 {
    font-weight: 700;
    filter: none;
  }

  body.light-mode .section-title        { font-weight: 800; }
  body.light-mode .section-label        { font-weight: 600; }
  body.light-mode .section-sub          { font-weight: 500; }

  body.light-mode p,
  body.light-mode li,
  body.light-mode span,
  body.light-mode a,
  body.light-mode label,
  body.light-mode input,
  body.light-mode textarea,
  body.light-mode button {
    font-weight: 500;
  }

  body.light-mode .nav-link             { font-weight: 700; }
  body.light-mode .dropdown-link        { font-weight: 600; }

  body.light-mode .hero-eyebrow         { font-weight: 800; }
  body.light-mode .hero-subtitle        { font-weight: 500; }

  body.light-mode .pkg-name             { font-weight: 600; }
  body.light-mode .pkg-features li      { font-weight: 500; }
  body.light-mode .pkg-duration         { font-weight: 600; }
  body.light-mode .pkg-cta              { font-weight: 700; }

  body.light-mode .card-title           { font-weight: 700; }
  body.light-mode .card-text            { font-weight: 500; }

  body.light-mode .stat-num             { font-weight: 900; }
  body.light-mode .stat-label           { font-weight: 700; }

  body.light-mode .testimonial-text     { font-weight: 700; }
  body.light-mode .author-name          { font-weight: 800; }
  body.light-mode .author-loc           { font-weight: 600; }

  body.light-mode .team-name            { font-weight: 800; }
  body.light-mode .team-role            { font-weight: 800; }
  body.light-mode .team-bio             { font-weight: 600; }
    
  body.light-mode .blog-card-title      { font-weight: 800; }
  body.light-mode .blog-card-excerpt    { font-weight: 500; }
  body.light-mode .blog-card-date,
  body.light-mode .blog-card-read       { font-weight: 600; }

  body.light-mode .footer-col a         { font-weight: 700; }
  body.light-mode .footer-bottom span   { font-weight: 600; }

  body.light-mode .quiz-question        { font-weight: 800; }
  body.light-mode .quiz-sub             { font-weight: 500; }
  body.light-mode .quiz-option          { font-weight: 600; }
  body.light-mode .quiz-step-label      { font-weight: 700; }
  body.light-mode .quiz-result-name     { font-weight: 700; }
  body.light-mode .quiz-result-meta     { font-weight: 600; }

  body.light-mode .contact-detail-label { font-weight: 700; }
  body.light-mode .contact-detail-value { font-weight: 700; }
  body.light-mode .contact-info p       { font-weight: 500; }

  body.light-mode .day-title            { font-weight: 800; }
  body.light-mode .day-desc             { font-weight: 500; }
  body.light-mode .day-number           { font-weight: 700; }

  body.light-mode .gallery-caption-title { font-weight: 800; }
  body.light-mode .gallery-caption-sub   { font-weight: 600; }

  body.light-mode .pkg-filter-btn       { font-weight: 800; }


body.light-mode .nav-logo-img {
    filter:
      drop-shadow(0 0 3px rgba(180,130,10,0.95))
      drop-shadow(0 0 8px rgba(180,130,10,0.85))
      drop-shadow(0 0 18px rgba(180,130,10,0.6))
      drop-shadow(0 0 35px rgba(180,130,10,0.3))
      drop-shadow(0 2px 4px rgba(0,0,0,0.9))
      drop-shadow(0 4px 12px rgba(0,0,0,0.75));
    transition: filter 0.4s ease;
  }

  body.light-mode nav.scrolled .nav-logo-img {
    filter:
      drop-shadow(0 0 4px rgba(180,130,10,1))
      drop-shadow(0 0 12px rgba(180,130,10,0.92))
      drop-shadow(0 0 24px rgba(180,130,10,0.7))
      drop-shadow(0 0 45px rgba(180,130,10,0.4))
      drop-shadow(0 2px 6px rgba(0,0,0,0.98))
      drop-shadow(0 4px 14px rgba(0,0,0,0.95))
      drop-shadow(0 8px 28px rgba(0,0,0,0.88))
      drop-shadow(0 12px 40px rgba(0,0,0,0.75));
    transition: filter 0.4s ease;
  }

.site-hint {
  position: fixed;
  z-index: 99980;
  max-width: 260px;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(212,175,55,0.35);
  backdrop-filter: blur(18px);
  padding: 14px 36px 14px 18px;
  pointer-events: all;
  cursor: none;
  animation: hintSlideIn 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
.site-hint.hiding {
  animation: hintSlideOut 0.4s cubic-bezier(0.76,0,0.24,1) forwards;
}
.site-hint-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  opacity: 0.8;
}
.site-hint-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(240,236,228,0.85);
  line-height: 1.5;
}
.site-hint-close {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  color: rgba(212,175,55,0.5);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1;
  cursor: none;
  padding: 2px 5px;
  transition: color 0.2s;
}
.site-hint-close:hover { color: var(--gold); }
.site-hint-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(212,175,55,0.3));
  animation: hintBar 5s linear forwards;
}
@keyframes hintSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hintSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(8px); }
}
@keyframes hintBar {
  from { width: 100%; }
  to   { width: 0%; }
}

  body.light-mode .loader-logo {
    filter:
      drop-shadow(0 0 6px rgba(60,35,0,0.98))
      drop-shadow(0 0 18px rgba(120,80,0,0.88))
      drop-shadow(0 0 40px rgba(154,111,0,0.5));
   }   

  /* NEW — no existing equivalent */
  body.light-mode .quiz-question {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-weight: 700;
  }

body.light-mode .quiz-option {
  color: #1a1a1a !important;
  font-weight: 500;
}

body.light-mode .quiz-option:hover:not(.selected) {
  color: #000000 !important;
}

body.light-mode .gallery-caption {
  color: #ffffff !important;
}

body.light-mode .stats-bar {
  background: #d8d4cc;
}

body.light-mode .gallery-cta-strip p {
  color: #1a1a1a;
}

body.light-mode .gallery-cta-strip p em {
  color: #000000;
  font-weight: 600;
}

body.light-mode .team-card {
  border: 1px solid rgba(212,175,55,0.2);
  border-top: 2px solid var(--gold);
  background: #f5f2ec;
  background-image: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
}
body.light-mode .team-card:hover {
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(180,130,10,0.15);
  transform: translateY(-4px);
}
body.light-mode .testimonial {
  border: 1px solid transparent;
  background-image: linear-gradient(#d8d4cc, #d8d4cc), linear-gradient(135deg, #7a5500 0%, #c9a84c 18%, #fffbe8 35%, #ffffff 50%, #fffbe8 65%, #c9a84c 82%, #7a5500 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 2px 8px rgba(180,130,10,0.12), 0 1px 0 rgba(255,255,255,0.6) inset, 0 -1px 0 rgba(120,80,0,0.15) inset;
  border-top: none;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
}
body.light-mode .testimonial:hover {
  box-shadow: 0 12px 40px rgba(180,130,10,0.22), 0 2px 0 rgba(255,255,255,0.7) inset, 0 -1px 0 rgba(120,80,0,0.18) inset;
  transform: translateY(-4px);
}

body.light-mode .blog-card {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid transparent;
  background-image: linear-gradient(var(--card), var(--card)), linear-gradient(135deg, #b8860b 0%, #e8c84a 25%, #fffbe8 40%, #ffffff 50%, #fffbe8 60%, #e8c84a 75%, #b8860b 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

body.light-mode .highlight-card {
  border: 1px solid transparent;
  background-image: linear-gradient(#d8d4c8, #d8d4c8), linear-gradient(135deg, #b8860b 0%, #e8c84a 25%, #fffbe8 40%, #ffffff 50%, #fffbe8 60%, #e8c84a 75%, #b8860b 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

body.light-mode .package-card {
  border: 1px solid transparent !important;
  background-image: linear-gradient(#d8d4c8, #d8d4c8), linear-gradient(135deg, #b8860b 0%, #e8c84a 25%, #fffbe8 40%, #ffffff 50%, #fffbe8 60%, #e8c84a 75%, #b8860b 100%) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
}

body.light-mode .testimonial {
  border: 1px solid transparent;
  border-top: none;
  background-image: linear-gradient(#d8d4cc, #d8d4cc), linear-gradient(135deg, #b8860b 0%, #e8c84a 25%, #fffbe8 40%, #ffffff 50%, #fffbe8 60%, #e8c84a 75%, #b8860b 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

body.light-mode .quiz-box {
  border: 1px solid transparent;
  background-image: linear-gradient(#d8d4cc, #d8d4cc), linear-gradient(135deg, #b8860b 0%, #e8c84a 25%, #fffbe8 40%, #ffffff 50%, #fffbe8 60%, #e8c84a 75%, #b8860b 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

body.light-mode .section-title,
body.light-mode .footer-brand h2 {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  font-weight: 700;
}

body.light-mode .section-sub {
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  font-weight: 500;
}

body.light-mode .blog-card-title {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  font-weight: 700;
    
  }}


  body.light-mode nav {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
  }

  body.light-mode .dropdown {
    background: rgba(220,216,210,0.99);
    border-left: 1px solid rgba(184,134,11,0.2);
  }

  body.light-mode .dropdown-link {
    color: var(--text);
    border-bottom: 1px solid rgba(26,23,20,0.06);
  }

  body.light-mode .dropdown-link:hover {
    color: var(--gold);
  }

body.light-mode .highlight-card {
    background: #d8d4c8;
  }

  body.light-mode .highlight-card:hover {
    background: #d0ccbf;
  }

  body.light-mode .package-card {
    background: #d8d4cc;
    border-color: rgba(26,23,20,0.08);
  }

  body.light-mode .package-card:hover {
    border-color: var(--border);
  }

  body.light-mode .card-title {
    color: var(--text);
  }

  body.light-mode .package-card {
    background: #d8d4cc;
    border-color: rgba(154,111,0,0.12);
  }

  body.light-mode .package-card:hover {
    border-color: rgba(154,111,0,0.35);
  }

  body.light-mode .pkg-name,
  body.light-mode .pkg-cta {
    color: var(--text);
  }

  body.light-mode .pkg-cta {
    border-color: var(--border);
    color: var(--gold);
  }

  body.light-mode .pkg-cta:hover {
    background: var(--gold);
    color: #f5f0e8;
  }

  body.light-mode .testimonial {
    background: #d8d4cc;
    border-top-color: rgba(0,0,0,0.15);
  }

  body.light-mode .testimonial-text {
    color: var(--text);
  }

  body.light-mode .team-card {
    background: #d8d4cc;
  }

  body.light-mode .team-card:hover {
    background: #d0ccbf;
  }

  body.light-mode .team-bio {
    color: var(--muted);
  }

  body.light-mode .contact-form input,
  body.light-mode .contact-form textarea {
    color: var(--text);
    border-bottom-color: rgba(184,134,11,0.3);
  }

  body.light-mode .contact-form input::placeholder,
  body.light-mode .contact-form textarea::placeholder {
    color: rgba(107,94,78,0.6);
  }

  body.light-mode footer {
    background: #d8d4cc;
    border-top-color: rgba(0,0,0,0.15);
  }

  body.light-mode .footer-brand p,
  body.light-mode .footer-col a {
    color: var(--muted);
  }

  body.light-mode .footer-col a:hover {
    color: var(--text);
  }

  body.light-mode .footer-bottom span {
    color: var(--muted);
  }

  body.light-mode .stat-num {
    color: var(--gold);
  }

   body.light-mode .stats-bar {
    border-color: rgba(0,0,0,0.15);
  }
    
  body.light-mode .stat-item {
    border-right-color: rgba(0,0,0,0.12);
  }

  body.light-mode .section-title,
  body.light-mode .footer-brand h2 {
    color: var(--text);
  }

body.light-mode .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    background: linear-gradient(
      160deg,
      #7a5500 0%,
      #b8860b 25%,
      #e8c84a 44%,
      #fffbe8 48%,
      #ffffff 50%,
      #fffbe8 52%,
      #e8c84a 56%,
      #b8860b 75%,
      #7a5500 100%
    );
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite;
  }

  body.light-mode .card-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    background: linear-gradient(
      160deg,
      #6b4f00 0%,
      #9a7200 22%,
      #c9a84c 42%,
      #f5e199 48%,
      #fffdf0 50%,
      #f5e199 52%,
      #c9a84c 58%,
      #9a7200 78%,
      #6b4f00 100%
    );
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite 1s;
  }

body.light-mode .pkg-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }

  body.light-mode .pkg-features li {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: #f0e8d8;
    -webkit-text-fill-color: #f0e8d8;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    border-bottom-color: rgba(255,255,255,0.1);
    animation: none;
  }

  body.light-mode .pkg-duration {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-style: italic;
    color: #e8d8b0;
    -webkit-text-fill-color: #e8d8b0;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    animation: none;
  }

  body.light-mode .pkg-price {
    color: var(--gold);
    -webkit-text-fill-color: #f5d87a;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    animation: none;
    font-weight: 700;
  }

  body.light-mode .pkg-price span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--gold);
    -webkit-text-fill-color: #e8d8b0;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    animation: none;
  }

  body.light-mode .pkg-cta {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 3px;
    color: #f5d87a;
    -webkit-text-fill-color: #f5d87a;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    border-color: rgba(245,216,122,0.5);
    animation: none;
  }

  body.light-mode .testimonial-text {
  color: #0d0d0d !important;
  -webkit-text-fill-color: #0d0d0d !important;
  font-weight: 500;
}

  body.light-mode .author-name {
  color: #000000 !important;
  font-weight: 700;
}

  body.light-mode .author-loc {
  color: #333333 !important;
  font-weight: 500;
}
  body.light-mode .team-name {
  color: #000000 !important;
  font-weight: 700;
}

  body.light-mode .team-bio {
  color: #1a1a1a !important;
  font-weight: 500;
}

  body.light-mode .contact-detail-value {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-weight: 500;
}

  body.light-mode .contact-detail-label {
  color: #333333 !important;
  font-weight: 500;
}

  body.light-mode .contact-info p {
  color: #1a1a1a !important;
  font-weight: 500;
}

  body.light-mode .day-desc {
  color: #1a1a1a !important;
  font-weight: 500;
}

  body.light-mode .day-title {
  color: #000000 !important;
  font-weight: 600;
}

  body.light-mode .day-number {
    color: var(--gold);
  }

  body.light-mode .day-location {
    color: #5e5040;
  }

  body.light-mode .practical-item-value {
    color: #1a1410;
  }

  body.light-mode .sidebar-detail-value {
   color: #000000 !important;
   font-weight: 500;
 }

  body.light-mode .sidebar-detail-label {
  color: #333333 !important;
  font-weight: 500;
}

  body.light-mode .sidebar-per {
    color: #5e5040;
  }

  body.light-mode .sidebar-note {
    color: #5e5040;
  }

  body.light-mode .sec-title {
    color: #1a1410;
  }

  body.light-mode .sec-label {
    color: var(--gold);
  }

  body.light-mode .blog-card-excerpt {
  color: #1a1a1a !important;
  font-weight: 500;
}

  body.light-mode .blog-card-date,
  body.light-mode .blog-card-read {
    color: #333333 !important;
    font-weight: 500;
  }

  body.light-mode .gallery-caption-sub {
  color: rgba(255,255,255,0.85) !important;
}

  body.light-mode .ds-counter {
    color: rgba(26,20,16,0.4);
  }
  
body.light-mode .ds-slide-title,
  body.light-mode .ds-slide-subtitle,
  body.light-mode .ds-slide-desc,
  body.light-mode .ds-slide-content,
  body.light-mode .ds-slide-content *,
  body.light-mode .ds-slide-label,
  body.light-mode .ds-slide-name,
  body.light-mode .ds-slide h2,
  body.light-mode .ds-slide h3,
  body.light-mode .ds-slide p,
  body.light-mode .ds-slide span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  body.light-mode .ds-slide-eyebrow,
  body.light-mode .ds-slide .eyebrow,
  body.light-mode .ds-slide-label,
  body.light-mode .ds-slide .section-label,
  body.light-mode .ds-slide .gold-line span,
  body.light-mode .ds-slide-name {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    text-shadow:
      0 0 2px #ffffff,
      0 0 6px #ffffff,
      0 0 14px rgba(255,255,255,0.95),
      0 0 28px rgba(255,255,255,0.82),
      0 0 50px rgba(255,255,255,0.55),
      0 0 85px rgba(255,250,230,0.3),
      0 1px 0 rgba(0,0,0,0.99),
      0 2px 4px rgba(0,0,0,0.96),
      0 4px 12px rgba(0,0,0,0.88),
      0 7px 24px rgba(0,0,0,0.72),
      -1px 0 5px rgba(0,0,0,0.78),
      1px 0 5px rgba(0,0,0,0.78);
  }

  body.light-mode .stat-label {
  color: #111111 !important;
  font-weight: 500;
}

  body.light-mode .footer-brand p {
  color: #333333 !important;
  font-weight: 500;
}

  body.light-mode .footer-col a {
    color: #5e5040;
  }

  body.light-mode .footer-col a:hover {
    color: #1a1410;
  }

  body.light-mode .footer-bottom span {
  color: #333333 !important;
  font-weight: 500;
}

  body.light-mode .pkg-overview p {
    color: #4a3e30;
  }

  body.light-mode .inclusion-list li {
    color: #4a3e30;
    border-bottom-color: rgba(154,111,0,0.1);
  }

  body.light-mode .related-duration {
    color: #5e5040;
  }

  body.light-mode .related-name {
    color: #1a1410;
  }

  body.light-mode .quiz-step-label {
    color: var(--gold);
  }

  body.light-mode .quiz-sub {
  color: #333333 !important;
  font-weight: 500;
}

  body.light-mode .quiz-result-meta {
  color: #333333 !important;
  font-weight: 500;
}

  body.light-mode .dropdown-tagline {
    color: #5e5040;
  }

  body.light-mode .nav-back {
    color: #5e5040;
  }

  body.light-mode .pkg-hero-breadcrumb span {
    color: #5e5040;
  }

  body.light-mode .blog-card {
    background: #d8d4cc;
  }

  body.light-mode .blog-card:hover {
    background: #d0ccbf;
  }

  body.light-mode .blog-card-title {
    color: var(--text);
  }

  body.light-mode .blog-card:hover .blog-card-title {
    color: var(--gold);
  }

body.light-mode .gallery-img {
    filter: brightness(1) saturate(1);
  }
  body.light-mode .gallery-item:hover .gallery-img {
    filter: brightness(0.78) saturate(0.85);
  }
  body.light-mode .gsl-label {
    background: linear-gradient(90deg, #d4af37 0%, #d4af37 30%, #fff8dc 48%, #fffbe8 50%, #fff8dc 52%, #d4af37 70%, #d4af37 100%) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: eyebrowShine 4s 1s ease-in-out infinite !important;
  }
  body.light-mode .gsl-title {
    color: #f0ece4 !important;
    -webkit-text-fill-color: #f0ece4 !important;
    background: none !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8) !important;
  }
  body.light-mode .gsl-sub {
    background: linear-gradient(90deg, #8a8074 0%, #8a8074 25%, #f0ece4 45%, #ffffff 50%, #f0ece4 55%, #8a8074 75%, #8a8074 100%) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: subtitleShine 5s 1.5s ease-in-out infinite !important;
  }

  body.light-mode .ds-slide-img {
    filter: brightness(1) saturate(1) !important;
  }

/* Cursor stays active over profile modal iframe */
#profileModalIframe {
  pointer-events: all;
  cursor: none;
}
#profileModalBox {
  cursor: none;
}

/* ── PROFILE MODAL OVERLAY — iframe embed ── */
#profileModalOverlay {
  position: fixed;
  inset: 0;
  z-index: 99986;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  background: rgba(4, 3, 1, 0.42);
  backdrop-filter: blur(10px) saturate(1.1) brightness(0.78);
  -webkit-backdrop-filter: blur(10px) saturate(1.1) brightness(0.78);
}
#profileModalOverlay.open {
  opacity: 1;
  pointer-events: all;
}

#profileModalBox {
  position: relative;
  width: min(1080px, 88vw);
  height: min(86vh, 860px);
  background: rgba(8,8,8,0.93);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.06),
    0 52px 160px rgba(0,0,0,0.88),
    inset 0 1px 0 rgba(212,175,55,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(40px) scale(0.97);
  transition: transform 0.52s cubic-bezier(0.22,1,0.36,1);
}
#profileModalOverlay.open #profileModalBox {
  transform: translateY(0) scale(1);
}
#profileModalBox::before {
  content: '';
  position: absolute;
  top: 0; left: 7%; right: 7%;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  z-index: 10;
  pointer-events: none;
}

/* Close button removed — handled by top bar inside iframe */

/* iframe fills remaining space */
#profileModalIframe {
  width: 100%;
  flex: 1;
  border: none;
  display: block;
  background: #080808;
  overflow: hidden;
}

/* Loading shimmer */
#profileModalLoader {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: #080808;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#profileModalLoader.hidden {
  opacity: 0;
  pointer-events: none;
}
.pm-loader-logo {
  width: 72px;
  opacity: 0.55;
  animation: pmPulse 2.2s ease-in-out infinite;
}
@keyframes pmPulse {
  0%,100% { opacity:0.45; transform:scale(1); }
  50%      { opacity:0.85; transform:scale(1.05); }
}
.pm-loader-bar {
  width: 140px;
  height: 1px;
  background: rgba(212,175,55,0.1);
  position: relative;
  overflow: hidden;
}
.pm-loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 60%; height: 100%;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  animation: pmSweep 1.5s ease-in-out infinite;
}
@keyframes pmSweep {
  0%   { left: -60%; }
  100% { left: 160%; }
}
.pm-loader-text {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.4);
}

/* Light mode */
body.light-mode #profileModalOverlay {
  background: rgba(180,176,168,0.72);
}
body.light-mode #profileModalBox {
  background: #ebebea;
  border-color: rgba(154,111,0,0.22);
}
body.light-mode #profileModalLoader {
  background: #ebebea;
}
body.light-mode #profileModalClose {
  background: rgba(230,226,218,0.92);
  color: #5e5040;
  border-color: rgba(154,111,0,0.28);
}
body.light-mode #profileModalClose:hover {
  color: #1a1410;
  border-color: rgba(154,111,0,0.6);
  background: rgba(154,111,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  #profileModalOverlay {
    padding: 16px;
    align-items: flex-end;
  }
  #profileModalBox {
    width: 100%;
    height: 90dvh;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  #profileModalClose {
    top: 10px;
    right: 12px;
  }
}
  body.light-mode .ds-slide.ds-active .ds-slide-img {
    filter: brightness(1) saturate(1) !important;
  }

  body.light-mode .ds-slide.ds-next .ds-slide-img,
  body.light-mode .ds-slide.ds-prev-slide .ds-slide-img {
    filter: brightness(0.75) saturate(0.85) !important;
  }

  body.light-mode .ds-slide.ds-far .ds-slide-img {
    filter: brightness(0.5) saturate(0.6) !important;
  }

/* ── HIGHLIGHT VIDEO CARDS ── */
.highlight-card video.hc-bg {
  filter: brightness(0.32) saturate(0.6);
  transition: filter 0.5s ease;
}
.highlight-card:hover video.hc-bg {
  filter: brightness(0.42) saturate(0.75);
}

.hc-fade-text {
  opacity: 1;
  transition: filter 0.35s ease;
}

/* Brightness lift on hover */
.highlight-card:hover .hc-fade-text {
  filter: brightness(1.1);
}

body.light-mode .hc-bg {
    filter: brightness(0.45) saturate(0.75) sepia(0) !important;
    mix-blend-mode: normal;
    opacity: 1;
  }

  body.light-mode .highlight-card:hover .hc-bg {
    filter: brightness(0.52) saturate(0.85) sepia(0) !important;
    opacity: 1;
  }

  body.light-mode .hc-bg-overlay {
    background: rgba(20,10,2,0.52) !important;
  }

  /* Highlight card text — always light on the browned image */
  body.light-mode .highlight-card .card-number {
    background: #d4af37;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: brightness(1.15) !important;
    animation: cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite;
  }

  body.light-mode .highlight-card .card-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-weight: 800 !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7) !important;
  }

  body.light-mode .highlight-card .card-text {
    color: #f0e8d8 !important;
    -webkit-text-fill-color: #f0e8d8 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6) !important;
  }

  body.light-mode .pkg-bg {
    filter: brightness(0.25) saturate(1) sepia(0) !important;
    mix-blend-mode: normal;
    opacity: 1;
  }

  body.light-mode .package-card:hover .pkg-bg {
    filter: brightness(0.3) saturate(1) sepia(0) !important;
    opacity: 1;
  }

  body.light-mode .pkg-bg-overlay {
    background: rgba(20,10,2,0.52) !important;
  }

  /* Package card text — always light on the browned image */
  body.light-mode .package-card .pkg-badge {
    background: #d4af37 !important;
    color: #0a0600 !important;
    font-weight: 700 !important;
  }

  body.light-mode .package-card .pkg-duration {
    color: #e8d8b0 !important;
    -webkit-text-fill-color: #e8d8b0 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-weight: 600 !important;
    letter-spacing: 4px !important;
  }

  body.light-mode .package-card .pkg-name {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7) !important;
  }

  body.light-mode .package-card .pkg-price {
    color: var(--gold) !important;
    -webkit-text-fill-color: #f5d87a !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5) !important;
  }

  body.light-mode .package-card .pkg-price span {
    color: var(--gold); !important;
    -webkit-text-fill-color: #e8d8b0 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-weight: 400 !important;
  }

  body.light-mode .package-card .pkg-features li {
    color: #f0e8d8 !important;
    -webkit-text-fill-color: #f0e8d8 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-weight: 500 !important;
    border-bottom-color: rgba(255,255,255,0.1) !important;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5) !important;
  }

  body.light-mode .package-card .pkg-cta {
    color: #f5d87a !important;
    -webkit-text-fill-color: #f5d87a !important;
    background: transparent !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    border-color: rgba(245,216,122,0.5) !important;
    font-weight: 700 !important;
    text-shadow: none !important;
  }

  body.light-mode .package-card .pkg-cta:hover {
    background: #d4af37 !important;
    color: #0a0600 !important;
    -webkit-text-fill-color: #0a0600 !important;
    border-color: #d4af37 !important;
  }

  body.light-mode .blog-card-img {
    filter: brightness(1) saturate(1);
  }

  body.light-mode .blog-card:hover .blog-card-img {
    filter: brightness(0.82) saturate(0.9);
  }

  body.light-mode .team-avatar img {
    filter: brightness(1) saturate(1);
  }

  body.light-mode .gallery-cta-strip {
    background: #d4d0c8;
    border-top-color: var(--border);
  }

  body.light-mode .quiz-box {
    background: #d8d4cc;
    border-color: rgba(184,134,11,0.2);
  }

  body.light-mode .quiz-question {
    color: var(--text);
  }

  body.light-mode .quiz-input {
    color: var(--text);
    border-bottom-color: rgba(184,134,11,0.3);
  }

  body.light-mode .quiz-option {
    border-color: rgba(0,0,0,0.15);
    color: var(--muted);
  }

  body.light-mode .quiz-option:hover:not(.selected) {
    color: var(--text);
    border-color: rgba(0,0,0,0.3);
  }

  body.light-mode .quiz-option.selected {
    color: var(--gold);
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.35);
  }

  body.light-mode .quiz-result-card {
    border-color: rgba(0,0,0,0.12);
    background: rgba(0,0,0,0.02);
  }

  body.light-mode .quiz-result-card:hover {
    border-color: rgba(0,0,0,0.25);
    background: rgba(0,0,0,0.04);
  }

  body.light-mode .quiz-result-name {
    color: var(--text);
  }

  body.light-mode .practical-item {
    background: #d4d0c8;
  }

  body.light-mode .ds-slide {
    box-shadow: none;
  }

body.light-mode #inline-quiz {
    background: var(--charcoal);
  }

/* Quiz overlay always dark */
body.light-mode #quiz-overlay,
body.light-mode #quiz-overlay .quiz-box {
  --black: #080808;
  --deep: #0d0d0d;
  --charcoal: #141414;
  --card: #111111;
  --gold: #d4af37;
  --gold-light: #e8c84a;
  --gold-dim: rgba(212,175,55,0.15);
  --amber: #b8860b;
  --text: #f0ece4;
  --muted: #8a8074;
  --border: rgba(212,175,55,0.2);
  background: #0f0f0f !important;
  color: #f0ece4 !important;
}
body.light-mode #quiz-overlay .quiz-question {
  color: #f0ece4 !important;
  -webkit-text-fill-color: #f0ece4 !important;
}
body.light-mode #quiz-overlay .quiz-sub {
  color: #8a8074 !important;
  -webkit-text-fill-color: #8a8074 !important;
}
body.light-mode #quiz-overlay .quiz-option {
  color: #8a8074 !important;
  border-color: rgba(212,175,55,0.12) !important;
}
body.light-mode #quiz-overlay .quiz-option:hover:not(.selected) {
  color: #f0ece4 !important;
  border-color: rgba(212,175,55,0.3) !important;
}
body.light-mode #quiz-overlay .quiz-option.selected {
  color: #d4af37 !important;
  background: rgba(212,175,55,0.06) !important;
  border-color: rgba(212,175,55,0.6) !important;
}
body.light-mode #quiz-overlay .quiz-input {
  color: #f0ece4 !important;
  border-bottom-color: rgba(212,175,55,0.25) !important;
}
body.light-mode #quiz-overlay .quiz-step-label {
  color: #d4af37 !important;
  -webkit-text-fill-color: #d4af37 !important;
}
body.light-mode #quiz-overlay .quiz-result-name {
  color: #f0ece4 !important;
  -webkit-text-fill-color: #f0ece4 !important;
}
body.light-mode #quiz-overlay .quiz-result-meta {
  color: #8a8074 !important;
  -webkit-text-fill-color: #8a8074 !important;
}
body.light-mode #quiz-overlay .quiz-result-card {
  border-color: rgba(212,175,55,0.15) !important;
  background: rgba(212,175,55,0.03) !important;
}
body.light-mode #quiz-overlay .quiz-skip {
  color: #8a8074 !important;
}
body.light-mode #quiz-overlay .quiz-progress-bar {
  background: rgba(212,175,55,0.1) !important;
}

  body.light-mode #inline-quiz .quiz-question {
    text-shadow:
      0 0 8px rgba(184,134,11,0.35),
      0 0 20px rgba(184,134,11,0.18),
      0 2px 6px rgba(0,0,0,0.08);
  }

  body.light-mode #inline-quiz .quiz-step-label {
    text-shadow:
      0 0 6px rgba(184,134,11,0.4),
      0 0 16px rgba(184,134,11,0.2);
  }

  body.light-mode #inline-quiz .quiz-sub {
    text-shadow: none;
  }

  body.light-mode #inline-quiz .section-title {
    text-shadow:
      0 0 10px rgba(184,134,11,0.3),
      0 0 28px rgba(184,134,11,0.14),
      0 2px 8px rgba(0,0,0,0.06);
  }

  body.light-mode #inline-quiz .section-label {
    text-shadow:
      0 0 8px rgba(184,134,11,0.4),
      0 0 20px rgba(184,134,11,0.2);
  }

  body.light-mode #inline-quiz .gold-line::before,
  body.light-mode #inline-quiz .gold-line::after {
    box-shadow: 0 0 6px rgba(184,134,11,0.25);
  }

  body.light-mode #inline-quiz .quiz-box {
    box-shadow:
      0 0 0 1px rgba(184,134,11,0.12),
      0 8px 40px rgba(184,134,11,0.1),
      0 2px 12px rgba(184,134,11,0.08);
  }

  body.light-mode #inline-quiz .quiz-top-line {
    box-shadow: 0 0 8px rgba(184,134,11,0.3);
  }

  body.light-mode #inline-quiz .quiz-progress-fill {
    box-shadow: 0 0 6px rgba(184,134,11,0.4);
  }

  body.light-mode #inline-quiz .quiz-btn-next {
    text-shadow: none;
    box-shadow:
      0 0 0 1px rgba(184,134,11,0.2),
      0 4px 16px rgba(184,134,11,0.15);
  }

  body.light-mode #inline-quiz .quiz-btn-next.ready {
    box-shadow:
      0 0 0 1px rgba(184,134,11,0.35),
      0 0 14px rgba(184,134,11,0.25),
      0 4px 20px rgba(184,134,11,0.15);
  }

  body.light-mode #inline-quiz .quiz-enter-btn {
    box-shadow:
      0 0 0 1px rgba(184,134,11,0.3),
      0 0 16px rgba(184,134,11,0.2),
      0 6px 24px rgba(184,134,11,0.12);
    text-shadow: none;
  }

  body.light-mode .pkg-filter-bar::before {
    border-color: rgba(0,0,0,0.15);
  }

  body.light-mode .pkg-filter-btn {
    color: #111111;
    border-right-color: rgba(0,0,0,0.12);
    font-weight: 600;
  }

body.light-mode .pkg-filter-btn.active {
    color: #000000;
    background: rgba(0,0,0,0.07);
  }

  body.light-mode ::-webkit-scrollbar-track {
    background: var(--black);
  }

  body.light-mode ::-webkit-scrollbar-thumb {
    background: var(--gold);
  }

  body.light-mode .whatsapp-fab {
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  }

  body.light-mode .theme-toggle {
    box-shadow: 0 4px 20px rgba(184,134,11,0.2);
  }

  body.light-mode .theme-toggle:hover {
    box-shadow: 0 8px 32px rgba(184,134,11,0.45);
  }

  body.light-mode .nav-logo-img {
    filter:
      drop-shadow(0 0 10px rgba(184,134,11,0.5))
      drop-shadow(0 0 24px rgba(184,134,11,0.2));
  }

  body.light-mode .itinerary-day::before {
    box-shadow: 0 0 10px rgba(184,134,11,0.5);
  }

  body.light-mode .sidebar-card {
    box-shadow:
      0 20px 80px rgba(184,134,11,0.12),
      inset 0 1px 0 rgba(184,134,11,0.1);
  }

  body.light-mode .gallery-magnify {
    border-color: rgba(184,134,11,0.4);
    background: rgba(245,240,232,0.7);
  }

  body.light-mode .ds-dot.active::after {
    background: var(--gold);
  }

  body.light-mode .ds-progress {
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  body.light-mode .pkg-filter-glow {
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    filter: blur(2px);
  }

  body.light-mode .card-number {
    background: linear-gradient(#d4af37, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    animation: cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite, fadeUp 1s 0.3s forwards !important;
    -webkit-text-fill-color: transparent;
}

  body.light-mode .section-label {
    color: #5a3a00 !important;
    -webkit-text-fill-color: #5a3a00 !important;
    font-weight: 800 !important;
  }

  body.light-mode .gold-line::before,
  body.light-mode .gold-line::after {
    background: rgba(0,0,0,0.18);
}

  body.light-mode .divider {
    background: linear-gradient(to right, var(--gold), transparent);
  }

  body.light-mode .stats-bar {
    background: transparent;
  }

  body.light-mode .highlight-card::before {
    background: linear-gradient(to right, var(--gold), transparent);
  }

  body.light-mode .pkg-hero-overlay {
    background: linear-gradient(
      to top,
      rgba(245,240,232,0.97) 0%,
      rgba(245,240,232,0.45) 40%,
      rgba(245,240,232,0.1) 70%,
      rgba(245,240,232,0.2) 100%
    );
  }

  body.light-mode .pkg-hero-title {
    color: #1a1714;
  }

  body.light-mode .pkg-hero-meta-label {
    color: var(--muted);
  }

  body.light-mode .pkg-hero-meta-value {
    color: #1a1714;
  }

  body.light-mode .sidebar-card::before {
    background: radial-gradient(
      ellipse at 0% 0%,
      rgba(184,134,11,0.08) 0%,
      transparent 60%
    );
  }

  body.light-mode .quote-mark {
    color: var(--gold);
    opacity: 0.4;
  }

  body.light-mode .author-avatar {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #f5f0e8;
  }

  body.light-mode .contact-detail-icon {
    border-color: rgba(0,0,0,0.15);
  }

  body.light-mode .footer-bottom {
    border-top-color: rgba(0,0,0,0.12);
  }
    
  body.light-mode .gallery-strip-item img {
    filter: saturate(0.5) brightness(1);
  }

  body.light-mode .gallery-strip-item:hover img {
    filter: saturate(1) brightness(1);
  }

  body.light-mode .gallery-count {
    -webkit-text-stroke: 1px rgba(184,134,11,0.25);
  }

  body.light-mode .gallery-lightbox {
    background: rgba(220,216,210,0.98);
  }

  body.light-mode .gallery-lightbox-caption h3 {
    color: #1a1714;
  }

  body.light-mode .gallery-lightbox-close {
    color: var(--muted);
    border-color: rgba(0,0,0,0.2);
  }

  body.light-mode .gallery-lightbox-close:hover {
    color: var(--gold);
    border-color: var(--gold);
  }

  body.light-mode .gallery-lightbox-nav {
    background: rgba(244,244,242,0.9);
    border-color: rgba(0,0,0,0.2);
  }

  body.light-mode .gallery-lightbox-counter {
    color: rgba(184,134,11,0.5);
  }

  body.light-mode .gallery-lightbox-counter span {
    color: var(--gold);
  }

  body.light-mode .ds-lightbox {
    background: rgba(245,240,232,0.97);
  }

/* Body gold buttons — bright gold in light mode */
@keyframes pulseBodyGold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212,175,55,0.6), 0 8px 32px rgba(212,175,55,0.35);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(212,175,55,0), 0 8px 32px rgba(212,175,55,0.35);
  }
}

body.light-mode #sendEnquiryBtn,
body.light-mode .contact-form .btn-primary,
body.light-mode #testimonialFormLocked button,
body.light-mode .view-all-btn,
body.light-mode .blog-view-all-btn,
body.light-mode .auth-submit,
body.light-mode #siSubmitBtn,
body.light-mode #suSubmitBtn,
body.light-mode .quiz-btn-next.ready,
body.light-mode .quiz-enter-btn,
body.light-mode .quiz-result-link {
  background: linear-gradient(135deg, #e8c84a, #d4af37) !important;
  color: #080808 !important;
  -webkit-text-fill-color: #080808 !important;
  filter: brightness(1.12) saturate(1.2) !important;
  box-shadow: 0 8px 28px rgba(212,175,55,0.4) !important;
  animation: pulseBodyGold 3s ease-in-out infinite 1.5s !important;
}

body.light-mode #sendEnquiryBtn:hover,
body.light-mode .contact-form .btn-primary:hover,
body.light-mode #testimonialFormLocked button:hover,
body.light-mode .view-all-btn:hover,
body.light-mode .blog-view-all-btn:hover,
body.light-mode .auth-submit:hover,
body.light-mode #siSubmitBtn:hover,
body.light-mode #suSubmitBtn:hover,
body.light-mode .quiz-btn-next.ready:hover,
body.light-mode .quiz-result-link:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 48px rgba(212,175,55,0.7) !important;
  filter: brightness(1.22) saturate(1.3) !important;
  animation: none !important;
}

/* Keep quiz-enter-btn as ghost style in light mode */
body.light-mode .quiz-enter-btn {
  background: transparent !important;
  border: 1px solid rgba(212,175,55,0.7) !important;
  color: #9a6f00 !important;
  -webkit-text-fill-color: #9a6f00 !important;
  filter: none !important;
  animation: none !important;
}
body.light-mode .quiz-enter-btn:hover {
  background: rgba(212,175,55,0.12) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 8px 28px rgba(212,175,55,0.3) !important;
  transform: translateY(-2px) !important;
}

  body.light-mode .ds-lightbox-caption h3 {
    color: #1a1714;
  }

  body.light-mode .ds-lightbox-close {
    color: var(--muted);
    border-color: rgba(184,134,11,0.25);
  }

  /* Testimonial locked container — light mode grey match */
body.light-mode .testimonial-locked-container {
  background: #d8d4cc !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
body.light-mode .testimonial-locked-container button.btn-primary-gold {
  background: linear-gradient(135deg, #e8c84a, #d4af37) !important;
  color: #080808 !important;
  -webkit-text-fill-color: #080808 !important;
  filter: brightness(1.12) saturate(1.2) !important;
  box-shadow: 0 8px 28px rgba(212,175,55,0.4) !important;
}
body.light-mode .testimonial-locked-container button[onclick*="signin"] {
  background: linear-gradient(135deg, #e8c84a, #d4af37) !important;
  color: #080808 !important;
  -webkit-text-fill-color: #080808 !important;
  filter: brightness(1.12) saturate(1.2) !important;
  box-shadow: 0 8px 28px rgba(212,175,55,0.4) !important;
}

body.light-mode .testimonial-locked-container button[onclick*="signin"]:hover {
  filter: brightness(1.22) saturate(1.3) !important;
  box-shadow: 0 16px 48px rgba(212,175,55,0.7) !important;
  transform: translateY(-3px) !important;
}

body.light-mode .testimonial-locked-container button[onclick*="signup"] {
  background: transparent !important;
  color: #7a5500 !important;
  -webkit-text-fill-color: #7a5500 !important;
  border: 1px solid rgba(122,85,0,0.5) !important;
  filter: none !important;
  box-shadow: none !important;
}

body.light-mode .testimonial-locked-container button[onclick*="signup"]:hover {
  background: rgba(212,175,55,0.1) !important;
  border-color: #9a6f00 !important;
  transform: translateY(-2px) !important;
}

body.light-mode #testimonialSubmitBtn {
  background: linear-gradient(135deg, #e8c84a, #d4af37) !important;
  color: #080808 !important;
  -webkit-text-fill-color: #080808 !important;
  filter: brightness(1.12) saturate(1.2) !important;
  box-shadow: 0 8px 28px rgba(212,175,55,0.4) !important;
}

body.light-mode #testimonialSubmitBtn:hover {
  filter: brightness(1.22) saturate(1.3) !important;
  box-shadow: 0 16px 48px rgba(212,175,55,0.7) !important;
  transform: translateY(-3px) !important;
}  
body.light-mode .testimonial-locked-container > div[style*="32px"] {
  color: var(--gold) !important;
}
body.light-mode .testimonial-locked-container > div[style*="22px"] {
  color: #0a0a0a !important;
}
body.light-mode .testimonial-locked-container p {
  color: #2a2a2a !important;
}
body.light-mode .quiz-top-line {
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  body.light-mode .quiz-progress-fill {
    background: linear-gradient(to right, var(--amber), var(--gold));
  }

  body.light-mode .quiz-progress-fill::after {
    background: var(--gold);
    box-shadow: 0 0 6px rgba(184,134,11,0.7);
  }

  body.light-mode .blog-card-category {
    background: var(--gold);
    color: #f5f0e8;
  }

  /* Theme toggle button */
  .theme-toggle {
    position: fixed;
    bottom: 36px;
    left: 36px;
    z-index: 200;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition:
      background 0.4s ease,
      border-color 0.4s ease,
      transform 0.3s ease,
      box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  .theme-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(212,175,55,0.3);
    border-color: var(--gold);
  }

  .theme-toggle-icon {
    width: 18px;
    height: 18px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  }

  .theme-toggle:hover .theme-toggle-icon {
    transform: rotate(20deg);
  }

  .theme-toggle-icon .sun {
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(1);
  }

  .theme-toggle-icon .moon {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.6) rotate(90deg);
  }

  body.light-mode .theme-toggle {
    background: #d4d0c8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }

  body.light-mode .theme-toggle-icon .sun {
    opacity: 0;
    transform: scale(0.6) rotate(-90deg);
  }

  body.light-mode .theme-toggle-icon .moon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  .team-popup-overlay {
    position: fixed; inset: 0; z-index: 99985;
    background: rgba(8,6,2,0.45);
    backdrop-filter: blur(12px) saturate(1.4) brightness(0.7);
    -webkit-backdrop-filter: blur(12px) saturate(1.4) brightness(0.7);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.45s ease;
  }
  .team-popup-overlay.open { opacity: 1; pointer-events: all; }
  .team-popup {
    background: rgba(10,8,3,0.82);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    border: 1px solid rgba(212,175,55,0.28);
    max-width: 560px; width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 0 1px rgba(212,175,55,0.08), 0 40px 120px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.12);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.3) transparent;
  }
  .team-popup::-webkit-scrollbar { width: 3px; }
  .team-popup::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); }
  .team-popup-overlay.open .team-popup { transform: translateY(0) scale(1); }
  .team-popup-top-line {
    position: absolute; top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .team-popup-close {
    position: absolute; top: 16px; right: 20px; z-index: 5;
    background: rgba(8,8,8,0.7); border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold); font-family: 'Jost', sans-serif;
    font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    padding: 10px 20px; cursor: none;
    backdrop-filter: blur(8px);
    transition: color 0.3s, border-color 0.3s, background 0.3s;
  }
  .team-popup-close:hover { background: rgba(212,175,55,0.15); border-color: var(--gold); color: #fff; }
  .team-popup-hero {
    position: relative; height: 260px; overflow: visible;
    background: var(--charcoal);
  }
  .team-popup-hero > img,
  .team-popup-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    border-radius: 0;
  }
  .team-popup-hero > img {
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .team-popup-hero-wildlife {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    filter: brightness(0.6) saturate(0.75);
    display: block;
  }
  .team-popup-hero img.team-popup-hero-wildlife {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    filter: brightness(0.6) saturate(0.75);
  }
  .team-popup-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.85) 100%);
  }
  .team-popup-avatar-wrap {
    position: absolute; bottom: -48px; left: 50%; transform: translateX(-50%);
    width: 96px; height: 96px;
    border-radius: 50%; overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2), 0 8px 32px rgba(0,0,0,0.6);
  }
  .team-popup-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
  .team-popup-body { padding: 64px 40px 44px; text-align: center; }
  .team-popup-divider { margin: 16px auto 20px; }
  .team-popup-role {
    font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 6px;
  }
  .team-popup-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; color: var(--text);
    margin-bottom: 4px; line-height: 1.15;
  }
  .team-popup-divider {
    width: 48px; height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 16px 0 20px;
  }
  .team-popup-bio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; line-height: 1.85; color: var(--muted);
    font-style: italic; margin-bottom: 28px;
  }
  .team-popup-details { display: flex; flex-direction: column; gap: 14px; }
  .team-popup-detail {
    display: flex; align-items: flex-start; gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .team-popup-detail:last-child { border-bottom: none; }
  .team-popup-detail-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(212,175,55,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
  }
  .team-popup-detail-text { display: flex; flex-direction: column; gap: 3px; }
  .team-popup-detail-label {
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
  }
  .team-popup-detail-value {
    font-size: 14px; color: var(--text);
    text-decoration: none;
  }
  a.team-popup-detail-value:hover { color: var(--gold); }
  body.light-mode .team-popup { background: #e8e4dc; border-color: rgba(154,111,0,0.25); }
  body.light-mode .team-popup-name { color: #0a0a0a; }
  body.light-mode .team-popup-bio { color: #2a2a2a; }
  body.light-mode .team-popup-detail-value { color: #0a0a0a; }
  body.light-mode .team-popup-close { color: #5e5040; border-color: rgba(154,111,0,0.25); }
  body.light-mode .team-popup-close:hover { color: #9a6f00; border-color: #9a6f00; }
  body.light-mode .team-popup-top-line { background: linear-gradient(to right, transparent, #9a6f00, transparent); }
  body.light-mode .team-popup-overlay { background: rgba(200,196,188,0.85); }

  /* ============================= */
  /* AUTH SYSTEM                   */
  /* ============================= */
  .auth-btn-nav {
    font-family: 'Jost', sans-serif;
    font-size: 9px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold);
    background: none;
    border: 1px solid rgba(212,175,55,0.3);
    padding: 9px 20px;
    cursor: none;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    display: flex; align-items: center; gap: 8px;
    flex-shrink: 0;
  }
  .auth-btn-nav:hover { background: var(--gold-dim); border-color: var(--gold); }
  .auth-btn-nav.signed-in { color: var(--gold); }
  .auth-btn-nav.signed-in:hover { background: rgba(212,175,55,0.1); }

  .auth-overlay {
    position: fixed; inset: 0; z-index: 99990;
    background: rgba(4,4,4,0.92);
    backdrop-filter: blur(22px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
  }
  .auth-overlay.open { opacity: 1; pointer-events: all; }

  .auth-modal {
    background: #0f0f0f;
    border: 1px solid rgba(212,175,55,0.2);
    max-width: 520px; width: 100%;
    max-height: 92vh; overflow-y: auto;
    position: relative;
    box-shadow: 0 40px 120px rgba(0,0,0,0.9), inset 0 1px 0 rgba(212,175,55,0.07);
    transform: translateY(28px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
    scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.3) transparent;
  }
  .auth-modal::-webkit-scrollbar { width: 3px; }
  .auth-modal::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); }
  .auth-overlay.open .auth-modal { transform: translateY(0) scale(1); }

  .auth-modal-top-line {
    position: absolute; top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .auth-modal-close {
    position: absolute; top: 16px; right: 20px; z-index: 5;
    background: none; border: 1px solid rgba(212,175,55,0.22);
    color: var(--muted); font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    padding: 8px 16px; cursor: none;
    transition: color 0.3s, border-color 0.3s;
  }
  .auth-modal-close:hover { color: var(--gold); border-color: var(--gold); }

  .auth-modal-body { padding: 52px 44px 44px; }
  .auth-modal-label {
    font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 16px;
  }
  .auth-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px); font-weight: 700;
    color: var(--text); margin-bottom: 6px; line-height: 1.2;
  }
  .auth-modal-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px; font-style: italic; color: var(--muted);
    margin-bottom: 32px; line-height: 1.6;
  }
  .auth-tabs {
    display: flex; gap: 0; margin-bottom: 32px;
    border-bottom: 1px solid rgba(212,175,55,0.12);
  }
  .auth-tab {
    font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--muted); background: none; border: none;
    padding: 12px 24px 12px 0; cursor: none;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
    transition: color 0.3s, border-color 0.3s;
  }
  .auth-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
  .auth-tab:hover:not(.active) { color: var(--text); }

  .auth-form { display: flex; flex-direction: column; gap: 0; }
  .auth-form-section {
    font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin: 20px 0 12px; opacity: 0.7;
  }
  .auth-form-section:first-child { margin-top: 0; }
  .auth-field {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    color: var(--text); font-family: 'Jost', sans-serif;
    font-size: 13px; padding: 14px 0; margin-bottom: 16px;
    outline: none; transition: border-color 0.3s;
  }
  .auth-field:focus { border-bottom-color: var(--gold); }
  .auth-field::placeholder { color: var(--muted); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
  .auth-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  select.auth-field { appearance: none; -webkit-appearance: none; background: transparent; cursor: none; }
  .auth-submit {
    width: 100%; text-align: center;
    font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase;
    padding: 18px; margin-top: 8px;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #080808; border: none; cursor: none;
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .auth-submit::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.18);
    transform: translateX(-100%) skewX(-15deg); transition: transform 0.4s;
  }
  .auth-submit:hover::before { transform: translateX(200%) skewX(-15deg); }
  .auth-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(212,175,55,0.35); }
  .auth-alt {
    text-align: center; margin-top: 20px;
    font-size: 11px; color: var(--muted);
    font-family: 'Jost', sans-serif; letter-spacing: 1px;
  }
  .auth-alt button {
    background: none; border: none; color: var(--gold);
    font-family: 'Jost', sans-serif; font-size: 11px;
    letter-spacing: 1px; cursor: none;
    text-decoration: underline; padding: 0;
    transition: color 0.3s;
  }
  .auth-alt button:hover { color: var(--gold-light); }
  .auth-error {
    background: rgba(224,85,85,0.1); border: 1px solid rgba(224,85,85,0.3);
    color: #e05555; font-size: 12px; letter-spacing: 1px;
    padding: 12px 16px; margin-bottom: 16px; display: none;
  }
  .auth-error.visible { display: block; }
  .auth-success {
    background: rgba(123,181,110,0.1); border: 1px solid rgba(123,181,110,0.3);
    color: #7bb56e; font-size: 12px; letter-spacing: 1px;
    padding: 12px 16px; margin-bottom: 16px; display: none; text-align: center;
  }
  .auth-success.visible { display: block; }

  .password-wrapper {
  position: relative;
}

.toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  font-size: 18px;
}

.auth-input {
  width: 100%;
  padding-right: 35px;
}

  .user-menu {
    position: absolute; top: 100%; right: 0; margin-top: 8px;
    background: rgba(12,12,12,0.97); border: 1px solid var(--border);
    min-width: 220px; z-index: 200; backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .user-menu.open { opacity: 1 !important; pointer-events: all !important; transform: translateY(0) !important; }
  .user-menu-name {
    padding: 16px 20px 12px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
    border-bottom: 1px solid rgba(212,175,55,0.1);
  }
  .user-menu-item {
    display: block; width: 100%;
    padding: 12px 20px;
    font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--muted); background: none; border: none;
    text-align: left; cursor: none;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: color 0.3s, background 0.3s;
    text-decoration: none;
  }
  .user-menu-item:hover { color: var(--gold); background: rgba(212,175,55,0.04); }
  .user-menu-item.danger:hover { color: #e05555; }

  /* Testimonial form */
  .testimonial-form-section {
    margin-top: 48px; padding-top: 48px;
    border-top: 1px solid var(--border);
  }
  .testimonial-form-locked {
    text-align: center; padding: 32px 24px;
    border: 1px solid rgba(212,175,55,0.1);
  }
  .testimonial-form-locked p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; color: var(--muted); font-style: italic;
    line-height: 1.6; margin-bottom: 20px;
  }

  body.light-mode #authModal { background: #f0ece4 !important; border-color: rgba(154,111,0,0.25) !important; }
  body.light-mode #authModal h2 { color: #0a0a0a !important; }
  body.light-mode #authModal p  { color: #2a2a2a !important; }
  body.light-mode #authModal input,
  body.light-mode #authModal select {
    color: #0a0a0a !important;
    border-bottom-color: rgba(154,111,0,0.25) !important;
  }
  body.light-mode #authModal input::placeholder { color: #5e5040 !important; }
  body.light-mode #authModal select { background: #f0ece4 !important; color: #5e5040 !important; }
  body.light-mode #authModal #tabSignin,
  body.light-mode #authModal #tabSignup { color: #5e5040; }
  body.light-mode #authModal #tabSignin[style*="color: rgb(212"],
  body.light-mode #authModal #tabSignup[style*="color: rgb(212"] { color: #9a6f00 !important; }
  body.light-mode .auth-overlay { background: rgba(200,196,188,0.9); }
  body.light-mode .auth-btn-nav { color: var(--gold); border-color: rgba(122,79,0,0.35); }
  body.light-mode #userMenu { background: rgba(232,228,220,0.98) !important; border-color: rgba(0,0,0,0.12) !important; }
  body.light-mode #userMenuName { color: var(--gold) !important; border-bottom-color: rgba(122,79,0,0.15) !important; }
  body.light-mode .user-menu-item { color: #1a1a1a; }
  body.light-mode .user-menu-item:hover { color: var(--gold); }
  body.light-mode .testimonial-form-locked { border-color: rgba(154,111,0,0.15); }
  body.light-mode .testimonial-form-locked p { color: #2a2a2a; }
  body.light-mode #authModalClose {
    color: #5e5040 !important;
    border-color: rgba(154,111,0,0.25) !important;
  }
  body.light-mode #authModalClose:hover { color: #9a6f00 !important; border-color: #9a6f00 !important; }

  .theme-tooltip {
    position: absolute;
    left: 58px;
    white-space: nowrap;
    background: var(--charcoal);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
  }

  .theme-toggle:hover .theme-tooltip {
    opacity: 1;
    transform: translateX(0);
  }

  body.light-mode .theme-tooltip {
    background: #d4d0c8;
  }

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

  html { scroll-behavior: smooth; }

  /* REPLACE */
body {
    background: var(--black);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom Cursor */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.4s, height 0.4s, opacity 0.3s;
}
  body:hover .cursor-ring { opacity: 1; }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
    mix-blend-mode: normal;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: transparent;
    backdrop-filter: none;
    padding: 18px 48px;
    border-bottom: none;
  }

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none; 
  flex-shrink: 0; 
  line-height: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  height: 70px;
  width: auto;
  visibility: hidden;
}
nav.scrolled .nav-logo-link {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
 .nav-brand-idle {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: none;
  position: absolute;
  left: 48px;
}

.nav-idle-compass {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .nav-idle-words {
  transition: opacity 0.4s ease;
}

.compass-ring {
  color: var(--gold);
  font-size: 26px;
  display: inline-block;
  animation: compassSpin 10s linear infinite;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.7))
          drop-shadow(0 0 16px rgba(212,175,55,0.3));
  line-height: 1;
}

.compass-dot {
  position: absolute;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  animation: dotPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(212,175,55,0.9));
}

.nav-idle-words {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-idle-top {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-idle-bottom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: italic;
}

.nav-idle-bottom em {
  font-style: normal;
  font-weight: 600;
}

@keyframes compassSpin {
  0%   { transform: rotate(0deg);   }
  100% { transform: rotate(360deg); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.3; transform: scale(0.6);  }
}

nav.scrolled .nav-brand-idle {
  opacity: 0;
  pointer-events: none;
}
  @keyframes goldenPulse {
   0%, 100% { opacity: 1; }
   50%       { opacity: 0.85; }
 }

.nav-logo-img {
    height: 70px;
    width: auto;    
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 28px rgba(212, 175, 55, 0.2));
    animation: goldenPulse 4s ease-in-out infinite;
    transition: height 0.4s ease;
  } 
   nav.scrolled .nav-logo-img {
    height: 70px;
  }
  @media (max-width: 900px) {
  .nav-logo-img {
    height: 70px;
  }
  nav.scrolled .nav-logo-img {
    height: 70px;
  }
}
@media (max-width: 600px) {
  .nav-logo-img {
    height: 44px;
    width: auto;
    max-width: 120px;
  }
  nav.scrolled .nav-logo-img {
    height: 44px;
    width: auto;
    max-width: 120px;
  }
  .nav-logo-link {
    height: 44px;
    width: auto;
  }
}
}

  .loader-logo {
    width: 55px;
  }

  .loader-logo.morph-to-hero {
    width: 200px !important;
  }

  #hero-logo {
    width: 200px !important;
  }
}
  nav.scrolled .nav-logo-img {
    height: 55px;
  }
}

.menu-btn {
    background: none;
    border: none;
    cursor: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    padding: 8px;
    height: 36px;
    width: 44px;
    position: relative;
    z-index: 200;
  }
.menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1), opacity 0.3s;
    transform-origin: center;
  }
  .menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Dropdown Menu */
  .dropdown {
    position: fixed;
    top: 0; right: 0;
    width: 340px;
    height: 100vh;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(40px);
    border-left: 1px solid var(--border);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77,0,0.175,1);
  }
  .dropdown.open { transform: translateX(0); }

  .dropdown-link {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s, letter-spacing 0.3s;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s;
  }
  .dropdown.open .dropdown-link {
    opacity: 1;
    transform: translateX(0);
  }
  .dropdown.open .dropdown-link:nth-child(1) { transition-delay: 0.1s; }
  .dropdown.open .dropdown-link:nth-child(2) { transition-delay: 0.15s; }
  .dropdown.open .dropdown-link:nth-child(3) { transition-delay: 0.2s; }
  .dropdown.open .dropdown-link:nth-child(4) { transition-delay: 0.25s; }
  .dropdown-link:hover { color: var(--gold); letter-spacing: 2px; }

  .dropdown-tagline {
    margin-top: 48px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
    transition: opacity 0.4s 0.3s;
  }
  .dropdown-back {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
  cursor: none;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s;
}
.dropdown-back::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--muted);
  transition: width 0.3s, background 0.3s;
}
.dropdown-back:hover { color: var(--gold); }
.dropdown-back:hover::before { width: 36px; background: var(--gold); }
.dropdown.open .dropdown-back {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.08s;
}
  .dropdown.open .dropdown-tagline { opacity: 1; }

  /* HERO */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    /* Liquid glass fallback shown before video loads */
    background:
      radial-gradient(ellipse at 30% 40%, rgba(212,175,55,0.18) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 60%, rgba(184,134,11,0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 20%, rgba(255,220,80,0.08) 0%, transparent 45%),
      linear-gradient(135deg, #0a0800 0%, #111008 25%, #0d0c08 50%, #080808 100%);
    backdrop-filter: blur(0px);
  }

  .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: blur(0px) brightness(0.72) saturate(1.08);
  transform: scale(1.0);
  transition: filter 5s cubic-bezier(0.4, 0, 0.2, 1);  
  z-index: -1;
}

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.18) 0%,
      rgba(5, 4, 2, 0.10) 30%,
      rgba(10, 7, 1, 0.22) 60%,
      rgba(8, 8, 8, 0.72) 100%
    );
    box-shadow: inset 0 0 120px rgba(180, 130, 10, 0.07);
  }
  .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 0 14px;
  }

  .hero-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 1.3s forwards;
  }

  #hero-logo {
  width: 300px;
  max-width: none;
  margin: 0 auto;
  display: block;
  opacity: 0;
  position: relative;
  transition: opacity 0.6s ease;
  animation: goldenPulse 4s ease-in-out infinite;
}

  #hero-logo::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,0.98) 0%,
    rgba(0,0,0,0.85) 35%,
    rgba(0,0,0,0.4) 60%,
    transparent 75%
  );
  z-index: -1;
  border-radius: 50%;
}

  #hero-logo.visible {
  opacity: 1;
}  
  .hero-sun { display: none; }
.silhouette-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.silhouette-layer svg {
  display: block;
  width: 100%;
}

  .hero-eyebrow {
  font-size: 11px;
  font-weight: 430;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0;
  animation: cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite, fadeUp 1s 0.3s forwards !important;
  margin-bottom: 4px;
  display: block;
  color: var(--gold);
  text-shadow:
    0 0 12px rgba(212, 175, 55, 0.6),
    0 0 24px rgba(212, 175, 55, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.95);
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold) 30%,
    #fff8dc 48%,
    #fffbe8 50%,
    #fff8dc 52%,
    var(--gold) 70%,
    var(--gold) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-position: 200% center;
}

@keyframes cardNumFlash {
  0%   { filter: brightness(1.15); }
  15%  { filter: brightness(1.15); }
  20%  { filter: brightness(3.2) contrast(1.3); }
  28%  { filter: brightness(3.8) contrast(1.4); }
  36%  { filter: brightness(3.2) contrast(1.3); }
  40%  { filter: brightness(1.15); }
  100% { filter: brightness(1.15); }
  }  
    
@keyframes eyebrowShine {
  0%   { background-position: 200% center; }
  35%  { background-position: -20% center; }
  70%  { background-position: -20% center; }
  100% { background-position: 200% center; }
}

  .hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0;
  animation: cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite 1.5s;
  margin-top: 4px;
  margin-bottom: 32px;
  font-style: italic;
  color: var(--muted);
  text-shadow:
    0 0 16px rgba(240, 236, 228, 0.25),
    0 2px 12px rgba(0, 0, 0, 0.95);
  background: linear-gradient(
    90deg,
    #8a8074 0%,
    #8a8074 25%,
    #f0ece4 45%,
    #ffffff 50%,
    #f0ece4 55%,
    #8a8074 75%,
    #8a8074 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-position: 200% center;
}

@keyframes subtitleShine {
  0%   { background-position: 200% center; }
  40%  { background-position: -20% center; }
  65%  { background-position: -20% center; }
  100% { background-position: 200% center; }
}

@keyframes dsTaglineShine {
  0%   { background-position: 200% center; filter: brightness(1); }
  40%  { background-position: -20% center; filter: brightness(1.35); }
  65%  { background-position: -20% center; filter: brightness(1.35); }
  100% { background-position: 200% center; filter: brightness(1); }
}

  .btn-primary {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 18px 44px;
    background: linear-gradient(135deg, #f0c84a 0%, #d4af37 35%, #b8860b 65%, #c9921a 100%);;
    box-shadow:
      0 2px 0 rgba(255,255,255,0.25) inset,
      0 -2px 0 rgba(0,0,0,0.35) inset,
      0 4px 16px rgba(212,175,55,0.4),
      0 1px 3px rgba(0,0,0,0.5);
    color: #080808;
    border: none;
    cursor: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: filter 0.3s, box-shadow 0.4s;
    animation: pulseCTA 3s ease-in-out infinite 2s;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.5s;
  }
  .btn-primary:hover::before { transform: translateX(200%) skewX(-15deg); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,175,55,0.4); }

  @keyframes pulseCTA {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
  }

  .btn-ghost {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 17px 44px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border);
    cursor: none;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-2px);
  }

  /* Scroll cue */
  .scroll-cue {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
  }
  .scroll-cue span {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* SECTION STYLES */
  section { padding: 120px 0; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

  .section-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .section-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--muted);
    font-style: italic;
    line-height: 1.7;
    max-width: 540px;
  }

  /* HIGHLIGHTS */
  #highlights { background: var(--charcoal); }

  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 80px;
  }

  .highlight-card {
    background: var(--card);
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: none;
  }
  .highlight-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
  }
  .highlight-card svg {
    position: relative;
    z-index: 2;
  }
  .highlight-card:hover::before { transform: scaleX(1); }
  .highlight-card:hover { background: #161616; }

.card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    -webkit-text-stroke: 0px transparent;
    background: linear-gradient(var(--gold););
    -webkit-background-clip: text;
    color: var(--gold); 
    background-size: 100% 100%;
    animation: cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite, fadeUp 1s 0.3s forwards !important;  
    transition: opacity 0.4s ease;
  }

@keyframes cardNumFlash {
  0%   { filter: brightness(1.15); }
  15%  { filter: brightness(1.15); }
  20%  { filter: brightness(3.2) contrast(1.3); }
  28%  { filter: brightness(3.8) contrast(1.4); }
  36%  { filter: brightness(3.2) contrast(1.3); }
  40%  { filter: brightness(1.15); }
  100% { filter: brightness(1.15); }
  }

  .highlight-card:nth-child(2) .card-number { animation-delay: 1.6s; }
  .highlight-card:nth-child(3) .card-number { animation-delay: 3.2s; }

  .highlight-card:hover .card-number {
    filter: brightness(1.2);
    animation: none;
  }
  .highlight-card .hc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
  pointer-events: none;
  filter: brightness(0.13) saturate(0.6);
  transition: filter 0.5s ease;
}

.highlight-card:hover .hc-bg {
  filter: brightness(0.18) saturate(0.7);
}

.highlight-card .hc-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.5) 0%,
    rgba(8,8,8,0.25) 40%,
    rgba(8,8,8,0.6) 100%
  );
}
  .highlight-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.03) 30%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.03) 70%,
    transparent 100%
  );
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
  z-index: 10;
}

.highlight-card:hover::after {
  animation: highlightMetalShine 0.55s ease forwards;
}

@keyframes highlightMetalShine {
  0%   { left: -100%; }
  100% { left: 160%;  }
}

.card-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
    position: relative;
    z-index: 2;
  }

  .card-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  .stats-bar {
  margin-top: 40px;
}
.stat-item {
  padding: 24px 20px;
}
.stat-num {
  font-size: 32px;
}
.stat-label {
  font-size: 9px;
  font-weight: 500;
  margin-top: 5px;
}
  /* DESTINATIONS (formerly WILDLIFE) */
  #wildlife { background: var(--black); }

  .wildlife-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
  }
/* ============================= */
  /* DESTINATIONS SLIDESHOW        */
  /* ============================= */

  .destinations-slideshow {
    position: relative;
    width: 100%;
    padding: 0 0 60px;
    background: var(--black);
    margin-top: 64px;
    overflow: hidden;
  }

  /* Track */
  .ds-track {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 18vw;
    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
  }

/* Base slide */
  .ds-slide {
    flex: 0 0 auto;
    width: 50vw;
    height: 62vh;
    min-height: 400px;
    max-height: 720px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: none;
    transition:
      transform 1s cubic-bezier(0.76, 0, 0.24, 1),
      filter 1s ease,
      box-shadow 1s ease,
      opacity 1s ease,
      width 1s cubic-bezier(0.76, 0, 0.24, 1);
    transform: scale(0.62) translateY(52px);
    filter: blur(6px) brightness(1) saturate(1);
    box-shadow: none;
    opacity: 0;
  }

  /* Active — floats forward, fully revealed */
  .ds-slide.ds-active {
    transform: scale(1) translateY(-20px);
    filter: blur(0px) brightness(1) saturate(1);
    opacity: 1;
    width: 50vw;
    box-shadow: none;
    z-index: 5;
    cursor: none;
  }

  /* Immediate left and right neighbours — symmetrical peek */
  .ds-slide.ds-next,
  .ds-slide.ds-prev-slide {
    transform: scale(0.82) translateY(22px);
    filter: blur(2px) brightness(0.55) saturate(0.6);
    opacity: 0.75;
    width: 50vw;
    z-index: 3;
    cursor: none;
  }

  /* Second neighbours — barely a whisper */
  .ds-slide.ds-far {
    transform: scale(0.7) translateY(40px);
    filter: blur(4px) brightness(0.3) saturate(0.3);
    opacity: 0.4;
    width: 50vw;
    z-index: 1;
    cursor: none;
  }

/* Image — Ken Burns only on active */
  .ds-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.07);
    transition: transform 6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    pointer-events: none;
    user-select: none;
    display: block;
    filter: brightness(1);
  }
  .ds-slide.ds-active .ds-slide-img {
    transform: scale(1);
    filter: brightness(1);
  }

/* Gradient overlay */
  .ds-slide-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top,    rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.08) 45%, transparent 68%),
      linear-gradient(to bottom, rgba(8,8,8,0.25) 0%, transparent 22%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.9s ease;
  }
  .ds-slide.ds-active .ds-slide-overlay {
    opacity: 1;
  }
  /* Magnify icon — appears on hover of active */
  .ds-magnify {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 4;
    width: 40px;
    height: 40px;
    background: rgba(8,8,8,0.6);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s;
    backdrop-filter: blur(8px);
    cursor: none;
  }
  .ds-slide.ds-active:hover .ds-magnify {
    opacity: 1;
  }
  .ds-magnify:hover {
    background: rgba(212,175,55,0.2);
  }

.ds-slide-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    padding: 0 48px 48px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .ds-slide.ds-active .ds-slide-content {
    opacity: 1;
    pointer-events: all;
  }

.ds-slide-label {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold) 30%,
    #fff8dc 48%,
    #fffbe8 50%,
    #fff8dc 52%,
    var(--gold) 70%,
    var(--gold) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-position: 200% center;
  animation: eyebrowShine 4s 1s ease-in-out infinite;
    transform: translateY(14px);
    opacity: 0;
    transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
  }
  .ds-slide.ds-active .ds-slide-label {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .ds-slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.2vw, 48px);
    font-weight: 900;
    line-height: 1.0;
    color: var(--text);
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.7s 0.75s ease, transform 0.7s 0.75s ease;
  }
  .ds-slide.ds-active .ds-slide-title {
    opacity: 1; transform: translateY(0);
  }

  .ds-slide-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-style: italic;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(
    90deg,
    #e8e0d0 0%,
    #ffffff 25%,
    #ffffff 45%,
    #ffffff 50%,
    #ffffff 55%,
    #ffffff 75%,
    #e8e0d0 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-position: 200% center;
  animation: dsTaglineShine 5s 1.5s ease-in-out infinite;
    line-height: 1.6;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.6s 0.9s ease, transform 0.6s 0.9s ease;
  }
  .ds-slide.ds-active .ds-slide-tagline {
    opacity: 1; transform: translateY(0) !important;
  }

  .ds-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 1px solid rgba(212,175,55,0.45);
    color: var(--gold);
    text-decoration: none;
    cursor: none;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.5s 1.05s ease, transform 0.5s 1.05s ease,
                background 0.3s, color 0.3s, border-color 0.3s;
  }
  .ds-slide.ds-active .ds-slide-btn {
    opacity: 1; transform: translateY(0)!important;
  }
  .ds-slide-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }
  .ds-slide-btn svg {
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .ds-slide-btn:hover svg { transform: translateX(4px); }

  /* Scroll hint — replaces arrow buttons */
  .ds-scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: none;
    opacity: 0.55;
    transition: opacity 0.3s;
    padding: 16px 8px;
  }
  .ds-scroll-hint:hover { opacity: 1; }
  .ds-scroll-hint-left  { left: 0; }
  .ds-scroll-hint-right { right: 0; }

  .ds-scroll-hint-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.6), transparent);
    position: relative;
    overflow: hidden;
  }
  .ds-scroll-hint-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: hintFlow 2s ease-in-out infinite;
  }
  .ds-scroll-hint-left .ds-scroll-hint-line::after {
    animation: hintFlowUp 2s ease-in-out infinite;
  }

  @keyframes hintFlow {
    0%   { top: -100%; }
    100% { top: 100%;  }
  }
  @keyframes hintFlowUp {
    0%   { top: 100%;  }
    100% { top: -100%; }
  }

  .ds-scroll-hint-text {
    font-family: 'Jost', sans-serif;
    font-size: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(212,175,55,0.6);
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .ds-scroll-hint-left  .ds-scroll-hint-text { transform: rotate(180deg); }

  .ds-scroll-hint-chevron {
    color: rgba(212,175,55,0.5);
    animation: chevronBounce 2s ease-in-out infinite;
  }
  .ds-scroll-hint-left .ds-scroll-hint-chevron {
    animation: chevronBounceLeft 2s ease-in-out infinite;
  }
  @keyframes chevronBounce {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(4px); }
  }
  @keyframes chevronBounceLeft {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(-4px); }
  }

  /* Controls row */
  .ds-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px 0 0;
  }

  /* Dots */
  .ds-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ds-dot {
    height: 1px;
    width: 20px;
    background: rgba(212,175,55,0.2);
    cursor: none;
    transition: width 0.45s cubic-bezier(0.25,0.46,0.45,0.94), background 0.45s;
    position: relative;
    overflow: hidden;
  }
  .ds-dot.active {
    width: 48px;
    background: rgba(212,175,55,0.3);
  }
  .ds-dot.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    animation: dotFill 4.5s linear forwards;
  }
  @keyframes dotFill {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  /* Counter */
  .ds-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: rgba(240,236,228,0.3);
    letter-spacing: 3px;
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .ds-counter-current {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
  }

  /* Progress line */
  .ds-progress {
    height: 1px;
    width: 0%;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 16px auto 0;
    max-width: 50vw;
    transition: none;
  }
  .ds-progress.running {
    transition: width 4.5s linear;
    width: 50vw;
  }

  /* Lightbox */
  .ds-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(4,4,4,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    cursor: none;
    padding: 40px;
  }
  .ds-lightbox.open {
    opacity: 1;
    pointer-events: all;
  }
  .ds-lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 40px 120px rgba(0,0,0,0.9);
    transform: scale(0.96);
    transition: transform 0.4s ease;
    display: block;
  }
  .ds-lightbox.open .ds-lightbox-img {
    transform: scale(1);
  }
  .ds-lightbox-close {
    position: absolute;
    top: 28px; right: 36px;
    background: none;
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--muted);
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: none;
    transition: color 0.3s, border-color 0.3s;
  }
  .ds-lightbox-close:hover { color: var(--gold); border-color: var(--gold); }
  .ds-lightbox-caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .ds-lightbox-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
  }
  .ds-lightbox-caption span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--muted);
    letter-spacing: 1px;
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .ds-track { padding: 40px 12vw; }
    .ds-slide { width: 64vw; height: 62vh; }
    .ds-progress { max-width: 64vw; }
    .ds-progress.running { width: 64vw; }
  }
  @media (max-width: 900px) {
    .ds-track { padding: 32px 8vw; gap: 14px; }
    .ds-slide { width: 76vw; height: 56vh; }
    .ds-slide-content { padding: 0 32px 36px; }
    .ds-scroll-hint { display: none; }
    .ds-progress { max-width: 76vw; }
    .ds-progress.running { width: 76vw; }
    .ds-track { justify-content: center; }
  }
@media (max-width: 600px) {

.destinations-slideshow {
  overflow: hidden;
  width: 100%;
}

/* Track becomes a static centering container */
.ds-track {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  position: relative;
  transform: none !important; /* kills carousel offset */
}

/* Stack all slides */
.ds-slide {
  width: 92vw;
  height: 56vw;
  flex: 0 0 92vw;
  border-radius: 10px;

  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) !important;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* Active slide = perfectly centered */
.ds-slide.ds-active {
  position: relative;
  left: auto;
  transform: none !important;

  opacity: 1;
  visibility: visible;
  pointer-events: all;
  margin: 0 auto;
  z-index: 5;
}

/* Kill neighbour slides */
.ds-slide.ds-next,
.ds-slide.ds-prev-slide,
.ds-slide.ds-far {
  opacity: 0 !important;
  visibility: hidden;
}

}
  /* Wrapper needs height to contain the absolute slides */
  .ds-track {
    position: relative;
    min-height: 56vw;
    height: auto;
  }

  .ds-slide .ds-slide-img {
    filter: brightness(0.72) saturate(0.88) !important;
  }

  .ds-slide.ds-active .ds-slide-img {
    filter: brightness(0.85) saturate(0.95) !important;
  }

  .ds-slide.ds-active {
    transform: scale(1) translateY(0) !important;
    filter: none !important;
    opacity: 1 !important;
    z-index: 5;
    box-shadow: none !important;
  }

  .ds-slide.ds-next,
  .ds-slide.ds-prev-slide {
    transform: scale(1) translateY(0) !important;
    filter: none !important;
    opacity: 0.45 !important;
    z-index: 3;
  }

  .ds-slide.ds-far {
    transform: scale(1) translateY(0) !important;
    filter: none !important;
    opacity: 0 !important;
    z-index: 1;
    pointer-events: none;
  }

  .ds-slide-overlay {
    display: none !important;
  }

  .ds-slide-img {
    filter: none !important;
    brightness: unset !important;
  }

  .ds-slide.ds-active .ds-slide-overlay {
    display: block !important;
    opacity: 1 !important;
    background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 60%) !important;
  }

  .ds-slide-content {
    padding: 0 18px 22px;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 10 !important;
    text-align: center;
    align-items: center;
  }

  .ds-slide.ds-active .ds-slide-content {
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .ds-slide-label,
  .ds-slide-title,
  .ds-slide-tagline,
  .ds-slide-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .ds-slide-title {
    font-size: 24px;
    text-align: center;
  }

  .ds-slide-tagline {
    font-size: 13px;
    margin-bottom: 14px;
    text-align: center;
  }

  .ds-slide-label {
    text-align: center;
    display: block;
  }

  .ds-slide-btn {
    margin: 0 auto;
    display: inline-flex;
  }

  .ds-progress {
    max-width: 78vw;
  }

  .ds-progress.running {
    width: 78vw;
  }

  /* Controls centered */
  .ds-controls {
    justify-content: center;
    padding: 16px 0 0;
  }

  /* Section header centered on mobile */
  #wildlife .wildlife-header {
    text-align: center;
    align-items: center;
  }

  #wildlife .section-title,
  #wildlife .section-label,
  #wildlife .section-sub {
    text-align: center;
  }
}
  .wildlife-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .wildlife-cell:hover .wildlife-bg { transform: scale(1.06); }


  .wildlife-animal {
    position: absolute;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(80px, 12vw, 160px);
    opacity: 0.15;
    transition: opacity 0.5s, transform 0.8s;
    user-select: none;
    pointer-events: none;
  }
  .wildlife-cell:first-child .wildlife-animal { font-size: 200px; }
  .wildlife-cell:hover .wildlife-animal { opacity: 0.25; transform: scale(0.95); }

  .wildlife-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.2) 50%, transparent 100%);
    transition: background 0.35s ease;
  }
  .wildlife-cell:hover .wildlife-overlay {
    background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.3) 55%, rgba(212,175,55,0.04) 100%);
  }

  .wildlife-label {
    position: absolute;
    bottom: 24px;
    left: 28px;
    z-index: 3;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .wildlife-cell:hover .wildlife-label {
    transform: translateY(-4px);
  }
  .wildlife-label h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  }
  .wildlife-label span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  }

  /* Gold divider */
  .divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 24px 0;
  }

  /* PACKAGES */
  #packages { background: var(--charcoal); }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
  }
  .packages-grid {
    align-items: stretch;
  }

  .packages-grid .package-card {
    display: flex;
    flex-direction: column;
    min-height: 580px;
  }

  .packages-grid .package-card.featured {
    min-height: 660px;
  }

  .packages-grid .package-card .pkg-features {
    flex: 1;
  }

  .packages-grid .package-card .pkg-cta {
    margin-top: auto;
  }

  .package-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.04);
    position: relative;
    padding: 44px 36px;
    cursor: none;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    overflow: hidden;
  }
  .package-card .pkg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  display: block;
  filter: brightness(0.18) saturate(0.7);
  transition: filter 0.5s ease;
}

.package-card:hover .pkg-bg {
  filter: brightness(0.22) saturate(0.8);
}

.package-card .pkg-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.3) 40%,
    rgba(8,8,8,0.65) 100%
  );
  pointer-events: none;
}
  .package-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-dim), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
  }
  .package-card:hover { border-color: var(--border); transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
  .package-card:hover::after { opacity: 1; }
  .package-card.featured { border-color: var(--border); }

  .pkg-badge {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 4px 12px;
    display: inline-block;
    margin-bottom: 28px;
  }

  .package-card .pkg-badge,
  .package-card .pkg-duration,
  .package-card .pkg-name,
  .package-card .pkg-price,
  .package-card .pkg-features,
  .package-card .pkg-cta {
    position: relative;
    z-index: 3;
  }

  .pkg-duration {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    display: block;
  }

  .pkg-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .pkg-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }
  .pkg-price span { font-size: 16px; color: var(--muted); font-family: 'Jost'; font-weight: 400; }

  .pkg-features {
    list-style: none;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
  }
  .pkg-features li {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .pkg-features li::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .pkg-cta {
    display: block;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 15px;
    border: 2px solid var(--border);
    color: var(--gold);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: background 0.3s, color 0.3s;
  }
  .pkg-cta:hover { background: var(--gold); color: var(--black); }

  /* TESTIMONIALS */
  #testimonials { background: var(--black); }

  .testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
  }

  .testimonial {
    padding: 40px;
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    position: relative;
  }

  .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.3;
    display: block;
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 28px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--black);
    font-weight: 700;
  }
  .author-info { display: flex; flex-direction: column; }
  .author-name { font-size: 13px; font-weight: 500; color: var(--text); }
  .author-loc { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

  /* CONTACT */
  #contact { background: var(--charcoal); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 64px;
    align-items: start;
  }

  .contact-info p {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 40px;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }
  .contact-detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .contact-detail-text { display: flex; flex-direction: column; }
  .contact-detail-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
  .contact-detail-value { font-size: 14px; color: var(--text); }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 0;
    margin-bottom: 24px;
    outline: none;
    transition: border-color 0.3s;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .contact-form input:focus,
  .contact-form textarea:focus { border-bottom-color: var(--gold); }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder { color: var(--muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
  .contact-form textarea { resize: none; height: 100px; }

  .contact-form .btn-primary { width: 100%; text-align: center; display: block; }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
  }


  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom span { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
/* ============================= */
/* BLOG SECTION                  */
/* ============================= */

#blog { background: var(--charcoal); }

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}

.blog-card {
  background: var(--card);
  position: relative;
  overflow: hidden;
  cursor: none;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.4s;
}

.blog-card:hover { background: #161616; }

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  flex-shrink: 0;
}

.blog-card:first-child .blog-card-img-wrap {
  height: 300px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.8s ease;
  filter: brightness(0.82) saturate(0.85);
  display: block;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.09);
  filter: brightness(0.72) saturate(0.75);
}

.blog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(8,8,8,0.7) 100%
  );
  z-index: 1;
}

.blog-card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 12px;
}

.blog-card-body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.blog-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}

.blog-card:hover .blog-card-body::before {
  transform: scaleX(1);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.blog-card-date {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-card-read {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-read::before {
  content: '';
  width: 1px;
  height: 10px;
  background: var(--border);
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s;
  flex: 1;
}

.blog-card:first-child .blog-card-title {
  font-size: 26px;
}

.blog-card:hover .blog-card-title {
  color: var(--gold);
}

.blog-card-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap 0.3s;
}

.blog-card-cta::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}

.blog-card:hover .blog-card-cta {
  gap: 14px;
}

.blog-card:hover .blog-card-cta::after {
  width: 40px;
}

.blog-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.blog-view-all-btn {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 450;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #080808;
  background: linear-gradient(135deg, #f0c84a 0%, #d4af37 35%, #b8860b 65%, #c9921a 100%);
    box-shadow:
      0 2px 0 rgba(255,255,255,0.25) inset,
      0 -2px 0 rgba(0,0,0,0.35) inset,
      0 4px 16px rgba(212,175,55,0.4),
      0 1px 3px rgba(0,0,0,0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: none;
  padding: 18px 52px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 8px 32px rgba(212,175,55,0.25);
  animation: pulseViewAll 3s ease-in-out infinite 2s;
}
.blog-view-all-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0.08) 70%, transparent 100%);
  transform: skewX(-15deg);
  transition: none;
}
.blog-view-all-btn:hover::before { animation: metalShine 0.6s ease forwards; }
.blog-view-all-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(212,175,55,0.5) !important; animation: none; }
.blog-view-all-btn::after {
  content: '';
  width: 18px; height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5H17M17 5L12.5 1M17 5L12.5 9' stroke='%23080808' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.blog-view-all-btn:hover::after { transform: translateX(6px); }

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blog-card:first-child .blog-card-img-wrap {
    height: 240px;
  }
  .blog-card:first-child .blog-card-title {
    font-size: 22px;
  }
}
  /* ============================= */
/* GALLERY SECTION               */
/* ============================= */

#gallery {
  background: var(--black);
  padding: 120px 0 0;
  overflow: hidden;
}

.gallery-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.gallery-intro-right {
  max-width: 320px;
  text-align: right;
}

.gallery-intro-right p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.gallery-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,0.2);
  line-height: 1;
  display: block;
}

/* Masonry grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 3px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--charcoal);
}

/* Grid placement — cinematic asymmetric layout */
.gallery-item:nth-child(1) { grid-column: 1 / 6;  grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9;  grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 6 / 9;  grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 1 / 4;  grid-row: 3 / 4; }
.gallery-item:nth-child(7) { grid-column: 4 / 8;  grid-row: 3 / 4; }
.gallery-item:nth-child(8) { grid-column: 8 / 13; grid-row: 3 / 4; }

/* Image */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
  transition:
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.9s ease;
  filter: brightness(0.78) saturate(0.8);
  will-change: transform;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.13);
  filter: brightness(0.45) saturate(0.6);
}

/* Dark overlay — deepens on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.15) 0%,
    rgba(8,8,8,0.05) 50%,
    rgba(8,8,8,0.3) 100%
  );
  z-index: 1;
  transition: background 0.9s ease;
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.3) 50%,
    rgba(8,8,8,0.65) 100%
  );
}

/* Gold corner accent */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 48px 48px 0 0;
  border-color: rgba(212,175,55,0) transparent transparent transparent;
  z-index: 4;
  transition: border-color 0.5s ease;
}

.gallery-item:hover::before {
  border-color: rgba(212,175,55,0.22) transparent transparent transparent;
}

/* Bottom gold line sweep */
.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
  z-index: 4;
}

.gallery-item:hover::after {
  transform: scaleX(1);
}

/* Content revealed on hover */
.gallery-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-content {
  opacity: 1;
}

.gallery-location {
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  transform: translateY(12px);
  transition: transform 0.5s 0.05s cubic-bezier(0.22,1,0.36,1);
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold) 30%,
    #fff8dc 48%,
    #fffbe8 50%,
    #fff8dc 52%,
    var(--gold) 70%,
    var(--gold) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-position: 200% center;
  animation: eyebrowShine 4s 1s ease-in-out infinite;
}

.gallery-item:hover .gallery-location {
  transform: translateY(0);
}

.gallery-caption {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  transform: translateY(16px);
  transition: transform 0.55s 0.1s cubic-bezier(0.22,1,0.36,1);
  margin-bottom: 12px;
}

.gallery-item:first-child .gallery-caption {
  font-size: 24px;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(240,236,228,0.6);
  transform: translateY(12px);
  transition: transform 0.55s 0.15s cubic-bezier(0.22,1,0.36,1);
  line-height: 1.5;
}

.gallery-item:hover .gallery-caption-sub {
  transform: translateY(0);
}

/* Magnify icon */
.gallery-magnify {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(8,8,8,0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) rotate(-8deg);
  transition:
    opacity 0.4s 0.15s ease,
    transform 0.4s 0.15s cubic-bezier(0.22,1,0.36,1);
}

.gallery-item:hover .gallery-magnify {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Index number — decorative */
.gallery-index {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 4;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(212,175,55,0.4);
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease;
}

.gallery-item:hover .gallery-index {
  opacity: 1;
  transform: translateY(0);
}

/* Horizontal scrolling film strip below grid */
.gallery-strip {
  display: flex;
  gap: 3px;
  margin-top: 3px;
  overflow: hidden;
}

.gallery-strip-item {
  flex: 0 0 auto;
  height: 80px;
  width: calc(100% / 8);
  overflow: hidden;
  position: relative;
  cursor: none;
  opacity: 0.4;
  transition: opacity 0.4s, flex-basis 0.5s cubic-bezier(0.22,1,0.36,1);
}

.gallery-strip-item:hover {
  opacity: 1;
  flex-basis: calc(100% / 4);
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.4);
  transition: filter 0.4s;
  display: block;
}

.gallery-strip-item:hover img {
  filter: saturate(1);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(4,4,4,0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  cursor: none;
  padding: 60px 40px 80px;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  width: 100%;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  transform: scale(0.96);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 60px 160px rgba(0,0,0,0.95);
}

.gallery-lightbox.open .gallery-lightbox-img {
  transform: scale(1);
}

.gallery-lightbox-caption {
  margin-top: 28px;
  text-align: center;
}

.gallery-lightbox-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.gallery-lightbox-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 1px;
}

.gallery-lightbox-top {
  position: absolute;
  top: -44px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gallery-lightbox-close {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid rgba(212,175,55,0.2);
  padding: 8px 20px;
  cursor: none;
  transition: color 0.3s, border-color 0.3s;
}

.gallery-lightbox-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8,8,8,0.7);
  border: 1px solid rgba(212,175,55,0.2);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
}

.gallery-lightbox-nav:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
}

.gallery-lightbox-prev { left: -60px; }
.gallery-lightbox-next { right: -60px; }

.gallery-lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: rgba(212,175,55,0.4);
  letter-spacing: 4px;
}

.gallery-lightbox-counter span {
  color: var(--gold);
  font-size: 18px;
}

/* Bottom CTA strip */
.gallery-cta-strip {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3px;
}

.gallery-cta-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
}

.gallery-cta-strip p em {
  color: var(--text);
  font-style: normal;
}

@media (max-width: 1100px) {
  .gallery-masonry {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 180px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 5;  grid-row: 1 / 3; }
  .gallery-item:nth-child(2) { grid-column: 5 / 7;  grid-row: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 5 / 7;  grid-row: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 4;  grid-row: 3 / 4; }
  .gallery-item:nth-child(5) { grid-column: 4 / 7;  grid-row: 3 / 4; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3;  grid-row: 4 / 5; }
  .gallery-item:nth-child(7) { grid-column: 3 / 5;  grid-row: 4 / 5; }
  .gallery-item:nth-child(8) { grid-column: 5 / 7;  grid-row: 4 / 5; }
  .gallery-lightbox-prev { left: -20px; }
  .gallery-lightbox-next { right: -20px; }
  .gallery-intro { flex-direction: column; align-items: flex-start; gap: 24px; }
  .gallery-intro-right { text-align: left; max-width: 100%; }
  .gallery-cta-strip { flex-direction: column; gap: 24px; text-align: center; padding: 32px 24px; }
  .gallery-cta-strip p { max-width: 100%; }
}

@media (max-width: 600px) {
  #gallery { padding: 80px 0 0; }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 160px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
  .gallery-item:nth-child(6) { grid-column: 1 / 2; grid-row: 4 / 5; }
  .gallery-item:nth-child(7) { grid-column: 2 / 3; grid-row: 4 / 5; }
  .gallery-item:nth-child(8) { grid-column: 1 / 3; grid-row: 5 / 6; }
  .gallery-strip { display: none; }
  .gallery-lightbox { padding: 40px 16px 60px; }
  .gallery-lightbox-prev { left: 0; }
  .gallery-lightbox-next { right: 0; }
}
  /* WhatsApp FAB */
  .whatsapp-fab {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    cursor: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waBounce 3s ease-in-out infinite 3s;
  }
  .whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
  .whatsapp-fab svg { width: 28px; height: 28px; fill: white; }
  @keyframes waBounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
  }

  .wa-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: rgba(10,10,10,0.9);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
  }
  .whatsapp-fab:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

  /* Intersection observer animations */
  .reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity, transform;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── STAGGER GRID CHILDREN ── */
  .highlights-grid.visible .highlight-card,
  .packages-grid.visible .package-card,
  .team-grid.visible .team-card,
  .blog-grid.visible .blog-card {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    animation: fjtStaggerIn 0.75s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .highlights-grid.visible .highlight-card:nth-child(1),
  .packages-grid.visible .package-card:nth-child(1),
  .team-grid.visible .team-card:nth-child(1),
  .blog-grid.visible .blog-card:nth-child(1) { animation-delay: 0.08s; }
  .highlights-grid.visible .highlight-card:nth-child(2),
  .packages-grid.visible .package-card:nth-child(2),
  .team-grid.visible .team-card:nth-child(2),
  .blog-grid.visible .blog-card:nth-child(2) { animation-delay: 0.22s; }
  .highlights-grid.visible .highlight-card:nth-child(3),
  .packages-grid.visible .package-card:nth-child(3),
  .team-grid.visible .team-card:nth-child(3),
  .blog-grid.visible .blog-card:nth-child(3) { animation-delay: 0.36s; }
  .packages-grid.visible .package-card:nth-child(4),
  .team-grid.visible .team-card:nth-child(4),
  .blog-grid.visible .blog-card:nth-child(4) { animation-delay: 0.50s; }
  .packages-grid.visible .package-card:nth-child(5),
  .blog-grid.visible .blog-card:nth-child(5) { animation-delay: 0.64s; }
  .packages-grid.visible .package-card:nth-child(6),
  .blog-grid.visible .blog-card:nth-child(6) { animation-delay: 0.78s; }
  .packages-grid.visible .package-card:nth-child(7) { animation-delay: 0.92s; }
  .packages-grid.visible .package-card:nth-child(8) { animation-delay: 1.06s; }
  .packages-grid.visible .package-card:nth-child(n+9) { animation-delay: 1.20s; }

  @keyframes fjtStaggerIn {
    0%   { opacity: 0; transform: translateY(40px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* ── SECTION TITLE STAGGER ── */
  .section-label.reveal {
    transition-delay: 0s;
  }
  .section-title.reveal {
    transition-delay: 0.12s;
  }
  .section-sub.reveal {
    transition-delay: 0.22s;
  }

  /* Auto-stagger for grid children when the grid is revealed */
  .highlights-grid.visible .highlight-card,
  .packages-grid.visible .package-card,
  .blog-grid.visible .blog-card,
  .team-grid.visible .team-card,
  .gallery-grid.visible .gallery-item {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: fjtStaggerIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .highlights-grid.visible .highlight-card:nth-child(1),
  .packages-grid.visible .package-card:nth-child(1),
  .blog-grid.visible .blog-card:nth-child(1),
  .team-grid.visible .team-card:nth-child(1) { animation-delay: 0.05s; }
  .highlights-grid.visible .highlight-card:nth-child(2),
  .packages-grid.visible .package-card:nth-child(2),
  .blog-grid.visible .blog-card:nth-child(2),
  .team-grid.visible .team-card:nth-child(2) { animation-delay: 0.16s; }
  .highlights-grid.visible .highlight-card:nth-child(3),
  .packages-grid.visible .package-card:nth-child(3),
  .blog-grid.visible .blog-card:nth-child(3),
  .team-grid.visible .team-card:nth-child(3) { animation-delay: 0.27s; }
  .highlights-grid.visible .highlight-card:nth-child(4),
  .packages-grid.visible .package-card:nth-child(4),
  .blog-grid.visible .blog-card:nth-child(4),
  .team-grid.visible .team-card:nth-child(4) { animation-delay: 0.38s; }
  .packages-grid.visible .package-card:nth-child(5),
  .blog-grid.visible .blog-card:nth-child(5) { animation-delay: 0.49s; }
  .packages-grid.visible .package-card:nth-child(6),
  .blog-grid.visible .blog-card:nth-child(6) { animation-delay: 0.60s; }

  @keyframes fjtStaggerIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Gold line decorative */
  .gold-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
  }
  .gold-line::before, .gold-line::after {
    content: '';
    height: 1px;
    flex: 1;
    background: var(--border);
  }
  .gold-line span {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Stats bar */
  .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 80px;
  }
  .stat-item {
    padding: 40px;
    text-align: center;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    display: block;
  }
  .stat-label {
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .container { padding: 0 24px; }
    section { padding: 80px 0; }

    .highlights-grid { grid-template-columns: 1fr; gap: 0; }
    .wildlife-mosaic {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 200px 200px 200px;
    }
    .wildlife-cell:first-child { grid-row: auto; }
    .packages-grid { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .wildlife-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .dropdown { width: 100vw; }

    /* Disable 3D tilt on mobile */
    .wildlife-cell { transform: none !important; }
    .wildlife-cell:hover { transform: none !important; }
  }

  @media (max-width: 600px) {
    .hero-title { font-size: 42px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .wildlife-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
    nav.scrolled { padding: 14px 24px; }
  }
/* ============================= */
/* QUESTIONNAIRE OVERLAY         */
/* ============================= */

#quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 6, 2, 0.45);
  backdrop-filter: blur(12px) saturate(1.4) brightness(0.7);
  -webkit-backdrop-filter: blur(12px) saturate(1.4) brightness(0.7);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

#quiz-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

#quiz-overlay.hiding {
  opacity: 0;
  pointer-events: none;
}

.quiz-box {
  background: rgba(10,8,3,0.82);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid rgba(212,175,55,0.28);
  max-width: 760px;
  width: 100%;
  padding: 72px 72px 60px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.08),
    0 40px 120px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(212,175,55,0.12);
  transform: translateY(24px);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

#quiz-overlay.visible .quiz-box {
  transform: translateY(0);
}

.quiz-top-line {
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.quiz-skip {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: none;
  padding: 8px 4px;
  transition: color 0.3s;
}
.quiz-option,
.quiz-btn-next,
.quiz-btn-back,
.quiz-enter-btn,
.quiz-result-link,
#quiz-overlay * {
  cursor: none !important;
}  
.quiz-skip:hover { color: var(--gold); }
.quiz-skip::after {
  content: '';
  display: block;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.quiz-skip:hover::after { transform: scaleX(1); }

.quiz-progress-bar {
  width: 100%;
  height: 1px;
  background: rgba(212,175,55,0.1);
  margin-bottom: 40px;
  position: relative;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--amber), var(--gold));
  transition: width 0.6s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}

.quiz-progress-fill::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--gold);
  rotate: 45deg;
  box-shadow: 0 0 6px rgba(212,175,55,0.7);
}

.quiz-step-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  opacity: 0.9;
}

.quiz-question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 8px;
}

.quiz-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

/* Text input */
.quiz-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 8px;
}
.quiz-input:focus { border-bottom-color: var(--gold); }
.quiz-input::placeholder {
  color: rgba(138,128,116,0.5);
  font-size: 13px;
  letter-spacing: 2px;
}

/* Multiple choice options */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.quiz-options.single-col {
  grid-template-columns: 1fr;
}

.quiz-option {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 24px;
  text-align: left;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quiz-option::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid rgba(212,175,55,0.3);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.quiz-option.selected {
  border-color: rgba(212,175,55,0.6);
  color: var(--gold);
  background: rgba(212,175,55,0.06);
}

.quiz-option.selected::before {
  background: var(--gold);
  border-color: var(--gold);
}

.quiz-option::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.04) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
}

.quiz-option:hover::after {
  animation: optionShine 0.5s ease forwards;
}

@keyframes optionShine {
  0%   { left: -100%; }
  100% { left: 160%; }
}

.quiz-option:hover:not(.selected) {
  border-color: rgba(212,175,55,0.3);
  color: var(--text);
}

/* Navigation */
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}

.quiz-btn-next {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 16px 40px;
  background: linear-gradient(135deg, #f0c84a 0%, #d4af37 35%, #b8860b 65%, #c9921a 100%);
  color: #080808;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  opacity: 0.95;
  pointer-events: none;
}

.quiz-btn-next.ready {
  opacity: 1;
  pointer-events: all;
}

.quiz-btn-next.ready:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212,175,55,0.35);
}

.quiz-btn-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s;
}
.quiz-btn-next.ready:hover::before {
  transform: translateX(200%) skewX(-15deg);
}

.quiz-btn-back {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
  padding: 0;
}
.quiz-btn-back::before {
  content: '';
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.quiz-btn-back:hover { color: var(--gold); }
.quiz-btn-back:hover::before { width: 30px; }

/* Results */
.quiz-results-intro {
  text-align: center;
  margin-bottom: 32px;
}

.quiz-results-intro .quiz-question {
  margin-bottom: 10px;
}

.quiz-result-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.3) transparent;
}

.quiz-result-card {
  border: 1px solid rgba(212,175,55,0.15);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(212,175,55,0.03);
  transition: border-color 0.3s, background 0.3s;
}

.quiz-result-card:hover {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.07);
}

.quiz-result-info { flex: 1; }

.quiz-result-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.quiz-result-meta {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.quiz-result-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.quiz-result-link {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #080808;
  background: var(--gold);
  padding: 10px 18px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s;
  cursor: none;
}
.quiz-result-link:hover { background: var(--gold-light); }

.quiz-enter-btn {
  width: 100%;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  cursor: none;
  margin-top: 24px;
  transition: background 0.3s, border-color 0.3s;
  display: block;
}
.quiz-enter-btn:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
}

/* Step transition */
.quiz-step {
  animation: quizFadeUp 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes quizFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .quiz-box {
    padding: 44px 24px 36px;
  }
  .quiz-options {
    grid-template-columns: 1fr;
  }
  .quiz-result-card {
    flex-wrap: wrap;
  }
  .quiz-result-link {
    width: 100%;
    text-align: center;
  }
}

   /* ============================= */
  /* USER PROFILE PANEL            */
  /* ============================= */
  #profileOverlay {
    position: fixed; inset: 0; z-index: 99988;
    background: rgba(8,6,2,0.45);
    backdrop-filter: blur(12px) saturate(1.4) brightness(0.7);
    -webkit-backdrop-filter: blur(12px) saturate(1.4) brightness(0.7);
    display: none; align-items: flex-start; justify-content: flex-end;
    padding: 80px 24px 24px;
  }
  #profileOverlay.open { display: flex; }
  #profilePanel {
    background: rgba(10,8,3,0.82);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    border: 1px solid rgba(212,175,55,0.28);
    width: 480px; max-width: 100%; max-height: calc(100vh - 104px);
    overflow-y: auto; position: relative;
    box-shadow: 0 0 0 1px rgba(212,175,55,0.08), 0 40px 120px rgba(0,0,0,0.5);
    scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.3) transparent;
    animation: profileSlideIn 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  @keyframes profileSlideIn {
    from { opacity:0; transform: translateY(-20px) scale(0.97); }
    to   { opacity:1; transform: translateY(0)     scale(1);    }
  }
  #profilePanel::-webkit-scrollbar { width:3px; }
  #profilePanel::-webkit-scrollbar-thumb { background:rgba(212,175,55,0.3); }
  .profile-top-line { position:absolute;top:0;left:10%;right:10%;height:2px;background:linear-gradient(to right,transparent,#d4af37,transparent); }
  .profile-header { padding: 28px 32px 24px; border-bottom: 1px solid rgba(212,175,55,0.1); display:flex;align-items:center;gap:16px; }
  .profile-avatar { width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,#d4af37,#b8860b);display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:#080808;flex-shrink:0;border:2px solid rgba(212,175,55,0.4); }
  .profile-name { font-family:'Playfair Display',serif;font-size:20px;font-weight:700;color:#f0ece4;line-height:1.2; }
  .profile-email { font-size:11px;letter-spacing:1px;color:rgba(138,128,116,0.8);margin-top:3px; }
  .profile-close { position:absolute;top:14px;right:16px;background:rgba(8,8,8,0.7);border:1px solid rgba(212,175,55,0.4);color:var(--gold);font-family:'Jost',sans-serif;font-size:9px;font-weight:700;letter-spacing:3px;text-transform:uppercase;padding:8px 16px;cursor:none;backdrop-filter:blur(8px);transition:all 0.3s; }
  .profile-close:hover { background:rgba(212,175,55,0.15);color:#fff; }
  .profile-tabs { display:flex;border-bottom:1px solid rgba(212,175,55,0.1); }
  .profile-tab { flex:1;font-family:'Jost',sans-serif;font-size:9px;font-weight:700;letter-spacing:4px;text-transform:uppercase;padding:14px 8px;background:none;border:none;color:rgba(138,128,116,0.7);cursor:none;border-bottom:2px solid transparent;margin-bottom:-1px;transition:color 0.3s,border-color 0.3s; }
  .profile-tab.active { color:#d4af37;border-bottom-color:#d4af37; }
  .profile-section { padding:24px 32px; }
  .profile-section-title { font-size:9px;letter-spacing:5px;text-transform:uppercase;color:rgba(212,175,55,0.6);font-family:'Jost',sans-serif;font-weight:800;display:block;margin-bottom:16px; }
  .profile-field { display:flex;flex-direction:column;gap:3px;margin-bottom:18px; }
  .profile-field label { font-size:9px;letter-spacing:3px;text-transform:uppercase;color:rgba(138,128,116,0.6);font-family:'Jost',sans-serif; }
  .profile-field input { background:transparent;border:none;border-bottom:1px solid rgba(212,175,55,0.15);color:#f0ece4;font-family:'Jost',sans-serif;font-size:13px;padding:8px 0;outline:none;transition:border-color 0.3s; }
  .profile-field input:focus { border-bottom-color:#d4af37; }
  .profile-save-btn { width:100%;font-family:'Jost',sans-serif;font-size:10px;font-weight:700;letter-spacing:5px;text-transform:uppercase;padding:16px;background:linear-gradient(135deg,#d4af37,#b8860b);color:#080808;border:none;cursor:none;transition:filter 0.3s,transform 0.3s;margin-top:8px; }
  .profile-save-btn:hover { filter:brightness(1.12);transform:translateY(-2px); }
  .profile-pkg-card { border:1px solid rgba(212,175,55,0.15);padding:16px;margin-bottom:12px;position:relative;transition:border-color 0.3s; }
  .profile-pkg-card:hover { border-color:rgba(212,175,55,0.4); }
  .profile-pkg-name { font-family:'Playfair Display',serif;font-size:16px;font-weight:700;color:#f0ece4;margin-bottom:4px; }
  .profile-pkg-meta { font-size:10px;letter-spacing:2px;text-transform:uppercase;color:rgba(138,128,116,0.7); }
  .profile-pkg-price { font-family:'Cormorant Garamond',serif;font-size:20px;color:#d4af37;margin-top:8px; }
  .profile-pkg-actions { display:flex;gap:8px;margin-top:12px; }
  .profile-pkg-btn { font-family:'Jost',sans-serif;font-size:8px;font-weight:700;letter-spacing:3px;text-transform:uppercase;padding:8px 14px;border:1px solid rgba(212,175,55,0.3);color:rgba(212,175,55,0.8);background:transparent;cursor:none;transition:all 0.3s; }
  .profile-pkg-btn:hover { background:rgba(212,175,55,0.1);border-color:var(--gold);color:var(--gold); }
  .profile-pkg-btn.remove { border-color:rgba(224,85,85,0.3);color:rgba(224,85,85,0.7); }
  .profile-pkg-btn.remove:hover { background:rgba(224,85,85,0.1);border-color:#e05555;color:#e05555; }
  .profile-empty { text-align:center;padding:32px 16px;font-family:'Cormorant Garamond',serif;font-size:16px;font-style:italic;color:rgba(138,128,116,0.6); }
  .profile-notif { padding:12px 16px;margin-bottom:12px;font-family:'Jost',sans-serif;font-size:11px;letter-spacing:1px; }
  .profile-notif.success { background:rgba(123,181,110,0.1);border:1px solid rgba(123,181,110,0.3);color:#7bb56e; }
  .profile-notif.error   { background:rgba(224,85,85,0.1);border:1px solid rgba(224,85,85,0.3);color:#e05555; }
  body.light-mode #profilePanel { background:#f4f0e8;border-color:rgba(154,111,0,0.3); }
  body.light-mode .profile-name { color:#0a0a0a; }
  body.light-mode .profile-field input { color:#0a0a0a;border-bottom-color:rgba(154,111,0,0.2); }
  body.light-mode .profile-pkg-name { color:#0a0a0a; }

  /* ============================= */
  /* UNIFORM PANEL DESIGN SYSTEM   */
  /* ============================= */
  .fj-panel-overlay {
    position: fixed; inset: 0; z-index: 99985;
    background: rgba(2,2,2,0.92);
    backdrop-filter: blur(24px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
  }
  .fj-panel {
    background: #0a0a0a;
    border: 1px solid rgba(212,175,55,0.22);
    max-width: 620px; width: 100%;
    max-height: 92vh; overflow-y: auto;
    position: relative;
    box-shadow: 0 0 0 1px rgba(212,175,55,0.06), 0 40px 120px rgba(0,0,0,0.98);
    scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.3) transparent;
  }
  .fj-panel::-webkit-scrollbar { width: 3px; }
  .fj-panel::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); }
  .fj-panel-top-line {
    position: absolute; top: 0; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
  }
  .fj-panel-close {
    position: absolute; top: 16px; right: 18px; z-index: 10;
    background: rgba(8,8,8,0.7); border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold); font-family: 'Jost',sans-serif;
    font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    padding: 10px 20px; cursor: none;
    backdrop-filter: blur(8px);
    transition: color 0.3s, border-color 0.3s, background 0.3s;
  }
  .fj-panel-close:hover { background: rgba(212,175,55,0.15); color: #fff; border-color: var(--gold); }
  body.light-mode .fj-panel { background: #f4f0e8; border-color: rgba(154,111,0,0.3); }
  body.light-mode .fj-panel-close { background: rgba(240,236,228,0.8); color: #9a6f00; border-color: rgba(154,111,0,0.4); } 

  /* ============================= */
/* SHUTTER EFFECT                */
/* ============================= */

.shutter-wrap {
  position: fixed;
  inset: 0;
  z-index: 99997;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.shutter-panel {
  flex: 1;
  background: #080808;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0s;
}

.shutter-panel:nth-child(even) {
  transform-origin: bottom;
}

.shutter-wrap.closing .shutter-panel {
  transform: scaleY(0);
}

.shutter-wrap.closing .shutter-panel:nth-child(1)  { transition: transform 0.38s 0.00s cubic-bezier(0.76, 0, 0.24, 1); }
.shutter-wrap.closing .shutter-panel:nth-child(2)  { transition: transform 0.38s 0.04s cubic-bezier(0.76, 0, 0.24, 1); }
.shutter-wrap.closing .shutter-panel:nth-child(3)  { transition: transform 0.38s 0.08s cubic-bezier(0.76, 0, 0.24, 1); }
.shutter-wrap.closing .shutter-panel:nth-child(4)  { transition: transform 0.38s 0.12s cubic-bezier(0.76, 0, 0.24, 1); }
.shutter-wrap.closing .shutter-panel:nth-child(5)  { transition: transform 0.38s 0.16s cubic-bezier(0.76, 0, 0.24, 1); }
.shutter-wrap.closing .shutter-panel:nth-child(6)  { transition: transform 0.38s 0.20s cubic-bezier(0.76, 0, 0.24, 1); }
.shutter-wrap.closing .shutter-panel:nth-child(7)  { transition: transform 0.38s 0.24s cubic-bezier(0.76, 0, 0.24, 1); }
.shutter-wrap.closing .shutter-panel:nth-child(8)  { transition: transform 0.38s 0.28s cubic-bezier(0.76, 0, 0.24, 1); }
    
#loader {
  position: fixed;
  inset: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  background: #080808;
  box-sizing: border-box;
}

/* Zebra-stripe black texture */
#loader::before {
  content: '';
  position: fixed;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  width: 120%;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      -35deg,
      transparent,
      transparent 18px,
      rgba(255,255,255,0.022) 18px,
      rgba(255,255,255,0.022) 32px,
      transparent 32px,
      transparent 54px,
      rgba(255,255,255,0.035) 54px,
      rgba(255,255,255,0.035) 62px
    ),
    repeating-linear-gradient(
      35deg,
      transparent,
      transparent 22px,
      rgba(212,175,55,0.015) 22px,
      rgba(212,175,55,0.015) 28px
    );
  animation: loaderStripeShift 8s linear infinite;
}

@keyframes loaderStripeShift {
  0%   { transform: translateX(0) translateY(0); }
  100% { transform: translateX(40px) translateY(40px); }
}

/* Paper tear pieces container */
.loader-tear-container {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}

.loader-tear-piece {
  position: absolute;
  background: #080808;
  transform-origin: center center;
  transition: none;
  will-change: transform, opacity;
}

.loader-tear-piece.tearing {
  animation: tearAway 0.7s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

@keyframes tearAway {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: var(--tear-tx, translateX(120vw)) rotate(var(--tear-rot, 15deg)) scale(0.3); opacity: 0; }
}
  #loader.fade-out::before {
  backdrop-filter: blur(0px) brightness(1) saturate(1);
  -webkit-backdrop-filter: blur(0px) brightness(1) saturate(1);
}

.loader-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 99999;
  width: 200px;
  max-width: 75vw;
  animation: hardPulse 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              top 1.8s cubic-bezier(0.4, 0, 0.2, 1),
              translate 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-logo.morph-to-hero {
  animation: none;
  width: 300px;
  top: 44%;
}

.loader-logo.gone {
  display: none;
}
  @keyframes hardPulse {
  0%   { transform: scale(1)    translate(0, 0)        rotate(0deg);    }
  4%   { transform: scale(1.09) translate(0.5px,-0.5px)  rotate(0.1deg);  }
  8%   { transform: scale(0.98) translate(-0.5px,0.5px)  rotate(-0.1deg); }
  13%  { transform: scale(1.06) translate(0.3px,-0.3px)  rotate(0.08deg); }
  18%  { transform: scale(1)    translate(-0.3px,0.2px)  rotate(-0.05deg);}
  20%  { transform: scale(0.995) translate(0.2px,-0.2px) rotate(0.03deg); }
  100% { transform: scale(1)    translate(0, 0)        rotate(0deg);    }
}

  /* ============================= */
  /* DESTINATIONS SHOWCASE EFFECTS */
  /* ============================= */

  /* Gold shimmer on destination name */
  .wildlife-label h3 {
    position: relative;
  }
  .wildlife-label h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .wildlife-cell:hover .wildlife-label h3::after {
    width: 100%;
  }

  /* First (large) destination card label — bigger type */
  .wildlife-cell:first-child .wildlife-label h3 {
    font-size: 26px;
  }
  .wildlife-cell:first-child .wildlife-label span {
    font-size: 11px;
    letter-spacing: 4px;
  }

  /* Destination corner accent */
  .wildlife-cell::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent rgba(212,175,55,0.0) transparent transparent;
    z-index: 4;
    transition: border-color 0.35s ease;
  }
  .wildlife-cell:hover::before {
    border-color: transparent rgba(212,175,55,0.25) transparent transparent;
  }

  /* Google Translate — styled for Filmax Jambo */
#google_translate_element .goog-te-gadget-simple {
  background: #141414 !important;
  border: 1px solid rgba(212,175,55,0.2) !important;
  border-radius: 0 !important;
  padding: 10px 16px !important;
  font-family: 'Jost', sans-serif !important;
}

#google_translate_element .goog-te-gadget-simple a {
  color: rgba(212,175,55,0.8) !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

#google_translate_element .goog-te-gadget-simple span {
  color: rgba(212,175,55,0.4) !important;
}

/* Hide the Google branding bar at the top of page */
.goog-te-banner-frame { display: none !important; }
body { top: 0px !important; }

/* Light mode override */
body.light-mode #google_translate_element .goog-te-gadget-simple {
  background: #141414 !important;
  border-color: rgba(184,134,11,0.25) !important;
}

  body.light-mode .ds-slide-label {
    background: linear-gradient(90deg, #d4af37 0%, #d4af37 30%, #fff8dc 48%, #fffbe8 50%, #fff8dc 52%, #d4af37 70%, #d4af37 100%) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: eyebrowShine 4s 1s ease-in-out infinite !important;
    text-shadow: none !important;
    letter-spacing: 6px;
  }
  body.light-mode .ds-slide-title {
    color: #f0ece4 !important;
    -webkit-text-fill-color: #f0ece4 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.9), 0 4px 32px rgba(0,0,0,0.7) !important;
    animation: none !important;
  }
  body.light-mode .ds-slide-tagline {
    background: linear-gradient(90deg, #8a8074 0%, #8a8074 25%, #f0ece4 45%, #ffffff 50%, #f0ece4 55%, #8a8074 75%, #8a8074 100%) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: subtitleShine 5s 1.5s ease-in-out infinite !important;
    text-shadow: none !important;
  }
 body.light-mode .pkg-bg {
    filter: brightness(0.55) saturate(0.6) sepia(0.45) !important;
  }

  body.light-mode .package-card:hover .pkg-bg {
    filter: brightness(0.62) saturate(0.65) sepia(0.45) !important;
  }

  body.light-mode .hc-bg {
    filter: brightness(0.45) saturate(0.75) sepia(0) !important;
  }

  body.light-mode .highlight-card:hover .hc-bg {
    filter: brightness(0.52) saturate(0.85) sepia(0) !important;
  }

  body.light-mode .pkg-filter-label {
    color: #333333;
  }

  body.light-mode .pkg-filter-btn::before {
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.35), transparent);
  }

  body.light-mode .pkg-cta {
    background: transparent !important;
    border: 1px solid rgba(212,175,55,0.6) !important;
    color: #d4af37 !important;
    -webkit-text-fill-color: #d4af37 !important;
    filter: brightness(1.1) saturate(1.2);
  }

  body.light-mode .pkg-cta:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b) !important;
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
    filter: brightness(1.15);
  }

  body.light-mode .view-all-btn {
  background: linear-gradient(135deg, #e8c84a, #d4af37) !important;
  color: #080808 !important;
  -webkit-text-fill-color: #080808 !important;
  filter: brightness(1.12) saturate(1.2) !important;
  box-shadow: 0 8px 28px rgba(212,175,55,0.4) !important;
}

body.light-mode .view-all-btn:hover {
  filter: brightness(1.22) saturate(1.3) !important;
  box-shadow: 0 16px 48px rgba(212,175,55,0.7) !important;
  transform: translateY(-3px) !important;
}

body.light-mode .view-all-btn,
body.light-mode .view-all-btn span {
  color: #080808 !important;
  -webkit-text-fill-color: #080808 !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}

  body.light-mode .ds-slide-btn {
    border-color: rgba(212,175,55,0.65) !important;
    color: #d4af37 !important;
    -webkit-text-fill-color: #d4af37 !important;
    filter: brightness(1.15) saturate(1.2);
  }

  body.light-mode .ds-slide-btn:hover {
    background: #d4af37 !important;
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
  }

  body.light-mode .quiz-btn-next {
    background: linear-gradient(135deg, #d4af37, #b8860b) !important;
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
    filter: brightness(1.15) saturate(1.2);
  }

  body.light-mode .quiz-enter-btn {
    border-color: rgba(212,175,55,0.65) !important;
    color: #d4af37 !important;
    -webkit-text-fill-color: #d4af37 !important;
    filter: brightness(1.1) saturate(1.2);
  }

  body.light-mode .quiz-result-link {
    background: #d4af37 !important;
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
    filter: brightness(1.15) saturate(1.2);
  }

  body.light-mode .blog-view-all-btn {
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
    background: linear-gradient(135deg, #d4af37, #b8860b) !important;
    filter: brightness(1.1) saturate(1.15);
  }
  body.light-mode .blog-view-all-btn::after {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5H17M17 5L12.5 1M17 5L12.5 9' stroke='%23080808' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  }
  body.light-mode .blog-card-cta {
    color: #7a5500 !important;
    -webkit-text-fill-color: #7a5500 !important;
    filter: none;
  }
  body.light-mode .blog-card-cta::after {
    background: #7a5500 !important;
  }

/* view all btn text */
body.light-mode .view-all-btn,
body.light-mode .view-all-btn span {
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
  }

/* quiz next btn text */
body.light-mode .quiz-btn-next {
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
  }

/* quiz result link text */
body.light-mode .quiz-result-link {
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
  }

/* ds slide btn text */
body.light-mode .ds-slide-btn {
    color: #d4af37 !important;
    -webkit-text-fill-color: #d4af37 !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
  }

body.light-mode .ds-slide-btn:hover {
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
  }

/* pkg cta text */
body.light-mode .pkg-cta {
    color: #d4af37 !important;
    -webkit-text-fill-color: #d4af37 !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
  }

body.light-mode .pkg-cta:hover {
    color: #080808 !important;
    -webkit-text-fill-color: #080808 !important;
  }
 /* =============================================
   HERO — COMPLETELY FROZEN, IDENTICAL IN BOTH MODES
   ============================================= */

#hero,
#hero *,
#hero .hero-sky,
#hero .hero-overlay,
#hero .hero-content,
#hero .hero-eyebrow,
#hero .hero-subtitle,
#hero .hero-actions,
#hero .btn-primary,
#hero .btn-ghost,
#hero .scroll-cue,
#hero .scroll-cue span,
#hero .scroll-line {
  --black: #080808 !important;
  --deep: #080808 !important;
  --charcoal: #080808 !important;
  --gold: #d4af37 !important;
  --gold-light: #e8c84a !important;
  --gold-dim: rgba(212,175,55,0.15) !important;
  --amber: #b8860b !important;
  --text: #f0ece4 !important;
  --muted: #8a8074 !important;
  --border: rgba(212,175,55,0.2) !important;
}

#hero .hero-sky {
  filter: blur(0px) brightness(0.72) saturate(1.08) !important;
  background-size: cover !important;
  background-position: center 30% !important;
}

#hero .hero-sky:not(.settled) {
  filter: blur(0px) brightness(1) !important;
}

#hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.6) 0%,
    rgba(5,4,2,0.45) 35%,
    rgba(20,14,2,0.55) 65%,
    rgba(8,8,8,0.92) 100%
  ) !important;
  box-shadow: inset 0 0 200px rgba(180,130,10,0.12) !important;
}

#hero .hero-eyebrow {
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 6px !important;
  text-transform: uppercase !important;
  color: #d4af37 !important;
  background: linear-gradient(
    90deg,
    #d4af37 0%,
    #d4af37 30%,
    #fff8dc 48%,
    #fffbe8 50%,
    #fff8dc 52%,
    #d4af37 70%,
    #d4af37 100%
  ) !important;
  background-size: 300% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-position: 200% center !important;
  animation: cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite, fadeUp 1s 0.3s forwards !important;
  text-shadow: none !important;
  filter: none !important;
}

#hero .hero-subtitle {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: #8a8074 !important;
  background: linear-gradient(
    90deg,
    #8a8074 0%,
    #8a8074 25%,
    #f0ece4 45%,
    #ffffff 50%,
    #f0ece4 55%,
    #8a8074 75%,
    #8a8074 100%
  ) !important;
  background-size: 300% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-position: 200% center !important;
  animation: fadeUp 1s 1s forwards, subtitleShine 6s 2s ease-in-out infinite !important;
  text-shadow: none !important;
  filter: none !important;
}

#hero .btn-primary {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  padding: 18px 44px !important;
  background: linear-gradient(135deg, #f0c84a 0%, #d4af37 35%, #b8860b 65%, #c9921a 100%);
  color: #1a0e00;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.25) inset,
    0 -2px 0 rgba(0,0,0,0.35) inset,
    0 4px 16px rgba(212,175,55,0.4),
    0 1px 3px rgba(0,0,0,0.5);
  font-weight: 700;
  transition: box-shadow 0.3s, filter 0.3s;  
  color: #080808 !important;
  -webkit-text-fill-color: #080808 !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
}

#hero .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 40px rgba(212,175,55,0.4) !important;
  filter: none !important;
}

#hero .btn-ghost {
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  padding: 17px 44px !important;
  background: transparent !important;
  color: #d4af37 !important;
  -webkit-text-fill-color: #d4af37 !important;
  border: 1px solid rgba(212,175,55,0.5) !important;
  box-shadow: none !important;
  filter: none !important;
}

#hero .btn-ghost:hover {
  border-color: #d4af37 !important;
  background: rgba(212,175,55,0.15) !important;
  transform: translateY(-2px) !important;
  filter: none !important;
}

#hero .scroll-cue span {
  color: #8a8074 !important;
  -webkit-text-fill-color: #8a8074 !important;
  text-shadow: none !important;
  filter: none !important;
}

#hero .scroll-line {
  background: linear-gradient(to bottom, #d4af37, transparent) !important;
}

#hero #hero-logo {
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.5))
          drop-shadow(0 0 28px rgba(212,175,55,0.2)) !important;
}


/* ============================= */
/* MOBILE — CENTRE ALIGN TEXT    */
/* ============================= */
@media (max-width: 768px) {

  /* Section labels, titles, subs — all sections */
  .section-label,
  .section-title,
  .section-sub {
    text-align: center !important;
  }

  /* Hero eyebrow + subtitle */
  .hero-eyebrow,
  .hero-subtitle {
    text-align: center !important;
  }

  /* Highlights section header */
  #highlights .container > .reveal {
    text-align: center !important;
  }
  #highlights .section-sub {
    margin: 0 auto !important;
  }

  /* Wildlife / destinations header */
  #wildlife .wildlife-header,
  #wildlife .wildlife-header > div {
    text-align: center !important;
    align-items: center !important;
  }
  #wildlife .section-sub {
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* Packages header */
  #packages .container > .reveal {
    text-align: center !important;
  }
  #packages .section-sub {
    margin: 0 auto !important;
  }

  /* Testimonials header */
  #testimonials .container > .reveal {
    text-align: center !important;
  }

  /* Team header */
  #team .container > .reveal {
    text-align: center !important;
  }
  #team .section-sub {
    margin: 0 auto !important;
  }

  /* Gallery header */
  #gallery .container .reveal,
  #gallery .gallery-intro,
  #gallery .gallery-intro > div {
    text-align: center !important;
    align-items: center !important;
  }
  #gallery .gallery-intro-right {
    text-align: center !important;
    max-width: 100% !important;
  }

  /* Blog header */
  #blog .container > .reveal {
    text-align: center !important;
  }
  #blog .section-sub {
    margin: 0 auto !important;
  }

  /* Inline quiz header */
  #inline-quiz .container > .reveal {
    text-align: center !important;
  }
  #inline-quiz .section-sub {
    margin: 0 auto !important;
  }

  /* Contact header */
  #contact .container > .reveal {
    text-align: center !important;
  }

  /* Highlight cards — card number, title, text */
  .card-number,
  .card-title,
  .card-text {
    text-align: center !important;
  }

  /* Highlight card inner layout */
  .highlight-card {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Stats bar items */
  .stat-num,
  .stat-label {
    text-align: center !important;
  }

  /* Gold divider line — centre it */
  .divider {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Gold line decorative — centre */
  .gold-line {
    justify-content: center !important;
  }

  /* Testimonials — already centred mostly, reinforce */
  .testimonial-text {
    text-align: center !important;
  }

  /* Team cards */
  .team-name,
  .team-role,
  .team-bio {
    text-align: center !important;
  }

  /* Contact info headings */
  .contact-info p {
    text-align: center !important;
  }

  /* Section sub max-width on mobile */
  .section-sub {
    max-width: 100% !important;
  }

  /* Destinations slideshow slide content — reinforce centre */
  .ds-slide-label,
  .ds-slide-title,
  .ds-slide-tagline {
    text-align: center !important;
  }

  /* Gallery slideshow content */
  .gsl-label,
  .gsl-title,
  .gsl-sub {
    text-align: center !important;
  }

  /* Blog cards — leave mostly as-is but centre category */
  .blog-card-category {
    text-align: center !important;
  }

  /* Footer bottom — stack and centre */
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px !important;
  }

  /* Quiz step labels and questions — centre on mobile */
  .quiz-step-label,
  .quiz-question,
  .quiz-sub {
    text-align: center !important;
  }
}


  /* ── GOLDEN AUTH FLIP BUTTON ── */
  .auth-flip-wrap {
    position: relative;
    height: 40px;
    width: 120px;
    perspective: 600px;
    cursor: none;
    flex-shrink: 0;
  }
  .auth-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .auth-flip-inner.flipped {
    transform: rotateX(-180deg);
  }
  .auth-flip-face {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: none;
    white-space: nowrap;
    padding: 0 22px;
    border: none;
    position: absolute;
  }
  /* FRONT = Sign In (gold outline ghost) */
  .auth-flip-signin {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.18), inset 0 0 8px rgba(212,175,55,0.04);
    transition: box-shadow 0.3s, background 0.3s;
  }
  .auth-flip-signin:hover {
    background: rgba(212,175,55,0.08);
    box-shadow: 0 0 20px rgba(212,175,55,0.35), inset 0 0 12px rgba(212,175,55,0.08);
  }
  /* BACK = Sign Up (solid gold metallic) */
  .auth-flip-signup {
    background: linear-gradient(135deg, #f0c84a 0%, #d4af37 35%, #b8860b 65%, #c9921a 100%);
    color: #1a0e00;
    box-shadow:
      0 2px 0 rgba(255,255,255,0.25) inset,
      0 -2px 0 rgba(0,0,0,0.35) inset,
      0 4px 16px rgba(212,175,55,0.4),
      0 1px 3px rgba(0,0,0,0.5);
    transform: rotateX(180deg);
    font-weight: 700;
    transition: box-shadow 0.3s, filter 0.3s;
  }
  .auth-flip-signup:hover {
    filter: brightness(1.12) saturate(1.15);
    box-shadow:
      0 2px 0 rgba(255,255,255,0.3) inset,
      0 -2px 0 rgba(0,0,0,0.4) inset,
      0 8px 28px rgba(212,175,55,0.55),
      0 2px 6px rgba(0,0,0,0.5);
  }
  /* Signed-in state — user name chip */
  .auth-flip-wrap.signed-in .auth-flip-inner {
    transform: none !important;
    animation: none !important;
  }
  .auth-user-chip {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.35);
    padding: 0 18px;
    height: 40px;
    cursor: none;
    transition: background 0.3s;
    position: relative;
    z-index: 2;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .auth-user-chip:hover { background: rgba(212,175,55,0.14); }
  .auth-flip-wrap.signed-in .auth-user-chip { display: flex; }
  .auth-flip-wrap.signed-in .auth-flip-inner { display: none; }

  body.light-mode .auth-flip-signin {
    color: #9a6f00;
    border-color: #9a6f00;
    box-shadow: 0 0 10px rgba(154,111,0,0.15);
  }
  body.light-mode .auth-flip-signin:hover {
    background: rgba(154,111,0,0.07);
    box-shadow: 0 0 18px rgba(154,111,0,0.28);
  }
  body.light-mode .auth-user-chip {
    color: #9a6f00;
    border-color: rgba(154,111,0,0.4);
    background: rgba(154,111,0,0.07);
  }

  /* Flip animation for auto-cycling */
  @keyframes authAutoFlip {
    0%, 45%   { transform: rotateX(0deg); }
    50%, 95%  { transform: rotateX(-180deg); }
    100%      { transform: rotateX(0deg); }
  }
  .auth-flip-inner.auto-cycling {
    animation: authAutoFlip 12s ease-in-out infinite;
  }
  .auth-flip-inner.auto-cycling:hover {
    animation-play-state: paused;
  }


  /* PACKAGE FILTER */
.pkg-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 52px auto 0;
  position: relative;
  width: 100%;
  max-width: 560px;
  flex-wrap: nowrap;
}
.pkg-filter-bar .pkg-filter-btn {
  flex: 1;
  text-align: center;
}

.pkg-filter-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212,175,55,0.45);
  pointer-events: none;
}

 /* MOBILE — CONTROLLED WIDTH */
@media (max-width: 768px) {

  .pkg-filter-bar {
    width: 100%;
    max-width: calc(100% - 24px); /* small side margins */
    margin: 32px auto 0;
    justify-content: center;
  }

}

.pkg-filter-btn {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  color: var(--muted);
  border: none;
  border-right: 1px solid rgba(212,175,55,0.12);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, background 0.4s ease;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .pkg-filter-btn {
    letter-spacing: 5px;
    padding: 14px 7px;
    font-size: 9px;
  }
}

.pkg-filter-btn:last-child {
  border-right: none;
}

.pkg-filter-btn::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}

.pkg-filter-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.02) 30%,
    rgba(255,255,255,0.07) 50%,
    rgba(255,255,255,0.02) 70%,
    transparent 100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
}

.pkg-filter-btn:hover::after {
  animation: filterShine 0.55s ease forwards;
}

@keyframes filterShine {
  0%   { left: -100%; }
  100% { left: 160%; }
}

.pkg-filter-btn:hover {
  color: var(--text);
  background: rgba(212,175,55,0.04);
}

.pkg-filter-btn.active {
  color: var(--gold);
  background: rgba(212,175,55,0.07);
  text-shadow:
    0 0 12px rgba(212,175,55,0.5),
    0 0 24px rgba(212,175,55,0.2);
}

.pkg-filter-btn.active::before {
  transform: scaleX(1);
}

.pkg-filter-glow {
  position: absolute;
  bottom: -1px; left: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  filter: blur(3px);
  transition: left 0.5s cubic-bezier(0.77,0,0.175,1), width 0.5s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
}

.pkg-filter-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 3px;
  text-align: center;
  margin-top: 18px;
  opacity: 0.6;
  transition: opacity 0.4s;
}
  .view-all-btn {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 460;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #080808;
    background: linear-gradient(135deg, #f0c84a 0%, #d4af37 35%, #b8860b 65%, #c9921a 100%);
    color: #1a0e00;
    box-shadow:
      0 2px 0 rgba(255,255,255,0.25) inset,
      0 -2px 0 rgba(0,0,0,0.35) inset,
      0 4px 16px rgba(212,175,55,0.4),
      0 1px 3px rgba(0,0,0,0.5);
    font-weight: 500;
    transition: box-shadow 0.3s, filter 0.3s;
    padding: 18px 52px;
    text-decoration: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulseViewAll 3s ease-in-out infinite 2s;
  }

  @keyframes pulseViewAll {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4), 0 8px 32px rgba(212,175,55,0.25); }
    50%       { box-shadow: 0 0 0 14px rgba(212,175,55,0), 0 8px 32px rgba(212,175,55,0.25); }
  }

  /* Metal shine sweep */
  .view-all-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.08) 30%,
      rgba(255,255,255,0.45) 50%,
      rgba(255,255,255,0.08) 70%,
      transparent 100%
    );
    transform: skewX(-15deg);
    transition: none;
  }

  .view-all-btn:hover::before {
    animation: metalShine 0.6s ease forwards;
  }

  @keyframes metalShine {
    0%   { left: -100%; }
    100% { left: 160%;  }
  }

  .view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(212,175,55,0.5) !important;
    animation: none;
  }

  .view-all-btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  }

  .view-all-btn:hover .btn-arrow {
    transform: translateX(6px);
  }
  /* OUR TEAM */
#team { background: var(--charcoal); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.team-card {
  background: var(--card);
  border: 1px solid rgba(212,175,55,0.13);
  border-top: 2px solid var(--gold);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
  text-align: center;
  cursor: none;
}
.team-card:hover { background: #161616; box-shadow: 0 12px 48px rgba(212,175,55,0.12); transform: translateY(-4px); }

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin: 0 auto 24px;
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
  transition: border-color 0.4s;
}
.team-card:hover .team-avatar::after {
  border-color: rgba(212,175,55,0.6);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.team-role {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.team-bio {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    color: var(--muted);
  }
  .team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.team-avatar {
  overflow: hidden;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; gap: 0; }
}


  .gsl-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--black);
    margin-top: 0;
    padding-bottom: 60px;
  }
  .gsl-track {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 18vw;
    transition: transform 0.9s cubic-bezier(0.76,0,0.24,1);
    will-change: transform;
  }
  .gsl-slide {
    flex: 0 0 auto;
    width: 58vw;
    height: 68vh;
    min-height: 440px;
    max-height: 840px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: none;
    transition: transform 1s cubic-bezier(0.76,0,0.24,1), filter 1s ease, opacity 1s ease;
    transform: scale(0.72) translateY(44px);
    filter: blur(5px) brightness(0.85) saturate(0.9);
    opacity: 0.5;
  }
  .gsl-slide.gsl-active {
    transform: scale(1) translateY(-16px);
    filter: blur(0px) brightness(1) saturate(1);
    opacity: 1;
    z-index: 5;
  }
  .gsl-slide.gsl-next,
  .gsl-slide.gsl-prev-slide {
    transform: scale(0.84) translateY(20px);
    filter: blur(2px) brightness(0.6) saturate(0.65);
    opacity: 0.7;
    z-index: 3;
  }
  .gsl-slide.gsl-far {
    transform: scale(0.7) translateY(38px);
    filter: blur(4px) brightness(0.32) saturate(0.3);
    opacity: 0.35;
    z-index: 1;
  }
  .gsl-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .gsl-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.07);
    transition: transform 6s cubic-bezier(0.4,0,0.2,1);
    filter: brightness(0.88) saturate(0.9);
    user-select: none;
    pointer-events: none;
    will-change: transform;
  }
  .gsl-slide.gsl-active .gsl-img {
    transform: scale(1);
    filter: brightness(1) saturate(1);
  }
  .gsl-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.1) 44%, transparent 68%),
      linear-gradient(to bottom, rgba(8,8,8,0.28) 0%, transparent 22%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
  }
  .gsl-slide.gsl-active .gsl-overlay { opacity: 1; }
  .gsl-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    padding: 0 48px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .gsl-slide.gsl-active .gsl-content { opacity: 1; pointer-events: all; }
  .gsl-text { pointer-events: none; text-align: center; }
  .gsl-label {
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 30%, #fff8dc 48%, #fffbe8 50%, #fff8dc 52%, var(--gold) 70%, var(--gold) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: eyebrowShine 4s 1s ease-in-out infinite, cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite 0.5s;
    transform: translateY(14px);
    opacity: 0;
    transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
  }
  .gsl-slide.gsl-active .gsl-label { opacity: 1; transform: translateY(0); }
  .gsl-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.2vw, 48px);
    font-weight: 900;
    line-height: 1.0;
    color: var(--text);
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.7s 0.55s ease, transform 0.7s 0.55s ease;
    animation: cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite 1s;
  }
  .gsl-slide.gsl-active .gsl-title { opacity: 1; transform: translateY(0); }
  .gsl-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-style: italic;
    color: var(--muted);
    margin-bottom: 24px;
    background: linear-gradient(90deg, #8a8074 0%, #8a8074 25%, #f0ece4 45%, #ffffff 50%, #f0ece4 55%, #8a8074 75%, #8a8074 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: subtitleShine 5s 1.5s ease-in-out infinite, cardNumFlash 5s cubic-bezier(0.4,0,0.2,1) infinite 1.5s;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.6s 0.75s ease, transform 0.6s 0.75s ease;
  }
  .gsl-slide.gsl-active .gsl-sub { opacity: 1; transform: translateY(0); }
  .gsl-zoom-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(8,8,8,0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    opacity: 0;
    transform: scale(0.85) rotate(-8deg);
    transition: opacity 0.5s 0.9s ease, transform 0.5s 0.9s cubic-bezier(0.22,1,0.36,1), background 0.3s, border-color 0.3s;
    pointer-events: all;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 11;
    border-radius: 0;
  }
  .gsl-slide.gsl-active .gsl-zoom-btn { opacity: 1; transform: scale(1) rotate(0deg); }
  .gsl-zoom-btn:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); }

  .gsl-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px 0 0;
  }
  .gsl-nav-btn {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.2);
    display: flex; align-items: center; justify-content: center;
    cursor: none;
    transition: border-color 0.3s, background 0.3s;
  }
  .gsl-nav-btn:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }
  .gsl-dots { display: flex; align-items: center; gap: 8px; }
  .gsl-dot {
    height: 1px; width: 20px;
    background: rgba(212,175,55,0.2);
    cursor: none;
    transition: width 0.45s cubic-bezier(0.25,0.46,0.45,0.94), background 0.45s;
    position: relative; overflow: hidden;
  }
  .gsl-dot.active { width: 48px; background: rgba(212,175,55,0.3); }
  .gsl-dot.active::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    animation: gslDotFill 4.8s linear forwards;
  }
  @keyframes gslDotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
  .gsl-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: rgba(240,236,228,0.3);
    letter-spacing: 3px;
    display: flex; align-items: baseline; gap: 4px;
  }
  .gsl-counter-cur { font-size: 24px; color: var(--gold); font-weight: 600; line-height: 1; }
  .gsl-progress {
    height: 1px; width: 0;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 16px auto 0;
    max-width: 58vw;
    transition: none;
  }
  .gsl-progress.running { transition: width 4.8s linear; width: 58vw; }

  .gsl-thumb-strip {
    display: flex;
    gap: 3px;
    margin-top: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .gsl-thumb-strip::before, .gsl-thumb-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
  }
  .gsl-thumb-strip::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
  .gsl-thumb-strip::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }
  .gsl-thumb {
    flex: 1;
    height: 80px;
    overflow: hidden;
    position: relative;
    cursor: none;
    opacity: 0.35;
    transition: opacity 0.4s, flex 0.55s cubic-bezier(0.22,1,0.36,1), border-color 0.4s;
    border-bottom: 2px solid transparent;
  }
  .gsl-thumb.active { opacity: 1; flex: 2.2; border-bottom-color: var(--gold); }
  .gsl-thumb:hover:not(.active) { opacity: 0.65; }
  .gsl-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: saturate(0.4) brightness(0.9);
    transition: filter 0.4s;
  }
  .gsl-thumb.active img, .gsl-thumb:hover img { filter: saturate(1) brightness(1); }

  @media (max-width: 1100px) {
    .gsl-track { padding: 40px 12vw; }
    .gsl-slide { width: 66vw; height: 62vh; }
    .gsl-progress { max-width: 66vw; }
    .gsl-progress.running { width: 66vw; }
  }
  @media (max-width: 900px) {
    .gsl-track { padding: 32px 8vw; gap: 14px; }
    .gsl-slide { width: 78vw; height: 56vh; }
    .gsl-content { padding: 0 28px 32px; }
    .gsl-progress { max-width: 78vw; }
    .gsl-progress.running { width: 78vw; }
  }
  @media (max-width: 600px) {

/* Track becomes a centering container */
.gsl-track {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  transform: none !important; /* stop JS sliding offset */
}

/* All slides stacked perfectly */
.gsl-slide {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) !important;

  width: 92vw;
  height: 56vw;
  min-height: 260px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Active slide ALWAYS dead center */
.gsl-slide.gsl-active {
  position: relative;
  left: auto;
  transform: none !important;

  opacity: 1;
  visibility: visible;
  pointer-events: all;
  margin: 0 auto;
  z-index: 5;
}

/* Kill neighbour slides completely */
.gsl-slide.gsl-next,
.gsl-slide.gsl-prev-slide,
.gsl-slide.gsl-far {
  opacity: 0 !important;
  visibility: hidden;
}

}

  /* Active slide overlay and content */
  .gsl-slide.gsl-active .gsl-overlay {
    opacity: 1 !important;
    display: block !important;
    background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, transparent 55%) !important;
  }

  .gsl-content {
    opacity: 0 !important;
    text-align: center;
    align-items: center;
    padding: 0 16px 24px;
    pointer-events: none;
  }

  .gsl-slide.gsl-active .gsl-content {
    opacity: 1 !important;
    pointer-events: all;
  }

  .gsl-slide.gsl-active .gsl-label,
  .gsl-slide.gsl-active .gsl-title,
  .gsl-slide.gsl-active .gsl-sub,
  .gsl-slide.gsl-active .gsl-zoom-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .gsl-text { text-align: center; }
  .gsl-label { text-align: center; display: block; }
  .gsl-title { font-size: 22px; text-align: center; }
  .gsl-sub   { font-size: 13px; text-align: center; }

  .gsl-zoom-btn {
    left: 50%;
    transform: translateX(-50%) !important;
    top: 16px;
    right: auto;
    opacity: 1 !important;
    transform: translateX(-50%) scale(1) rotate(0deg) !important;
  }

  .gsl-thumb-strip { display: none; }

  .gsl-progress { max-width: 92vw; }
  .gsl-progress.running { width: 92vw; }

  .gsl-controls {
    justify-content: center;
    gap: 20px;
    padding: 16px 0 0;
  }

  /* Section header centered */
  #gallery .gallery-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #gallery .gallery-intro-right { text-align: center; max-width: 100%; }
  #gallery .section-title,
  #gallery .section-label,
  #gallery .gold-line { text-align: center; }
}

  .gsl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99992;
    background: rgba(2,2,2,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    cursor: none;
  }
  .gsl-lightbox.open { opacity: 1; pointer-events: all; }
  .gsl-lb-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 60px;
  }
  .gsl-lb-img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    transform: scale(0.96);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    box-shadow: 0 60px 180px rgba(0,0,0,0.95);
    pointer-events: none;
    user-select: none;
  }
  .gsl-lightbox.open .gsl-lb-img { transform: scale(1); }
  .gsl-lb-close {
    position: absolute;
    top: 24px; right: 32px;
    font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--muted);
    background: none;
    border: 1px solid rgba(212,175,55,0.25);
    padding: 9px 22px;
    cursor: none;
    transition: color 0.3s, border-color 0.3s;
  }
  .gsl-lb-close:hover { color: var(--gold); border-color: var(--gold); }
  .gsl-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(8,8,8,0.6);
    border: 1px solid rgba(212,175,55,0.2);
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    cursor: none;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, background 0.3s;
  }
  .gsl-lb-nav:hover { border-color: var(--gold); background: rgba(212,175,55,0.1); }
  .gsl-lb-prev { left: 32px; }
  .gsl-lb-next { right: 32px; }
  .gsl-lb-counter {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; letter-spacing: 4px; color: rgba(212,175,55,0.45);
  }
  .gsl-lb-counter span { color: var(--gold); font-size: 18px; }

  .gallery-cta-strip {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3px;
  }
  .gallery-cta-strip p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.6;
  }
  .gallery-cta-strip p em { color: var(--text); font-style: normal; }

  @media (max-width: 900px) {
    .gsl-content { padding: 0 32px 40px; flex-direction: column; align-items: flex-start; gap: 16px; }
    .gsl-zoom-btn { align-self: flex-end; opacity: 1 !important; transform: scale(1) rotate(0deg) !important; }
    .gsl-img-wrap { height: 60vw; min-height: 320px; }
    .gsl-lb-prev { left: 8px; }
    .gsl-lb-next { right: 8px; }
    .gallery-cta-strip { flex-direction: column; gap: 24px; padding: 32px 24px; text-align: center; }
    .gallery-cta-strip p { max-width: 100%; }
  }
  @media (max-width: 600px) {
    .gsl-content { padding: 0 20px 28px; }
    .gsl-thumb-strip { display: none; }
    .gsl-lb-inner { padding: 40px 12px; }
  }
  

  /* ── AUTH MODAL REDESIGN ── */
  #authOverlay {
    position: fixed; inset: 0; z-index: 99990;
    background: rgba(8,6,2,0.45);
    backdrop-filter: blur(12px) saturate(1.4) brightness(0.7);
    -webkit-backdrop-filter: blur(12px) saturate(1.4) brightness(0.7);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.45s ease;
  }
  #authOverlay.open { opacity: 1; pointer-events: all; }

  #authModal {
    background: rgba(10,8,3,0.82);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    border: 1px solid rgba(212,175,55,0.28);
    max-width: 560px; width: 100%;
    max-height: 92vh; overflow-y: auto;
    position: relative;
    box-shadow: 0 0 0 1px rgba(212,175,55,0.08),
                0 40px 120px rgba(0,0,0,0.5),
                inset 0 1px 0 rgba(212,175,55,0.12);
    transform: translateY(32px) scale(0.96);
    transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.3) transparent;
  }
  #authModal::-webkit-scrollbar { width: 3px; }
  #authModal::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); }
  #authOverlay.open #authModal { transform: translateY(0) scale(1); }

  .auth-modal-gold-line {
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, #d4af37 30%, #f0c84a 50%, #d4af37 70%, transparent 100%);
  }

  #authModalClose {
    position: absolute; top: 16px; right: 18px; z-index: 10;
    background: none;
    border: 1px solid rgba(212,175,55,0.2);
    color: rgba(138,128,116,0.8);
    font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    padding: 8px 16px; cursor: none;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
  }
  #authModalClose:hover { color: var(--gold); border-color: var(--gold); background: rgba(212,175,55,0.06); }

  .auth-modal-inner { padding: 52px 48px 48px; }

  .auth-modal-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 8px; letter-spacing: 6px; text-transform: uppercase;
    color: rgba(212,175,55,0.6); display: block; margin-bottom: 10px;
  }

  .auth-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 34px); font-weight: 900;
    line-height: 1.1; color: #f0ece4; margin-bottom: 8px;
  }
  .auth-tab-btn { font-weight: 700 !important; font-size: 10px !important; letter-spacing: 3px !important; }
  .auth-tab-btn.active { font-size: 11px !important; }
  .auth-input { font-size: 14px !important; font-weight: 500 !important; }
  .auth-input::placeholder { font-weight: 600 !important; font-size: 11px !important; letter-spacing: 2px; }
  .auth-section-label { font-weight: 800 !important; font-size: 9px !important; letter-spacing: 2px !important; }
  .auth-submit-btn { font-size: 12px !important; font-weight: 800 !important; letter-spacing: 5px !important; }
  .auth-alt-link { font-size: 12px !important; font-weight: 600 !important; }
  .auth-alt-link button { font-weight: 700 !important; font-size: 12px !important; text-decoration: underline; }
  /* Tab indicator bar — thicker and more visible */
  .auth-tabs-row { border-bottom: 2px solid rgba(212,175,55,0.2) !important; }
  body.light-mode .auth-input { font-weight: 600 !important; color: #0a0a0a !important; }
  body.light-mode .auth-input::placeholder { color: rgba(94,80,64,0.7) !important; font-weight: 600 !important; }
  body.light-mode .auth-section-label { color: rgba(154,111,0,0.8) !important; }
  body.light-mode #authPanelSignin::before,
  body.light-mode #authPanelSignup::before { color: rgba(154,111,0,0.6); border-bottom-color: rgba(154,111,0,0.15); }
  .auth-modal-title em { font-style: italic; color: var(--gold); font-weight: 400; }

  .auth-modal-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-style: italic;
    color: rgba(138,128,116,0.9); margin-bottom: 36px; line-height: 1.6;
  }

  /* Tab switcher */
  .auth-tabs-row {
    display: flex; gap: 0; margin-bottom: 36px;
    border-bottom: 1px solid rgba(212,175,55,0.12);
  }
  .auth-tab-btn {
    font-family: 'Jost', sans-serif;
    font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(138,128,116,0.8);
    background: none; border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 28px 12px 0;
    cursor: none; margin-bottom: -1px;
    transition: color 0.3s, border-color 0.3s;
  }
  .auth-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
  .auth-tab-btn:hover:not(.active) { color: #f0ece4; }

  /* Messages */
  .auth-msg {
    font-family: 'Jost', sans-serif;
    font-size: 11px; letter-spacing: 1px; line-height: 1.6;
    padding: 13px 18px; margin-bottom: 18px; display: none;
  }
  .auth-msg.error { background: rgba(224,85,85,0.1); border: 1px solid rgba(224,85,85,0.35); color: #e07070; }
  .auth-msg.success { background: rgba(123,181,110,0.1); border: 1px solid rgba(123,181,110,0.35); color: #7bb56e; text-align: center; }
  .auth-msg.visible { display: block; }

  /* Fields */
  .auth-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .auth-section-label {
    font-family: 'Jost', sans-serif;
    font-size: 8px; letter-spacing: 5px; text-transform: uppercase;
    color: rgba(212,175,55,0.55); display: block; margin: 24px 0 14px;
  }
  .auth-section-label:first-child { margin-top: 0; }
  .auth-input {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(212,175,55,0.18);
    color: #f0ece4;
    font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 700;
    padding: 14px 0; margin-bottom: 16px;
    outline: none; transition: border-color 0.3s;
  }
  .auth-input:focus { border-bottom-color: var(--gold); }
  .auth-input::placeholder { color: rgba(138,128,116,0.5); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
  select.auth-input { appearance: none; -webkit-appearance: none; cursor: none; background: transparent; }
  .auth-select {
    background: #0a0a0a !important;
    color: #f0ece4 !important;
    border-bottom-color: rgba(212,175,55,0.18) !important;
  }
  .auth-select option {
    background: #0f0f0f;
    color: #f0ece4;
    padding: 10px;
  }
  body.light-mode .auth-select {
    background: #f4f0e8 !important;
    color: #0a0a0a !important;
    border-bottom-color: rgba(154,111,0,0.25) !important;
  }
  body.light-mode .auth-select option {
    background: #f4f0e8;
    color: #0a0a0a;
  }
  .auth-select-wrap { position: relative; }
  .auth-select-wrap::after { content: '›'; position: absolute; right: 0; top: 14px; color: rgba(212,175,55,0.4); font-size: 16px; transform: rotate(90deg); pointer-events: none; }

  /* Submit button — solid gold metallic */
  .auth-submit-btn {
    width: 100%; text-align: center;
    font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 5px; text-transform: uppercase;
    padding: 20px;
    background: linear-gradient(135deg, #f0c84a 0%, #d4af37 35%, #b8860b 70%, #c9921a 100%);
    color: #080808; border: none; cursor: none;
    position: relative; overflow: hidden;
    box-shadow:
      0 2px 0 rgba(255,255,255,0.22) inset,
      0 -2px 0 rgba(0,0,0,0.35) inset,
      0 8px 32px rgba(212,175,55,0.35);
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
    margin-top: 8px;
  }
  .auth-submit-btn::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.18);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.5s;
  }
  .auth-submit-btn:hover::before { transform: translateX(200%) skewX(-15deg); }
  .auth-submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1) saturate(1.1);
    box-shadow:
      0 2px 0 rgba(255,255,255,0.28) inset,
      0 -2px 0 rgba(0,0,0,0.4) inset,
      0 16px 48px rgba(212,175,55,0.55);
  }

  .auth-alt-link {
    text-align: center; margin-top: 20px;
    font-family: 'Jost', sans-serif; font-size: 11px;
    color: rgba(138,128,116,0.7); letter-spacing: 1px;
  }
  .auth-alt-link button {
    background: none; border: none;
    color: var(--gold); font-family: 'Jost', sans-serif;
    font-size: 11px; letter-spacing: 1px;
    cursor: none; text-decoration: underline; padding: 0;
    transition: color 0.3s;
  }
  .auth-alt-link button:hover { color: var(--gold-light); }

  /* Light mode */
  body.light-mode #authModal {
    background: #f4f0e8;
    border-color: rgba(154,111,0,0.3);
    box-shadow: 0 40px 120px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.6);
  }
  body.light-mode .auth-modal-title { color: #0a0a0a; }
  body.light-mode .auth-modal-sub { color: #5e5040; }
  body.light-mode .auth-modal-eyebrow { color: rgba(154,111,0,0.7); }
  body.light-mode .auth-tab-btn { color: #5e5040; }
  body.light-mode .auth-tab-btn.active { color: #9a6f00; border-bottom-color: #9a6f00; }
  body.light-mode .auth-input { color: #0a0a0a; border-bottom-color: rgba(154,111,0,0.25); }
  body.light-mode .auth-input::placeholder { color: rgba(94,80,64,0.55); }
  body.light-mode select.auth-input { background: transparent; color: #5e5040; }
  body.light-mode .auth-section-label { color: rgba(154,111,0,0.65); }
  body.light-mode #authModalClose { color: #5e5040; border-color: rgba(154,111,0,0.25); }
  body.light-mode #authModalClose:hover { color: #9a6f00; border-color: #9a6f00; }
  body.light-mode .auth-alt-link { color: #5e5040; }
  body.light-mode .auth-overlay { background: rgba(200,196,188,0.88); }


/* Override the logo animation to a smooth breath-glow instead of hard pulse.
   Higher specificity (#loader .loader-logo) takes precedence over .loader-logo */
#loader .loader-logo {
  animation-name: fjt-loader-breathe !important;
  animation-duration: 3.4s !important;
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1) !important;
  animation-iteration-count: infinite !important;
}
@keyframes fjt-loader-breathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(212,175,55,0));
  }
  50% {
    transform: scale(1.038);
    filter: drop-shadow(0 0 24px rgba(212,175,55,0.28)) drop-shadow(0 0 6px rgba(212,175,55,0.18));
  }
}

/* Premium progress line — fills over the loader duration */
.fjt-ldr-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,175,55,0.35) 20%,
    rgba(212,175,55,0.75) 50%,
    rgba(212,175,55,0.35) 80%,
    transparent 100%);
  z-index: 100001;
  pointer-events: none;
}

/* Elegant tagline beneath the logo */
.fjt-ldr-tagline {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 64px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 7.5px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: rgba(212,175,55,0);
  z-index: 100001;
  pointer-events: none;
  transition: color 1.4s cubic-bezier(0.22,1,0.36,1);
}
.fjt-ldr-tagline.fjt-ldr-tag-vis {
  color: rgba(212,175,55,0.38);
}

/* ── LIGHT MODE FILTER BAR ── */
body.light-mode .pkg-filter-bar,
body.light-mode #pkgFilterBar.floating {
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}
body.light-mode .pkg-filter-btn {
  color: #1a1a1a !important;
}
body.light-mode .pkg-filter-btn.active {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* ── LIGHT MODE GOLD UNIFICATION ── */
body.light-mode .quiz-box {
  border-image: none !important;
  border: 1px solid rgba(122,79,0,0.4) !important;
  background: #d8d4cc !important;
}
body.light-mode .quiz-step-label,
body.light-mode .quiz-result-name,
body.light-mode .quiz-result-meta {
  color: var(--gold) !important;
  -webkit-text-fill-color: var(--gold) !important;
}
body.light-mode .quiz-option {
  border-color: rgba(122,79,0,0.3) !important;
}
body.light-mode .quiz-option.selected {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
body.light-mode .user-menu {
  background: #ffffff;
  border-color: rgba(122,79,0,0.2);
}
body.light-mode .user-menu-name {
  color: #1a1a1a;
}

/* ── LIGHT MODE REVIEW SECTION ── */
body.light-mode #testimonialFormLocked {
  background: rgba(255,255,255,0.92) !important;
  border-color: rgba(122,79,0,0.2) !important;
}
body.light-mode #testimonialFormLocked div[style*="color:var(--text)"] {
  color: #0a0a0a !important;
}
body.light-mode #testimonialFormOpen > div {
  background: rgba(255,255,255,0.95) !important;
  border-color: rgba(122,79,0,0.2) !important;
}
body.light-mode #testimonialFormOpen span[style*="color:rgba(212,175,55"] {
  color: var(--gold) !important;
}
body.light-mode #testimonialFormOpen span[style*="color:rgba(138,128,116"] {
  color: #5a5a5a !important;
}
body.light-mode #testimonialFormOpen p[style*="color:var(--muted)"] {
  color: #2a2a2a !important;
}
body.light-mode #testimonialFormOpen input,
body.light-mode #testimonialFormOpen textarea {
  background: #f5f0e8 !important;
  color: #0a0a0a !important;
  border-color: rgba(122,79,0,0.25) !important;
}
body.light-mode #testimonialFormOpen input::placeholder,
body.light-mode #testimonialFormOpen textarea::placeholder {
  color: #7a7a7a !important;
}
body.light-mode #testimonialFormOpen label,
body.light-mode #testimonialFormOpen span {
  color: #1a1a1a !important;
}
body.light-mode #testimonialFormLocked button[style*="background:transparent"] {
  color: var(--gold) !important;
  border-color: rgba(122,79,0,0.4) !important;
}

/* ── LIGHT MODE CARD BORDERS ── */
body.light-mode .highlight-card,
body.light-mode .package-card,
body.light-mode .team-card,
body.light-mode .blog-card,
body.light-mode .testimonial {
  border: 1px solid rgba(122,79,0,0.18) !important;
}

/* ── HEADER / NAV — keep dark mode colours in light mode ── */
body.light-mode nav {
  background: transparent !important;
  border-bottom-color: transparent !important;
}
body.light-mode .nav-link {
  color: #ffffff !important;
}
body.light-mode .nav-link:hover {
  color: var(--gold) !important;
}
body.light-mode .dropdown {
  background: rgba(12,12,12,0.98) !important;
  border-left-color: rgba(212,175,55,0.15) !important;
}
body.light-mode .dropdown-link {
  color: #ffffff !important;
  border-bottom-color: rgba(255,255,255,0.04) !important;
}
body.light-mode .dropdown-link:hover {
  color: var(--gold) !important;
}
body.light-mode .dropdown-tagline {
  color: rgba(255,255,255,0.4) !important;
}
body.light-mode .nav-back {
  color: rgba(255,255,255,0.5) !important;
}
body.light-mode .auth-btn-nav {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.25) !important;
}
body.light-mode .auth-btn-nav.signed-in {
  color: var(--gold) !important;
  border-color: rgba(212,175,55,0.35) !important;
}
body.light-mode #userMenu {
  background: rgba(12,12,12,0.97) !important;
  border-color: rgba(212,175,55,0.2) !important;
}
body.light-mode #userMenuName {
  color: var(--gold) !important;
  border-bottom-color: rgba(212,175,55,0.1) !important;
}
body.light-mode .user-menu-item {
  color: rgba(255,255,255,0.75) !important;
}
body.light-mode .user-menu-item:hover {
  color: var(--gold) !important;
  background: rgba(212,175,55,0.06) !important;
}
body.light-mode .user-menu-item.danger:hover {
  color: #e05555 !important;
}
body.light-mode .nav-logo-img {
  filter: none !important;
}
