/* ============================================================
   PAGE LOADER
   ============================================================ */
.loader-logo{
  height:55px;
  width:auto;
  max-width:80vw;
  display:block;
}
.loader-bar-track{
  width:160px;
  max-width:45vw;
  height:1px;
  background:rgba(201,146,26,0.18);
  position:relative;
  overflow:hidden;
}
.loader-bar-fill{
  position:absolute;
  top:0;left:0;bottom:0;
  width:0;
  background:#C9921A;
}
#page-loader.loader-exit{
  transform:translateY(-100%);
}

  :root{
    /* Primary: Deep Obsidian */
    --obsidian:  #09080b;
    --navy:      #09080b;
    --navy-2:    #100f14;
    /* Replaces greens — dark purplish-blacks */
    --emerald:   #141219;
    --emerald-2: #1d1b23;
    --emerald-3: #27242e;
    /* Warm ivories */
    --sand:      #faf5ec;
    --sand-2:    #f0e6d4;
    /* Secondary: Antique Gold */
    --gold:       #c9921a;
    --gold-light: #e8c25a;
    --gold-warm:  #f5e4b0;
    /* Tertiary: Deep Crimson — use sparingly */
    --terracotta: #8b2e2e;
    /* Other */
    --teal:       #b8952a;
    --ink:        #160e06;
    --muted:      #7c6e5e;
    --muted-light:#b8b0a4;
    --ease:cubic-bezier(.16,1,.3,1);
  }

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

  body{
    font-family:'Poppins',sans-serif;
    color:var(--ink);
    line-height:1.7;
    background:var(--sand);
    overflow-x:hidden;
  }

  h1,h2,h3,h4{
    font-family:'Cormorant Garamond',serif;
    font-weight:300;
    line-height:1.12;
    letter-spacing:-0.01em;
  }
  h3,h4{
    font-weight:500;
  }

  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  img{display:block;width:100%;height:100%;object-fit:cover;}

  .container{
    max-width:1240px;
    margin:0 auto;
    padding:0 40px;
  }

  ::selection{background:var(--gold);color:var(--navy);}

  /* ===== SCROLL REVEAL ===== */
  [data-reveal]{
    opacity:0;
    transform:translateY(48px);
    transition:opacity .9s var(--ease), transform .9s var(--ease);
    transition-delay:var(--d,0s);
  }
  [data-reveal].in-view{opacity:1;transform:translateY(0);}
  [data-reveal="left"]{transform:translateX(-60px);}
  [data-reveal="left"].in-view{transform:translateX(0);}
  [data-reveal="right"]{transform:translateX(60px);}
  [data-reveal="right"].in-view{transform:translateX(0);}
  [data-reveal="scale"]{transform:scale(.92);}
  [data-reveal="scale"].in-view{transform:scale(1);}

  /* ===== TYPE HELPERS ===== */
  .kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-size:1.35rem;
    letter-spacing:0.5px;
    color:var(--gold);
    margin-bottom:18px;
  }
  .kicker::before{
    content:"";
    width:34px;height:1px;
    background:var(--gold);
    display:inline-block;
  }
  .section-head{
    max-width:620px;
    margin-bottom:60px;
  }
  .section-head.center{
    margin-left:auto;margin-right:auto;
    text-align:center;
  }
  .section-head h2{
    font-size:clamp(2.2rem,4vw,3.2rem);
  }
  .section-head p{
    margin-top:18px;
    color:var(--muted);
    font-size:1rem;
    max-width:480px;
  }
  .section-head.center p{margin-left:auto;margin-right:auto;}

  /* ===== BUTTONS ===== */
  .btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:17px 34px;
    font-size:0.8rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    border-radius:50px;
    border:1px solid transparent;
    cursor:pointer;
    overflow:hidden;
    transition:color .4s var(--ease), border-color .4s var(--ease);
    z-index:1;
  }
  .btn::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .45s var(--ease);
  }
  .btn:hover::before{transform:scaleX(1);}
  .btn-primary{background:var(--gold);color:var(--navy);}
  .btn-primary::before{background:var(--navy);}
  .btn-primary:hover{color:var(--gold-light);}
  .btn-ghost{border-color:rgba(255,255,255,0.35);color:#fff;}
  .btn-ghost::before{background:#fff;}
  .btn-ghost:hover{color:var(--navy);}
  .btn-dark{background:var(--navy);color:#fff;}
  .btn-dark::before{background:var(--gold);}
  .btn-dark:hover{color:var(--navy);}
  .btn svg{width:16px;height:16px;transition:transform .4s var(--ease);}
  .btn:hover svg{transform:translateX(5px);}

  /* ===== NAV ===== */
  .nav{
    position:fixed;
    top:0;left:0;right:0;
    z-index:200;
    padding:1px 0;
    transition:padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
  }
  .nav.scrolled{
    padding:1px 0;
    background:rgba(13,19,34,0.82);
    backdrop-filter:blur(14px);
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
  }
  .nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:13px;
    color:#fff;
  }
  .logo-img{
    height:48px;
    width:auto;
    display:block;
  }
  .logo-mark{
    width:46px;height:46px;border-radius:50%;
    background:radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold) 60%, #9c7536);
    display:flex;align-items:center;justify-content:center;
    font-size:1.25rem;
    box-shadow:0 0 0 2px rgba(255,255,255,0.45);
    flex-shrink:0;
    transition:transform .6s var(--ease);
  }
  .logo:hover .logo-mark{transform:rotate(25deg);}
  .logo-text{
    font-family:'Playfair Display',serif;
    font-size:1.3rem;
    font-weight:700;
    letter-spacing:0.5px;
  }
  .logo-text span{color:var(--gold-light);}

  .nav-right{
    display:flex;
    align-items:center;
    gap:28px;
  }
  .nav ul{
    display:flex;
    align-items:center;
    gap:6px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(6px);
    padding:6px;
    border-radius:30px;
  }
  .nav a:not(.btn){
    color:#fff;
    font-size:0.85rem;
    font-weight:500;
    padding:10px 22px;
    border-radius:24px;
    display:block;
    transition:all .25s ease;
  }
  .nav a.active{
    background:#fff;
    color:var(--navy);
  }
  .nav a:not(.active):not(.btn):hover{
    background:rgba(255,255,255,0.15);
  }
  .nav .btn{padding:13px 26px;font-size:0.72rem;}

  /* ===== MOBILE NAV TOGGLE ===== */
  .nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:44px;height:44px;
    background:rgba(255,255,255,0.08);
    border:none;
    border-radius:10px;
    cursor:pointer;
    flex-shrink:0;
    z-index:201;
  }
  .nav-toggle span{
    display:block;
    width:20px;height:2px;
    background:#fff;
    border-radius:2px;
    transition:transform .3s ease, opacity .3s ease;
  }
  .nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .nav-toggle.active span:nth-child(2){opacity:0;}
  .nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
  .nav-backdrop{
    position:fixed;
    inset:0;
    background:rgba(8,12,24,0.6);
    opacity:0;
    pointer-events:none;
    transition:opacity .4s var(--ease);
    z-index:198;
  }
  body.nav-open{overflow:hidden;}
  body.nav-open .nav-backdrop{opacity:1;pointer-events:auto;}

  /* ===== MEGA MENU ===== */
  .nav-item-mega{position:relative;}

  /* Trigger link + chevron */
  .mega-trigger{
    display:inline-flex;
    align-items:center;
    gap:5px;
    cursor:pointer;
  }
  .mega-trigger svg{
    width:10px;height:10px;
    flex-shrink:0;
    transition:transform .25s ease;
  }
  .nav-item-mega:hover .mega-trigger svg,
  .nav-item-mega.mega-open .mega-trigger svg{
    transform:rotate(180deg);
  }

  /* Dropdown panel — hidden by default */
  .mega-menu{
    position:absolute;
    top:calc(100% + 14px);
    left:50%;
    transform:translateX(-50%) translateY(8px);
    min-width:520px;
    background:rgba(8,10,18,0.97);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.09);
    border-radius:14px;
    padding:1.6rem 1.4rem 1.4rem;
    opacity:0;
    pointer-events:none;
    transition:opacity .22s ease, transform .22s ease;
    z-index:500;
    box-shadow:0 24px 60px rgba(0,0,0,0.6);
  }
  .nav-item-mega:hover .mega-menu{
    opacity:1;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
  }

  /* Header inside dropdown */
  .mega-header{
    display:flex;
    align-items:baseline;
    gap:0.75rem;
    padding-bottom:0.9rem;
    margin-bottom:0.75rem;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .mega-header-kicker{
    font-size:0.62rem;
    font-weight:600;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--gold-light);
  }
  .mega-header-sub{
    font-size:0.74rem;
    color:rgba(255,255,255,0.4);
  }

  /* Grid of links */
  .mega-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2px 4px;
  }
  .mega-item{
    display:flex;
    align-items:flex-start;
    gap:0.6rem;
    padding:0.55rem 0.7rem;
    border-radius:8px;
    text-decoration:none;
    color:#fff;
    transition:background .15s;
  }
  .mega-item:hover{background:rgba(255,255,255,0.07);}
  .mega-name{
    display:block;
    font-size:0.79rem;
    font-weight:500;
    color:#fff;
    line-height:1.3;
  }
  .mega-desc{
    display:block;
    font-size:0.68rem;
    color:rgba(255,255,255,0.42);
    margin-top:2px;
    line-height:1.3;
  }

  /* Mobile mega menu — show/hide via .mega-open class */
  @media(max-width:900px){
    .mega-menu{
      position:static;
      transform:none;
      opacity:0;
      pointer-events:none;
      max-height:0;
      overflow:hidden;
      padding:0;
      margin:0;
      border:none;
      border-radius:0;
      background:rgba(255,255,255,0.04);
      box-shadow:none;
      backdrop-filter:none;
      transition:max-height .3s ease, opacity .25s ease, padding .25s ease;
    }
    .nav-item-mega.mega-open .mega-menu{
      opacity:1;
      pointer-events:auto;
      max-height:70vh;
      overflow-y:auto;
      padding:0.75rem 0.5rem;
    }
    .mega-grid{grid-template-columns:1fr;}
    .mega-item{padding:0.5rem 0.25rem;}
    .nav-item-mega:hover .mega-trigger svg{transform:none;}
    .nav-item-mega.mega-open .mega-trigger svg{transform:rotate(180deg);}
  }

  /* ===== HERO ===== */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
    background:linear-gradient(160deg,#3a3120 0%,#1c2436 60%,#0d1322 100%);
  }
  .hero-media{
    position:absolute;
    inset:0;
    z-index:0;
  }
  .hero-media video,
  .hero-media img{
    width:100%;height:100%;object-fit:cover;
    transform:scale(1.08);
    animation:heroZoom 22s ease-in-out infinite alternate;
  }
  @keyframes heroZoom{
    0%{transform:scale(1.08);}
    100%{transform:scale(1);}
  }
  .hero-media .hero-overlay{
    position:absolute;
    inset:0;
    background:
      linear-gradient(180deg, rgba(10,14,26,0.35) 0%, rgba(10,14,26,0.55) 55%, rgba(10,14,26,0.88) 100%),
      linear-gradient(90deg, rgba(10,14,26,0.55) 0%, transparent 35%, transparent 65%, rgba(10,14,26,0.55) 100%);
  }

  /* floating glyphs */
  .floaters{
    position:absolute;inset:0;
    pointer-events:none;
    z-index:1;
  }
  .floaters span{
    position:absolute;
    font-size:2.4rem;
    opacity:0.16;
    color:var(--gold-light);
    animation:floaty 9s ease-in-out infinite;
  }
  @keyframes floaty{
    0%,100%{transform:translateY(0) rotate(0deg);}
    50%{transform:translateY(-26px) rotate(8deg);}
  }

  /* flight path */
  .hero-route{
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
  }
  .hero-route svg{width:100%;height:100%;display:block;}
  .hero-route .route-line{
    fill:none;
    stroke:rgba(255,255,255,0.4);
    stroke-width:1.5;
    stroke-dasharray:1 11;
    stroke-linecap:round;
  }
  .airplane{
    position:absolute;
    top:0;left:0;
    font-size:1.7rem;
    color:#fff;
    filter:drop-shadow(0 2px 10px rgba(0,0,0,0.4));
    offset-path:path("M -60,520 C 220,470 360,250 640,230 S 1100,120 1320,40");
    offset-rotate:auto;
    animation:fly-route 18s linear infinite;
  }
  @keyframes fly-route{
    0%{offset-distance:0%;opacity:0;}
    6%{opacity:1;}
    94%{opacity:1;}
    100%{offset-distance:100%;opacity:0;}
  }
  @supports not (offset-path: path("M0,0 L1,1")){
    .airplane{animation:fly-fallback 18s linear infinite;}
    @keyframes fly-fallback{
      0%{transform:translate(-60px,520px) rotate(18deg);opacity:0;}
      6%{opacity:1;}
      94%{opacity:1;}
      100%{transform:translate(1320px,40px) rotate(-12deg);opacity:0;}
    }
  }

  /* ===== KEY OF LIFE (ANKH) ===== */
  .ankh-svg{
    display:block;
    width:100%;height:100%;
    overflow:visible;
  }
  .ankh-svg circle{
    fill:none;
    stroke:currentColor;
    stroke-width:11;
  }
  .ankh-svg rect{
    fill:currentColor;
  }
  .hero-ankh{
    position:fixed;
    top:18%;left:50%;
    width:clamp(160px,20vw,300px);
    height:clamp(256px,32vw,480px);
    transform:translateX(-50%);
    color:var(--gold-light);
    opacity:0.55;
    z-index:60;
    pointer-events:none;
    filter:drop-shadow(0 0 50px rgba(236,212,160,0.45));
    will-change:left,top,width,height,transform,opacity;
  }

  .hero-content{
    position:relative;
    z-index:3;
    max-width:880px;
    padding:160px 20px 120px;
  }
  .hero .kicker{
    justify-content:center;
    color:var(--gold-light);
    opacity:0;
    animation:fadeUp .9s var(--ease) .2s forwards;
  }
  .hero h1{
    font-size:clamp(3rem,8vw,6.4rem);
    color:#fff;
    margin-bottom:24px;
  }
  .hero h1 .line{
    display:block;
    overflow:hidden;
  }
  .hero h1 .line span{
    display:inline-block;
    transform:translateY(110%);
    animation:fadeUp 1s var(--ease) forwards;
  }
  .hero h1 .line:nth-child(1) span{animation-delay:.35s;}
  .hero h1 .line:nth-child(2) span{animation-delay:.5s;}
  .hero h1 em{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    color:var(--gold-light);
    font-weight:600;
  }
  @keyframes fadeUp{
    to{transform:translateY(0);opacity:1;}
    from{transform:translateY(110%);opacity:0;}
  }
  .hero p{
    font-size:1.05rem;
    color:var(--muted-light);
    max-width:560px;
    margin:0 auto 40px;
    opacity:0;
    animation:fadeUp2 .9s var(--ease) .75s forwards;
  }
  .hero-buttons{
    display:flex;
    gap:18px;
    justify-content:center;
    flex-wrap:wrap;
    opacity:0;
    animation:fadeUp2 .9s var(--ease) .9s forwards;
  }
  @keyframes fadeUp2{
    from{transform:translateY(24px);opacity:0;}
    to{transform:translateY(0);opacity:1;}
  }

  .scroll-cue{
    position:absolute;
    bottom:36px;left:50%;
    transform:translateX(-50%);
    z-index:3;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,0.7);
    font-size:0.7rem;
    letter-spacing:3px;
    text-transform:uppercase;
    opacity:0;
    animation:fadeUp2 1s var(--ease) 1.3s forwards;
  }
  .scroll-cue .mouse{
    width:24px;height:38px;
    border:1px solid rgba(255,255,255,0.5);
    border-radius:14px;
    position:relative;
  }
  .scroll-cue .mouse::before{
    content:"";
    position:absolute;
    top:6px;left:50%;
    width:4px;height:8px;
    margin-left:-2px;
    background:var(--gold-light);
    border-radius:2px;
    animation:scrollDot 1.8s ease-in-out infinite;
  }
  @keyframes scrollDot{
    0%{opacity:1;transform:translateY(0);}
    60%{opacity:0;transform:translateY(12px);}
    100%{opacity:0;transform:translateY(0);}
  }

  /* ===== MARQUEE ===== */
  .marquee{
    background:var(--navy);
    color:var(--gold-light);
    overflow:hidden;
    padding:22px 0;
    position:relative;
    z-index:5;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }
  .marquee-track{
    display:flex;
    width:max-content;
    animation:marquee 38s linear infinite;
  }
  .marquee-track:hover{animation-play-state:paused;}
  .marquee span{
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:1.3rem;
    white-space:nowrap;
    padding:0 28px;
    display:flex;
    align-items:center;
    gap:28px;
    color:var(--gold-light);
  }
  .marquee span::after{
    content:"𓆎";
    color:var(--gold);
    font-style:normal;
    font-size:1rem;
    opacity:.6;
  }
  @keyframes marquee{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }

  /* ===== ABOUT ===== */
  .about{
    background:var(--sand);
    padding:140px 0;
    position:relative;
    overflow:hidden;
  }
  .about-grid{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:80px;
    align-items:center;
  }
  .about-media{
    position:relative;
  }
  .about-media .frame{
    position:relative;
    border-radius:14px;
    overflow:hidden;
    aspect-ratio:4/5;
    box-shadow:0 40px 80px -30px rgba(20,25,40,0.35);
  }
  .about-media .frame img{
    transition:transform 1.2s var(--ease);
  }
  .about-media:hover .frame img{transform:scale(1.06);}
  .about-media .frame::after{
    content:"";
    position:absolute;inset:0;
    background:linear-gradient(180deg, transparent 60%, rgba(13,19,34,0.45) 100%);
  }
  .about-badge{
    position:absolute;
    bottom:-34px;right:-34px;
    background:var(--navy);
    color:#fff;
    border-radius:14px;
    padding:26px 30px;
    box-shadow:0 25px 50px -20px rgba(20,25,40,0.5);
    display:flex;
    align-items:center;
    gap:18px;
    max-width:260px;
  }
  .about-badge .icon{
    width:32px;height:32px;
    display:inline-flex;
    color:var(--gold-light);
    flex-shrink:0;
    opacity:0;
    animation:floaty 6s ease-in-out infinite;
  }
  .about-badge strong{
    display:block;
    font-family:'Playfair Display',serif;
    font-size:1.05rem;
    margin-bottom:4px;
  }
  .about-badge span{
    font-size:0.8rem;
    color:var(--muted-light);
  }
  .about-ring{
    position:absolute;
    top:-40px;left:-40px;
    width:130px;height:130px;
    border:1px solid var(--gold);
    border-radius:50%;
    opacity:0.5;
    animation:spin 30s linear infinite;
  }
  .about-ring::before{
    content:"✦";
    position:absolute;
    top:-9px;left:50%;
    transform:translateX(-50%);
    color:var(--gold);
    background:var(--sand);
    font-size:0.9rem;
    padding:0 4px;
  }
  @keyframes spin{to{transform:rotate(360deg);}}

  .about-text h2{
    font-size:clamp(2.2rem,4vw,3.2rem);
    color:var(--navy);
    margin-bottom:22px;
  }
  .about-text > p{
    color:var(--muted);
    max-width:480px;
    margin-bottom:36px;
  }
  .about-list{
    display:grid;
    gap:22px;
    margin-bottom:40px;
  }
  .about-list li{
    display:flex;
    gap:18px;
    align-items:flex-start;
  }
  .about-list .num{
    flex-shrink:0;
    width:42px;height:42px;
    border-radius:50%;
    border:1px solid rgba(193,105,63,0.35);
    color:var(--terracotta);
    display:flex;align-items:center;justify-content:center;
    font-family:'Playfair Display',serif;
    font-weight:700;
    font-size:0.95rem;
    transition:background .35s var(--ease), color .35s var(--ease);
  }
  .about-list li:hover .num{
    background:var(--terracotta);
    color:#fff;
  }
  .about-list h4{
    font-family:'Poppins',sans-serif;
    font-size:1rem;
    font-weight:600;
    color:var(--navy);
    margin-bottom:4px;
  }
  .about-list p{
    font-size:0.88rem;
    color:var(--muted);
  }

  /* ===== STATS ===== */
  .stats{
    background:var(--emerald);
    color:#fff;
    padding:24px 0;
    position:relative;
    overflow:hidden;
  }
  .stats::before{
    content:"𓅓 𓆣 𓊪 𓋹 𓅓 𓆣 𓊪 𓋹 𓅓 𓆣 𓊪 𓋹";
    position:absolute;
    top:50%;left:0;
    transform:translateY(-50%);
    width:100%;
    text-align:justify;
    font-size:6rem;
    color:rgba(255,255,255,0.03);
    letter-spacing:60px;
    white-space:nowrap;
    pointer-events:none;
  }
  .stats-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(4,1fr);
  }
  .stat{
    text-align:center;
    padding:0 20px;
    border-right:1px solid rgba(255,255,255,0.1);
  }
  .stat:last-child{border-right:none;}
  .stat .num{
    font-family:'Playfair Display',serif;
    font-size:clamp(2.4rem,5vw,3.6rem);
    font-weight:700;
    color:var(--gold-light);
    display:flex;
    align-items:baseline;
    justify-content:center;
    gap:4px;
  }
  .stat .num .suffix{
    font-size:1.6rem;
    color:var(--gold);
  }
  .stat .label{
    margin-top:10px;
    font-size:0.8rem;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--muted-light);
  }

  /* ===== DESTINATIONS ===== */
  .destinations{
    background:var(--sand-2);
    padding:140px 0;
    position:relative;
    overflow:hidden;
  }
  .dest-route{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
  }
  .destinations > .container{
    position:relative;
    z-index:1;
  }
  .dest-route svg{width:100%;height:100%;display:block;}
  .dest-route .route-line{
    fill:none;
    stroke:rgba(13,19,34,0.12);
    stroke-width:1.5;
    stroke-dasharray:1 11;
    stroke-linecap:round;
  }
  .dest-plane{
    position:absolute;
    top:0;left:0;
    font-size:1.6rem;
    color:var(--terracotta);
    filter:drop-shadow(0 2px 10px rgba(13,19,34,0.18));
    offset-path:path("M -60,90 C 320,280 760,-60 1460,170");
    offset-rotate:auto;
    animation:fly-route-dest 24s linear infinite;
  }
  @keyframes fly-route-dest{
    0%{offset-distance:0%;opacity:0;}
    6%{opacity:1;}
    94%{opacity:1;}
    100%{offset-distance:100%;opacity:0;}
  }
  @supports not (offset-path: path("M0,0 L1,1")){
    .dest-plane{animation:fly-fallback-dest 24s linear infinite;}
    @keyframes fly-fallback-dest{
      0%{transform:translate(-60px,90px) rotate(22deg);opacity:0;}
      6%{opacity:1;}
      94%{opacity:1;}
      100%{transform:translate(1460px,170px) rotate(-8deg);opacity:0;}
    }
  }
  .dest-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    flex-wrap:wrap;
  }
  .dest-head .view-all{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:0.8rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    color:var(--navy);
    padding-bottom:6px;
    border-bottom:1px solid var(--navy);
    transition:gap .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  }
  .dest-head .view-all:hover{
    gap:18px;
    color:var(--terracotta);
    border-color:var(--terracotta);
  }

  .dest-card{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    cursor:pointer;
    transition:transform .6s var(--ease), box-shadow .6s var(--ease);
  }
  .dest-card:hover{
    transform:translateY(-10px);
    box-shadow:0 35px 70px -30px rgba(20,25,40,0.4);
  }
  .dest-card img{transition:transform 1.1s var(--ease);}
  .dest-card:hover img{transform:scale(1.09);}
  .dest-card .overlay{
    position:absolute;inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:28px;
    color:#fff;
    background:linear-gradient(180deg, transparent 35%, rgba(13,19,34,0.92) 100%);
  }
  .dest-card .tag{
    font-size:0.7rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold-light);
    opacity:0.9;
    margin-bottom:6px;
    display:block;
    transform:translateY(6px);
    opacity:0;
    transition:transform .5s var(--ease) .05s, opacity .5s var(--ease) .05s;
  }
  .dest-card h3{
    font-size:1.35rem;
    color:#fff;
    transform:translateY(6px);
    transition:transform .5s var(--ease);
  }
  .dest-card:hover .tag{opacity:0.9;transform:translateY(0);}
  .dest-card:hover h3{transform:translateY(0);}
  .dest-card .arrow{
    position:absolute;
    top:22px;right:22px;
    width:46px;height:46px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(6px);
    display:flex;align-items:center;justify-content:center;
    color:#fff;
    transform:scale(0) rotate(-45deg);
    transition:transform .45s var(--ease);
  }
  .dest-card:hover .arrow{transform:scale(1) rotate(0deg);}
  .dest-card .arrow svg{width:18px;height:18px;}

  .dest-featured{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:28px;
    box-shadow:0 30px 70px -35px rgba(20,25,40,0.25);
    /* no max-height — let content breathe */
  }
  .dest-featured .img-wrap{
    position:relative;
    overflow:hidden;
    min-height:300px;
    max-height:480px;
    height:100%;
  }
  .dest-featured .img-wrap img{transition:transform 1.1s var(--ease);}
  .dest-featured:hover .img-wrap img{transform:scale(1.06);}
  .dest-featured .img-wrap .pill{
    position:absolute;
    top:24px;left:24px;
    background:rgba(255,255,255,0.92);
    color:var(--navy);
    font-size:0.7rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    padding:9px 18px;
    border-radius:30px;
  }
  .dest-featured .content{
    padding:38px 44px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .dest-featured .content h3{
    font-size:clamp(1.55rem,2.6vw,2.1rem);
    color:var(--navy);
    margin-bottom:13px;
  }
  .dest-featured .content p{
    color:var(--muted);
    font-size:0.9rem;
    margin-bottom:22px;
    max-width:420px;
  }
  .dest-featured .stat-row{
    display:flex;
    gap:24px;
    margin-bottom:24px;
  }
  .dest-featured .stat-row div strong{
    display:block;
    font-family:'Playfair Display',serif;
    font-size:1.5rem;
    color:var(--terracotta);
  }
  .dest-featured .stat-row div span{
    font-size:0.75rem;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--muted);
  }

  .dest-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:260px;
    gap:24px;
  }
  .dest-grid .dest-card:last-child{
    grid-column:span 2;
  }

  /* ===== FOUR KEYS (PROMISE) ===== */
  .promise{
    background:var(--sand);
    padding:140px 0;
    position:relative;
  }
  .promise-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:80px;
    margin-top:80px;
    align-items:start;
  }
  .promise-sticky{
    position:sticky;
    top:120px;
    aspect-ratio:4/5;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 40px 80px -30px rgba(20,25,40,0.35);
  }
  .promise-sticky img{
    position:absolute;inset:0;
    width:100%;height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1.1s var(--ease), transform 1.6s var(--ease);
    transform:scale(1.08);
  }
  .promise-sticky img.active{
    opacity:1;
    transform:scale(1);
  }
  .promise-sticky::after{
    content:"";
    position:absolute;inset:0;
    background:linear-gradient(180deg, transparent 45%, rgba(13,19,34,0.6) 100%);
    z-index:1;
  }
  .promise-tag{
    position:absolute;
    bottom:30px;left:30px;
    z-index:2;
    color:#fff;
    display:flex;
    align-items:center;
    gap:14px;
  }
  .promise-tag .ankh-svg{
    width:28px;height:46px;
    color:var(--gold-light);
  }
  .promise-tag strong{
    display:block;
    font-family:'Playfair Display',serif;
    font-size:1.1rem;
  }
  .promise-tag span{
    font-size:0.75rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold-light);
  }

  .promise-panels{
    display:flex;
    flex-direction:column;
    gap:28px;
  }
  .promise-panel{
    padding:36px 38px;
    border-radius:16px;
    background:transparent;
    border:1px solid rgba(193,105,63,0.16);
    transition:background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  }
  .promise-panel .step-no{
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:0.85rem;
    color:var(--gold);
    margin-bottom:10px;
    display:block;
  }
  .promise-panel .ankh-svg{
    width:26px;height:42px;
    color:var(--muted);
    margin-bottom:14px;
    transition:color .4s var(--ease);
  }
  .promise-panel h3{
    font-size:1.3rem;
    color:var(--navy);
    margin-bottom:10px;
  }
  .promise-panel p{
    font-size:0.92rem;
    color:var(--muted);
    max-width:440px;
  }
  .promise-panel.active{
    background:#fff;
    border-color:rgba(193,105,63,0.3);
    transform:translateX(8px);
    box-shadow:0 25px 55px -35px rgba(20,25,40,0.25);
  }
  .promise-panel.active .ankh-svg{color:var(--terracotta);}

  @media (max-width:900px){
    .promise-grid{grid-template-columns:1fr;gap:40px;}
    .promise-sticky{position:relative;top:auto;}
    .promise-panel.active{transform:none;}
  }

  /* ===== DIFFERENCE (WHY US) ===== */
  .difference{
    background:
      radial-gradient(ellipse 70% 60% at 50% 30%, rgba(214,173,96,0.13), transparent 65%),
      radial-gradient(ellipse 60% 55% at 88% 10%, rgba(193,105,63,0.10), transparent 60%),
      radial-gradient(ellipse 50% 50% at 8%  85%, rgba(214,173,96,0.07), transparent 60%),
      var(--navy);
    color:#fff;
    position:relative;
    overflow:hidden;
    padding:96px 0 0;
  }
  .difference::before{
    content:"𓋹 𓊪 𓅓 𓆣 𓋹 𓊪 𓅓 𓆣 𓋹 𓊪 𓅓 𓆣 𓋹 𓊪 𓅓 𓆣";
    position:absolute;
    bottom:-4%;left:-6%;
    font-size:7rem;
    letter-spacing:40px;
    color:rgba(255,255,255,0.04);
    white-space:nowrap;
    pointer-events:none;
  }
  .diff-head{
    position:relative;
    z-index:2;
    max-width:640px;
    margin:0 auto;
    text-align:center;
  }
  .diff-head .kicker{justify-content:center;color:var(--gold-light);}
  .diff-head h2{
    font-size:clamp(2.2rem,4.2vw,3.4rem);
    color:#fff;
    margin-bottom:18px;
  }
  .diff-head h2 em{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    color:var(--gold-light);
  }
  .diff-head p{
    color:var(--muted-light);
    margin:0 auto;
  }

  /* --- pinned card stack --- */
  /* Hidden by default — JS adds .diff-pin-active only when .difference is
     in the viewport. Using a class (not inline style) so GSAP's
     clearProps:'all' cannot override it. */
  .diff-stack-pin { visibility: hidden; }
  .diff-stack-pin.diff-pin-active { visibility: visible; }

  .diff-stack-pin{
    position:relative;
    z-index:1;
    height:100vh;
    min-height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }
  .diff-stack-pin::before{
    content:"𓂀";
    position:absolute;
    top:6%;
    right:4%;
    font-size:clamp(8rem,16vw,15rem);
    line-height:1;
    color:rgba(255,255,255,0.04);
    pointer-events:none;
  }
  .diff-stack-pin::after{
    content:"";
    position:absolute;
    width:min(740px, 94vw);
    height:min(540px, 68vh);
    border:1px solid rgba(236,212,160,0.12);
    border-radius:36px;
    pointer-events:none;
  }
  .diff-stack{
    position:relative;
    z-index:1;
    width:min(620px, 88vw);
    height:min(440px, 58vh);
  }
  .diff-card{
    position:absolute;
    inset:0;
    background:var(--sand);
    color:var(--navy);
    border-radius:28px;
    padding:clamp(32px,4vw,56px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 40px 80px -20px rgba(0,0,0,0.45);
    transform:translateY(var(--y, 0px)) rotate(var(--rot, 0deg)) scale(var(--scale, 1));
    transform-origin:center center;
    will-change:transform, opacity, filter;
  }
  .diff-card .diff-icon{
    width:54px;height:54px;
    border-radius:50%;
    border:1px solid rgba(193,105,63,0.3);
    display:flex;align-items:center;justify-content:center;
    color:var(--terracotta);
    margin-bottom:24px;
    flex-shrink:0;
  }
  .diff-card .diff-icon svg{width:24px;height:24px;}
  .diff-card h3{
    font-size:1.5rem;
    color:var(--navy);
    margin-bottom:14px;
  }
  .diff-card p{
    font-size:0.98rem;
    color:var(--muted);
    line-height:1.75;
    margin:0;
  }
  @media (max-width:900px){
    .diff-stack-pin{
      min-height:480px;
    }
    .diff-stack-pin::after{
      width:min(580px, 92vw);
      height:min(440px, 66vh);
    }
    .diff-stack{
      width:min(500px, 90vw);
      height:min(420px, 64vh);
    }
    .diff-card{
      padding:30px;
    }
    .diff-card h3{font-size:1.3rem;}
    .diff-card p{font-size:0.92rem;line-height:1.65;}
  }
  @media (max-width:480px){
    .diff-stack-pin{min-height:420px;}
    .diff-stack{height:min(380px, 60vh);}
    .diff-card{padding:24px;}
    .diff-card .diff-icon{width:46px;height:46px;margin-bottom:16px;}
    .diff-card h3{font-size:1.15rem;}
    .diff-card p{font-size:0.88rem;}
  }

  /* ===== GALLERY ===== */
  .gallery{
    background:var(--navy);
    color:#fff;
    padding:140px 0;
    position:relative;
    overflow:hidden;
  }
  .gallery::before{
    content:"𓆣 𓊪 𓋹 𓅓 𓆣 𓊪 𓋹 𓅓 𓆣 𓊪 𓋹 𓅓\A𓋹 𓅓 𓆣 𓊪 𓋹 𓅓 𓆣 𓊪 𓋹 𓅓 𓆣 𓊪";
    white-space:pre;
    position:absolute;
    top:8%;left:-2%;
    width:104%;
    text-align:justify;
    font-size:6rem;
    line-height:2.6;
    color:rgba(255,255,255,0.03);
    letter-spacing:50px;
    pointer-events:none;
    z-index:0;
  }
  .gallery .glow{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    pointer-events:none;
    z-index:0;
    opacity:0.35;
  }
  .gallery .glow.g1{
    width:420px;height:420px;
    top:-120px;left:-100px;
    background:radial-gradient(circle, var(--gold) 0%, transparent 70%);
    animation:glowMove 22s ease-in-out infinite;
  }
  .gallery .glow.g2{
    width:480px;height:480px;
    bottom:-160px;right:-120px;
    background:radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
    animation:glowMove 26s ease-in-out infinite reverse;
  }
  @keyframes glowMove{
    0%,100%{transform:translate(0,0) scale(1);}
    50%{transform:translate(60px,40px) scale(1.15);}
  }
  .gallery .section-head,
  .gallery-grid{
    position:relative;
    z-index:1;
  }
  .gallery .section-head h2,
  .gallery .section-head p{color:#fff;}
  .gallery .section-head p{color:var(--muted-light);}
  /* ===== GALLERY MASONRY CAROUSEL ===== */
  .gallery-car-wrap{
    position:relative;
    margin-top:56px;
  }
  .gc-nav{
    position:absolute;
    top:50%;transform:translateY(-50%);
    z-index:10;
    background:rgba(9,8,11,0.78);
    border:1px solid rgba(201,146,26,0.45);
    color:var(--gold);
    width:46px;height:46px;
    border-radius:50%;
    cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    font-size:1.1rem;
    transition:background .2s,border-color .2s;
  }
  .gc-nav:hover{background:rgba(201,146,26,0.15);border-color:var(--gold);}
  .gc-prev{left:-23px;}
  .gc-next{right:-23px;}
  .gallery-carousel{
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
    cursor:grab;
    -webkit-overflow-scrolling:touch;
  }
  .gallery-carousel::-webkit-scrollbar{display:none;}
  .gallery-carousel.gc-dragging{cursor:grabbing;user-select:none;}
  .gc-rows{
    display:flex;
    flex-direction:column;
    gap:12px;
    width:max-content;
  }
  .gc-row{
    display:flex;
    gap:12px;
    height:224px;
  }
  .gallery-item{
    position:relative;
    border-radius:10px;
    overflow:hidden;
    flex-shrink:0;
    cursor:zoom-in;
  }
  .gallery-item img{
    width:100%;height:100%;
    object-fit:cover;
    display:block;
    transition:transform 1s var(--ease),filter 1s var(--ease);
    filter:grayscale(0.3) brightness(0.85);
  }
  .gallery-item:hover img{
    transform:scale(1.07);
    filter:grayscale(0) brightness(1);
  }
  .gallery-item .gcap{
    position:absolute;inset:0;
    display:flex;align-items:flex-end;
    padding:14px;
    background:linear-gradient(180deg,transparent 45%,rgba(8,12,24,0.9));
    opacity:0;
    transition:opacity .4s var(--ease);
  }
  .gallery-item:hover .gcap{opacity:1;}
  .gallery-item .gcap span{
    font-size:0.78rem;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--gold-light);
  }
  /* Width variants */
  .gc-wide{width:354px;}
  .gc-std {width:258px;}
  .gc-tall{width:152px;}

  @media(max-width:900px){
    .gc-row{height:182px;}
    .gc-wide{width:280px;}
    .gc-std {width:200px;}
    .gc-tall{width:118px;}
    .gc-prev{left:-16px;}
    .gc-next{right:-16px;}
  }
  @media(max-width:600px){
    .gc-row{height:150px;}
    .gc-wide{width:216px;}
    .gc-std {width:160px;}
    .gc-tall{width:98px;}
    .gc-nav{display:none;}
    .gallery-item .gcap{opacity:1;background:linear-gradient(180deg,transparent 40%,rgba(8,12,24,0.85));}
  }

  /* ===== LIGHTBOX ===== */
  .lb-overlay{
    position:fixed;inset:0;
    background:rgba(9,8,11,0.96);
    z-index:9000;
    display:flex;align-items:center;justify-content:center;
    opacity:0;visibility:hidden;
    transition:opacity .35s ease,visibility .35s ease;
  }
  .lb-overlay.open{opacity:1;visibility:visible;}
  .lb-inner{
    position:relative;
    display:flex;flex-direction:column;align-items:center;
    max-width:92vw;
  }
  .lb-img{
    max-width:88vw;max-height:80vh;
    object-fit:contain;
    border-radius:4px;
    box-shadow:0 24px 80px rgba(0,0,0,.65);
  }
  .lb-cap{
    margin-top:16px;
    font-family:var(--ff-accent);
    font-size:0.82rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold-light);
  }
  .lb-close{
    position:fixed;top:24px;right:28px;
    background:none;border:none;cursor:pointer;
    color:#fff;font-size:2.2rem;line-height:1;
    opacity:.6;transition:opacity .2s;padding:0;
  }
  .lb-close:hover{opacity:1;}
  .lb-nav{
    position:fixed;top:50%;transform:translateY(-50%);
    background:none;border:2px solid rgba(255,255,255,.18);
    color:#fff;width:48px;height:48px;border-radius:50%;
    cursor:pointer;font-size:1.2rem;
    display:flex;align-items:center;justify-content:center;
    transition:border-color .2s,background .2s;
  }
  .lb-nav:hover{border-color:var(--gold);background:rgba(201,146,26,.15);}
  .lb-prev{left:20px;}
  .lb-next{right:20px;}
  .lb-count{
    position:fixed;bottom:22px;left:50%;transform:translateX(-50%);
    font-size:0.75rem;letter-spacing:2px;color:rgba(255,255,255,.35);
    font-family:var(--ff-body);
  }

  /* ===== EVENTS ===== */
  .events{
    background:var(--emerald);
    color:#fff;
    padding:140px 0;
    position:relative;
    overflow:hidden;
  }
  .events::before{
    content:"𓊪 𓋹 𓅓 𓆣 𓊪 𓋹 𓅓 𓆣 𓊪 𓋹 𓅓 𓆣";
    position:absolute;
    top:-10px;right:-6%;
    font-size:7rem;
    letter-spacing:40px;
    color:rgba(255,255,255,0.04);
    white-space:nowrap;
    pointer-events:none;
  }
  .events-head{
    max-width:680px;
    margin:0 auto 70px;
    text-align:center;
    position:relative;
    z-index:1;
  }
  .events-head .kicker{justify-content:center;color:var(--gold-light);}
  .events-head h2{color:#fff; font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 300; line-height: 1.08;}
  .events-head p{color:var(--muted-light);}
  .events-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:1fr;
    gap:24px;
    position:relative;
    z-index:1;
  }
  .event-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:18px;
    padding:32px 28px;
    transition:transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
  }
  .event-card:not(.event-featured){
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:218px;
  }
  .event-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.07);
    border-color:var(--gold-light);
  }
  .event-icon{
    width:52px;height:52px;
    border-radius:50%;
    background:rgba(196,151,80,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold-light);
    margin-bottom:20px;
  }
  .event-icon svg{width:24px;height:24px;}
  .event-card h3{
    font-size:1.2rem;
    color:#fff;
    margin-bottom:10px;
  }
  .event-card p{
    font-size:0.9rem;
    color:var(--muted-light);
    line-height:1.7;
    margin:0;
  }
  .event-featured{
    grid-column:span 2;
    grid-row:span 2;
    position:relative;
    min-height:460px;
    padding:0;
    overflow:hidden;
  }
  .event-featured:hover{transform:none;border-color:rgba(255,255,255,0.1);}
  .event-featured img{
    position:absolute;
    inset:0;
    width:100%;height:100%;
    object-fit:cover;
    transition:transform 1s var(--ease);
  }
  .event-featured:hover img{transform:scale(1.06);}
  .event-featured .event-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px;
    background:linear-gradient(180deg, rgba(13,19,34,0) 35%, rgba(13,19,34,0.95) 100%);
  }
  .event-featured .event-icon{
    background:rgba(236,212,160,0.18);
    border:1px solid rgba(236,212,160,0.35);
  }
  .event-featured h3{font-size:1.6rem;margin-bottom:12px;}
  .event-featured p{max-width:420px;}
  .event-featured .tag{
    display:inline-flex;
    align-items:center;
    align-self:flex-start;
    padding:6px 16px;
    border-radius:30px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    font-size:0.72rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold-light);
    margin-bottom:16px;
    width:fit-content;
  }
  .events-cta{
    text-align:center;
    margin-top:60px;
    position:relative;
    z-index:1;
  }
  @media (max-width:1100px){
    .events-grid{grid-template-columns:repeat(2,1fr);}
    .event-featured{grid-column:span 2;grid-row:span 1;min-height:340px;}
    .event-card:not(.event-featured){min-height:auto;}
  }
  @media (max-width:600px){
    .events-grid{grid-template-columns:1fr;}
    .event-featured{grid-column:span 1;}
  }

  /* ===== CTA ===== */
  .cta{
    position:relative;
    padding:150px 0;
    text-align:center;
    color:#fff;
    background:linear-gradient(120deg, var(--emerald) 0%, #0b1e26 35%, var(--navy) 65%, var(--emerald-2) 100%);
    background-size:300% 300%;
    animation:gradientShift 20s ease infinite;
    overflow:hidden;
  }
  @keyframes gradientShift{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
  }
  .cta .floaters span{opacity:0.1;}
  .cta-inner{
    position:relative;
    z-index:1;
  }
  .cta h2{
    font-size:clamp(2.4rem,5.5vw,4.2rem);
    margin-bottom:20px;
  }
  .cta h2 em{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    color:var(--gold-light);
  }
  .cta p{
    color:var(--muted-light);
    max-width:520px;
    margin:0 auto 44px;
  }
  .cta-form{
    display:flex;
    justify-content:center;
    gap:14px;
    max-width:480px;
    margin:0 auto;
    flex-wrap:wrap;
  }
  .cta-form input{
    flex:1;
    min-width:220px;
    padding:17px 26px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,0.25);
    background:rgba(255,255,255,0.07);
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:0.9rem;
    outline:none;
    transition:border-color .35s var(--ease), background .35s var(--ease);
  }
  .cta-form input::placeholder{color:rgba(255,255,255,0.5);}
  .cta-form input:focus{
    border-color:var(--gold-light);
    background:rgba(255,255,255,0.12);
  }

  /* ===== FOOTER ===== */
  .footer{
    background:var(--navy);
    color:var(--muted-light);
    padding:90px 0 0;
    position:relative;
    overflow:hidden;
  }
  .footer::before{
    content:"";
    position:absolute;
    top:0;left:0;right:0;
    height:2px;
    background:linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:50px;
    padding-bottom:60px;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
  }
  .footer-logo .logo-img{height:42px;width:auto;display:block;}
  .footer-logo .logo-mark{width:42px;height:42px;font-size:1.1rem;}
  .footer-logo .logo-text{
    font-family:'Playfair Display',serif;
    font-size:1.3rem;
    font-weight:700;
    color:#fff;
  }
  .footer-logo .logo-text span{color:var(--gold-light);}
  .footer-grid > div > p{
    font-size:0.88rem;
    max-width:320px;
    margin-bottom:24px;
    color:var(--muted-light);
  }
  .footer-socials{display:flex;gap:12px;}
  .footer-socials a{
    width:42px;height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.15);
    display:flex;align-items:center;justify-content:center;
    transition:all .4s var(--ease);
    font-size:1rem;
  }
  .footer-socials a:hover{
    background:var(--gold);
    color:var(--navy);
    border-color:var(--gold);
    transform:translateY(-4px) rotate(10deg);
  }
  .footer-grid h5{
    font-size:0.78rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#fff;
    margin-bottom:22px;
    font-weight:600;
  }
  .footer-grid li{
    font-size:0.9rem;
    margin-bottom:13px;
  }
  .footer-grid li a{
    display:inline-block;
    transition:color .3s var(--ease), transform .3s var(--ease);
  }
  .footer-grid li a:hover{
    color:var(--gold-light);
    transform:translateX(6px);
  }
  .footer-grid .contact-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
  }
  .footer-grid .contact-item::before{
    content:"";
    width:6px;height:6px;
    background:var(--gold);
    margin-top:8px;
    flex-shrink:0;
    border-radius:1px;
  }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
    padding:26px 0;
    font-size:0.8rem;
    color:rgba(255,255,255,0.4);
  }
  .footer-bottom .links{display:flex;gap:30px;}
  .footer-bottom .links a{transition:color .3s var(--ease);}
  .footer-bottom .links a:hover{color:var(--gold-light);}

  /* ===== BACK TO TOP ===== */
  .to-top{
    position:fixed;
    bottom:30px;right:30px;
    width:52px;height:52px;
    border-radius:50%;
    background:var(--gold);
    color:var(--navy);
    display:flex;align-items:center;justify-content:center;
    z-index:150;
    opacity:0;
    transform:translateY(20px) scale(.8);
    pointer-events:none;
    transition:opacity .4s var(--ease), transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease);
    box-shadow:0 12px 30px -10px rgba(0,0,0,0.4);
  }
  .to-top.visible{
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
  }
  .to-top:hover{
    background:var(--navy);
    color:var(--gold-light);
  }
  .to-top svg{width:20px;height:20px;}

  @media (max-width:980px){
    .container{padding:0 24px;}
    .nav-toggle{display:flex;}
    .nav-right{
      position:fixed;
      top:0;right:0;
      height:100vh;
      width:min(80%,320px);
      flex-direction:column;
      align-items:stretch;
      justify-content:center;
      gap:32px;
      background:rgba(13,19,34,0.98);
      backdrop-filter:blur(16px);
      padding:100px 36px 60px;
      transform:translateX(100%);
      transition:transform .45s var(--ease);
      z-index:199;
    }
    .nav-right.open{transform:translateX(0);}
    .nav ul{
      flex-direction:column;
      align-items:stretch;
      background:none;
      backdrop-filter:none;
      padding:0;
      gap:8px;
      border-radius:0;
    }
    .nav a:not(.btn){
      font-size:1rem;
      padding:14px 18px;
    }
    .nav .btn{
      width:100%;
      justify-content:center;
    }
    .about-grid, .move-grid{grid-template-columns:1fr;}
    .about-media{margin-bottom:40px;}
    .dest-featured{grid-template-columns:1fr;max-height:none;}
    .dest-featured .img-wrap{height:auto;}
    .dest-grid{grid-template-columns:1fr 1fr;}
    .dest-grid .dest-card:last-child{grid-column:span 2;}
    .stats-grid{grid-template-columns:1fr 1fr;row-gap:40px;}
    .stat{border-right:none;}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:600px){
    .dest-grid{grid-template-columns:1fr;}
    .dest-grid .dest-card:last-child{grid-column:span 1;}
    .stats-grid{grid-template-columns:1fr 1fr;}
    .footer-grid{grid-template-columns:1fr;}
  }

  /* ===== PAGE HERO (Tours / inner pages) ===== */
  .page-hero{
    position:relative;
    min-height:62vh;
    display:flex;
    align-items:flex-end;
    color:#fff;
    overflow:hidden;
    background:var(--navy);
  }
  .page-hero-media{position:absolute;inset:0;z-index:0;}
  .page-hero-media img{width:100%;height:100%;object-fit:cover;}
  .page-hero-media .hero-overlay{
    position:absolute;inset:0;
    background:
      linear-gradient(180deg, rgba(10,14,26,0.35) 0%, rgba(10,14,26,0.6) 55%, rgba(10,14,26,0.94) 100%),
      linear-gradient(90deg, rgba(10,14,26,0.5) 0%, transparent 40%, transparent 60%, rgba(10,14,26,0.5) 100%);
  }
  .page-hero-content{
    position:relative;z-index:1;
    max-width:760px;
    padding:200px 40px 70px;
  }
  .page-hero-content h1{
    font-size:clamp(2.6rem,6vw,4.6rem);
    color:#fff;
    margin-bottom:20px;
  }
  .page-hero-content h1 em{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    color:var(--gold-light);
    font-weight:600;
  }
  .page-hero-content p{
    color:var(--muted-light);
    max-width:560px;
    margin-bottom:32px;
  }
  .breadcrumb{
    display:flex;align-items:center;gap:10px;
    font-size:0.78rem;letter-spacing:2px;text-transform:uppercase;
    color:var(--muted-light);
    margin-bottom:24px;
  }
  .breadcrumb a{color:var(--muted-light);transition:color .3s var(--ease);}
  .breadcrumb a:hover{color:var(--gold-light);}
  .breadcrumb span:last-child{color:var(--gold-light);}

  .hero-jump{
    display:flex;flex-wrap:wrap;gap:10px;
  }
  .hero-jump a{
    padding:10px 22px;
    border:1px solid rgba(255,255,255,0.22);
    border-radius:30px;
    font-size:0.78rem;
    letter-spacing:1px;
    color:#fff;
    transition:all .35s var(--ease);
  }
  .hero-jump a:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--navy);
  }

  /* ===== TOURS INTRO ===== */
  .tours-intro{
    background:var(--sand);
    padding:120px 0 60px;
  }
  .intro-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .intro-chip{
    background:#fff;
    border-radius:14px;
    padding:34px 28px;
    text-align:center;
    box-shadow:0 20px 50px -35px rgba(20,25,40,0.25);
    transition:transform .5s var(--ease), box-shadow .5s var(--ease);
  }
  .intro-chip:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px -30px rgba(20,25,40,0.3);
  }
  .intro-chip .glyph{
    display:inline-flex;
    width:54px;height:54px;
    align-items:center;justify-content:center;
    border-radius:50%;
    background:rgba(214,173,96,0.14);
    color:var(--terracotta);
    font-size:1.4rem;
    margin-bottom:16px;
  }
  .intro-chip h4{
    font-size:1.1rem;
    color:var(--navy);
    margin-bottom:8px;
  }
  .intro-chip p{
    font-size:0.85rem;
    color:var(--muted);
  }

  /* ===== TOUR LIST ===== */
  .tour-list{
    background:var(--sand);
    padding:60px 0 140px;
  }
  .tour-card{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:40px;
    box-shadow:0 30px 70px -35px rgba(20,25,40,0.2);
  }
  .tour-card.reverse{
    grid-template-columns:1fr 1.1fr;
  }
  .tour-card.reverse .img-wrap{order:2;}
  .tour-card .img-wrap{
    position:relative;
    overflow:hidden;
    min-height:380px;
  }
  .tour-card .img-wrap img{transition:transform 1.1s var(--ease);}
  .tour-card:hover .img-wrap img{transform:scale(1.06);}
  .tour-card .img-wrap .pill{
    position:absolute;
    top:24px;left:24px;
    background:rgba(255,255,255,0.92);
    color:var(--navy);
    font-size:0.7rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    padding:9px 18px;
    border-radius:30px;
  }
  .tour-card .content{
    padding:48px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .tour-card .content h3{
    font-size:clamp(1.7rem,2.8vw,2.2rem);
    color:var(--navy);
    margin-bottom:14px;
  }
  .tour-card .content h3 a{
    color:inherit;
    text-decoration:none;
    transition:color .3s var(--ease);
  }
  .tour-card .content h3 a:hover{color:var(--terracotta);}
  .tour-card .content > p{
    color:var(--muted);
    font-size:0.92rem;
    margin-bottom:24px;
    max-width:460px;
  }

  .tour-facts{
    display:grid;
    grid-template-columns:repeat(4,auto);
    gap:24px;
    margin-bottom:26px;
  }
  .tour-facts div strong{
    display:block;
    font-family:'Playfair Display',serif;
    font-size:1.3rem;
    color:var(--terracotta);
  }
  .tour-facts div span{
    font-size:0.7rem;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--muted);
  }

  .tour-highlights{
    display:grid;
    gap:10px;
    margin-bottom:26px;
  }
  .tour-highlights li{
    position:relative;
    padding-left:26px;
    font-size:0.88rem;
    color:var(--ink);
  }
  .tour-highlights li::before{
    content:"✦";
    position:absolute;
    left:0;top:0;
    color:var(--gold);
    font-size:0.8rem;
  }

  /* ---- itinerary / FAQ accordions ---- */
  .tour-details{
    border-top:1px solid rgba(140,133,118,0.18);
    border-bottom:1px solid rgba(140,133,118,0.18);
    margin-bottom:26px;
  }
  .tour-details summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px 0;
    font-size:0.78rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--navy);
  }
  .tour-details summary::-webkit-details-marker{display:none;}
  .tour-details .chevron{
    width:18px;height:18px;
    color:var(--terracotta);
    transition:transform .35s var(--ease);
    flex-shrink:0;
  }
  .tour-details[open] summary .chevron{transform:rotate(180deg);}
  .tour-details-body{
    padding-bottom:28px;
  }

  .itinerary{
    display:grid;
    gap:18px;
    margin-bottom:28px;
  }
  .itinerary-day{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:18px;
  }
  .itinerary-day .day-no{
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:0.85rem;
    color:var(--gold);
    padding-top:2px;
  }
  .itinerary-day h4{
    font-size:0.98rem;
    color:var(--navy);
    margin-bottom:4px;
    font-family:'Poppins',sans-serif;
    font-weight:600;
  }
  .itinerary-day p{
    font-size:0.85rem;
    color:var(--muted);
  }

  .includes-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding-top:20px;
    border-top:1px solid rgba(140,133,118,0.14);
  }
  .includes-col h5{
    font-size:0.75rem;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
  }
  .includes-col.includes h5{color:var(--teal);}
  .includes-col.excludes h5{color:var(--terracotta);}
  .includes-col ul{display:grid;gap:8px;}
  .includes-col li{
    font-size:0.84rem;
    color:var(--muted);
    padding-left:22px;
    position:relative;
  }
  .includes-col.includes li::before{
    content:"✓";
    position:absolute;left:0;top:0;
    color:var(--teal);
    font-weight:700;
  }
  .includes-col.excludes li::before{
    content:"✕";
    position:absolute;left:0;top:0;
    color:var(--terracotta);
    font-weight:700;
    font-size:0.75rem;
  }

  .tour-actions{display:flex;gap:14px;flex-wrap:wrap;}

  /* ===== CUSTOM JOURNEY CTA ===== */
  .custom-cta{
    background:var(--navy);
    padding:100px 0;
    position:relative;
    overflow:hidden;
  }
  .custom-cta::before{
    content:"𓂀";
    position:absolute;
    top:-10%;right:-4%;
    font-size:clamp(10rem,18vw,18rem);
    line-height:1;
    color:rgba(255,255,255,0.04);
    pointer-events:none;
  }
  .custom-cta-box{
    max-width:680px;
    margin:0 auto;
    text-align:center;
    position:relative;
    z-index:1;
  }
  .custom-cta-box h2{
    font-size:clamp(2.2rem,4.2vw,3.2rem);
    color:#fff;
    margin:6px 0 18px;
  }
  .custom-cta-box p{
    color:var(--muted-light);
    margin-bottom:36px;
  }

  /* ===== FAQ ===== */
  .faq{
    background:var(--sand);
    padding:120px 0 140px;
  }
  .faq-list{
    max-width:760px;
    margin:0 auto;
    display:grid;
    gap:14px;
  }
  .faq-item{
    background:#fff;
    border-radius:14px;
    padding:6px 30px;
    box-shadow:0 15px 40px -30px rgba(20,25,40,0.2);
  }
  .faq-item summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:22px 0;
    font-family:'Playfair Display',serif;
    font-size:1.05rem;
    color:var(--navy);
  }
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item .chevron{
    width:18px;height:18px;
    color:var(--terracotta);
    transition:transform .35s var(--ease);
    flex-shrink:0;
  }
  .faq-item[open] summary .chevron{transform:rotate(180deg);}
  .faq-a{padding-bottom:24px;}
  .faq-a p{
    font-size:0.92rem;
    color:var(--muted);
    max-width:640px;
  }

  /* ===== TOURS PAGE RESPONSIVE ===== */
  @media (max-width:980px){
    .tour-card, .tour-card.reverse{grid-template-columns:1fr;}
    .tour-card .img-wrap, .tour-card.reverse .img-wrap{order:0;min-height:280px;}
    .tour-card .content{padding:34px;}
    .intro-grid{grid-template-columns:1fr 1fr;}
    .includes-grid{grid-template-columns:1fr;gap:20px;}
    .page-hero-content{padding:160px 24px 60px;}
  }
  @media (max-width:600px){
    .intro-grid{grid-template-columns:1fr;}
    .tour-facts{grid-template-columns:1fr 1fr;}
    .page-hero-content{padding-left:24px;padding-right:24px;}
    .page-hero-content h1{font-size:2.2rem;}
    .tour-card .content{padding:26px;}
  }

  /* ===== TOUR DETAIL PAGE ===== */
  .tour-hero{
    position:relative;
    min-height:84vh;
    display:flex;
    align-items:flex-end;
    color:#fff;
    overflow:hidden;
    background:var(--navy);
  }
  .tour-hero-content{
    position:relative;z-index:1;
    width:100%;
    padding:200px 40px 0;
  }
  .tour-hero-content h1{
    font-size:clamp(2.6rem,6vw,4.8rem);
    color:#fff;
    margin-bottom:18px;
    max-width:820px;
  }
  .tour-hero-content h1 em{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    color:var(--gold-light);
    font-weight:600;
  }
  .tour-hero-content .tagline{
    color:var(--muted-light);
    max-width:600px;
    margin-bottom:36px;
    font-size:1.02rem;
  }
  .hero-cta-row{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:48px;
  }

  .hero-stats{
    display:flex;
    flex-wrap:wrap;
    border-top:1px solid rgba(255,255,255,0.18);
  }
  .hero-stats div{
    flex:1;
    min-width:140px;
    padding:24px 0 36px;
    border-right:1px solid rgba(255,255,255,0.18);
    padding-right:28px;
  }
  .hero-stats div:not(:first-child){padding-left:28px;}
  .hero-stats div:last-child{border-right:none;}
  .hero-stats strong{
    display:block;
    font-family:'Playfair Display',serif;
    font-size:1.6rem;
    color:var(--gold-light);
    margin-bottom:4px;
  }
  .hero-stats span{
    font-size:0.7rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--muted-light);
  }

  /* ---- main layout: content + sticky trip card ---- */
  .tour-body{
    background:var(--sand);
    padding:110px 0 0;
  }
  .tour-grid{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:60px;
    align-items:start;
  }
  .tour-main{
    display:flex;
    flex-direction:column;
    gap:110px;
    padding-bottom:120px;
    min-width:0;
  }
  .tour-sidebar{position:sticky;top:118px;}

  /* ---- trip card ---- */
  .trip-card{
    background:#fff;
    border-radius:18px;
    padding:36px 32px;
    box-shadow:0 30px 70px -35px rgba(20,25,40,0.2);
  }
  .trip-card .trip-kicker{
    font-size:0.7rem;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--muted);
    margin-bottom:6px;
  }
  .trip-card .price{
    font-family:'Playfair Display',serif;
    font-size:2.3rem;
    color:var(--terracotta);
    margin-bottom:28px;
  }
  .trip-card .price span{
    display:block;
    font-size:0.7rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--muted);
    font-family:'Poppins',sans-serif;
    font-weight:600;
    margin-top:4px;
  }
  .trip-facts{
    display:grid;
    gap:14px;
    margin-bottom:28px;
    padding-bottom:28px;
    border-bottom:1px solid rgba(140,133,118,0.16);
  }
  .trip-facts div{
    display:flex;
    justify-content:space-between;
    gap:16px;
    font-size:0.84rem;
  }
  .trip-facts dt,
  .trip-facts div .label{color:var(--muted);}
  .trip-facts div .value{
    color:var(--navy);
    font-weight:600;
    text-align:right;
  }
  .trip-card .btn{width:100%;justify-content:center;}
  .trip-note{
    margin-top:18px;
    font-size:0.78rem;
    color:var(--muted);
    text-align:center;
  }
  .trip-note a{color:var(--terracotta);text-decoration:underline;}

  /* ---- overview ---- */
  .tour-overview{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:60px;
    align-items:start;
  }
  .tour-overview p{color:var(--muted);margin-bottom:16px;max-width:560px;}
  .highlight-chips{display:grid;gap:12px;align-content:start;}
  .highlight-chips li{
    display:flex;
    gap:14px;
    align-items:flex-start;
    background:#fff;
    border-radius:12px;
    padding:16px 20px;
    font-size:0.86rem;
    color:var(--ink);
    box-shadow:0 12px 30px -25px rgba(20,25,40,0.25);
  }
  .highlight-chips li::before{
    content:"✦";
    color:var(--gold);
    flex-shrink:0;
  }

  /* ---- creative gallery slider ---- */
  .tour-gallery-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:30px;
    flex-wrap:wrap;
  }
  .gallery-nav{display:flex;gap:12px;}
  .gallery-nav button{
    width:48px;height:48px;
    border-radius:50%;
    border:1px solid rgba(140,133,118,0.25);
    background:#fff;
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;
    color:var(--navy);
    transition:all .35s var(--ease);
    flex-shrink:0;
  }
  .gallery-nav button svg{width:18px;height:18px;}
  .gallery-nav button:hover{background:var(--navy);color:var(--gold-light);border-color:var(--navy);}

  .gallery-track{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding-bottom:4px;
    margin:0 -40px;
    padding-left:40px;
    padding-right:40px;
  }
  .gallery-track::-webkit-scrollbar{display:none;}
  .gallery-slide{
    position:relative;
    flex:0 0 80%;
    aspect-ratio:4/3;
    border-radius:18px;
    overflow:hidden;
    scroll-snap-align:start;
  }
  .gallery-slide:nth-child(2n){
    flex:0 0 60%;
    aspect-ratio:3/4;
    align-self:flex-end;
  }
  .gallery-slide img{transition:transform 1s var(--ease);}
  .gallery-slide:hover img{transform:scale(1.06);}
  .gallery-caption{
    position:absolute;left:0;right:0;bottom:0;
    padding:22px 24px;
    background:linear-gradient(0deg, rgba(13,19,34,.85) 0%, transparent 100%);
    color:#fff;
  }
  .gallery-caption span{
    display:block;
    font-size:0.68rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold-light);
    margin-bottom:4px;
  }
  .gallery-caption p{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-size:1.1rem;
    margin:0;
  }

  /* ---- itinerary timeline ---- */
  .timeline{
    position:relative;
    display:grid;
    gap:46px;
  }
  .timeline::before{
    content:"";
    position:absolute;
    left:29px;top:8px;bottom:8px;
    width:1px;
    background:rgba(140,133,118,0.25);
  }
  .timeline-item{
    display:grid;
    grid-template-columns:60px 1fr;
    gap:26px;
    position:relative;
  }
  .timeline-marker{
    width:60px;height:60px;
    border-radius:50%;
    background:var(--navy);
    color:var(--gold-light);
    display:flex;align-items:center;justify-content:center;
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:0.85rem;
    text-align:center;
    line-height:1.1;
    flex-shrink:0;
    z-index:1;
  }
  .timeline-card h4{
    color:var(--navy);
    margin-bottom:8px;
    font-size:1.18rem;
    padding-top:10px;
  }
  .timeline-card p{
    color:var(--muted);
    font-size:0.92rem;
    max-width:640px;
  }

  /* ---- includes / excludes (reuse includes-grid, scoped wrapper) ---- */
  .tour-includes .includes-grid{
    border-top:none;
    padding-top:0;
  }

  /* ---- optional add-ons / excursions ---- */
  .addons-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
  }
  .addon-card{
    background:#fff;
    border-radius:14px;
    padding:30px 28px;
    box-shadow:0 15px 40px -30px rgba(20,25,40,0.2);
    transition:transform .5s var(--ease), box-shadow .5s var(--ease);
  }
  .addon-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 50px -28px rgba(20,25,40,0.3);
  }
  .addon-card .glyph{
    display:inline-flex;
    width:50px;height:50px;
    align-items:center;justify-content:center;
    border-radius:50%;
    background:rgba(214,173,96,0.14);
    color:var(--terracotta);
    font-size:1.3rem;
    margin-bottom:16px;
  }
  .addon-card h4{
    font-size:1.02rem;
    color:var(--navy);
    margin-bottom:8px;
  }
  .addon-card p{font-size:0.85rem;color:var(--muted);}

  /* ---- related tours ---- */
  .related-tours{
    background:var(--navy);
    padding:110px 0;
    position:relative;
    overflow:hidden;
  }
  .related-tours::before{
    content:"𓆑";
    position:absolute;
    top:-12%;left:-4%;
    font-size:clamp(10rem,18vw,18rem);
    line-height:1;
    color:rgba(255,255,255,0.04);
    pointer-events:none;
  }
  .related-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:50px;
    flex-wrap:wrap;
    position:relative;z-index:1;
  }
  .related-head h2{
    font-size:clamp(2rem,3.6vw,2.8rem);
    color:#fff;
  }
  .related-head a{
    font-size:0.78rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold-light);
    border-bottom:1px solid rgba(236,212,160,0.4);
    padding-bottom:4px;
    transition:color .3s var(--ease), border-color .3s var(--ease);
  }
  .related-head a:hover{color:#fff;border-color:#fff;}
  .related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    position:relative;z-index:1;
  }
  .related-card{
    position:relative;
    border-radius:14px;
    overflow:hidden;
    aspect-ratio:4/5;
    display:block;
  }
  .related-card img{transition:transform .9s var(--ease);}
  .related-card:hover img{transform:scale(1.08);}
  .related-card .overlay{
    position:absolute;inset:0;
    background:linear-gradient(0deg, rgba(13,19,34,.9) 0%, rgba(13,19,34,.15) 60%);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:24px;
    color:#fff;
  }
  .related-card .tag{
    font-size:0.68rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold-light);
    margin-bottom:6px;
  }
  .related-card h4{font-size:1.25rem;}

  /* ---- responsive ---- */
  @media (max-width:980px){
    .tour-hero{min-height:auto;}
    .tour-hero-content{padding:160px 24px 50px;}
    .hero-stats div{min-width:50%;padding-bottom:24px;}
    .hero-stats div:nth-child(odd){padding-left:0;}
    .tour-grid{grid-template-columns:1fr;}
    .tour-sidebar{position:static;}
    .tour-main{gap:90px;}
    .tour-overview{grid-template-columns:1fr;gap:36px;}
    .addons-grid{grid-template-columns:1fr 1fr;}
    .related-grid{grid-template-columns:1fr 1fr;}
    .gallery-track{margin:0 -24px;padding-left:24px;padding-right:24px;}
  }
  @media (max-width:600px){
    .tour-hero-content h1{font-size:2.1rem;}
    .hero-stats{flex-direction:column;}
    .hero-stats div{
      border-right:none;
      border-bottom:1px solid rgba(255,255,255,0.18);
      padding:20px 0;
    }
    .hero-stats div:not(:first-child){padding-left:0;}
    .hero-stats div:last-child{border-bottom:none;}
    .addons-grid{grid-template-columns:1fr;}
    .related-grid{grid-template-columns:1fr;}
    .gallery-slide, .gallery-slide:nth-child(2n){
      flex:0 0 86%;
      aspect-ratio:4/3;
      align-self:auto;
    }
    .timeline-marker{width:48px;height:48px;font-size:0.75rem;}
    .timeline-item{grid-template-columns:48px 1fr;gap:16px;}
    .timeline::before{left:23px;}
  }

  /* ===== ABOUT PAGE: VALUES ===== */
  .values-section{
    padding:120px 0;
    background:#fff;
  }
  .values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  .value-card{
    padding:36px 28px;
    border-radius:14px;
    border:1px solid rgba(20,25,40,0.08);
    transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  }
  .value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px -35px rgba(20,25,40,0.25);
    border-color:transparent;
  }
  .value-card .diff-icon{margin-bottom:22px;}
  .value-card h3{
    font-family:'Playfair Display',serif;
    font-size:1.3rem;
    color:var(--navy);
    margin-bottom:10px;
  }
  .value-card p{
    font-size:0.92rem;
    color:var(--muted);
  }

  /* ===== ABOUT PAGE: TEAM / EXPERTISE ===== */
  .team-section{
    padding:120px 0;
    background:var(--sand);
  }
  .team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
  }
  .team-card{
    background:#fff;
    border-radius:16px;
    padding:44px 32px;
    text-align:center;
    box-shadow:0 25px 60px -40px rgba(20,25,40,0.25);
    transition:transform .5s var(--ease);
  }
  .team-card:hover{transform:translateY(-6px);}
  .team-avatar{
    width:80px;height:80px;
    border-radius:50%;
    background:var(--navy);
    color:var(--gold-light);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 22px;
  }
  .team-avatar svg{width:34px;height:34px;}
  .team-card h3{
    font-family:'Playfair Display',serif;
    font-size:1.2rem;
    color:var(--navy);
    margin-bottom:4px;
  }
  .team-card .role{
    display:block;
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-size:0.95rem;
    color:var(--terracotta);
    margin-bottom:14px;
  }
  .team-card p{
    font-size:0.88rem;
    color:var(--muted);
  }

  /* ===== ABOUT PAGE: FINAL CTA BUTTONS ===== */
  .cta .hero-cta-row{
    justify-content:center;
    margin-bottom:0;
  }

  /* ===== CONTACT PAGE ===== */
  .contact-section{
    padding:120px 0 140px;
    background:var(--sand);
  }
  .contact-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:60px;
    align-items:start;
  }
  .contact-info-list{
    display:flex;
    flex-direction:column;
    gap:20px;
  }
  .contact-card{
    display:flex;
    gap:18px;
    align-items:flex-start;
    background:#fff;
    border-radius:14px;
    padding:28px 30px;
    box-shadow:0 20px 50px -35px rgba(20,25,40,0.2);
  }
  .contact-card .icon{
    width:48px;height:48px;
    border-radius:50%;
    background:rgba(214,173,96,0.14);
    color:var(--terracotta);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .contact-card .icon svg{width:22px;height:22px;}
  .contact-card h4{
    font-family:'Poppins',sans-serif;
    font-size:1rem;
    font-weight:600;
    color:var(--navy);
    margin-bottom:6px;
  }
  .contact-card p{
    font-size:0.9rem;
    color:var(--muted);
    line-height:1.6;
  }
  .contact-card a{color:var(--muted);transition:color .3s var(--ease);}
  .contact-card a:hover{color:var(--terracotta);}

  .contact-form-wrap{
    background:#fff;
    border-radius:18px;
    padding:50px;
    box-shadow:0 30px 70px -40px rgba(20,25,40,0.25);
  }
  .contact-form-wrap h3{
    font-size:1.6rem;
    color:var(--navy);
    margin-bottom:8px;
  }
  .contact-form-wrap > p{
    color:var(--muted);
    font-size:0.92rem;
    margin-bottom:32px;
  }
  .form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
  }
  .form-group{
    margin-bottom:22px;
  }
  .form-group label{
    display:block;
    font-size:0.78rem;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--navy);
    font-weight:600;
    margin-bottom:8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea{
    width:100%;
    padding:15px 18px;
    border-radius:10px;
    border:1px solid rgba(20,25,40,0.12);
    background:var(--sand);
    font-family:'Poppins',sans-serif;
    font-size:0.92rem;
    color:var(--ink);
    transition:border-color .3s var(--ease), background .3s var(--ease);
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus{
    outline:none;
    border-color:var(--terracotta);
    background:#fff;
  }
  .form-group textarea{
    resize:vertical;
    min-height:140px;
  }
  .contact-form-wrap .btn{width:100%;justify-content:center;}

  /* ===== RESPONSIVE: ABOUT / CONTACT ===== */
  @media (max-width:980px){
    .values-grid{grid-template-columns:1fr 1fr;}
    .team-grid{grid-template-columns:1fr;}
    .contact-grid{grid-template-columns:1fr;}
  }
  @media (max-width:600px){
    .values-grid{grid-template-columns:1fr;}
    .form-row{grid-template-columns:1fr;}
    .contact-form-wrap{padding:34px 26px;}
  }

  /* ===== LEGAL / POLICY PAGES ===== */
  .page-hero-sm{min-height:42vh;}
  .page-hero-sm .page-hero-content{padding:170px 40px 50px;}

  .legal-section{
    background:var(--sand);
    padding:100px 0 140px;
  }
  .legal-wrap{
    max-width:760px;
    margin:0 auto;
    background:#fff;
    border-radius:20px;
    padding:60px;
    box-shadow:0 20px 60px rgba(13,19,34,0.06);
  }
  .legal-updated{
    display:block;
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-size:1.05rem;
    color:var(--muted);
    margin-bottom:40px;
  }
  .legal-wrap h2{
    font-family:'Playfair Display',serif;
    font-size:1.5rem;
    color:var(--navy);
    margin:40px 0 16px;
  }
  .legal-wrap h2:first-of-type{margin-top:0;}
  .legal-wrap h3{
    font-family:'Poppins',sans-serif;
    font-size:1.05rem;
    font-weight:600;
    color:var(--navy);
    margin:24px 0 10px;
  }
  .legal-wrap p{
    color:var(--ink);
    margin-bottom:16px;
  }
  .legal-wrap ul{
    margin:0 0 16px 0;
    padding-left:22px;
    display:grid;
    gap:8px;
  }
  .legal-wrap li{color:var(--ink);}
  .legal-wrap a{color:var(--terracotta);text-decoration:underline;}
  .legal-wrap strong{color:var(--navy);}
  .legal-wrap hr{
    border:none;
    border-top:1px solid var(--sand-2);
    margin:40px 0;
  }

  @media (max-width:600px){
    .legal-wrap{padding:36px 24px;}
    .page-hero-sm{min-height:34vh;}
    .page-hero-sm .page-hero-content{padding-left:24px;padding-right:24px;}
  }

/* ============================================================
   HERO SCROLL — Goonies-style scroll-scrub video hero
   ============================================================ */

/* Scroll container: height controls how long the user spends
   in the hero before the rest of the page scrolls into view.
   900vh ≈ 150vh per destination — slow, cinematic pace  */
.hero-scroll {
  position: relative;
  height: 900vh;
}

/* Sticky panel that stays fullscreen while parent scrolls */
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* Video fills frame */
.hero-sticky video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Cinematic vignette overlay */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(13,19,34,0.45) 0%,
      transparent 25%,
      transparent 55%,
      rgba(13,19,34,0.75) 100%);
}

/* ---- Destination labels ---- */
.hero-labels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hl {
  position: absolute;
  bottom: 108px;
  left: clamp(28px, 6vw, 90px);
  right: clamp(80px, 14vw, 200px);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(.16,1,.3,1),
    transform 0.55s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.hl.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hl-kicker {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: #f5e8b8;   /* bright warm gold — readable on any video frame */
  text-shadow: 0 2px 14px rgba(0,0,0,0.75), 0 0 40px rgba(0,0,0,0.5);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.hl-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
  margin: 0 0 28px;
}
.hl-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* CTA inside the last label */
.hl-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s 0.25s cubic-bezier(.16,1,.3,1),
    transform 0.5s 0.25s cubic-bezier(.16,1,.3,1);
}
.hl-last.active .hl-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Right-side destination dots ---- */
.hero-dots {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: 1.5px solid rgba(255,255,255,0.4);
  transition:
    background 0.4s ease,
    transform 0.4s ease,
    border-color 0.4s ease;
  cursor: default;
}
.hd.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.55);
}

/* ---- Bottom progress bar ---- */
.hero-pbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 3;
}
#heroPBarFill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.08s linear;
  will-change: width;
}

/* ---- Scroll cue ---- */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.5s ease;
}
.hero-scroll-cue.hidden {
  opacity: 0;
  pointer-events: none;
}
/* reuse existing .mouse styles if present; define fallback */
.hero-scroll-cue .mouse {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 10px;
  position: relative;
}
.hero-scroll-cue .mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: mouseScroll 1.4s ease infinite;
}
@keyframes mouseScroll {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   DESTINATIONS SHOWCASE — Feature Carousel
   ============================================================ */

.dest-showcase {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

/* Section header */
.fc-header {
  max-width: 680px;
  margin: 0 auto;
  padding: 88px 40px 52px;
  text-align: center;
}
.fc-header .kicker {
  margin-bottom: 16px;
}
.fc-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--sand);
  margin: 0 0 16px;
  line-height: 1.08;
}
.fc-header h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.fc-header p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--muted-light);
  line-height: 1.7;
  margin: 0;
}

/* Main carousel container */
.fc-carousel {
  position: relative;
  height: 74vh;
  min-height: 540px;
  display: flex;
  overflow: hidden;
  margin: 0 48px 80px;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}

/* Stacked background images (cross-fade) */
.fc-bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1);
}
.fc-bg.is-active {
  opacity: 1;
}

/* Gradient vignette — heavier on left for rail legibility */
.fc-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(9,8,11,0.97) 0%,
    rgba(9,8,11,0.78) 25%,
    rgba(9,8,11,0.38) 58%,
    rgba(9,8,11,0.62) 100%
  );
}

/* Left navigation rail */
.fc-rail {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 40px 0 40px 52px;
  flex-shrink: 0;
  width: 268px;
}

.fc-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  border-left: 2px solid rgba(255,255,255,0.07);
  cursor: pointer;
  padding: 11px 0 11px 16px;
  text-align: left;
  position: relative;
  transition: border-color 0.3s ease;
}
.fc-btn::after {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}
.fc-btn.is-active {
  border-color: transparent;
}
.fc-btn.is-active::after {
  transform: scaleY(1);
}

.fc-num {
  display: none;
}
.fc-btn.is-active .fc-num,
.fc-btn:hover .fc-num {
  color: var(--gold);
}

.fc-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.fc-btn.is-active .fc-label {
  color: rgba(255,255,255,0.90);
  font-weight: 500;
}
.fc-btn:hover .fc-label {
  color: rgba(255,255,255,0.60);
}

/* Content panels */
.fc-panels {
  position: relative;
  z-index: 2;
  flex: 1;
}

.fc-panel {
  position: absolute;
  bottom: 60px;
  left: 44px;
  right: 60px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}
.fc-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fc-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.fc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
}
.fc-title em {
  font-style: italic;
  color: var(--gold-light);
}

.fc-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.70);
  max-width: 500px;
  margin: 0 0 18px;
}

.fc-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.fc-marks li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-warm);
  background: rgba(201,146,26,0.10);
  border: 1px solid rgba(201,146,26,0.26);
  border-radius: 3px;
  padding: 5px 11px;
}

.fc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,194,90,0.38);
  padding-bottom: 2px;
  transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.fc-cta:hover {
  gap: 14px;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.fc-cta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Auto-advance progress bar */
.fc-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.07);
  z-index: 3;
}
.fc-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .fc-carousel {
    flex-direction: column;
    height: auto;
    min-height: 600px;
  }
  .fc-rail {
    flex-direction: row;
    width: 100%;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .fc-rail::-webkit-scrollbar {
    display: none;
  }
  .fc-btn {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-left: none;
    border-bottom: 2px solid rgba(255,255,255,0.07);
    padding: 16px 18px 14px;
    flex-shrink: 0;
  }
  .fc-btn::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: -2px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .fc-btn.is-active::after {
    transform: scaleX(1);
  }
  .fc-panel {
    bottom: 36px;
    left: 24px;
    right: 24px;
  }
  .fc-vignette {
    background: linear-gradient(
      to bottom,
      rgba(9,8,11,0.45) 0%,
      rgba(9,8,11,0.35) 35%,
      rgba(9,8,11,0.88) 72%,
      rgba(9,8,11,0.97) 100%
    );
  }
}

@media (max-width: 560px) {
  .fc-header {
    padding: 60px 24px 36px;
  }
  .fc-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }
  .fc-marks {
    display: none;
  }
  .fc-desc {
    font-size: 0.82rem;
  }
}

/* ---- Tours mega menu (2-col, wider) ---- */
.tours-mega { width: 860px; }
.tours-mega-grid { grid-template-columns: repeat(2,1fr) !important; }
@media(max-width:1024px){ .tours-mega { width:calc(100vw - 48px); } }
@media(max-width:768px){ .tours-mega-grid { grid-template-columns:1fr !important; } }

/* ================================================================
   TOURS SHOWCASE — FocusRail 3D perspective carousel
   ================================================================ */
.tours-showcase {
  padding: 100px 0 120px;
  position: relative;
  background: var(--navy);
}

.tours-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
}
.tours-showcase-head h2 { margin-bottom: 12px; color: #fff; }
.tours-showcase-head p { color: rgba(255,255,255,0.55); max-width: 500px; margin-top: 8px; }

/* Focus Rail container */
.focus-rail {
  position: relative;
  height: 580px;
  overflow: hidden;
  border-radius: 24px;
  background: #080808;
  outline: none;
  user-select: none;
  cursor: grab;
}
.focus-rail:active { cursor: grabbing; }

/* Ambient background (cross-fade pair) */
.fr-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.fr-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(60px) saturate(180%);
  opacity: 0;
  transition: opacity 0.9s ease;
}
.fr-bg-img.fr-active { opacity: 0.4; }
.fr-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(8,8,8,1) 0%, rgba(8,8,8,0.65) 30%, transparent 55%),
    linear-gradient(to bottom, rgba(8,8,8,0.55) 0%, transparent 25%),
    linear-gradient(to right, rgba(8,8,8,0.7) 0%, transparent 18%),
    linear-gradient(to left,  rgba(8,8,8,0.7) 0%, transparent 18%);
}

/* 3D card stage */
.fr-stage {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  z-index: 10;
  pointer-events: none;
}

/* Cards */
.fr-card {
  position: absolute;
  width: 230px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: #1a1a1a;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  transition:
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity  0.6s ease,
    filter   0.6s ease,
    box-shadow 0.6s ease,
    border-color 0.4s ease;
  transform-style: preserve-3d;
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.fr-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.fr-card-gloss {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.09) 0%, transparent 55%);
  pointer-events: none;
}
.fr-card.is-center {
  border-color: rgba(201,146,26,0.30);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,146,26,0.18);
  cursor: default;
}

/* Bottom info + controls strip */
.fr-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 40px 32px;
  pointer-events: none;
}
.fr-bottom > * { pointer-events: auto; }

.fr-info { flex: 1; }
.fr-meta {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
  transition: opacity 0.25s ease;
}
.fr-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 7px;
  transition: opacity 0.25s ease;
}
.fr-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  max-width: 360px;
  line-height: 1.6;
  margin: 0;
  transition: opacity 0.25s ease;
}
.fr-info.fading .fr-meta,
.fr-info.fading .fr-title,
.fr-info.fading .fr-desc { opacity: 0; }

.fr-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.fr-nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.fr-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.fr-nav-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.fr-nav-btn svg { width: 17px; height: 17px; }
.fr-counter {
  min-width: 44px;
  text-align: center;
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
}
.fr-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.fr-explore-btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(0,0,0,0.45); }
.fr-explore-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 900px) {
  .tours-showcase-head { flex-direction: column; align-items: flex-start; }
  .focus-rail { height: 520px; }
  .fr-stage { height: 360px; }
  .fr-card { width: 190px; }
  .fr-bottom { flex-direction: column; align-items: flex-start; padding: 20px 24px 24px; gap: 16px; }
}
@media (max-width: 560px) {
  .focus-rail { height: 460px; }
  .fr-stage { height: 300px; }
  .fr-card { width: 155px; }
  .fr-desc { display: none; }
  .fr-explore-btn { padding: 8px 16px; }
}

/* Mobile hero — autoplay single viewport; hide scroll-scrub UI */
@media (max-width: 768px) {
  .hero-scroll { height: 100vh; }
  .hero-sticky video { object-position: center center; }
  .hero-dots, .hero-pbar, .hero-scroll-cue { display: none; }
  /* Disable all scroll-reveal animations on mobile — show content immediately */
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ============================================================
   OUR TOURS CAROUSEL
   ============================================================ */
.our-tours {
  background: var(--obsidian);
  padding: 5rem 0 4rem;
}
.ot-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.ot-header h2 { margin-bottom: 0.5rem; color: var(--sand); font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 300; line-height: 1.08; }
.ot-header p { color: var(--muted-light); font-size: 0.95rem; }
.ot-nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-left: auto;
}
.ot-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,146,26,0.35);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.ot-arrow:hover {
  background: rgba(201,146,26,0.12);
  border-color: var(--gold-light);
}
.ot-arrow svg { width: 18px; height: 18px; }
.ot-view-all {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  margin-left: 0.6rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.ot-view-all:hover { color: #fff; }

/* Rail */
.ot-rail-wrap {
  overflow: hidden;
  position: relative;
}
.ot-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
  cursor: grab;
}
.ot-rail::-webkit-scrollbar { display: none; }
.ot-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }

/* Cards */
.ot-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #131313;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.ot-card:hover {
  border-color: rgba(201,146,26,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.ot-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ot-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ot-card:hover .ot-card-img-wrap img {
  transform: scale(1.06);
}
.ot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(5,5,5,0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.ot-badge-gold {
  background: rgba(201,146,26,0.9);
  color: #000;
}
.ot-card-body {
  padding: 1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
}
.ot-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.ot-card-meta {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.ot-card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.74rem;
}
.ot-stars { color: var(--gold-light); letter-spacing: -1px; font-size: 0.7rem; }
.ot-rating-val { color: #fff; font-weight: 600; }
.ot-review-count { color: rgba(255,255,255,0.4); }
.ot-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ot-price {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.ot-price strong {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
}
.ot-explore {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.ot-card:hover .ot-explore { color: #fff; }

/* Bottom CTA */
.ot-custom-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201,146,26,0.2);
  border-radius: 16px;
  background: rgba(201,146,26,0.04);
}
.ot-custom-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* ============================================================
   TAILOR MODAL
   ============================================================ */
.tailor-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.tailor-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.tailor-modal {
  background: #0e0e0e;
  border: 1px solid rgba(201,146,26,0.25);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.2,0,0,1);
}
.tailor-overlay.is-open .tailor-modal {
  transform: translateY(0);
}
.tailor-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s;
}
.tailor-close:hover { color: #fff; }
.tailor-modal-header {
  text-align: center;
  margin-bottom: 1.8rem;
}
.tailor-modal-header .ankh-svg {
  width: 36px;
  height: auto;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 7;
  margin-bottom: 0.75rem;
}
.tailor-modal-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: #fff;
}
.tailor-modal-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.tailor-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.tailor-form input,
.tailor-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.tailor-form input:focus,
.tailor-form textarea:focus {
  outline: none;
  border-color: rgba(201,146,26,0.6);
}
.tailor-form input::placeholder,
.tailor-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.tailor-form textarea { resize: vertical; min-height: 90px; }
.tailor-submit {
  margin-top: 0.4rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ============================================================
   SIX WONDERS — font size increases
   ============================================================ */
.fc-label {
  font-size: 1.05rem !important;
}
.fc-tag {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* ============================================================
   EVENTS FOOTER — centered
   ============================================================ */
.events-footer {
  text-align: center;
  padding: 3rem 0 1rem;
}
.events-footer p {
  max-width: 560px;
  margin: 0 auto 1.4rem;
}

/* ============================================================
   NOTHING LEFT TO CHANCE (NLTC) — redesign
   ============================================================ */
.nltc {
  background: var(--obsidian);
  padding: 6rem 0 5rem;
}
.nltc-manifesto {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.nltc-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.nltc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.nltc-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  transition: border-color 0.3s, background 0.3s;
}
.nltc-item:hover {
  border-color: rgba(201,146,26,0.3);
  background: rgba(201,146,26,0.04);
}
.nltc-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,146,26,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.nltc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
}
.nltc-item h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
  font-family: 'Playfair Display', serif;
}
.nltc-item p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* Trust bar */
.nltc-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 3rem;
}
.nltc-trust-item {
  text-align: center;
}
.nltc-trust-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.nltc-trust-plus, .nltc-trust-star {
  font-size: 0.6em;
  vertical-align: super;
}
.nltc-trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .nltc-grid { grid-template-columns: repeat(2, 1fr); }
  .nltc-trust { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .ot-header { flex-direction: column; align-items: flex-start; }
  .ot-nav-wrap { align-self: flex-end; }
  .ot-rail { flex-wrap: nowrap; overflow-x: scroll; -webkit-overflow-scrolling: touch; }
  .ot-card { flex: 0 0 240px; min-width: 240px; width: 240px; }
}
@media (max-width: 600px) {
  .nltc-grid { grid-template-columns: 1fr; }
  .nltc-trust { grid-template-columns: repeat(2, 1fr); }
  .tailor-modal { padding: 2rem 1.25rem; }
  .ot-rail { flex-wrap: nowrap; overflow-x: scroll; -webkit-overflow-scrolling: touch; }
  .ot-card { flex: 0 0 220px; min-width: 220px; width: 220px; }
  .our-tours { padding: 3.5rem 0 3rem; }
  .our-tours .container { padding: 0 20px; }
}
