/* ==========================================================
   LUXOTEL PORTAL HOME V2
   Aqaba + Wadi Rum + Petra Panorama
   Isolated from hotel/menu pages
   ========================================================== */

.lux-site-portal{
  background:
    radial-gradient(circle at 12% 8%,rgba(185,134,47,.08),transparent 28%),
    #f9f6ef;
}

.lux-home-mobile-footer{
  display:none;
}

.lux-home-destination-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  white-space:nowrap;
  color:#102d4f;
  font:800 12px/1 Arial,sans-serif;
  letter-spacing:.10em;
}

.lux-home-destination-nav a{
  color:#102d4f;
  text-decoration:none;
  transition:color .18s ease;
}

.lux-home-destination-nav a:hover,
.lux-home-destination-nav a:focus-visible{
  color:#b9862f;
}

.lux-home-destination-nav span{
  color:#c69743;
  font-size:11px;
}

/* ---------- HOMEPAGE DESKTOP TOPBAR LAYOUT ---------- */
@media (min-width:651px){

  .lux-site-portal .lux-topbar-inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
    align-items:center;
    gap:20px;
    direction:ltr;
  }

  .lux-site-portal .lux-brand-link{
    justify-self:start;
    align-self:center;
  }

  .lux-site-portal .lux-home-destination-nav{
    justify-self:center;
    align-self:center;
  }

  .lux-site-portal .lux-topbar-actions{
    justify-self:end;
    align-self:center;
  }

}

.lux-site-portal .lux-portal-v2{
  width:min(1320px,calc(100% - 34px));
  margin:0 auto;
  padding-bottom:28px;
}

/* ---------- HERO ---------- */

.lux-portal-v2-hero{
  position:relative;
  min-height:520px;
  margin:0 0 58px;
  overflow:hidden;
  border:1px solid rgba(185,134,47,.38);
  border-radius:26px;
  background:#102d4f;
  box-shadow:0 24px 64px rgba(16,45,79,.15);
}

.lux-portal-v2-hero-media,
.lux-portal-v2-hero-media .lux-gallery{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.lux-portal-v2-hero-media img,
.lux-portal-v2-hero-media .lux-gallery-image{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}

.lux-portal-v2-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(7,25,42,.78),rgba(7,25,42,.25) 52%,rgba(7,25,42,.58)),
    linear-gradient(0deg,rgba(5,20,34,.58),transparent 65%);
}

.lux-portal-v2-hero-content{
  position:relative;
  z-index:2;
  width:min(800px,85%);
  min-height:520px;
  margin:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:60px 20px;
}

.lux-portal-v2-symbol{
  color:#d1a551;
  font-size:27px;
  margin-bottom:13px;
}

.lux-portal-v2-kicker{
  margin:0 0 16px;
  color:#ddb667;
  font:800 10px/1 Arial,sans-serif;
  letter-spacing:.25em;
}

.lux-portal-v2-hero h1{
  margin:0;
  font-family:var(--lux-font-display,Georgia,serif);
  font-size:clamp(50px,6vw,82px);
  line-height:.92;
  font-weight:400;
  letter-spacing:-.045em;
}

.lux-portal-v2-hero h1 span,
.lux-portal-v2-hero h1 em{
  display:block;
}

.lux-portal-v2-hero h1 em{
  margin-top:6px;
  color:#d7aa56;
  font-style:normal;
}

.lux-portal-v2-rule{
  width:min(440px,70%);
  margin:26px auto 18px;
  display:flex;
  align-items:center;
  gap:12px;
}

.lux-portal-v2-rule span{
  height:1px;
  flex:1;
  background:linear-gradient(90deg,transparent,#c69743);
}

.lux-portal-v2-rule span:last-child{
  background:linear-gradient(90deg,#c69743,transparent);
}

.lux-portal-v2-rule b{
  color:#d0a14d;
  font-size:13px;
  font-weight:400;
}

.lux-portal-v2-intro{
  max-width:600px;
  margin:0;
  color:rgba(255,255,255,.82);
  font:500 13px/1.65 Arial,sans-serif;
  letter-spacing:.035em;
}

/* ---------- SECTION TITLE ---------- */

.lux-portal-v2-destinations{
  padding:0 0 30px;
}

.lux-portal-v2-section-head{
  margin:0 auto 28px;
  text-align:center;
}

.lux-portal-v2-section-head span{
  display:block;
  margin-bottom:9px;
  color:#b9862f;
  font:800 9px Arial,sans-serif;
  letter-spacing:.23em;
}

.lux-portal-v2-section-head h2{
  margin:0;
  color:#102d4f;
  font:400 clamp(34px,4vw,48px)/1 Georgia,serif;
}

/* ---------- CARDS ---------- */

.lux-portal-v2-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.lux-portal-v2-card{
  position:relative;
  min-height:410px;
  overflow:hidden;
  border:1px solid rgba(185,134,47,.55);
  border-radius:20px;
  background:#102d4f;
  box-shadow:0 18px 44px rgba(16,45,79,.12);
  text-decoration:none;
  isolation:isolate;
  transition:transform .25s ease,box-shadow .25s ease;
}

.lux-portal-v2-card:hover{
  transform:translateY(-5px);
  box-shadow:0 26px 54px rgba(16,45,79,.18);
}

.lux-portal-v2-card-media,
.lux-portal-v2-card-media .lux-gallery{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.lux-portal-v2-card-media img,
.lux-portal-v2-card-media .lux-gallery-image{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  transition:transform .55s ease;
}

.lux-portal-v2-card:hover .lux-portal-v2-card-media img,
.lux-portal-v2-card:hover .lux-portal-v2-card-media .lux-gallery-image{
  transform:scale(1.035);
}

.lux-portal-v2-card-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(5,20,34,.05) 18%,rgba(5,20,34,.32) 50%,rgba(5,20,34,.94) 100%);
  z-index:1;
}

.lux-portal-v2-card-icon{
  position:absolute;
  z-index:3;
  top:18px;
  left:18px;
  width:48px;
  height:48px;
  border:1px solid #c89a46;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#d7aa56;
  background:rgba(8,29,49,.88);
  backdrop-filter:blur(8px);
}

.lux-portal-v2-card-icon svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.45;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.lux-portal-v2-card-copy{
  position:absolute;
  z-index:3;
  left:0;
  right:0;
  bottom:0;
  padding:25px 24px 23px;
  color:#fff;
}

.lux-portal-v2-card-copy small{
  display:block;
  margin-bottom:7px;
  color:#d5a957;
  font:800 8px Arial,sans-serif;
  letter-spacing:.19em;
}

.lux-portal-v2-card-copy h3{
  margin:0 0 8px;
  color:#fff;
  font:400 33px/1 Georgia,serif;
}

.lux-portal-v2-card-copy p{
  min-height:34px;
  margin:0 0 17px;
  color:rgba(255,255,255,.76);
  font:500 11px/1.5 Arial,sans-serif;
}

.lux-portal-v2-card-copy strong{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:8px 0 5px;
  color:#d8ad60;
  border-bottom:1px solid rgba(216,173,96,.72);
  font:800 9px Arial,sans-serif;
  letter-spacing:.11em;
}

.lux-portal-v2-card-copy strong b{
  font-size:14px;
  font-weight:400;
}

.lux-portal-v2-card-arrow{
  position:absolute;
  z-index:4;
  top:18px;
  right:18px;
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  font:400 26px/1 Georgia,serif;
  border:1px solid rgba(213,168,85,.88);
  background:rgba(181,134,45,.85);
  box-shadow:0 8px 18px rgba(0,0,0,.18);
  transition:transform .2s ease, background .2s ease;
}

.lux-portal-v2-card:hover .lux-portal-v2-card-arrow{
  transform:translateX(2px);
  background:rgba(195,146,61,.95);
}

.lux-portal-v2-card-has-shortcuts{
  min-height:470px;
}

.lux-portal-v2-shortcuts{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:16px;
}

.lux-portal-v2-shortcut{
  position:relative;
  z-index:4;
  min-height:82px;
  padding:12px 9px 10px;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
  text-decoration:none;
  color:#fff;
  border:1px solid rgba(213,168,85,.8);
  background:rgba(7,24,41,.84);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 8px 18px rgba(0,0,0,.14);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.lux-portal-v2-shortcut:hover{
  transform:translateY(-2px);
  background:rgba(10,31,52,.92);
  border-color:#d9b268;
}

.lux-portal-v2-shortcut-label{
  display:block;
  color:#fff;
  font:700 12px/1.15 Arial,sans-serif;
  letter-spacing:.01em;
}

/* Petra */
.lux-portal-v2-card-coming{
  cursor:default;
}

.lux-portal-v2-card-coming .lux-portal-v2-card-media{
  filter:saturate(.72);
}

.lux-portal-v2-coming{
  position:absolute;
  z-index:5;
  top:20px;
  right:18px;
  padding:8px 12px;
  color:#102d4f;
  background:#d5a855;
  border-radius:999px;
  font:900 8px Arial,sans-serif;
  letter-spacing:.14em;
  box-shadow:0 5px 18px rgba(0,0,0,.16);
}

/* ---------- MOBILE ---------- */

@media(max-width:650px){

  .lux-site-portal{
    padding-bottom:0!important;
  }

  .lux-site-portal .lux-topbar{
    height:54px;
  }

  .lux-site-portal .lux-topbar-inner{
    width:calc(100% - 16px);
    display:grid;
    grid-template-columns:78px minmax(0,1fr) 72px;
    gap:4px;
    direction:ltr;
    align-items:center;
  }

  .lux-site-portal .lux-brand-link{
    min-width:0;
    justify-self:start;
  }

  .lux-site-portal .lux-brand-logo{
    display:block;
    width:auto;
    height:clamp(32px,7vw,40px);
    max-width:140px;
    object-fit:contain;
  }

  .lux-site-portal .lux-home-destination-nav{
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3px;
    white-space:nowrap;
    color:#102d4f;
    font:800 clamp(6.2px,1.75vw,7.2px)/1 Arial,sans-serif;
    letter-spacing:.07em;
  }

  .lux-site-portal .lux-home-destination-nav a{
    padding:6px 1px;
    color:#102d4f;
    text-decoration:none;
  }

  .lux-site-portal .lux-home-destination-nav a:hover,
  .lux-site-portal .lux-home-destination-nav a:focus-visible{
    color:#b9862f;
  }

  .lux-site-portal .lux-home-destination-nav span{
    color:#c69743;
    font-size:9px;
  }

  .lux-site-portal .lux-topbar-actions{
    justify-self:end;
    direction:ltr;
    align-items:center;
    gap:0!important;
  }

      .lux-site-portal > .lux-contact-side-tab{
    display:none;
  }

  .lux-site-portal > .lux-footer{
    display:block;
    width:auto;
    min-height:0;
    margin:6px 8px 8px;
    padding:0;
    border:0;
    background:transparent;
    color:#fff;
  }

  .lux-site-portal > .lux-footer > .lux-footer-inner{
    display:none;
  }

  .lux-site-portal .lux-home-mobile-footer{
    box-sizing:border-box;
    width:100%;
    height:118px;
    padding:7px 12px 6px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    overflow:hidden;
    border:1px solid rgba(218,178,104,.82);
    border-radius:17px;
    background:#1C1B1A;
    box-shadow:inset 0 0 0 1px rgba(255,232,180,.07);
    text-align:center;
  }

  .lux-site-portal .lux-home-mobile-footer-logo{
    width:auto;
    max-width:66px;
    height:21px;
    margin:0;
    object-fit:contain;
  }

  .lux-site-portal .lux-home-mobile-footer-name{
    color:#fffaf1;
    font:700 9px/1.1 Montserrat,Arial,sans-serif;
    letter-spacing:.055em;
  }

  .lux-site-portal .lux-home-mobile-footer-destinations{
    margin:0;
    color:#d9b268;
    font:600 7.5px/1.1 Montserrat,Arial,sans-serif;
    letter-spacing:.08em;
  }

  .lux-site-portal .lux-home-mobile-footer-social{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin:4px 0 1px;
  }

  .lux-site-portal .lux-home-mobile-footer-social a{
    box-sizing:border-box;
    width:32px;
    height:32px;
    display:grid;
    place-items:center;
    border:1px solid rgba(218,178,104,.82);
    border-radius:50%;
    background:rgba(255,255,255,.035);
    color:#d9b268;
    text-decoration:none;
    -webkit-tap-highlight-color:transparent;
    transition:background-color .13s ease,border-color .13s ease,transform .13s ease;
  }

  .lux-site-portal .lux-home-mobile-footer-social a svg{
    width:14px;
    height:14px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.65;
  }

  .lux-site-portal .lux-home-mobile-footer-social a[aria-label="Facebook"] svg,
  .lux-site-portal .lux-home-mobile-footer-social a[aria-label="Google"] svg{
    fill:currentColor;
    stroke:none;
  }

  .lux-site-portal .lux-home-mobile-footer-social a:focus-visible{
    outline:2px solid #fffaf1;
    outline-offset:2px;
  }

  .lux-site-portal .lux-home-mobile-footer-social a:active{
    border-color:#f0cf8a;
    background:rgba(218,178,104,.14);
    transform:scale(.96);
  }

  .lux-site-portal .lux-home-mobile-footer-copy{
    color:rgba(255,250,241,.48);
    font:500 6.5px/1 Montserrat,Arial,sans-serif;
    letter-spacing:.04em;
  }

  html[dir="rtl"] .lux-site-portal .lux-home-mobile-footer-name,
  html[dir="rtl"] .lux-site-portal .lux-home-mobile-footer-destinations{
    font-family:Tajawal,Arial,sans-serif;
    letter-spacing:0;
  }

  .lux-site-portal .lux-portal-v2{
    width:calc(100% - 16px);
    padding-bottom:4px;
  }

  .lux-portal-v2-hero{
    height:clamp(120px,16svh,140px);
    min-height:0;
    margin:4px 0 6px;
    border-radius:15px;
  }

  .lux-portal-v2-hero-content{
    width:94%;
    height:100%;
    min-height:0;
    padding:6px 10px;
  }

  .lux-portal-v2-symbol{
    font-size:11px;
    margin-bottom:1px;
  }

  .lux-portal-v2-kicker{
    margin-bottom:3px;
    font-size:6px;
    letter-spacing:.15em;
  }

  .lux-portal-v2-hero h1{
    font-size:clamp(20px,5.8vw,24px);
    line-height:.96;
  }

  .lux-portal-v2-hero h1 em{
    margin-top:1px;
  }

  .lux-portal-v2-rule{
    width:54%;
    margin:4px auto 2px;
    gap:5px;
  }

  .lux-portal-v2-rule b{
    font-size:8px;
  }

  .lux-portal-v2-intro{
    max-width:280px;
    font-size:7.5px;
    line-height:1.2;
  }

  .lux-portal-v2-destinations{
    padding-bottom:0;
  }

  .lux-portal-v2-section-head{
    margin-bottom:5px;
  }

  .lux-portal-v2-section-head span{
    margin-bottom:2px;
    font-size:6.5px;
  }

  .lux-portal-v2-section-head h2{
    font-size:clamp(23px,6.4vw,26px);
  }

  .lux-portal-v2-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:5px;
  }

  /* Aqaba + Wadi Rum side by side */
  .lux-portal-v2-card{
    min-height:0;
    border-radius:13px;
  }

  .lux-portal-v2-card-has-shortcuts{
    height:clamp(248px,31svh,264px);
    min-height:0;
  }

  .lux-portal-v2-card-destination{
    cursor:pointer;
    touch-action:manipulation;
    transition:transform .12s ease,box-shadow .12s ease;
  }

  .lux-portal-v2-card-destination:hover{
    transform:none;
    box-shadow:0 18px 44px rgba(16,45,79,.12);
  }

  .lux-portal-v2-card-destination:hover .lux-portal-v2-card-media img,
  .lux-portal-v2-card-destination:hover .lux-portal-v2-card-media .lux-gallery-image{
    transform:none;
  }

  .lux-portal-v2-card-destination.is-destination-pressed{
    transform:scale(.992);
    box-shadow:0 15px 36px rgba(16,45,79,.16);
  }

  .lux-portal-v2-card-destination.is-destination-pressed .lux-portal-v2-card-media img,
  .lux-portal-v2-card-destination.is-destination-pressed .lux-portal-v2-card-media .lux-gallery-image{
    transform:scale(1.01);
  }

  .lux-portal-v2-card-destination > .lux-portal-v2-card-icon,
  .lux-portal-v2-card-destination > .lux-portal-v2-card-arrow{
    display:none;
  }

  /* Petra full width below */
  .lux-portal-v2-card-coming{
    grid-column:1 / -1;
    height:clamp(86px,10.5svh,96px);
    min-height:0;
  }

  .lux-portal-v2-card-icon{
    top:7px;
    left:7px;
    width:30px;
    height:30px;
  }

  .lux-portal-v2-card-icon svg{
    width:15px;
    height:15px;
  }

  .lux-portal-v2-card-copy{
    padding:7px;
  }

  .lux-portal-v2-card-copy small{
    margin-bottom:2px;
    font-size:5.8px;
    letter-spacing:.09em;
  }

  .lux-portal-v2-card-copy h3{
    margin-bottom:3px;
    font-size:17px;
  }

  .lux-portal-v2-card-copy p{
    display:none;
  }

  .lux-portal-v2-card-copy strong{
    margin-top:3px;
    padding-bottom:3px;
    gap:5px;
    font-size:6.5px;
    letter-spacing:.06em;
  }

  .lux-portal-v2-card-copy strong b{
    font-size:10px;
  }

  .lux-portal-v2-card-arrow{
    top:7px;
    right:7px;
    width:36px;
    height:36px;
    font-size:18px;
  }

  .lux-portal-v2-shortcuts{
    gap:4px;
    margin-top:7px;
  }

  .lux-portal-v2-shortcut{
    width:100%;
    min-width:0;
    height:clamp(47px,6svh,52px);
    min-height:0;
    padding:5px 3px;
    border:1.5px solid rgba(226,188,118,.98);
    border-radius:11px;
    gap:4px;
    background:rgba(6,22,38,.95);
    box-shadow:
      inset 0 0 0 1px rgba(226,188,118,.16),
      inset 0 8px 16px rgba(226,188,118,.04),
      0 5px 12px rgba(0,0,0,.15);
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
    transition:transform .12s ease,background .12s ease,border-color .12s ease,box-shadow .12s ease;
  }

  .lux-portal-v2-shortcut::before{
    content:"";
    width:18px;
    height:1px;
    flex:0 0 auto;
    border-radius:999px;
    background:linear-gradient(90deg,transparent,#ddb56b,transparent);
  }

  .lux-portal-v2-shortcut-label{
    max-width:100%;
    color:#fffaf0;
    font-size:9px;
    font-weight:800;
    line-height:1.05;
    text-align:center;
    overflow-wrap:break-word;
    word-break:normal;
  }

  .lux-portal-v2-shortcut:focus-visible{
    border-color:#e3be76;
    background:rgba(11,34,57,.96);
    box-shadow:
      inset 0 0 0 1px rgba(227,190,118,.2),
      inset 0 8px 16px rgba(227,190,118,.05),
      0 6px 14px rgba(0,0,0,.18);
  }

  .lux-portal-v2-shortcut:focus-visible{
    outline:1px solid rgba(255,250,240,.9);
    outline-offset:1px;
  }

  .lux-portal-v2-shortcut:active{
    transform:scale(.975);
    border-color:#efd291;
    background:rgba(13,39,65,.99);
    box-shadow:
      inset 0 0 0 1px rgba(239,210,145,.3),
      inset 0 8px 18px rgba(239,210,145,.075),
      0 3px 8px rgba(0,0,0,.17);
  }

  .lux-portal-v2-coming{
    top:7px;
    right:7px;
    padding:6px 8px;
    font-size:6.5px;
  }

  .lux-portal-v2-card-coming .lux-portal-v2-card-icon,
  .lux-portal-v2-card-coming .lux-portal-v2-card-copy small,
  .lux-portal-v2-card-coming .lux-portal-v2-card-copy p,
  .lux-portal-v2-card-coming .lux-portal-v2-card-copy strong{
    display:none;
  }

  .lux-portal-v2-card-coming .lux-portal-v2-card-copy{
    padding:8px 11px;
  }

  .lux-portal-v2-card-coming .lux-portal-v2-card-copy h3{
    margin:0;
    font-size:20px;
  }

}

@media(max-width:650px) and (hover:hover) and (pointer:fine){
  .lux-site-portal .lux-home-mobile-footer-social a:hover{
    border-color:#f0cf8a;
    background:rgba(218,178,104,.11);
    transform:translateY(-1px);
  }

  .lux-portal-v2-shortcut:hover:not(:active){
    transform:translateY(-1px);
    border-color:#e3be76;
    background:rgba(11,34,57,.96);
    box-shadow:
      inset 0 0 0 1px rgba(227,190,118,.2),
      inset 0 8px 16px rgba(227,190,118,.05),
      0 6px 14px rgba(0,0,0,.18);
  }
}

@media(max-width:390px){
  .lux-portal-v2-card-copy h3{
    font-size:17px;
  }

  .lux-portal-v2-card-copy strong{
    font-size:5.8px;
  }
}

@media(max-width:350px){
  .lux-site-portal .lux-topbar{
    height:60px;
  }

  .lux-site-portal .lux-topbar-inner{
    grid-template-columns:1fr 72px;
    grid-template-rows:34px 18px;
  }

  .lux-site-portal .lux-brand-link{
    grid-column:1;
    grid-row:1;
  }

  .lux-site-portal .lux-topbar-actions{
    grid-column:2;
    grid-row:1;
  }

  .lux-site-portal .lux-home-destination-nav{
    grid-column:1 / -1;
    grid-row:2;
  }
}

/* ==========================================================
   JORDAN ADVENTURE CARD
   ========================================================== */

.lux-portal-v2-card-adventure .lux-portal-v2-card-overlay{
  background:
    linear-gradient(
      180deg,
      rgba(71,39,18,.05) 15%,
      rgba(54,33,19,.34) 52%,
      rgba(18,29,39,.95) 100%
    );
}

.lux-portal-v2-card-adventure .lux-portal-v2-card-icon{
  border-color:#c6923f;
  color:#d2a04f;
}

/* Four balanced cards on desktop */
@media(min-width:901px){
  .lux-portal-v2-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .lux-portal-v2-card{
    min-height:380px;
  }
}

/* Two by two on mobile */
@media(max-width:650px){
  .lux-portal-v2-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .lux-portal-v2-card-coming{
    grid-column:1 / -1;
    height:clamp(86px,10.5svh,96px);
    min-height:0;
  }
}

/* Petra's placeholder target is available as a full-card hit area on mobile only. */
.lux-portal-v2-card-mobile-link{
  display:none;
}

/* ==========================================================
   MOBILE DESTINATION CARDS
   Homepage-only landscape stack; desktop rules remain intact.
   ========================================================== */
@media(max-width:720px){
  .lux-site-portal > .lux-footer{
    width:100vw;
    margin:6px calc(50% - 50vw) 0;
  }

  .lux-site-portal .lux-home-mobile-footer{
    width:100%;
    border-radius:0;
    box-shadow:none;
  }

  .lux-site-portal .lux-portal-v2-hero{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    border-radius:0!important;
    box-shadow:none!important;
  }

  .lux-site-portal .lux-portal-v2-grid{
    grid-template-columns:minmax(0,1fr);
    gap:clamp(14px,4vw,20px);
  }

  .lux-site-portal .lux-portal-v2-card,
  .lux-site-portal .lux-portal-v2-card-has-shortcuts,
  .lux-site-portal .lux-portal-v2-card-coming,
  .lux-site-portal .lux-portal-v2-card-petra{
    grid-column:1;
    width:100%;
    height:155px;
    min-height:0;
    max-height:none;
    border-color:rgba(213,181,116,.5);
    border-radius:18px;
    box-shadow:0 14px 32px rgba(7,22,38,.2);
  }

  .lux-site-portal .lux-portal-v2-card:hover{
    transform:none;
    box-shadow:0 18px 44px rgba(16,45,79,.12);
  }

  .lux-site-portal .lux-portal-v2-card:hover .lux-portal-v2-card-media img,
  .lux-site-portal .lux-portal-v2-card:hover .lux-portal-v2-card-media .lux-gallery-image{
    transform:none;
  }

  .lux-site-portal .lux-portal-v2-card-media,
  .lux-site-portal .lux-portal-v2-card-media picture,
  .lux-site-portal .lux-portal-v2-card-media img,
  .lux-site-portal .lux-portal-v2-card-media .lux-gallery-image{
    width:100%;
    height:100%;
  }

  .lux-site-portal .lux-portal-v2-card-media img,
  .lux-site-portal .lux-portal-v2-card-media .lux-gallery-image{
    object-fit:cover;
  }

  .lux-site-portal .lux-portal-v2-card-coming .lux-portal-v2-card-media,
  .lux-site-portal .lux-portal-v2-card-petra .lux-portal-v2-card-media{
    filter:none;
  }

  .lux-site-portal .lux-portal-v2-card-overlay,
  .lux-site-portal .lux-portal-v2-card-coming .lux-portal-v2-card-overlay,
  .lux-site-portal .lux-portal-v2-card-petra .lux-portal-v2-card-overlay{
    background:
      linear-gradient(180deg,rgba(7,22,38,.08) 16%,rgba(7,22,38,.26) 50%,rgba(7,22,38,.92) 100%),
      linear-gradient(90deg,rgba(7,22,38,.2),transparent 72%);
  }

  .lux-site-portal .lux-portal-v2-card-copy,
  .lux-site-portal .lux-portal-v2-card-coming .lux-portal-v2-card-copy,
  .lux-site-portal .lux-portal-v2-card-petra .lux-portal-v2-card-copy{
    inset:auto 0 0;
    z-index:4;
    padding:18px 18px 16px;
    text-align:left;
    pointer-events:none;
  }

  html[dir="rtl"] .lux-site-portal .lux-portal-v2-card-copy{
    text-align:right;
  }

  .lux-site-portal .lux-portal-v2-card-copy small,
  .lux-site-portal .lux-portal-v2-card-coming .lux-portal-v2-card-copy small,
  .lux-site-portal .lux-portal-v2-card-petra .lux-portal-v2-card-copy small{
    display:block;
    margin:0 0 5px;
    color:#ddb56b;
    font-size:7px;
    font-weight:800;
    line-height:1;
    letter-spacing:.18em;
  }

  .lux-site-portal .lux-portal-v2-card-copy h3,
  .lux-site-portal .lux-portal-v2-card-coming .lux-portal-v2-card-copy h3,
  .lux-site-portal .lux-portal-v2-card-petra .lux-portal-v2-card-copy h3{
    margin:0 0 5px;
    color:#fffaf0;
    font-size:clamp(23px,6.5vw,27px);
    line-height:1.03;
  }

  .lux-site-portal .lux-portal-v2-card-copy p,
  .lux-site-portal .lux-portal-v2-card-coming .lux-portal-v2-card-copy p,
  .lux-site-portal .lux-portal-v2-card-petra .lux-portal-v2-card-copy p{
    display:block;
    min-height:0;
    margin:0;
    color:rgba(255,250,240,.86);
    font-size:10px;
    font-weight:500;
    line-height:1.3;
    letter-spacing:.01em;
  }

  .lux-site-portal .lux-portal-v2-shortcuts,
  .lux-site-portal .lux-portal-v2-coming,
  .lux-site-portal .lux-portal-v2-card-copy strong,
  .lux-site-portal .lux-portal-v2-card > .lux-portal-v2-card-icon{
    display:none;
  }

  .lux-site-portal .lux-portal-v2-card-destination > .lux-portal-v2-card-arrow,
  .lux-site-portal .lux-portal-v2-card-petra > .lux-portal-v2-card-mobile-link{
    display:block;
    position:absolute;
    inset:0;
    z-index:3;
    width:auto;
    height:auto;
    border:0;
    border-radius:18px;
    background:transparent;
    box-shadow:none;
    color:transparent;
    font-size:0;
    -webkit-tap-highlight-color:transparent;
  }

  .lux-site-portal .lux-portal-v2-card-destination > .lux-portal-v2-card-arrow:hover,
  .lux-site-portal .lux-portal-v2-card-petra > .lux-portal-v2-card-mobile-link:hover{
    border:0;
    background:transparent;
    box-shadow:none;
    color:transparent;
    transform:none;
  }

  .lux-site-portal .lux-portal-v2-card-destination > .lux-portal-v2-card-arrow:focus-visible,
  .lux-site-portal .lux-portal-v2-card-petra > .lux-portal-v2-card-mobile-link:focus-visible{
    outline:2px solid #ddb56b;
    outline-offset:-5px;
  }
}

/* ==========================================================
   LUXOTEL PORTAL DESKTOP FOUNDATION G1 V1
   Desktop only. Existing mobile homepage stays frozen.
   ========================================================== */

@media (min-width:1025px){

  .lux-site-portal .lux-portal-v2{
    width:min(1180px,calc(100% - 64px));
    margin-left:auto;
    margin-right:auto;

    padding-bottom:50px;
  }


  /* ------------------------------------------
     HERO
     ------------------------------------------ */

  .lux-site-portal .lux-portal-v2-hero{
    width:100%;

    height:clamp(360px,34vw,470px);
    min-height:360px;
    max-height:470px;

    margin:0 0 40px;

    border-radius:22px;
    overflow:hidden;
  }


  .lux-site-portal
  .lux-portal-v2-hero-content{
    max-width:820px;
    margin-left:auto;
    margin-right:auto;

    padding:48px 34px;
  }


  /* ------------------------------------------
     DESTINATION SECTION
     ------------------------------------------ */

  .lux-site-portal
  .lux-portal-v2-destinations{
    padding-bottom:50px;
  }


  .lux-site-portal
  .lux-portal-v2-section-head{
    max-width:760px;

    margin-left:auto;
    margin-right:auto;
    margin-bottom:26px;
  }


  /* ------------------------------------------
     DESTINATION GRID

     auto-fit means:
     2 cards = balanced 2 columns
     3 cards = balanced 3 columns
     4 cards = balanced 4 columns
     ------------------------------------------ */

  .lux-site-portal
  .lux-portal-v2-grid{
    display:grid;

    grid-template-columns:
      repeat(auto-fit,minmax(280px,1fr));

    gap:24px;
  }


  /* ------------------------------------------
     DESTINATION CARDS
     ------------------------------------------ */

  .lux-site-portal .lux-portal-v2-card,
  .lux-site-portal .lux-portal-v2-card-has-shortcuts,
  .lux-site-portal .lux-portal-v2-card-coming,
  .lux-site-portal .lux-portal-v2-card-petra{
    width:100%;

    height:340px;
    min-height:340px;
    max-height:340px;

    border-radius:20px;
  }


  .lux-site-portal
  .lux-portal-v2-card-copy{
    padding:24px 22px 20px;
  }


  .lux-site-portal
  .lux-portal-v2-card-copy h3{
    margin-bottom:7px;

    font-size:clamp(28px,2.2vw,34px);
    line-height:1.03;
  }


  .lux-site-portal
  .lux-portal-v2-card-copy p{
    display:block;

    min-height:0;
    margin:0;

    font-size:12px;
    line-height:1.45;
  }

}

/* END LUXOTEL PORTAL DESKTOP FOUNDATION G1 V1 */
/* ==========================================================
   LUXOTEL PORTAL DESKTOP POLISH G2 V1
   Desktop only - mobile remains frozen
   ========================================================== */

@media (min-width:1025px){

  /* Compact hero so destinations enter viewport sooner */

  .lux-site-portal .lux-portal-v2-hero{
    height:clamp(330px,29vw,400px);
    min-height:330px;
    max-height:400px;

    margin-top:0;
    margin-bottom:30px;
  }


  .lux-site-portal .lux-portal-v2-hero-content{
    max-width:760px;
    padding:36px 30px;
  }


  .lux-site-portal .lux-portal-v2-hero h1{
    font-size:clamp(46px,4.4vw,68px);
    line-height:.96;
  }


  .lux-site-portal .lux-portal-v2-section-head{
    margin-bottom:20px;
  }


  .lux-site-portal .lux-portal-v2-grid{
    gap:20px;
  }


  .lux-site-portal .lux-portal-v2-card,
  .lux-site-portal .lux-portal-v2-card-has-shortcuts,
  .lux-site-portal .lux-portal-v2-card-coming,
  .lux-site-portal .lux-portal-v2-card-petra{
    height:305px;
    min-height:305px;
    max-height:305px;
  }


  .lux-site-portal .lux-portal-v2-card-copy{
    padding:21px 20px 18px;
  }


  .lux-site-portal .lux-portal-v2-card-copy h3{
    font-size:clamp(27px,2vw,32px);
    line-height:1.03;
  }

}

/* END LUXOTEL PORTAL DESKTOP POLISH G2 V1 */
/* ==========================================================
   LUXOTEL PORTAL HERO H1 V1
   Homepage hero = full-width section, not floating card.
   ========================================================== */


/* Remove decorative destination arrows.
   The destination card itself remains clickable. */

.lux-site-portal .lux-portal-v2-card-arrow,
.lux-site-portal .lux-portal-v2-card-mobile-link{
    display:none!important;
}

.lux-site-portal .lux-portal-v2-card-destination{
    cursor:pointer;
}


/* Desktop full-bleed hero */

@media (min-width:1025px){

    .lux-site-portal .lux-portal-v2-hero{

        width:100vw!important;
        max-width:100vw!important;

        margin-left:calc(50% - 50vw)!important;
        margin-right:calc(50% - 50vw)!important;

        border-left:0!important;
        border-right:0!important;
        border-radius:0!important;

        box-shadow:none!important;
    }


    .lux-site-portal .lux-portal-v2-hero-media,
    .lux-site-portal .lux-portal-v2-hero-media img,
    .lux-site-portal .lux-portal-v2-hero-media video,
    .lux-site-portal .lux-portal-v2-hero-media .lux-gallery-image{

        width:100%!important;
        height:100%!important;

        border-radius:0!important;
    }


    .lux-site-portal
    .lux-portal-v2-hero-media img,

    .lux-site-portal
    .lux-portal-v2-hero-media video,

    .lux-site-portal
    .lux-portal-v2-hero-media
    .lux-gallery-image{

        object-fit:cover!important;
    }


    .lux-site-portal
    .lux-portal-v2-card-destination{

        transition:
            transform .18s ease,
            box-shadow .18s ease!important;
    }


    .lux-site-portal
    .lux-portal-v2-card-destination:hover{

        transform:translateY(-3px)!important;
    }

}

/* END LUXOTEL PORTAL HERO H1 V1 */
/* ==========================================================
   LUXOTEL FULL CARD LINK H1.1 V1
   Keep link active across full destination card.
   Arrow is visually removed only.
   ========================================================== */

.lux-site-portal
.lux-portal-v2-card-destination
> .lux-portal-v2-card-arrow{

    display:block!important;

    position:absolute!important;
    inset:0!important;

    z-index:10!important;

    width:auto!important;
    height:auto!important;

    margin:0!important;
    padding:0!important;

    border:0!important;
    border-radius:inherit!important;

    background:transparent!important;
    box-shadow:none!important;

    color:transparent!important;
    font-size:0!important;
    line-height:0!important;

    transform:none!important;
}


/* Keep keyboard accessibility */

.lux-site-portal
.lux-portal-v2-card-destination
> .lux-portal-v2-card-arrow:focus-visible{

    outline:2px solid #c99b47!important;
    outline-offset:-5px!important;
}


/* Petra / other full-card destination target */

.lux-site-portal
.lux-portal-v2-card-petra
> .lux-portal-v2-card-mobile-link{

    display:block!important;

    position:absolute!important;
    inset:0!important;

    z-index:10!important;

    width:auto!important;
    height:auto!important;

    margin:0!important;
    padding:0!important;

    border:0!important;
    border-radius:inherit!important;

    background:transparent!important;
    box-shadow:none!important;
}


/* END LUXOTEL FULL CARD LINK H1.1 V1 */
/* ==========================================================
   LUXOTEL DESKTOP HERO CONTENT FIX H2B.1 V1
   Keep all homepage hero text safely inside full-width banner.
   Typography remains controlled by Homepage Admin.
   ========================================================== */

@media (min-width:1025px){

    .lux-site-portal .lux-portal-v2-hero-content{
        width:min(820px,88%)!important;

        height:100%!important;
        min-height:0!important;
        max-height:100%!important;

        margin:0 auto!important;
        padding:28px 28px!important;

        box-sizing:border-box!important;

        display:flex!important;
        flex-direction:column!important;
        align-items:center!important;
        justify-content:center!important;

        overflow:visible!important;
    }


    .lux-site-portal .lux-portal-v2-symbol{
        flex:0 0 auto;
    }


    .lux-site-portal .lux-portal-v2-kicker{
        flex:0 0 auto;
        margin-top:10px!important;
        margin-bottom:16px!important;
    }


    .lux-site-portal .lux-portal-v2-hero h1{
        flex:0 0 auto;
    }


    .lux-site-portal .lux-portal-v2-rule{
        flex:0 0 auto;

        margin-top:18px!important;
        margin-bottom:12px!important;
    }


    .lux-site-portal .lux-portal-v2-intro{
        flex:0 0 auto;

        margin-top:0!important;
        margin-bottom:0!important;

        max-width:680px!important;
    }

}

/* END LUXOTEL DESKTOP HERO CONTENT FIX H2B.1 V1 */
