/* =====================================================================
   Love Luxury Holidays — V2 Luxury Design System
   Deep Midnight Sapphire + Champagne Gold.
   Loaded AFTER style.css: re-tokenises the legacy sheet and adds the
   V2 component layer (llh-* classes) used by the new templates.
   ===================================================================== */

/* ---------- 1. DESIGN TOKENS ---------- */
:root{
  /* Core canvas */
  --lx-navy:#071526;
  --lx-navy-deep:#040a14;
  --lx-navy-mid:#0a1b32;
  --lx-navy-light:#0f2742;

  /* Champagne accent */
  --lx-gold:#C5A880;
  --lx-gold-light:#dfcaa8;
  --lx-gold-dark:#9d815d;
  --lx-gold-metallic:#D4AF37;
  --lx-gold-pale:#f7e6cb;

  /* Light canvas */
  --lx-ivory:#FBF9F5;
  --lx-ivory-2:#F4F0E8;
  --lx-line:#EAE5D9;
  --lx-line-soft:#F0ECE1;

  /* Ink */
  --lx-ink:#071526;
  --lx-ink-muted:#536479;
  --lx-ink-dim:#94A3B8;
  --lx-ink-onDark:#cbd5e1;

  /* Status */
  --lx-green:#22c55e;
  --lx-green-deep:#16a34a;
  --lx-trustpilot:#00b67a;
  --lx-whatsapp:#25D366;

  /* Borders on dark */
  --lx-gold-b1:rgba(197,168,128,.20);
  --lx-gold-b2:rgba(197,168,128,.35);
  --lx-white-b:rgba(255,255,255,.12);

  /* Type */
  --lx-serif:"Cormorant Garamond","Fraunces","Playfair Display",Georgia,serif;
  --lx-sans:"Plus Jakarta Sans","Montserrat",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;

  /* Motion / shape */
  --lx-ease:cubic-bezier(.25,1,.5,1);
  --lx-r-sm:10px; --lx-r:16px; --lx-r-lg:24px; --lx-r-xl:32px;
  --lx-shadow:0 10px 30px rgba(7,21,38,.08);
  --lx-shadow-lg:0 25px 50px rgba(7,21,38,.18);
  --lx-shadow-dark:0 25px 60px rgba(0,0,0,.60);

  --lx-maxw:1280px;
  --lx-gutter:clamp(16px,4vw,32px);

  /* Re-tone the legacy sheet so archives/blog inherit the new palette */
  --navy:#071526;
  --navy-2:#0a1b32;
  --navy-3:#0f2742;
  --sand:#FBF9F5;
  --sand-2:#F4F0E8;
  --ink:#071526;
  --ink-soft:#536479;
  --cream:#FBF9F5;
  --coral:#C5A880;
  --coral-d:#9d815d;
  --gold:#C5A880;
  --gold-d:#9d815d;
  --teal:#22c55e;
  --line:#EAE5D9;
  --ff-display:"Cormorant Garamond","Fraunces",Georgia,serif;
  --ff-body:"Plus Jakarta Sans",system-ui,sans-serif;
}

/* ---------- 2. BASE ---------- */
body{
  font-family:var(--lx-sans);
  background:var(--lx-ivory);
  color:var(--lx-ink);
  line-height:1.6;
}
body ::selection{background:var(--lx-gold);color:var(--lx-navy)}
h1,h2,h3,h4,.llh-serif{font-family:var(--lx-serif);font-weight:600;letter-spacing:-.005em}
.llh-serif{font-family:var(--lx-serif)}
:focus-visible{outline:2px solid var(--lx-gold);outline-offset:2px}

.llh-wrap{max-width:var(--lx-maxw);margin-inline:auto;padding-inline:var(--lx-gutter);width:100%}
.llh-section{padding-block:clamp(56px,8vw,128px);position:relative}
.llh-section--tight{padding-block:clamp(40px,5vw,72px)}
.llh-section--light{background:var(--lx-ivory)}
.llh-section--sand{background:var(--lx-ivory-2);border-block:1px solid var(--lx-line)}
.llh-section--dark{background:var(--lx-navy-deep);color:#fff}
.llh-section--dark h1,.llh-section--dark h2,.llh-section--dark h3{color:#fff}

/* Ambient blurred glow orbs */
.llh-orb{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none;z-index:0}
.llh-orb--gold{background:rgba(197,168,128,.07)}
.llh-orb--navy{background:rgba(20,40,75,.35)}
.llh-section > .llh-wrap{position:relative;z-index:1}

/* ---------- 3. TYPOGRAPHY HELPERS ---------- */
.llh-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;text-transform:uppercase;
  letter-spacing:.2em;color:var(--lx-gold-dark);
}
.llh-eyebrow--pill{
  padding:5px 14px;border-radius:999px;
  background:rgba(197,168,128,.15);border:1px solid var(--lx-gold-b2);
}
.llh-section--dark .llh-eyebrow{color:var(--lx-gold-light)}
.llh-section--dark .llh-eyebrow--pill{background:rgba(255,255,255,.08)}

.llh-h2{font-size:clamp(28px,4.4vw,56px);line-height:1.1;font-weight:700;letter-spacing:-.02em;margin:0}
.llh-h3{font-size:clamp(20px,2.4vw,30px);line-height:1.15;font-weight:700;margin:0}
.llh-accent{font-style:italic;font-weight:400;color:var(--lx-gold-dark)}
.llh-section--dark .llh-accent{color:var(--lx-gold-light)}
.llh-gold-text{
  background:linear-gradient(135deg,#f7e6cb 0%,#D4AF37 50%,#C5A880 100%);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
}
.llh-lede{font-size:clamp(15px,1.3vw,18px);color:var(--lx-ink-muted);font-weight:300;line-height:1.7;margin-top:16px}
.llh-section--dark .llh-lede{color:rgba(255,255,255,.8)}
.llh-muted{color:var(--lx-ink-muted)}
.lx-sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ---------- 4. GLASS + BUTTONS ---------- */
.llh-glass{
  background:rgba(7,21,38,.75);
  -webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  border:1px solid var(--lx-white-b);
}
.llh-glass-light{
  background:rgba(255,255,255,.85);
  -webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  border:1px solid rgba(197,168,128,.25);
}

.lx-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--lx-sans);font-size:12px;font-weight:700;
  text-transform:uppercase;letter-spacing:.14em;
  padding:14px 26px;border-radius:999px;border:1px solid transparent;
  cursor:pointer;transition:all .3s var(--lx-ease);text-align:center;
}
.lx-btn svg{width:16px;height:16px;flex:none}
.lx-btn--gold{
  background:linear-gradient(90deg,#D4AF37 0%,#C5A880 50%,#dfcaa8 100%);
  color:#050B14;box-shadow:0 8px 24px rgba(197,168,128,.25);
}
.lx-btn--gold:hover{background:linear-gradient(90deg,#e5c567 0%,#ebd6b8 100%);transform:translateY(-2px);box-shadow:0 12px 30px rgba(212,175,55,.4)}
.lx-btn--navy{background:var(--lx-navy);color:#fff}
.lx-btn--navy:hover{background:var(--lx-navy-light);transform:translateY(-2px)}
.lx-btn--ghost{background:rgba(255,255,255,.10);color:#fff;border-color:rgba(255,255,255,.20)}
.lx-btn--ghost:hover{background:rgba(255,255,255,.20)}
.lx-btn--outline{background:var(--lx-ivory);color:var(--lx-navy);border-color:var(--lx-line)}
.lx-btn--outline:hover{border-color:var(--lx-gold);background:#fff}
.lx-btn--wa{background:rgba(18,140,126,.22);color:#9fe6ba;border-color:rgba(18,140,126,.5)}
.lx-btn--wa:hover{background:rgba(18,140,126,.35)}
.lx-btn--sm{padding:10px 18px;font-size:11px}
.lx-btn--block{width:100%}

/* ---------- 5. HEADER ---------- */
.llh-topbar{
  background:var(--lx-navy-deep);color:#cfd9e8;font-size:12px;
  border-bottom:1px solid rgba(255,255,255,.05);position:relative;z-index:60;
}
.llh-topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:40px;flex-wrap:wrap}
.llh-topbar__left{display:flex;align-items:center;gap:22px}
.llh-topbar a{display:inline-flex;align-items:center;gap:8px;color:#fff;transition:color .2s}
.llh-topbar a:hover{color:var(--lx-gold)}
.llh-topbar svg{width:14px;height:14px;color:var(--lx-gold)}
.llh-topbar__sub{color:#8a9bb5;border-left:1px solid rgba(255,255,255,.1);padding-left:8px}
.llh-topbar__wa{color:#9fe6ba!important}
.llh-topbar__wa svg{color:#9fe6ba}
.llh-topbar__right{display:flex;align-items:center;gap:18px;font-size:11px;text-transform:uppercase;letter-spacing:.08em}
.llh-topbar__rating{display:flex;align-items:center;gap:5px;color:var(--lx-gold)}
.llh-topbar__rating b{color:#fff}
.llh-topbar__atol{
  display:inline-flex;align-items:center;gap:6px;color:rgba(255,255,255,.85);
  background:rgba(255,255,255,.05);padding:4px 10px;border-radius:6px;
  border:1px solid rgba(255,255,255,.1);font-weight:600;letter-spacing:.08em;
}
.llh-topbar__atol svg{color:var(--lx-green)}

.llh-head{
  position:sticky;top:0;left:0;right:0;z-index:50;
  transition:background .4s var(--lx-ease),padding .4s var(--lx-ease),box-shadow .4s;
  background:linear-gradient(to bottom,rgba(4,10,19,.92),rgba(7,21,38,.6),transparent);
  padding-block:18px;
}
.llh-head.is-stuck{
  background:rgba(7,21,38,.95);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  border-bottom:1px solid rgba(255,255,255,.1);
  padding-block:10px;
}
/* Non-hero pages need a solid header from the start */
body:not(.home) .llh-head{background:rgba(7,21,38,.97);border-bottom:1px solid rgba(255,255,255,.08)}
.llh-head__inner{display:flex;align-items:center;justify-content:space-between;gap:20px}

.llh-brand{display:flex;flex-direction:column;line-height:1.05}
.llh-brand__name{
  font-family:var(--lx-serif);font-size:clamp(18px,2vw,24px);font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;color:#fff;transition:color .3s;
}
.llh-brand:hover .llh-brand__name{color:var(--lx-gold-light)}
.llh-brand__sub{font-size:10px;letter-spacing:.38em;text-transform:uppercase;color:var(--lx-gold);font-weight:500}
.llh-brand img{max-height:52px;width:auto}

.llh-nav{display:flex;align-items:center;gap:2px}
.llh-nav__item{position:relative}
.llh-nav__link{
  display:inline-flex;align-items:center;gap:6px;
  padding:9px 12px;font-size:14px;font-weight:500;
  color:rgba(255,255,255,.9);border-radius:8px;transition:color .2s;
}
.llh-nav__link:hover,.llh-nav__item.is-open .llh-nav__link{color:var(--lx-gold)}
.llh-nav__caret{width:14px;height:14px;transition:transform .25s}
.llh-nav__item.is-open .llh-nav__caret{transform:rotate(180deg)}
.llh-nav__tag{
  font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;
  background:rgba(197,168,128,.2);color:var(--lx-gold-light);
  border:1px solid var(--lx-gold-b2);padding:2px 6px;border-radius:5px;
}

.llh-drop{
  position:absolute;top:100%;left:0;margin-top:8px;width:340px;
  background:var(--lx-navy);border:1px solid rgba(255,255,255,.15);
  border-radius:var(--lx-r);box-shadow:0 24px 60px rgba(0,0,0,.5);
  padding:14px;display:grid;gap:4px;
  opacity:0;visibility:hidden;transform:translateY(-8px);
  transition:opacity .2s,transform .2s,visibility .2s;
}
.llh-nav__item.is-open > .llh-drop{opacity:1;visibility:visible;transform:translateY(0)}
.llh-drop__head{
  display:flex;align-items:center;justify-content:space-between;
  font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.16em;
  color:var(--lx-gold);padding:4px 10px 10px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:4px;
}
.llh-drop__count{font-size:9px;background:rgba(197,168,128,.2);color:var(--lx-gold-light);padding:2px 6px;border-radius:4px}
.llh-drop a{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:9px 12px;font-size:14px;color:rgba(255,255,255,.9);
  border-radius:var(--lx-r-sm);transition:background .2s,color .2s;
}
.llh-drop a:hover{background:rgba(255,255,255,.06);color:#fff}
.llh-drop a .llh-drop__price{font-size:12px;color:var(--lx-gold)}
.llh-drop__map{
  background:rgba(197,168,128,.15)!important;border:1px solid var(--lx-gold-b2);
  color:var(--lx-gold-light)!important;font-weight:600;font-size:13px;margin-bottom:4px;
}
.llh-drop__map:hover{background:rgba(197,168,128,.25)!important}
.llh-drop__map span:last-child{
  font-size:9px;text-transform:uppercase;font-weight:700;letter-spacing:.08em;
  background:var(--lx-gold);color:var(--lx-navy);padding:2px 6px;border-radius:4px;
}
.llh-drop__foot{padding-top:8px;margin-top:4px;border-top:1px solid rgba(255,255,255,.1)}
.llh-drop__foot a{font-size:12px;color:var(--lx-gold);justify-content:flex-start}

.llh-head__actions{display:flex;align-items:center;gap:12px}
.llh-head__ghost{
  display:inline-flex;align-items:center;gap:6px;font-size:12px;
  color:rgba(255,255,255,.8);padding:8px 14px;border-radius:8px;
  border:1px solid rgba(255,255,255,.15);transition:all .2s;
}
.llh-head__ghost:hover{color:#fff;border-color:rgba(255,255,255,.35)}
.llh-head__ghost svg{width:14px;height:14px;color:var(--lx-gold)}
.llh-burger{display:none;padding:8px;color:#fff;background:none;border:0;cursor:pointer}
.llh-burger svg{width:24px;height:24px}

/* Mobile drawer */
.llh-mnav{
  position:fixed;inset:0;z-index:100;background:var(--lx-navy);color:#fff;
  display:none;flex-direction:column;justify-content:space-between;
  overflow-y:auto;padding:24px var(--lx-gutter) 32px;
}
.llh-mnav.is-open{display:flex}
.llh-mnav__head{display:flex;align-items:center;justify-content:space-between;padding-bottom:22px;border-bottom:1px solid rgba(255,255,255,.1)}
.llh-mnav__close{padding:8px;border-radius:50%;background:rgba(255,255,255,.06);color:rgba(255,255,255,.85);border:0;cursor:pointer}
.llh-mnav__close svg{width:22px;height:22px}
.llh-mnav__list{display:flex;flex-direction:column;margin-top:22px}
.llh-mnav__link{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 8px;font-family:var(--lx-serif);font-size:19px;
  border-bottom:1px solid rgba(255,255,255,.05);transition:color .2s;
}
.llh-mnav__link:hover{color:var(--lx-gold)}
.llh-mnav__link svg{width:16px;height:16px;color:var(--lx-gold)}
.llh-mnav__sub{display:grid;grid-template-columns:1fr 1fr;gap:6px;padding:8px 0 8px 18px;font-size:13px;color:rgba(255,255,255,.72)}
.llh-mnav__sub a{padding:4px 0}
.llh-mnav__sub a:hover{color:#fff}
.llh-mnav__foot{margin-top:32px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1);display:grid;gap:14px}
.llh-mnav__contact{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.llh-mnav__contact a{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:11px;border-radius:var(--lx-r-sm);font-size:12px;background:rgba(255,255,255,.1);
}
.llh-mnav__note{text-align:center;font-size:12px;color:rgba(255,255,255,.5);display:flex;align-items:center;justify-content:center;gap:8px}
.llh-mnav__note svg{width:16px;height:16px;color:var(--lx-green)}

/* ---------- 6. HERO ---------- */
.llh-hero{
  position:relative;min-height:92vh;display:flex;align-items:center;justify-content:center;
  overflow:hidden;background:var(--lx-navy-deep);
  padding:clamp(96px,14vh,150px) 0 clamp(64px,9vh,110px);
  margin-top:calc(-1 * (var(--lx-head-h,84px)));
}
.llh-hero__bg{position:absolute;inset:0;z-index:0;overflow:hidden}
.llh-hero__slide{position:absolute;inset:0;opacity:0;transition:opacity 1.2s var(--lx-ease);pointer-events:none}
.llh-hero__slide.is-active{opacity:1}
.llh-hero__slide img{width:100%;height:100%;object-fit:cover;object-position:center;transform:scale(1.05)}
.llh-hero__slide.is-active img{animation:llh-kenburns 28s ease-in-out infinite}
.llh-hero__scrim{position:absolute;inset:0;z-index:1;pointer-events:none}
.llh-hero__scrim--a{background:linear-gradient(to top,#040914,rgba(7,21,38,.5),rgba(3,10,19,.7))}
.llh-hero__scrim--b{background:linear-gradient(to right,rgba(4,9,20,.8),transparent,rgba(4,9,20,.8))}
.llh-hero__scrim--c{background:radial-gradient(ellipse at center,transparent 0%,#040914 92%);opacity:.8}
.llh-hero__inner{position:relative;z-index:5;max-width:1080px;margin-inline:auto;padding-inline:var(--lx-gutter);text-align:center;display:flex;flex-direction:column;align-items:center}

.llh-hero__badge{
  display:inline-flex;align-items:center;gap:10px;padding:7px 16px;border-radius:999px;
  background:rgba(0,0,0,.4);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  border:1px solid rgba(197,168,128,.5);color:var(--lx-gold-light);
  font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.25em;margin-bottom:24px;
}
.llh-hero__badge svg{width:14px;height:14px;color:var(--lx-gold)}
.llh-hero__badge .llh-dot{width:4px;height:4px;border-radius:50%;background:var(--lx-gold)}
.llh-hero__badge .llh-sub{color:rgba(255,255,255,.8);letter-spacing:.1em}

.llh-hero h1{
  font-size:clamp(30px,6.2vw,72px);line-height:1.08;font-weight:700;color:#fff;
  letter-spacing:-.02em;text-wrap:balance;text-shadow:0 6px 30px rgba(0,0,0,.5);margin:0;
}
.llh-hero h1 .llh-hero__tag{display:block;font-style:italic;font-weight:400;margin-top:6px}
.llh-hero__desc{
  margin:18px auto 0;max-width:660px;font-size:clamp(15px,1.5vw,20px);
  color:rgba(255,255,255,.9);font-weight:300;line-height:1.65;text-wrap:balance;
}
.llh-hero__price{
  margin-top:18px;display:inline-flex;flex-wrap:wrap;align-items:center;gap:12px;
  padding:7px 18px;border-radius:999px;background:rgba(255,255,255,.1);
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.2);font-size:12px;color:rgba(255,255,255,.9);
}
.llh-hero__price b{font-family:var(--lx-serif);font-size:16px;color:var(--lx-gold-pale)}
.llh-hero__ctas{margin-top:34px;display:flex;flex-wrap:wrap;gap:14px;justify-content:center}

.llh-hero__pills{margin-top:44px;width:100%;max-width:900px;display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.llh-hero__pill{
  position:relative;overflow:hidden;text-align:left;padding:11px 12px;border-radius:var(--lx-r);
  background:rgba(0,0,0,.3);border:1px solid rgba(255,255,255,.1);
  cursor:pointer;transition:all .3s var(--lx-ease);color:#fff;
}
.llh-hero__pill:hover{background:rgba(255,255,255,.1)}
.llh-hero__pill.is-active{background:rgba(255,255,255,.15);border-color:var(--lx-gold);box-shadow:0 8px 20px rgba(0,0,0,.3)}
.llh-hero__pill-top{display:flex;align-items:center;justify-content:space-between;font-size:10px;color:rgba(255,255,255,.5);margin-bottom:4px}
.llh-hero__pill-top b{color:var(--lx-gold-light);font-weight:600}
.llh-hero__pill-name{font-family:var(--lx-serif);font-weight:700;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.llh-hero__pill-bar{position:absolute;left:0;bottom:0;height:2px;width:0;background:linear-gradient(90deg,var(--lx-gold),var(--lx-gold-pale))}
.llh-hero__pill.is-active .llh-hero__pill-bar{animation:llh-progress 6.5s linear forwards}

.llh-hero__trust{
  margin-top:42px;padding-top:26px;border-top:1px solid rgba(255,255,255,.15);
  width:100%;display:grid;grid-template-columns:repeat(4,1fr);gap:18px;text-align:left;
}
.llh-hero__trust-item{display:flex;align-items:center;gap:12px;color:rgba(255,255,255,.9)}
.llh-hero__trust-ic{
  width:34px;height:34px;border-radius:50%;flex:none;display:flex;align-items:center;justify-content:center;
  background:rgba(197,168,128,.15);border:1px solid var(--lx-gold-b2);color:var(--lx-gold);
}
.llh-hero__trust-ic svg{width:17px;height:17px}
.llh-hero__trust-ic--green{background:rgba(34,197,94,.15);border-color:rgba(34,197,94,.3);color:var(--lx-green)}
.llh-hero__trust-ic--tp{background:var(--lx-trustpilot);border-color:var(--lx-trustpilot);color:#fff}
.llh-hero__trust b{display:block;font-size:13px;font-weight:600;color:#fff}
.llh-hero__trust span{font-size:11px;color:rgba(255,255,255,.6)}

.llh-hero__arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:6;
  width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:rgba(7,21,38,.75);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  border:1px solid var(--lx-white-b);color:rgba(255,255,255,.85);cursor:pointer;transition:all .25s;
}
.llh-hero__arrow:hover{color:#fff;border-color:var(--lx-gold);transform:translateY(-50%) scale(1.06)}
.llh-hero__arrow--prev{left:clamp(8px,2vw,24px)}
.llh-hero__arrow--next{right:clamp(8px,2vw,24px)}
.llh-hero__arrow svg{width:24px;height:24px}

@keyframes llh-kenburns{0%{transform:scale(1)}50%{transform:scale(1.07)}100%{transform:scale(1)}}
@keyframes llh-progress{from{width:0}to{width:100%}}
@keyframes llh-ping{75%,100%{transform:scale(2);opacity:0}}
@keyframes llh-pulse{0%,100%{opacity:1}50%{opacity:.55}}

/* ---------- 7. TRIP PLANNER (search engine) ---------- */
.llh-planner{position:relative;z-index:20;max-width:1120px;margin:-72px auto 0;padding-inline:var(--lx-gutter)}
.llh-planner__card{
  border-radius:var(--lx-r-xl);padding:clamp(16px,2.4vw,28px);color:#fff;
  background:rgba(7,21,38,.82);-webkit-backdrop-filter:blur(24px);backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,.2);box-shadow:0 25px 60px -15px rgba(0,0,0,.7);
}
.llh-planner__tabs{display:flex;align-items:center;gap:8px;border-bottom:1px solid rgba(255,255,255,.1);padding-bottom:16px;overflow-x:auto;scrollbar-width:none}
.llh-planner__tabs::-webkit-scrollbar{display:none}
.llh-tab{
  display:inline-flex;align-items:center;gap:8px;white-space:nowrap;
  padding:10px 20px;border-radius:999px;font-size:13px;font-weight:600;
  color:rgba(255,255,255,.75);background:none;border:0;cursor:pointer;transition:all .25s;
}
.llh-tab:hover{color:#fff;background:rgba(255,255,255,.06)}
.llh-tab.is-active{
  background:linear-gradient(90deg,#D4AF37,#C5A880);color:#050B14;font-weight:700;
  box-shadow:0 6px 18px rgba(197,168,128,.3);
}
.llh-tab svg{width:14px;height:14px}

.llh-planner__form{margin-top:22px;display:grid;grid-template-columns:repeat(12,1fr);gap:12px;align-items:stretch}
.lx-field{
  background:rgba(0,0,0,.4);border:1px solid rgba(255,255,255,.1);
  border-radius:var(--lx-r-lg);padding:12px 14px;transition:all .25s;
}
.lx-field:hover,.lx-field:focus-within{background:rgba(0,0,0,.6);border-color:var(--lx-gold-b2)}
.lx-field label{
  display:flex;align-items:center;gap:6px;font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:.15em;color:var(--lx-gold-light);
}
.lx-field label svg{width:12px;height:12px;color:var(--lx-gold)}
.lx-field input,.lx-field select{
  width:100%;background:transparent;border:0;color:#fff;font-family:inherit;
  font-size:14px;font-weight:500;margin-top:4px;padding:0;
}
.lx-field input:focus,.lx-field select:focus{outline:none}
.lx-field input::placeholder{color:rgba(255,255,255,.4)}
.lx-field select option{background:var(--lx-navy);color:#fff}
.llh-planner__col-4{grid-column:span 4}
.llh-planner__col-3{grid-column:span 3}
.llh-planner__col-2{grid-column:span 2}
.llh-planner__submit{grid-column:span 2;min-height:56px;border-radius:var(--lx-r-lg)}
.llh-planner__foot{
  margin-top:18px;padding-top:16px;border-top:1px solid rgba(255,255,255,.1);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;font-size:12px;
}
.llh-planner__picks{display:flex;flex-wrap:wrap;align-items:center;gap:8px}
.llh-planner__picks > span{font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.6);font-weight:600}
.llh-chip{
  display:inline-flex;align-items:center;gap:6px;padding:5px 12px;border-radius:999px;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.9);font-size:11px;cursor:pointer;transition:all .2s;
}
.llh-chip:hover{background:rgba(197,168,128,.2);border-color:var(--lx-gold-b2);color:#fff}
.llh-chip em{font-style:normal;font-size:9px;text-transform:uppercase;letter-spacing:.08em;color:var(--lx-gold-light);opacity:.75}
.llh-planner__bespoke{
  display:inline-flex;align-items:center;gap:8px;color:var(--lx-gold-light);
  font-size:12px;background:none;border:0;cursor:pointer;margin-left:auto;
}
.llh-planner__bespoke strong{color:#fff;text-decoration:underline;text-decoration-color:var(--lx-gold)}
.llh-planner__bespoke svg{width:14px;height:14px;color:var(--lx-gold)}

/* ---------- 8. TRUST PILLARS ---------- */
.llh-trustbanner{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;
  padding:16px 20px;background:#fff;border:1px solid var(--lx-line);
  border-radius:var(--lx-r);box-shadow:var(--lx-shadow);margin-bottom:36px;
}
.llh-trustbanner__score{
  display:inline-flex;align-items:center;gap:6px;background:var(--lx-trustpilot);color:#fff;
  padding:5px 10px;border-radius:6px;font-size:12px;font-weight:700;
}
.llh-trustbanner__score svg{width:14px;height:14px}
.llh-pillars{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.llh-pillar{
  background:#fff;border:1px solid var(--lx-line);border-radius:var(--lx-r-lg);
  padding:24px;box-shadow:var(--lx-shadow);transition:all .3s var(--lx-ease);
}
.llh-pillar:hover{border-color:var(--lx-gold-b2);box-shadow:var(--lx-shadow-lg);transform:translateY(-3px)}
.llh-pillar__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.llh-pillar__ic{
  width:48px;height:48px;border-radius:14px;display:flex;align-items:center;justify-content:center;
  background:var(--lx-ivory);border:1px solid var(--lx-line);color:var(--lx-gold);transition:background .25s;
}
.llh-pillar:hover .llh-pillar__ic{background:rgba(197,168,128,.1)}
.llh-pillar__ic svg{width:24px;height:24px}
.llh-pillar__badge{
  font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;
  color:var(--lx-gold-dark);background:var(--lx-ivory);
  border:1px solid var(--lx-line);padding:3px 8px;border-radius:6px;
}
.llh-pillar h3{font-size:18px;font-weight:700;color:var(--lx-navy);transition:color .25s}
.llh-pillar:hover h3{color:var(--lx-gold-dark)}
.llh-pillar__sub{font-size:12px;font-weight:500;color:var(--lx-gold);margin-bottom:8px}
.llh-pillar p{font-size:12.5px;color:var(--lx-ink-muted);line-height:1.65;margin:0}

/* ---------- 9. SECTION HEADERS + VIEW SWITCHERS ---------- */
.llh-sechead{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:clamp(32px,4vw,60px)}
.llh-sechead__text{max-width:680px}
.llh-sechead--center{flex-direction:column;align-items:center;text-align:center;margin-inline:auto;max-width:800px}

.llh-switch{display:inline-flex;align-items:center;gap:2px;background:#fff;padding:4px;border-radius:999px;border:1px solid var(--lx-line);box-shadow:var(--lx-shadow)}
.llh-section--dark .llh-switch{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.14)}
.llh-switch button{
  display:inline-flex;align-items:center;gap:6px;padding:7px 14px;border-radius:999px;
  font-size:12px;font-weight:600;color:var(--lx-ink-muted);background:none;border:0;cursor:pointer;transition:all .25s;
}
.llh-switch button:hover{color:var(--lx-navy)}
.llh-switch button.is-active{background:var(--lx-navy);color:#fff;box-shadow:0 3px 10px rgba(7,21,38,.2)}
.llh-switch button.is-active svg{color:var(--lx-gold)}
.llh-switch svg{width:14px;height:14px}

.llh-arrows{display:flex;align-items:center;gap:8px}
.llh-arrows button{
  width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:#fff;border:1px solid var(--lx-line);color:var(--lx-navy);cursor:pointer;transition:all .25s;
}
.llh-arrows button:hover{background:var(--lx-navy);color:#fff}
.llh-arrows svg{width:20px;height:20px}

.llh-filters{display:flex;align-items:center;gap:10px;overflow-x:auto;padding-bottom:14px;margin-bottom:32px;scrollbar-width:none}
.llh-filters::-webkit-scrollbar{display:none}
.llh-filter{
  padding:9px 20px;border-radius:999px;white-space:nowrap;font-size:13px;font-weight:600;
  background:#fff;color:var(--lx-ink-muted);border:1px solid var(--lx-line);cursor:pointer;transition:all .25s;
}
.llh-filter:hover{color:var(--lx-navy);border-color:rgba(7,21,38,.3)}
.llh-filter.is-active{background:var(--lx-navy);color:#fff;border-color:var(--lx-navy);box-shadow:0 4px 12px rgba(7,21,38,.2)}

/* Carousel / grid containers */
.llh-rail{display:flex;gap:26px;overflow-x:auto;padding:8px 4px 32px;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none}
.llh-rail::-webkit-scrollbar{display:none}
.llh-rail > *{flex:0 0 340px;scroll-snap-align:start}
.lx-grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}
.lx-grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.llh-view[hidden]{display:none!important}

/* ---------- 10. DESTINATION CARD ---------- */
.llh-dcard{
  display:flex;flex-direction:column;height:100%;background:#fff;overflow:hidden;
  border:1px solid var(--lx-line);border-radius:var(--lx-r-lg);
  box-shadow:var(--lx-shadow);transition:all .5s var(--lx-ease);
}
.llh-dcard:hover{box-shadow:var(--lx-shadow-lg);border-color:var(--lx-gold-b2);transform:translateY(-4px)}
.llh-dcard__media{position:relative;height:280px;overflow:hidden;background:var(--lx-navy)}
.llh-dcard__media img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--lx-ease)}
.llh-dcard:hover .llh-dcard__media img{transform:scale(1.08)}
.llh-dcard__scrim{position:absolute;inset:0;background:linear-gradient(to top,var(--lx-navy),rgba(7,21,38,.3),transparent);opacity:.8;transition:opacity .5s}
.llh-dcard:hover .llh-dcard__scrim{opacity:.6}
.llh-dcard__top{position:absolute;top:14px;left:14px;right:14px;display:flex;align-items:center;justify-content:space-between;gap:8px;z-index:2}
.llh-dcard__bottom{position:absolute;bottom:14px;left:14px;right:14px;display:flex;align-items:flex-end;justify-content:space-between;gap:8px;z-index:2}
.llh-dcard__from{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.7);display:block}
.llh-dcard__price{font-family:var(--lx-serif);font-size:26px;font-weight:700;color:#fff}
.llh-dcard__price span{font-size:12px;font-weight:400;color:rgba(255,255,255,.8)}
.llh-dcard__body{padding:22px;display:flex;flex-direction:column;justify-content:space-between;flex:1;gap:16px}
.llh-dcard__body h3{font-size:23px;font-weight:700;color:var(--lx-navy);transition:color .25s}
.llh-dcard:hover .llh-dcard__body h3{color:var(--lx-gold-dark)}
.llh-dcard__title-row{display:flex;align-items:center;justify-content:space-between;gap:10px}
.llh-dcard__tagline{margin-top:8px;font-size:13px;color:var(--lx-ink-muted);font-weight:300;line-height:1.6}
.llh-dcard__actions{padding-top:16px;border-top:1px solid var(--lx-line-soft);display:flex;gap:8px}
.llh-dcard__actions > *{flex:1;padding:11px 12px;border-radius:12px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.1em;text-align:center;display:flex;align-items:center;justify-content:center;gap:6px}

/* Tag pills */
.llh-tag{
  display:inline-flex;align-items:center;gap:6px;font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:.1em;padding:5px 11px;border-radius:999px;
}
.llh-tag svg{width:12px;height:12px}
.llh-tag--dark{background:rgba(7,21,38,.8);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);color:#fff;border:1px solid rgba(255,255,255,.2)}
.llh-tag--dark svg{color:var(--lx-gold)}
.llh-tag--gold{background:linear-gradient(90deg,#D4AF37,#C5A880);color:var(--lx-navy)}
.llh-tag--atol{background:rgba(5,11,20,.8);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);color:#fff;border:1px solid rgba(255,255,255,.15)}
.llh-tag--atol svg{color:var(--lx-green)}
.llh-tag--green{background:#f0fdf4;color:var(--lx-green-deep);border:1px solid #bbf7d0}
.llh-tag--amber{background:#fffbeb;color:#b45309;border:1px solid #fde68a}
.llh-tag--navy{background:var(--lx-navy);color:#fff}
.llh-tag--soft{background:rgba(7,21,38,.8);color:var(--lx-gold-light);border:1px solid rgba(255,255,255,.1);font-weight:600;letter-spacing:.04em;text-transform:none}
.lx-check{display:inline-flex;align-items:center;gap:6px;font-size:12px;color:var(--lx-green-deep);font-weight:600}
.lx-check svg{width:14px;height:14px;flex:none}

/* Dark CTA banner inside light sections */
.llh-banner{
  margin-top:56px;padding:clamp(22px,3vw,36px);border-radius:var(--lx-r-xl);color:#fff;
  background:linear-gradient(90deg,#071526,#0c1f38,#071526);
  border:1px solid rgba(255,255,255,.1);box-shadow:var(--lx-shadow-lg);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:22px;
}
.llh-banner__left{display:flex;align-items:center;gap:18px}
.llh-banner__ic{
  width:54px;height:54px;flex:none;border-radius:18px;display:flex;align-items:center;justify-content:center;
  background:rgba(197,168,128,.2);border:1px solid var(--lx-gold-b2);color:var(--lx-gold);
}
.llh-banner__ic svg{width:26px;height:26px}
.llh-banner b{display:block;font-family:var(--lx-serif);font-size:20px;font-weight:700;color:#fff}
.llh-banner p{margin:4px 0 0;font-size:13px;color:rgba(255,255,255,.7)}
.llh-banner__actions{display:flex;flex-wrap:wrap;gap:12px}

/* ---------- 11. INTERACTIVE MAP ---------- */
.llh-map{
  position:relative;width:100%;color:#fff;background:#050e1b;overflow:hidden;
  border:1px solid var(--lx-gold-b1);border-radius:var(--lx-r-lg);box-shadow:var(--lx-shadow-lg);
}
.llh-map__bar{
  position:relative;z-index:3;padding:16px clamp(16px,2vw,24px);
  background:rgba(7,21,38,.9);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.1);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;
}
.llh-map__bar h3{font-size:clamp(17px,2vw,24px);font-weight:700;color:#fff;margin-top:4px}
.llh-map__kicker{display:flex;align-items:center;gap:8px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.2em;color:var(--lx-gold)}
.llh-map__kicker svg{width:14px;height:14px}
.llh-map__live{
  background:rgba(34,197,94,.15);color:#4ade80;border:1px solid rgba(34,197,94,.3);
  padding:2px 7px;border-radius:5px;font-size:10px;font-weight:700;letter-spacing:.06em;
}
.llh-map__tools{display:flex;flex-wrap:wrap;align-items:center;gap:8px}
.llh-map__toggle{
  display:inline-flex;align-items:center;gap:6px;padding:7px 12px;border-radius:var(--lx-r-sm);
  font-size:12px;font-weight:500;cursor:pointer;transition:all .2s;
  background:rgba(255,255,255,.05);color:rgba(255,255,255,.6);border:1px solid rgba(255,255,255,.1);
}
.llh-map__toggle svg{width:14px;height:14px}
.llh-map__toggle.is-on{background:rgba(197,168,128,.2);color:var(--lx-gold-light);border-color:var(--lx-gold-b2)}
.llh-map__toggle.is-on svg{color:var(--lx-gold)}
.llh-map__zoom{display:flex;align-items:center;gap:2px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--lx-r-sm);padding:2px}
.llh-map__zoom button{padding:6px;border-radius:6px;background:none;border:0;color:rgba(255,255,255,.7);cursor:pointer;transition:all .2s;display:flex}
.llh-map__zoom button:hover{color:#fff;background:rgba(255,255,255,.1)}
.llh-map__zoom svg{width:16px;height:16px}

.llh-map__regions{
  position:relative;z-index:2;padding:10px clamp(16px,2vw,24px);
  background:rgba(3,9,20,.8);border-bottom:1px solid rgba(255,255,255,.05);
  display:flex;align-items:center;gap:8px;overflow-x:auto;font-size:12px;scrollbar-width:none;
}
.llh-map__regions::-webkit-scrollbar{display:none}
.llh-map__regions > span{display:inline-flex;align-items:center;gap:5px;flex:none;color:rgba(255,255,255,.4);font-size:10px;text-transform:uppercase;letter-spacing:.1em;font-weight:500}
.llh-map__regions svg{width:12px;height:12px;color:var(--lx-gold)}
.llh-map__region{
  padding:5px 13px;border-radius:999px;white-space:nowrap;font-weight:500;font-size:12px;
  background:rgba(255,255,255,.05);color:rgba(255,255,255,.7);border:1px solid rgba(255,255,255,.05);cursor:pointer;transition:all .2s;
}
.llh-map__region:hover{background:rgba(255,255,255,.1);color:#fff}
.llh-map__region.is-active{background:var(--lx-gold);color:var(--lx-navy);font-weight:700;box-shadow:0 4px 12px rgba(197,168,128,.2)}

.llh-map__stage{position:relative;width:100%;height:460px;overflow:hidden;cursor:grab;user-select:none}
.llh-map__stage.is-dragging{cursor:grabbing}
.llh-map__stage svg{width:100%;height:100%;transition:transform .3s var(--lx-ease)}
.llh-map__hint{position:absolute;bottom:12px;left:18px;display:flex;align-items:center;gap:8px;font-size:10px;color:rgba(255,255,255,.4);pointer-events:none}
.llh-map__hint svg{width:12px;height:12px;color:var(--lx-gold)}
.llh-pin{cursor:pointer}
.llh-pin__ring{animation:llh-ping 1.6s cubic-bezier(0,0,.2,1) infinite}
.llh-map__empty{display:flex;align-items:center;justify-content:center;height:100%;color:rgba(255,255,255,.45);font-size:13px;text-align:center;padding:24px}

.llh-map__drawer{
  position:relative;z-index:3;padding:clamp(16px,2.4vw,26px);
  background:linear-gradient(to top,#040a14,#071526,#0a1b32);
  border-top:1px solid rgba(255,255,255,.1);
}
.llh-map__drawer-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:24px}
.llh-map__spot{display:flex;flex-wrap:wrap;align-items:center;gap:18px;flex:1;min-width:280px}
.llh-map__thumb{position:relative;width:104px;height:104px;flex:none;border-radius:14px;overflow:hidden;border:1px solid var(--lx-gold-b2);box-shadow:0 8px 20px rgba(0,0,0,.4)}
.llh-map__thumb img{width:100%;height:100%;object-fit:cover}
.llh-map__thumb-badge{position:absolute;top:6px;left:6px;background:var(--lx-gold);color:var(--lx-navy);font-size:9px;font-weight:800;text-transform:uppercase;padding:2px 6px;border-radius:4px}
.llh-map__spot-body{flex:1;min-width:220px}
.llh-map__spot-title{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-bottom:8px}
.llh-map__spot-title h4{font-family:var(--lx-serif);font-size:23px;font-weight:700;color:#fff;margin:0}
.llh-map__spot-region{font-size:12px;color:var(--lx-gold);border:1px solid var(--lx-gold-b2);background:rgba(197,168,128,.1);padding:2px 10px;border-radius:999px}
.llh-map__spot-meta{display:flex;flex-wrap:wrap;align-items:center;gap:14px;font-size:12px;color:rgba(255,255,255,.8);margin-bottom:12px}
.llh-map__spot-meta span{display:inline-flex;align-items:center;gap:6px}
.llh-map__spot-meta svg{width:14px;height:14px;color:var(--lx-gold)}
.llh-map__spot-tags{display:flex;flex-wrap:wrap;gap:6px}
.llh-map__spot-tags span{display:inline-flex;align-items:center;gap:5px;font-size:11px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);padding:3px 8px;border-radius:5px;color:rgba(255,255,255,.85)}
.llh-map__spot-tags svg{width:11px;height:11px;color:var(--lx-gold)}
.llh-map__cta{display:flex;flex-direction:column;align-items:flex-end;gap:14px;flex:none}
.llh-map__cta-price{text-align:right}
.llh-map__cta-price em{font-style:normal;display:block;font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.5)}
.llh-map__cta-price b{font-family:var(--lx-serif);font-size:30px;font-weight:700;color:var(--lx-gold)}
.llh-map__cta-price small{font-size:12px;color:rgba(255,255,255,.6)}
.llh-map__cta-price .llh-map__atol{display:flex;align-items:center;justify-content:flex-end;gap:5px;font-size:10px;color:var(--lx-green)}
.llh-map__cta-price .llh-map__atol svg{width:12px;height:12px}
.llh-map__jump{
  margin-top:16px;padding-top:16px;border-top:1px solid rgba(255,255,255,.05);
  display:flex;align-items:center;gap:8px;overflow-x:auto;scrollbar-width:none;
}
.llh-map__jump::-webkit-scrollbar{display:none}
.llh-map__jump > span{flex:none;font-size:10px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.4);font-weight:500}
.llh-map__jump button{
  display:inline-flex;align-items:center;gap:6px;white-space:nowrap;padding:5px 11px;border-radius:var(--lx-r-sm);
  font-size:12px;background:rgba(255,255,255,.05);color:rgba(255,255,255,.7);
  border:1px solid transparent;cursor:pointer;transition:all .2s;
}
.llh-map__jump button:hover{background:rgba(255,255,255,.1);color:#fff}
.llh-map__jump button.is-active{background:rgba(197,168,128,.2);color:var(--lx-gold-light);border-color:var(--lx-gold-b2);font-weight:600}
.llh-map__jump svg{width:12px;height:12px}
.llh-map__jump small{color:rgba(255,255,255,.5)}

/* ---------- 12. MULTI-CENTRE ROUTE STUDIO ---------- */
.llh-routes__tabs{margin-top:36px;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px}
.llh-route-tab{
  padding:12px 24px;border-radius:999px;font-size:13px;font-weight:600;cursor:pointer;transition:all .25s;
  background:rgba(255,255,255,.05);color:rgba(255,255,255,.8);border:1px solid rgba(255,255,255,.15);
}
.llh-route-tab:hover{background:rgba(255,255,255,.1);color:#fff}
.llh-route-tab.is-active{
  background:linear-gradient(90deg,#D4AF37,#C5A880,#dfcaa8);color:#050B14;font-weight:700;
  border-color:transparent;box-shadow:0 8px 24px rgba(197,168,128,.3);
}
.llh-route{
  border-radius:var(--lx-r-xl);padding:clamp(20px,3vw,40px);
  background:rgba(7,21,38,.75);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.15);box-shadow:var(--lx-shadow-dark);
}
.llh-route[hidden]{display:none}
.llh-route__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,3vw,48px);align-items:center}
.llh-route__media{position:relative;aspect-ratio:16/11;border-radius:var(--lx-r-lg);overflow:hidden;border:1px solid rgba(255,255,255,.2);box-shadow:var(--lx-shadow-dark)}
.llh-route__media img{width:100%;height:100%;object-fit:cover;animation:llh-kenburns 28s ease-in-out infinite}
.llh-route__media-scrim{position:absolute;inset:0;background:linear-gradient(to top,#040914,rgba(4,9,20,.4),transparent)}
.llh-route__media-top{position:absolute;top:14px;left:14px;right:14px;display:flex;align-items:center;justify-content:space-between;gap:8px}
.llh-route__media-bottom{position:absolute;bottom:14px;left:14px;right:14px;color:#fff}
.llh-route__media-meta{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--lx-gold-light);margin-bottom:4px}
.llh-route__media-meta svg{width:14px;height:14px}
.llh-route__media-sub{font-family:var(--lx-serif);font-size:15px;font-weight:700}
.llh-route__flights{margin-top:16px;padding:16px;border-radius:var(--lx-r-lg);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;gap:14px}
.llh-route__flights-ic{width:42px;height:42px;flex:none;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(197,168,128,.2);border:1px solid var(--lx-gold-b2);color:var(--lx-gold)}
.llh-route__flights-ic svg{width:20px;height:20px}
.llh-route__flights b{display:block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:#fff}
.llh-route__flights span{font-size:11.5px;color:rgba(255,255,255,.7)}
.llh-route__head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding-bottom:16px;border-bottom:1px solid rgba(255,255,255,.1)}
.llh-route__head h3{font-family:var(--lx-serif);font-size:clamp(22px,2.6vw,30px);font-weight:700;color:#fff;margin:0}
.llh-route__head p{margin:2px 0 0;font-size:13px;color:var(--lx-gold-light)}
.llh-route__price{text-align:right;flex:none}
.llh-route__price em{font-style:normal;display:block;font-size:10px;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.6)}
.llh-route__price b{font-family:var(--lx-serif);font-size:30px;font-weight:700;color:var(--lx-gold-pale)}
.llh-route__price small{font-size:12px;color:rgba(255,255,255,.6)}
.llh-route__stops{margin-top:24px;display:grid;gap:14px}
.llh-stop{position:relative;padding-left:24px;border-left:1px solid var(--lx-gold-b2)}
.llh-stop:last-child{border-color:transparent}
.llh-stop__num{
  position:absolute;left:-9px;top:0;width:18px;height:18px;border-radius:50%;
  background:var(--lx-gold);color:#050B14;font-size:9px;font-weight:800;
  display:flex;align-items:center;justify-content:center;box-shadow:0 3px 8px rgba(0,0,0,.4);
}
.llh-stop__body{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--lx-r-lg);padding:16px;transition:background .25s}
.llh-stop__body:hover{background:rgba(255,255,255,.1)}
.llh-stop__row{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:4px}
.llh-stop__name{display:inline-flex;align-items:center;gap:7px;font-family:var(--lx-serif);font-size:17px;font-weight:700;color:#fff}
.llh-stop__name svg{width:14px;height:14px;color:var(--lx-gold)}
.llh-stop__nights{font-size:11px;font-weight:600;color:var(--lx-gold-light);background:rgba(0,0,0,.4);border:1px solid rgba(255,255,255,.1);padding:2px 10px;border-radius:999px}
.llh-stop__hotel{font-size:12.5px;color:rgba(255,255,255,.8);font-weight:500}
.llh-stop__hl{font-size:11.5px;color:rgba(255,255,255,.6);margin-top:4px;font-style:italic;font-weight:300}
.llh-route__incl{margin-top:24px;padding-top:16px;border-top:1px solid rgba(255,255,255,.1)}
.llh-route__incl b{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.16em;color:var(--lx-gold-light);font-weight:700;margin-bottom:10px}
.llh-route__incl-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;font-size:12px;color:rgba(255,255,255,.8)}
.llh-route__incl-grid > div{display:flex;align-items:flex-start;gap:8px}
.llh-route__incl-grid svg{width:14px;height:14px;color:var(--lx-green);flex:none;margin-top:2px}
.llh-route__actions{margin-top:28px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1);display:flex;flex-wrap:wrap;gap:12px}
.llh-route__actions > *{flex:1;min-width:200px}

/* ---------- 13. HOLIDAY TYPE TILES ---------- */
.llh-types{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}
.llh-type{position:relative;display:block;height:360px;border-radius:var(--lx-r-lg);overflow:hidden;box-shadow:var(--lx-shadow);transition:box-shadow .5s}
.llh-type:hover{box-shadow:var(--lx-shadow-lg)}
.llh-type img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--lx-ease)}
.llh-type:hover img{transform:scale(1.06)}
.llh-type__scrim{position:absolute;inset:0;background:linear-gradient(to top,rgba(7,21,38,.92),rgba(7,21,38,.4),rgba(0,0,0,.2))}
.llh-type__body{position:absolute;inset:0;padding:24px;display:flex;flex-direction:column;justify-content:space-between;color:#fff}
.llh-type__count{align-self:flex-end;font-size:10px;text-transform:uppercase;letter-spacing:.1em;font-weight:600;background:rgba(255,255,255,.2);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);padding:4px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.2)}
.llh-type h3{font-family:var(--lx-serif);font-size:28px;font-weight:700;color:#fff;transition:color .25s}
.llh-type:hover h3{color:var(--lx-gold-light)}
.llh-type__tagline{margin-top:8px;font-size:13px;color:rgba(255,255,255,.8);font-weight:300;line-height:1.6}
.llh-type__more{margin-top:16px;padding-top:12px;border-top:1px solid rgba(255,255,255,.15);display:flex;align-items:center;justify-content:space-between;font-size:12px;font-weight:600;color:var(--lx-gold-light)}
.llh-type__more svg{width:16px;height:16px;transition:transform .25s}
.llh-type:hover .llh-type__more svg{transform:translateX(6px)}

/* ---------- 14. DEAL CARD ---------- */
.llh-deal{
  display:flex;flex-direction:column;justify-content:space-between;height:100%;background:#fff;
  border:1px solid var(--lx-line);border-radius:var(--lx-r-lg);overflow:hidden;
  box-shadow:var(--lx-shadow);transition:all .5s var(--lx-ease);
}
.llh-deal:hover{border-color:var(--lx-gold-b2);box-shadow:var(--lx-shadow-lg);transform:translateY(-4px)}
.llh-deal__media{position:relative;height:250px;overflow:hidden;background:var(--lx-navy);display:block}
.llh-deal__media img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--lx-ease)}
.llh-deal:hover .llh-deal__media img{transform:scale(1.08)}
.llh-deal__scrim{position:absolute;inset:0;background:linear-gradient(to top,#040914,rgba(4,9,20,.3),transparent);opacity:.8;transition:opacity .4s}
.llh-deal:hover .llh-deal__scrim{opacity:.6}
.llh-deal__top{position:absolute;top:14px;left:14px;right:14px;display:flex;align-items:center;justify-content:space-between;gap:8px;z-index:2}
.llh-deal__bottom{position:absolute;bottom:12px;left:14px;right:14px;display:flex;align-items:center;justify-content:space-between;gap:8px;color:#fff;font-size:12px;z-index:2}
.llh-deal__dest{display:inline-flex;align-items:center;gap:6px;font-weight:600;color:rgba(255,255,255,.95)}
.llh-deal__dest::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--lx-gold)}
.llh-deal__body{padding:22px}
.llh-deal__row{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:6px}
.llh-deal__nights{display:inline-flex;align-items:center;gap:6px;font-size:12px;color:var(--lx-ink-muted);font-weight:500}
.llh-deal__nights svg{width:14px;height:14px;color:var(--lx-gold-dark)}
.llh-deal__stars{display:inline-flex;align-items:center;gap:2px;color:var(--lx-gold);margin-left:4px;font-size:11px;font-weight:700}
.llh-deal__price{text-align:right;font-size:12px;color:var(--lx-ink-muted);white-space:nowrap}
.llh-deal__price b{font-family:var(--lx-serif);font-size:26px;font-weight:700;color:var(--lx-navy)}
.llh-deal__was{text-decoration:line-through;opacity:.6;margin-right:4px}
.llh-deal__body h3{font-family:var(--lx-serif);font-size:18px;font-weight:700;line-height:1.3;color:var(--lx-navy);transition:color .25s;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.llh-deal:hover .llh-deal__body h3{color:var(--lx-gold-dark)}
.llh-deal__hl{margin:6px 0 0;font-size:12px;color:var(--lx-ink-muted);font-style:italic;font-weight:300;
  display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden}
.llh-deal__incl{margin-top:14px;padding-top:12px;border-top:1px solid var(--lx-line-soft);display:grid;gap:6px}
.llh-deal__incl div{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--lx-ink-muted)}
.llh-deal__incl svg{width:14px;height:14px;color:var(--lx-green);flex:none}
.llh-deal__incl span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.llh-deal__actions{padding:8px 22px 22px;display:flex;gap:10px}
.llh-deal__actions > *{flex:1;padding:11px 10px;border-radius:12px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;text-align:center;transition:all .25s;border:0;cursor:pointer}
.llh-deal__view{background:var(--lx-ivory);color:var(--lx-navy);border:1px solid var(--lx-line)!important}
.llh-deal__view:hover{background:var(--lx-ivory-2)}
.llh-deal__enq{background:linear-gradient(90deg,#D4AF37,#C5A880,#dfcaa8);color:#050B14;box-shadow:0 4px 14px rgba(197,168,128,.25)}
.llh-deal__enq:hover{background:linear-gradient(90deg,#e5c567,#ebd6b8)}

/* ---------- 15. BESPOKE CONFIGURATOR ---------- */
.llh-builder{display:grid;grid-template-columns:7fr 5fr;gap:32px;align-items:start}
.llh-builder__steps{display:grid;gap:22px}
.llh-panel{
  border-radius:var(--lx-r-xl);padding:clamp(18px,2.4vw,28px);
  background:rgba(7,21,38,.75);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.1);
}
.llh-panel__label{
  display:flex;align-items:center;gap:10px;font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:.16em;color:var(--lx-gold-light);margin-bottom:16px;
}
.llh-panel__label svg{width:16px;height:16px;color:var(--lx-gold)}
.llh-step-num{width:22px;height:22px;border-radius:50%;background:var(--lx-gold);color:#040914;font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:center;flex:none}
.llh-panel__split{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.llh-opt-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.llh-opt-grid--4{grid-template-columns:repeat(4,1fr)}
.llh-opt-grid--2{grid-template-columns:repeat(2,1fr)}
.llh-opt{
  text-align:left;padding:14px;border-radius:var(--lx-r-lg);cursor:pointer;transition:all .25s;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);color:#fff;
}
.llh-opt:hover{background:rgba(255,255,255,.1)}
.llh-opt.is-active{background:linear-gradient(180deg,rgba(197,168,128,.25),rgba(255,255,255,.05));border-color:var(--lx-gold);box-shadow:0 8px 20px rgba(0,0,0,.3)}
.llh-opt em{font-style:normal;display:block;font-size:10px;text-transform:uppercase;letter-spacing:.12em;color:var(--lx-gold-light);font-weight:600}
.llh-opt b{display:block;font-family:var(--lx-serif);font-size:15px;font-weight:700;margin-top:2px}
.llh-opt span{display:block;font-size:11px;color:rgba(255,255,255,.6);margin-top:4px}
.llh-pillbtn{
  padding:10px 8px;border-radius:12px;font-size:13px;font-weight:600;text-align:center;cursor:pointer;transition:all .25s;
  background:rgba(255,255,255,.05);color:rgba(255,255,255,.8);border:1px solid rgba(255,255,255,.1);
}
.llh-pillbtn:hover{background:rgba(255,255,255,.1)}
.llh-pillbtn.is-active{background:var(--lx-gold);color:#040914;font-weight:700;border-color:var(--lx-gold)}
.llh-rowbtn{
  display:block;width:100%;text-align:left;padding:11px 14px;border-radius:12px;
  font-size:12px;font-weight:600;cursor:pointer;transition:all .25s;margin-bottom:8px;
  background:rgba(255,255,255,.05);color:rgba(255,255,255,.8);border:1px solid rgba(255,255,255,.1);
}
.llh-rowbtn:hover{background:rgba(255,255,255,.1)}
.llh-rowbtn.is-active{background:var(--lx-gold);color:#040914;font-weight:700;border-color:var(--lx-gold)}

.llh-quote{position:sticky;top:110px}
.llh-quote__card{
  border-radius:var(--lx-r-xl);padding:clamp(20px,2.6vw,32px);
  background:rgba(7,21,38,.8);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.2);box-shadow:var(--lx-shadow-dark);color:#fff;
}
.llh-quote__media{position:relative;height:176px;border-radius:var(--lx-r-lg);overflow:hidden;border:1px solid rgba(255,255,255,.15);margin-bottom:22px}
.llh-quote__media img{width:100%;height:100%;object-fit:cover}
.llh-quote__media-scrim{position:absolute;inset:0;background:linear-gradient(to top,#040914,transparent)}
.llh-quote__media-body{position:absolute;left:16px;right:16px;bottom:12px}
.llh-quote__media-body em{font-style:normal;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.16em;color:var(--lx-gold-light)}
.llh-quote__media-body b{display:block;font-family:var(--lx-serif);font-size:18px;font-weight:700}
.llh-quote__price{border-bottom:1px solid rgba(255,255,255,.1);padding-bottom:20px;margin-bottom:20px}
.llh-quote__price em{font-style:normal;font-size:11px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.6);font-weight:600}
.llh-quote__amount{display:flex;align-items:baseline;gap:8px;margin-top:4px}
.llh-quote__amount b{font-family:var(--lx-serif);font-size:clamp(34px,4.4vw,48px);font-weight:700;letter-spacing:-.02em}
.llh-quote__amount span{font-size:14px;color:rgba(255,255,255,.7)}
.llh-quote__total{font-size:12px;color:var(--lx-gold-light);margin-top:4px}
.llh-quote__summary{display:grid;gap:10px;font-size:12px;color:rgba(255,255,255,.85);margin-bottom:22px}
.llh-quote__summary div{display:flex;align-items:flex-start;gap:8px}
.llh-quote__summary svg{width:16px;height:16px;color:var(--lx-green);flex:none;margin-top:1px}
.llh-quote__hl{color:rgba(255,255,255,.7);font-style:italic}
.llh-quote__hl svg{color:var(--lx-gold)!important}
.llh-quote__atol{
  background:rgba(34,197,94,.1);border:1px solid rgba(34,197,94,.25);border-radius:12px;
  padding:12px;margin-bottom:22px;display:flex;align-items:center;gap:10px;font-size:12px;color:rgba(255,255,255,.9);
}
.llh-quote__atol svg{width:16px;height:16px;color:var(--lx-green);flex:none}
.llh-quote__note{margin-top:12px;text-align:center;font-size:11px;color:rgba(255,255,255,.5)}

/* ---------- 16. METRICS + TESTIMONIALS ---------- */
.llh-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;margin-bottom:60px}
.llh-metric{
  border-radius:var(--lx-r-xl);padding:26px;text-align:center;
  background:rgba(7,21,38,.75);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.1);transition:border-color .3s;
}
.llh-metric:hover{border-color:var(--lx-gold-b2)}
.llh-metric__n{font-family:var(--lx-serif);font-size:clamp(28px,3.6vw,48px);font-weight:700;color:var(--lx-gold-light);display:flex;align-items:center;justify-content:center;gap:6px}
.llh-metric__n svg{width:26px;height:26px;fill:var(--lx-gold);color:var(--lx-gold)}
.llh-metric b{display:block;font-size:13px;font-weight:600;color:rgba(255,255,255,.95);margin-top:8px}
.llh-metric span{display:block;font-size:11px;color:rgba(255,255,255,.5);margin-top:4px}

.llh-quotebox{
  border-radius:var(--lx-r-xl);padding:clamp(24px,4vw,48px);margin-bottom:60px;position:relative;
  background:rgba(7,21,38,.75);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.15);box-shadow:var(--lx-shadow-dark);
}
.llh-quotebox__head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:30px;flex-wrap:wrap}
.llh-tp-stars{display:flex;align-items:center;gap:3px}
.llh-tp-stars i{width:20px;height:20px;background:var(--lx-trustpilot);border-radius:3px;display:flex;align-items:center;justify-content:center;color:#fff}
.llh-tp-stars svg{width:13px;height:13px;fill:currentColor}
.llh-quotebox__arrows{display:flex;gap:8px}
.llh-quotebox__arrows button{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;border:0;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .25s}
.llh-quotebox__arrows button:hover{background:var(--lx-gold);color:#040914}
.llh-quotebox__arrows svg{width:20px;height:20px}
.llh-testimonial[hidden]{display:none}
.llh-testimonial p{font-family:var(--lx-serif);font-size:clamp(18px,2.4vw,30px);font-weight:300;font-style:italic;line-height:1.55;color:rgba(255,255,255,.95);padding-left:24px;margin:0}
.llh-testimonial__foot{margin-top:30px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1)}
.llh-testimonial__name{display:flex;align-items:center;gap:10px;font-family:var(--lx-serif);font-size:18px;font-weight:700;color:#fff}
.llh-testimonial__verified{font-family:var(--lx-sans);font-size:11px;font-weight:400;color:var(--lx-green);display:inline-flex;align-items:center;gap:5px;background:rgba(34,197,94,.1);border:1px solid rgba(34,197,94,.2);padding:2px 9px;border-radius:999px}
.llh-testimonial__verified svg{width:12px;height:12px}
.llh-testimonial__trip{font-size:12px;color:var(--lx-gold-light);margin-top:2px}
.llh-testimonial__loc{font-size:11px;color:rgba(255,255,255,.5)}
.llh-dots{display:flex;align-items:center;gap:8px;margin-top:18px}
.llh-dots button{height:8px;width:8px;border-radius:999px;background:rgba(255,255,255,.2);border:0;cursor:pointer;transition:all .3s;padding:0}
.llh-dots button.is-active{width:32px;background:var(--lx-gold)}

.llh-concierge{
  border-radius:var(--lx-r-xl);padding:clamp(20px,3vw,32px);
  background:rgba(7,21,38,.75);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.15);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:22px;
}
.llh-concierge__left{display:flex;align-items:center;gap:18px}
.llh-concierge__ic{position:relative;width:54px;height:54px;flex:none;border-radius:18px;display:flex;align-items:center;justify-content:center;background:rgba(197,168,128,.2);border:1px solid var(--lx-gold-b2);color:var(--lx-gold)}
.llh-concierge__ic svg{width:24px;height:24px}
.llh-concierge__ic::after{content:"";position:absolute;top:-3px;right:-3px;width:14px;height:14px;border-radius:50%;background:var(--lx-green);border:2px solid #040914;animation:llh-pulse 2s infinite}
.llh-concierge b{display:flex;flex-wrap:wrap;align-items:center;gap:10px;font-family:var(--lx-serif);font-size:20px;font-weight:700;color:#fff}
.llh-concierge__live{font-family:var(--lx-sans);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;background:rgba(34,197,94,.2);color:var(--lx-green);padding:2px 8px;border-radius:5px}
.llh-concierge p{margin:2px 0 0;font-size:13px;color:rgba(255,255,255,.7)}
.llh-concierge__actions{display:flex;flex-wrap:wrap;gap:12px}

/* ---------- 17. EDITORIAL / ARTICLES ---------- */
.llh-article{
  display:flex;flex-direction:column;justify-content:space-between;background:#fff;
  border:1px solid var(--lx-line);border-radius:var(--lx-r-lg);overflow:hidden;
  box-shadow:var(--lx-shadow);transition:all .3s var(--lx-ease);
}
.llh-article:hover{box-shadow:var(--lx-shadow-lg);transform:translateY(-3px)}
.llh-article__media{position:relative;display:block;height:224px;overflow:hidden}
.llh-article__media img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--lx-ease)}
.llh-article:hover .llh-article__media img{transform:scale(1.06)}
.llh-article__cat{
  position:absolute;top:14px;left:14px;background:rgba(255,255,255,.95);color:var(--lx-navy);
  font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;
  padding:4px 12px;border-radius:999px;box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.llh-article__body{padding:22px}
.llh-article__meta{display:flex;align-items:center;gap:10px;font-size:12px;color:var(--lx-ink-muted);margin-bottom:12px}
.llh-article__meta svg{width:14px;height:14px;color:var(--lx-gold-dark)}
.llh-article__meta span{display:inline-flex;align-items:center;gap:5px}
.llh-article h3{font-family:var(--lx-serif);font-size:21px;font-weight:700;line-height:1.3;color:var(--lx-navy);transition:color .25s}
.llh-article:hover h3{color:var(--lx-gold-dark)}
.llh-article__excerpt{margin-top:12px;font-size:13px;color:var(--lx-ink-muted);line-height:1.65;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.llh-article__foot{padding:14px 22px 22px;border-top:1px solid var(--lx-line-soft);margin-top:8px}
.llh-article__foot a{display:inline-flex;align-items:center;gap:8px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--lx-navy);transition:color .25s}
.llh-article__foot svg{width:14px;height:14px;transition:transform .25s}
.llh-article:hover .llh-article__foot a{color:var(--lx-gold-dark)}
.llh-article:hover .llh-article__foot svg{transform:translateX(5px)}
.llh-textlink{
  display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:700;color:var(--lx-navy);
  padding-bottom:4px;border-bottom:1px solid rgba(7,21,38,.2);transition:all .25s;
}
.llh-textlink:hover{color:var(--lx-gold-dark);border-color:var(--lx-gold-dark)}
.llh-textlink svg{width:16px;height:16px;transition:transform .25s}
.llh-textlink:hover svg{transform:translateX(5px)}

/* ---------- 18. FINAL CTA ---------- */
.llh-finalcta{background:var(--lx-navy-deep);color:#fff;text-align:center;position:relative;overflow:hidden}
.llh-finalcta h2{font-size:clamp(28px,5vw,60px);line-height:1.12;color:#fff}
.llh-finalcta__ctas{margin-top:40px;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:14px}
.llh-finalcta__trust{
  margin-top:48px;padding-top:32px;border-top:1px solid rgba(255,255,255,.1);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:16px 36px;
  font-size:12px;color:rgba(255,255,255,.7);
}
.llh-finalcta__trust div{display:inline-flex;align-items:center;gap:8px}
.llh-finalcta__trust svg{width:16px;height:16px;color:var(--lx-gold)}
.llh-finalcta__trust .llh-ic-green{color:var(--lx-green)}

/* ---------- 19. FOOTER ---------- */
.llh-foot{background:var(--lx-navy-deep);color:#A0AEC0;border-top:1px solid rgba(255,255,255,.1);padding:64px 0 48px}
.llh-foot__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;padding-bottom:56px;border-bottom:1px solid rgba(255,255,255,.1)}
.llh-foot__bio{margin-top:16px;font-size:13px;line-height:1.7;max-width:42ch}
.llh-foot__contact{margin-top:24px;display:grid;gap:10px;font-size:13px}
.llh-foot__contact a,.llh-foot__contact div{display:flex;align-items:flex-start;gap:10px;color:rgba(255,255,255,.9);transition:color .2s}
.llh-foot__contact a:hover{color:var(--lx-gold)}
.llh-foot__contact svg{width:16px;height:16px;color:var(--lx-gold);flex:none;margin-top:2px}
.llh-foot__wa{color:#9fe6ba!important}
.llh-foot__wa svg{color:#9fe6ba!important}
.llh-foot__addr{color:#8A9BB5!important}
.llh-foot__badges{margin-top:24px;display:flex;flex-wrap:wrap;gap:12px}
.llh-foot__badge{
  display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);padding:7px 14px;border-radius:8px;
  font-size:12px;color:rgba(255,255,255,.9);font-weight:500;
}
.llh-foot__badge svg{width:16px;height:16px;color:var(--lx-green)}
.llh-foot h3{font-size:11px;text-transform:uppercase;font-weight:700;letter-spacing:.16em;color:#fff;margin-bottom:18px}
.llh-foot__col a,.llh-foot__col li{display:block;font-size:13px;padding:5px 0;transition:color .2s}
.llh-foot__col a:hover{color:var(--lx-gold)}
.llh-foot__col ul{list-style:none;margin:0;padding:0}
.llh-foot__all{color:var(--lx-gold)!important;font-weight:600;padding-top:8px!important}
.llh-foot__bottom{padding-top:32px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;font-size:12px;color:#718096}
.llh-foot__social{display:flex;align-items:center;gap:24px}
.llh-foot__social a:hover{color:#fff}

/* ---------- 20. ENQUIRY MODAL (V2 skin) ---------- */
.llh-modal{
  position:fixed;inset:0;z-index:120;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(4,10,20,.8);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
  overflow-y:auto;
}
.llh-modal.is-open{display:flex}
.llh-modal__box{
  width:100%;max-width:660px;background:#fff;border-radius:var(--lx-r-xl);overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.5);position:relative;margin:auto;
}
.llh-modal__close{
  position:absolute;top:14px;right:14px;width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.15);color:#fff;border:0;cursor:pointer;font-size:22px;line-height:1;z-index:3;
}
.llh-modal__head{background:var(--lx-navy);color:#fff;padding:26px 28px}
.llh-modal__head h3{font-family:var(--lx-serif);font-size:26px;font-weight:700;color:#fff;margin:8px 0 6px}
.llh-modal__head p{margin:0;font-size:13px;color:rgba(255,255,255,.75)}
.llh-modal__body{padding:26px 28px 30px}
.llh-modal__prefill{
  display:none;margin-bottom:18px;padding:12px 14px;border-radius:12px;
  background:var(--lx-ivory);border:1px solid var(--lx-line);font-size:12px;color:var(--lx-ink-muted);
}
.llh-modal__prefill.is-on{display:block}
.llh-modal__prefill b{display:block;color:var(--lx-navy);font-size:13px;margin-top:2px}
.llh-form{display:grid;gap:14px}
.llh-form__row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.llh-form label{display:block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--lx-ink-muted);margin-bottom:6px}
.llh-form input,.llh-form select,.llh-form textarea{
  width:100%;padding:12px 14px;border-radius:12px;border:1px solid var(--lx-line);
  background:var(--lx-ivory);font-family:inherit;font-size:14px;color:var(--lx-ink);transition:all .2s;
}
.llh-form input:focus,.llh-form select:focus,.llh-form textarea:focus{outline:none;border-color:var(--lx-gold);background:#fff;box-shadow:0 0 0 3px rgba(197,168,128,.15)}
.llh-form textarea{min-height:88px;resize:vertical}
.llh-form__note{font-size:11px;color:var(--lx-ink-muted);text-align:center;margin:0}
.llh-form .form-success{display:none;padding:14px;border-radius:12px;background:#f0fdf4;border:1px solid #bbf7d0;color:var(--lx-green-deep);font-size:13px;font-weight:600;text-align:center}

/* ---------- 21. DEAL DETAIL (MONEY PAGE) ---------- */
.llh-dealpage{background:var(--lx-ivory);color:var(--lx-ink)}
.llh-dealbar{background:#050B14;color:rgba(255,255,255,.9);font-size:12px;border-bottom:1px solid rgba(255,255,255,.1);padding:10px 0}
.llh-dealbar__inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px}
.llh-dealbar__left{display:flex;flex-wrap:wrap;align-items:center;gap:22px}
.llh-dealbar span{display:inline-flex;align-items:center;gap:6px}
.llh-dealbar svg{width:14px;height:14px}
.llh-dealbar__atol{color:var(--lx-gold);font-weight:600}
.llh-dealbar__atol svg{color:var(--lx-green)}
.llh-dealbar__dep{color:var(--lx-green);font-weight:600}
.llh-dealbar a{color:inherit;display:inline-flex;align-items:center;gap:6px}
.llh-dealbar a:hover{color:var(--lx-gold)}

.llh-crumbs{background:#fff;border-bottom:1px solid var(--lx-line)}
.llh-crumbs__inner{display:flex;align-items:center;gap:8px;padding:12px 0;font-size:12px;color:var(--lx-ink-muted);overflow-x:auto;white-space:nowrap}
.llh-crumbs a:hover{color:var(--lx-navy)}
.llh-crumbs svg{width:14px;height:14px;color:var(--lx-gold);flex:none}
.llh-crumbs__current{color:var(--lx-navy);font-weight:600}

.llh-dealhead{background:#fff;border-bottom:1px solid var(--lx-line);padding:36px 0}
.llh-dealhead__row{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:24px}
.llh-dealhead__main{max-width:760px}
.llh-dealhead__badges{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}
.llh-dealhead h1{font-size:clamp(26px,4.4vw,48px);line-height:1.1;font-weight:700;color:var(--lx-navy);letter-spacing:-.02em}
.llh-dealhead__meta{display:flex;flex-wrap:wrap;align-items:center;gap:18px;margin-top:14px;font-size:14px;color:var(--lx-ink-muted)}
.llh-dealhead__meta > div{display:inline-flex;align-items:center;gap:7px}
.llh-dealhead__meta svg{width:16px;height:16px;color:var(--lx-gold)}
.llh-stars{display:inline-flex;align-items:center;gap:2px;color:var(--lx-gold)}
.llh-stars svg{width:16px;height:16px;fill:currentColor}
.llh-dealhead__pricebox{
  background:var(--lx-ivory);border:1px solid var(--lx-line);border-radius:var(--lx-r-lg);
  padding:20px;display:flex;flex-wrap:wrap;align-items:center;gap:16px;flex:none;
}
.llh-dealhead__pricebox em{font-style:normal;font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:var(--lx-ink-muted);font-weight:600}
.llh-dealhead__pricebox b{font-family:var(--lx-serif);font-size:38px;font-weight:700;color:var(--lx-navy);display:block;line-height:1.1}
.llh-dealhead__pricebox small{display:block;font-size:11px;color:var(--lx-green-deep);font-weight:600;margin-top:2px}
.llh-perks{margin-top:32px;padding-top:24px;border-top:1px solid var(--lx-line-soft);display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.llh-perk{display:flex;align-items:center;gap:12px}
.llh-perk__ic{width:42px;height:42px;flex:none;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(197,168,128,.15);color:var(--lx-gold-dark)}
.llh-perk__ic svg{width:20px;height:20px}
.llh-perk b{display:block;font-size:12.5px;font-weight:700;color:var(--lx-navy)}
.llh-perk span{font-size:12px;color:var(--lx-ink-muted)}

.llh-dealgrid{display:grid;grid-template-columns:8fr 4fr;gap:40px;align-items:start;padding-block:clamp(32px,5vw,56px)}
.llh-dealmain{display:grid;gap:48px;min-width:0}
.lx-card{background:#fff;border:1px solid var(--lx-line);border-radius:var(--lx-r-xl);box-shadow:var(--lx-shadow);padding:clamp(20px,3vw,32px)}
.lx-card h2,.lx-card h3{color:var(--lx-navy)}
.lx-card__kicker{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:var(--lx-gold);margin-bottom:6px}

/* Gallery */
.llh-gallery{background:#fff;border:1px solid var(--lx-line);border-radius:var(--lx-r-xl);box-shadow:var(--lx-shadow);padding:14px}
.llh-gallery__stage{position:relative;height:clamp(300px,44vw,520px);border-radius:var(--lx-r-lg);overflow:hidden;background:var(--lx-navy)}
.llh-gallery__track{position:absolute;inset:0}
.llh-gallery__slide{position:absolute;inset:0;margin:0;opacity:0;transform:scale(1.04);transition:opacity .7s ease,transform 7s ease;pointer-events:none}
.llh-gallery__slide.is-active{opacity:1;transform:scale(1);pointer-events:auto}
.llh-gallery__slide img{width:100%;height:100%;object-fit:cover;display:block}
.llh-gallery__scrim{position:absolute;inset:0;background:linear-gradient(to top,rgba(4,9,20,.78),transparent 46%);pointer-events:none;z-index:2}
.llh-gallery__cap{position:absolute;left:16px;right:16px;bottom:16px;z-index:3;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px;color:#fff;font-size:12px}
.llh-gallery__cap > span:first-child{background:rgba(0,0,0,.5);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);padding:6px 14px;border-radius:999px;font-variant-numeric:tabular-nums}
.llh-gallery__nav{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:44px;height:44px;border:0;border-radius:50%;
  background:rgba(255,255,255,.92);color:var(--lx-navy);cursor:pointer;display:grid;place-items:center;
  box-shadow:0 6px 20px rgba(4,9,20,.28);transition:background .2s,transform .2s;opacity:0}
.llh-gallery:hover .llh-gallery__nav,.llh-gallery__nav:focus-visible{opacity:1}
.llh-gallery__nav:hover{background:#fff;transform:translateY(-50%) scale(1.06)}
.llh-gallery__nav svg{width:20px;height:20px}
.llh-gallery__nav--prev{left:14px}
.llh-gallery__nav--next{right:14px}
.llh-gallery__thumbs{display:grid;grid-template-columns:repeat(6,1fr);gap:8px;margin-top:12px}
.llh-gallery__thumbs button{aspect-ratio:4/3;height:auto;border-radius:12px;overflow:hidden;border:2px solid transparent;opacity:.6;cursor:pointer;padding:0;background:none;transition:opacity .25s,border-color .25s,box-shadow .25s}
.llh-gallery__thumbs button img{width:100%;height:100%;object-fit:cover;display:block}
.llh-gallery__thumbs button:hover{opacity:1}
.llh-gallery__thumbs button.is-active{border-color:var(--lx-gold);opacity:1;box-shadow:0 0 0 3px rgba(197,168,128,.3)}
@media (prefers-reduced-motion:reduce){
  .llh-gallery__slide{transition:opacity .3s ease;transform:none}
  .llh-gallery__slide.is-active{transform:none}
  .llh-gallery__nav{opacity:1}
}
@media (max-width:640px){
  .llh-gallery__thumbs{grid-template-columns:repeat(5,1fr)}
  .llh-gallery__nav{opacity:1;width:38px;height:38px}
}
.llh-gallery__thumbs img{width:100%;height:100%;object-fit:cover}
.llh-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.llh-chips span{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:600;background:var(--lx-ivory);border:1px solid var(--lx-line);color:var(--lx-navy);padding:6px 12px;border-radius:999px}
.llh-chips svg{width:13px;height:13px;color:var(--lx-green)}

/* Price calendar */
.llh-cal{background:#fff;border:1px solid var(--lx-line);border-radius:var(--lx-r-xl);box-shadow:var(--lx-shadow-lg);overflow:hidden}
.llh-cal__head{background:var(--lx-navy);color:#fff;padding:clamp(20px,3vw,32px)}
.llh-cal__head-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:22px}
.llh-cal__head h3{font-family:var(--lx-serif);font-size:clamp(20px,2.6vw,30px);font-weight:700;color:#fff;margin:8px 0 4px}
.llh-cal__head p{margin:0;font-size:13px;color:rgba(255,255,255,.7);max-width:56ch}
.llh-cal__stat{
  display:flex;align-items:center;gap:14px;background:rgba(255,255,255,.1);
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  padding:12px 18px;border-radius:var(--lx-r-lg);border:1px solid rgba(255,255,255,.1);
}
.llh-cal__stat em{font-style:normal;display:block;font-size:10px;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.7)}
.llh-cal__stat b{font-family:var(--lx-serif);font-size:20px;font-weight:700;color:var(--lx-gold)}
.llh-cal__stat b.llh-green{color:var(--lx-green)}
.llh-cal__sep{width:1px;height:32px;background:rgba(255,255,255,.15)}
.llh-cal__tools{margin-top:24px;padding-top:24px;border-top:1px solid rgba(255,255,255,.1);display:grid;grid-template-columns:1fr 1fr;gap:18px}
.llh-cal__tools label{display:block;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--lx-gold);margin-bottom:8px}
.llh-cal__durations{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.llh-cal__dur{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;
  padding:10px 8px;border-radius:12px;font-size:12px;font-weight:700;cursor:pointer;transition:all .2s;
  background:rgba(255,255,255,.05);color:rgba(255,255,255,.9);border:1px solid rgba(255,255,255,.15);
}
.llh-cal__dur small{font-size:10px;font-weight:400;color:var(--lx-gold)}
.llh-cal__dur.is-active{background:var(--lx-gold);color:var(--lx-navy);border-color:var(--lx-gold)}
.llh-cal__dur.is-active small{color:var(--lx-navy)}
.llh-cal__airport{position:relative}
.llh-cal__airport select{
  width:100%;padding:11px 40px 11px 16px;border-radius:12px;appearance:none;cursor:pointer;
  background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.2);
  font-family:inherit;font-size:12px;font-weight:500;
}
.llh-cal__airport select:focus{outline:none;border-color:var(--lx-gold)}
.llh-cal__airport select option{background:#fff;color:var(--lx-navy)}
.llh-cal__airport svg{position:absolute;right:14px;top:50%;transform:translateY(-50%);width:16px;height:16px;color:var(--lx-gold);pointer-events:none}

.llh-cal__months{background:var(--lx-ivory);border-bottom:1px solid var(--lx-line);padding:14px clamp(16px,2.4vw,26px)}
.llh-cal__months-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.llh-cal__months-head span{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--lx-ink-muted)}
.llh-cal__nav{display:flex;gap:6px}
.llh-cal__nav button{width:28px;height:28px;border-radius:50%;background:#fff;border:1px solid var(--lx-line);color:var(--lx-navy);cursor:pointer;display:flex;align-items:center;justify-content:center}
.llh-cal__nav button:disabled{opacity:.3;cursor:not-allowed}
.llh-cal__nav svg{width:16px;height:16px}
.llh-cal__month-pills{display:flex;gap:8px;overflow-x:auto;padding-bottom:4px;scrollbar-width:thin}
.llh-cal__mp{
  flex:none;padding:8px 14px;border-radius:12px;text-align:left;cursor:pointer;transition:all .2s;
  background:#fff;border:1px solid var(--lx-line);color:var(--lx-navy);
}
.llh-cal__mp b{display:block;font-size:12px;font-weight:700}
.llh-cal__mp small{display:block;font-size:11px;color:var(--lx-green-deep);font-weight:600;margin-top:2px}
.llh-cal__mp.is-active{background:var(--lx-navy);color:#fff;border-color:var(--lx-navy)}
.llh-cal__mp.is-active small{color:var(--lx-gold)}

.llh-cal__body{padding:clamp(16px,3vw,32px)}
.llh-cal__title-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:14px;margin-bottom:24px}
.llh-cal__title{font-family:var(--lx-serif);font-size:24px;font-weight:700;color:var(--lx-navy)}
.llh-cal__sub{font-size:12px;color:var(--lx-ink-muted);margin-top:2px}
.llh-cal__sub strong{color:var(--lx-navy)}
.llh-cal__legend{display:flex;flex-wrap:wrap;align-items:center;gap:14px;font-size:11px;color:var(--lx-ink-muted)}
.llh-cal__legend div{display:inline-flex;align-items:center;gap:6px}
.llh-cal__legend i{width:10px;height:10px;border-radius:50%}
.llh-cal__weekdays{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:8px;margin-bottom:8px;text-align:center;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--lx-ink-muted)}
.llh-cal__grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:8px}
.llh-cal__empty{min-height:70px;border-radius:12px;background:rgba(251,249,245,.4);opacity:.3}
.llh-cal__day{
  position:relative;min-width:0;min-height:70px;padding:8px;border-radius:12px;text-align:left;cursor:pointer;
  display:flex;flex-direction:column;justify-content:space-between;transition:all .2s;
  background:#fff;border:1px solid var(--lx-line);color:var(--lx-navy);
}
.llh-cal__day:hover{background:#F9F7F2}
.llh-cal__day-top{display:flex;align-items:center;justify-content:space-between;width:100%}
.llh-cal__day-num{font-size:13px;font-weight:700}
.llh-cal__day-price{font-family:var(--lx-serif);font-size:14px;font-weight:700;margin-top:6px}
.llh-cal__day-pp{font-size:9px;color:var(--lx-ink-muted)}
.llh-cal__day.is-low{background:#f0fdf4;border-color:#86efac}
.llh-cal__day.is-low .llh-cal__day-price{color:var(--lx-green-deep)}
.llh-cal__best{font-size:9px;font-weight:800;text-transform:uppercase;background:var(--lx-green);color:#fff;padding:2px 6px;border-radius:4px}
.llh-cal__day.is-selected{background:var(--lx-navy);color:#fff;border-color:var(--lx-gold);box-shadow:0 0 0 2px var(--lx-gold),0 8px 20px rgba(7,21,38,.25);z-index:2}
.llh-cal__day.is-selected .llh-cal__day-price{color:var(--lx-gold)}
.llh-cal__day.is-selected .llh-cal__day-pp{color:rgba(255,255,255,.6)}
.llh-cal__dot{width:8px;height:8px;border-radius:50%;background:var(--lx-gold);animation:llh-pulse 1.6s infinite}
.llh-cal__note{
  margin-top:24px;padding:16px;border-radius:var(--lx-r-lg);background:var(--lx-ivory);border:1px solid var(--lx-line);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;
}
.llh-cal__note-left{display:flex;align-items:flex-start;gap:12px}
.llh-cal__note-ic{width:36px;height:36px;flex:none;border-radius:12px;background:rgba(197,168,128,.2);color:var(--lx-gold-dark);display:flex;align-items:center;justify-content:center}
.llh-cal__note-ic svg{width:16px;height:16px}
.llh-cal__note b{display:block;font-size:12px;color:var(--lx-navy)}
.llh-cal__note span{font-size:12px;color:var(--lx-ink-muted)}
.llh-cal__lock{
  display:inline-flex;align-items:center;gap:8px;flex:none;font-size:12px;font-weight:600;color:var(--lx-green-deep);
  background:rgba(220,252,231,.6);border:1px solid rgba(134,239,172,.5);padding:7px 14px;border-radius:999px;
}
.llh-cal__lock svg{width:14px;height:14px}

/* Rooms */
.llh-rooms{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.llh-room{
  border:1px solid var(--lx-line);border-radius:var(--lx-r-lg);overflow:hidden;cursor:pointer;
  transition:all .25s;background:#fff;display:flex;flex-direction:column;
}
.llh-room:hover{border-color:var(--lx-gold-b2)}
.llh-room.is-active{border-color:var(--lx-gold);box-shadow:0 0 0 2px rgba(197,168,128,.35)}
.llh-room__media{position:relative;height:170px;overflow:hidden;background:var(--lx-navy)}
.llh-room__media img{width:100%;height:100%;object-fit:cover}
.llh-room__delta{position:absolute;top:12px;right:12px;background:var(--lx-navy);color:var(--lx-gold);font-size:11px;font-weight:700;padding:4px 10px;border-radius:999px}
.llh-room__body{padding:18px;flex:1;display:flex;flex-direction:column;justify-content:space-between;gap:14px}
.llh-room__body h4{font-family:var(--lx-serif);font-size:17px;font-weight:700;color:var(--lx-navy);margin:0}
.llh-room__body p{margin:6px 0 0;font-size:12.5px;color:var(--lx-ink-muted);line-height:1.6}
.llh-room__feats{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}
.llh-room__feats span{font-size:10px;font-weight:600;background:var(--lx-ivory);border:1px solid var(--lx-line);padding:3px 8px;border-radius:6px;color:var(--lx-ink-muted)}
.llh-room__pick{
  width:100%;padding:10px;border-radius:12px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;
  background:var(--lx-ivory);border:1px solid var(--lx-line);color:var(--lx-navy);
  display:inline-flex;align-items:center;justify-content:center;gap:6px;cursor:pointer;transition:all .2s;
}
.llh-room.is-active .llh-room__pick{background:var(--lx-navy);color:#fff;border-color:var(--lx-navy)}
.llh-room.is-active .llh-room__pick svg{color:var(--lx-gold)}
.llh-room__pick svg{width:14px;height:14px}

/* Itinerary timeline */
.llh-tabs-sm{display:inline-flex;align-items:center;background:var(--lx-ivory);padding:4px;border-radius:12px;border:1px solid var(--lx-line)}
.llh-tabs-sm button{padding:7px 14px;border-radius:9px;font-size:12px;font-weight:700;color:var(--lx-ink-muted);background:none;border:0;cursor:pointer;transition:all .2s}
.llh-tabs-sm button.is-active{background:var(--lx-navy);color:#fff}
.llh-timeline{position:relative;display:grid;gap:22px}
.llh-timeline::before{content:"";position:absolute;left:16px;top:10px;bottom:10px;width:2px;background:var(--lx-line)}
.llh-timeline > div{position:relative;padding-left:44px}
.llh-timeline__dot{position:absolute;left:9px;top:2px;width:16px;height:16px;border-radius:50%;background:var(--lx-gold);border:4px solid #fff;box-shadow:0 2px 6px rgba(0,0,0,.15)}
.llh-timeline__card{background:var(--lx-ivory);border:1px solid var(--lx-line);border-radius:var(--lx-r-lg);padding:18px}
.llh-timeline__row{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:8px;margin-bottom:6px}
.llh-timeline__day{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--lx-gold)}
.llh-timeline__meals{font-size:11px;background:#fff;border:1px solid var(--lx-line);color:var(--lx-ink-muted);padding:2px 10px;border-radius:999px}
.llh-timeline__card h4{font-family:var(--lx-serif);font-size:17px;font-weight:700;color:var(--lx-navy);margin:0}
.llh-timeline__card p{margin:8px 0 0;font-size:13px;color:var(--lx-ink-muted);line-height:1.7;font-weight:300}
.llh-timeline__stay{margin-top:12px;font-size:12px;font-weight:600;color:var(--lx-navy);display:flex;align-items:center;gap:8px}
.llh-timeline__stay::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--lx-gold)}

/* Inclusions */
.llh-incl-group{border-bottom:1px solid var(--lx-line-soft);padding-bottom:22px;margin-bottom:22px}
.llh-incl-group:last-of-type{border:0;padding-bottom:0;margin-bottom:0}
.llh-incl-group h4{display:flex;align-items:center;gap:8px;font-family:var(--lx-serif);font-size:16px;font-weight:700;color:var(--lx-navy);margin:0 0 12px}
.llh-incl-group h4 svg{width:16px;height:16px;color:var(--lx-gold)}
.llh-incl-group > div{display:flex;align-items:flex-start;gap:10px;font-size:13px;color:var(--lx-ink-muted);padding:3px 0}
.llh-incl-group > div svg{width:16px;height:16px;color:var(--lx-green);flex:none;margin-top:2px}
.llh-excl{margin-top:28px;padding:20px;border-radius:var(--lx-r-lg);background:var(--lx-ivory);border:1px solid var(--lx-line)}
.llh-excl h5{display:flex;align-items:center;gap:8px;font-family:var(--lx-serif);font-size:14px;font-weight:700;color:var(--lx-navy);margin:0 0 10px}
.llh-excl ul{list-style:none;margin:0;padding:0;display:grid;gap:6px;font-size:12px;color:var(--lx-ink-muted)}
.llh-excl li{display:flex;gap:8px}
.llh-excl li::before{content:"•";color:var(--lx-gold-dark)}

/* Payment plan */
.llh-payplan{background:var(--lx-navy);color:#fff;border-radius:var(--lx-r-xl);padding:clamp(20px,3vw,32px);box-shadow:var(--lx-shadow-lg);display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:24px}
.llh-payplan h3{font-family:var(--lx-serif);font-size:clamp(20px,2.6vw,30px);font-weight:700;color:#fff;margin:8px 0 4px}
.llh-payplan p{margin:0;font-size:13px;color:rgba(255,255,255,.7);max-width:52ch}
.llh-payplan__box{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);border-radius:var(--lx-r-lg);padding:20px;text-align:center;flex:none}
.llh-payplan__box em{font-style:normal;font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.7)}
.llh-payplan__box b{display:block;font-family:var(--lx-serif);font-size:32px;font-weight:700;color:var(--lx-gold);margin-top:2px}
.llh-payplan__box small{display:block;font-size:12px;color:var(--lx-green);font-weight:600}
.llh-payplan__box span{display:block;font-size:10px;color:rgba(255,255,255,.6);margin-top:8px}

/* FAQ accordion */
.llh-faq{display:grid;gap:12px}
.llh-faq__item{border:1px solid var(--lx-line);border-radius:var(--lx-r-lg);overflow:hidden;background:#fff}
.llh-faq__q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;text-align:left;
  padding:18px 20px;background:none;border:0;cursor:pointer;transition:background .2s;
  font-family:var(--lx-serif);font-size:16px;font-weight:700;color:var(--lx-navy);
}
.llh-faq__q:hover{background:var(--lx-ivory)}
.llh-faq__q svg{width:16px;height:16px;color:var(--lx-gold);flex:none;transition:transform .25s}
.llh-faq__item.is-open .llh-faq__q svg{transform:rotate(90deg)}
.llh-faq__a{display:none;padding:16px 20px 20px;font-size:13.5px;line-height:1.75;color:var(--lx-ink-muted);border-top:1px solid var(--lx-line-soft);background:var(--lx-ivory)}
.llh-faq__item.is-open .llh-faq__a{display:block}

/* Sticky booking widget */
.llh-book{position:sticky;top:110px;display:grid;gap:20px}
.llh-book__card{position:relative;background:#fff;border:1px solid var(--lx-line);border-radius:var(--lx-r-xl);box-shadow:var(--lx-shadow-lg);padding:clamp(20px,2.4vw,28px);overflow:hidden}
.llh-book__card::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#D4AF37,#C5A880,#dfcaa8)}
.llh-book__price{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding-bottom:18px;border-bottom:1px solid var(--lx-line-soft)}
.llh-book__price em{font-style:normal;font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:var(--lx-ink-muted);font-weight:600}
.llh-book__pp{font-family:var(--lx-serif);font-size:clamp(28px,3.4vw,38px);font-weight:700;color:var(--lx-navy);line-height:1.1;margin-top:2px}
.llh-book__party{font-size:12px;color:var(--lx-ink-muted)}
.llh-book__dep{text-align:right;flex:none}
.llh-book__dep span{display:inline-block;padding:4px 10px;border-radius:999px;background:rgba(34,197,94,.15);color:var(--lx-green-deep);font-size:11px;font-weight:700}
.llh-book__dep small{display:block;font-size:11px;color:var(--lx-ink-muted);margin-top:4px}
.llh-book__rows{padding:16px 0;display:grid;gap:12px;font-size:12px}
.llh-book__row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding-bottom:12px;border-bottom:1px solid var(--lx-line-soft)}
.llh-book__row > div:first-child{display:inline-flex;align-items:center;gap:8px;color:var(--lx-ink-muted)}
.llh-book__row svg{width:16px;height:16px;color:var(--lx-gold)}
.llh-book__val{font-weight:700;color:var(--lx-navy);text-align:right}
.llh-book__val small{display:block;font-size:10px;font-weight:400;color:var(--lx-ink-muted)}
.llh-book__pax{display:flex;align-items:center;gap:10px}
.llh-book__pax button{width:26px;height:26px;border-radius:7px;background:var(--lx-ivory);border:1px solid var(--lx-line);font-weight:700;font-size:13px;cursor:pointer;color:var(--lx-navy)}
.llh-book__pax b{min-width:20px;text-align:center;color:var(--lx-navy)}
.llh-book__seg label{display:block;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--lx-ink-muted);margin-bottom:6px}
.llh-book__seg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:6px}
.llh-book__seg-grid button{
  padding:7px 4px;border-radius:10px;text-align:center;font-size:10px;font-weight:700;cursor:pointer;transition:all .2s;
  background:var(--lx-ivory);border:1px solid var(--lx-line);color:var(--lx-navy);
}
.llh-book__seg-grid button small{display:block;font-size:9px;font-weight:400;color:var(--lx-gold-dark)}
.llh-book__seg-grid button.is-active{background:var(--lx-navy);color:#fff;border-color:var(--lx-navy)}
.llh-book__seg-grid button.is-active small{color:var(--lx-gold)}
.llh-book__cta{display:grid;gap:12px;padding-top:8px}
.llh-book__mini{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.llh-book__mini a{
  display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:11px;border-radius:12px;
  font-size:12px;font-weight:600;border:1px solid var(--lx-line);color:var(--lx-navy);transition:all .2s;
}
.llh-book__mini a:hover{border-color:var(--lx-navy)}
.llh-book__mini svg{width:14px;height:14px;color:var(--lx-gold)}
.llh-book__mini .llh-book__wa{background:rgba(37,211,102,.1);border-color:rgba(37,211,102,.3);color:#128C7E}
.llh-book__mini .llh-book__wa svg{color:var(--lx-whatsapp)}
.llh-book__guar{margin-top:18px;padding-top:16px;border-top:1px solid var(--lx-line-soft);display:grid;gap:8px;font-size:11.5px;color:var(--lx-ink-muted)}
.llh-book__guar div{display:flex;align-items:center;gap:8px}
.llh-book__guar svg{width:14px;height:14px;color:var(--lx-green);flex:none}
.llh-book__aside{background:var(--lx-ivory);border:1px solid var(--lx-line);border-radius:var(--lx-r-lg);padding:20px;text-align:center}
.llh-book__aside h5{font-family:var(--lx-serif);font-size:15px;font-weight:700;color:var(--lx-navy);margin:0}
.llh-book__aside p{margin:6px 0 0;font-size:12px;color:var(--lx-ink-muted);font-weight:300}

/* ---------- 22. DESTINATION PAGE ---------- */
.llh-desthero{position:relative;min-height:62vh;display:flex;align-items:flex-end;overflow:hidden;background:var(--lx-navy-deep);padding-bottom:48px;margin-top:calc(-1 * var(--lx-head-h,84px));padding-top:150px}
.llh-desthero__bg{position:absolute;inset:0;z-index:0}
.llh-desthero__bg img{width:100%;height:100%;object-fit:cover}
.llh-desthero__scrim{position:absolute;inset:0;background:linear-gradient(to top,#040914 5%,rgba(7,21,38,.55),rgba(3,10,19,.7))}
.llh-desthero__inner{position:relative;z-index:2;color:#fff;max-width:820px}
.llh-desthero h1{font-size:clamp(30px,5.6vw,64px);line-height:1.08;color:#fff;margin:14px 0 0}
.llh-desthero__lede{margin-top:16px;font-size:clamp(15px,1.5vw,18px);color:rgba(255,255,255,.88);font-weight:300;line-height:1.7}
.llh-desthero__facts{margin-top:28px;display:grid;grid-template-columns:repeat(4,1fr);gap:14px;max-width:780px}
.llh-fact{
  background:rgba(7,21,38,.6);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  border:1px solid var(--lx-gold-b2);border-radius:var(--lx-r);padding:14px 16px;
}
.llh-fact em{font-style:normal;display:flex;align-items:center;gap:6px;font-size:10px;text-transform:uppercase;letter-spacing:.14em;color:var(--lx-gold);font-weight:700}
.llh-fact em svg{width:12px;height:12px}
.llh-fact b{display:block;font-size:14px;font-weight:600;color:#fff;margin-top:5px}
.llh-desthero__ctas{margin-top:28px;display:flex;flex-wrap:wrap;gap:12px}

.llh-resort{
  display:grid;grid-template-columns:320px 1fr;gap:0;background:#fff;border:1px solid var(--lx-line);
  border-radius:var(--lx-r-xl);overflow:hidden;box-shadow:var(--lx-shadow);transition:all .3s;
}
.llh-resort:hover{box-shadow:var(--lx-shadow-lg);border-color:var(--lx-gold-b2)}
.llh-resort__media{position:relative;min-height:240px;background:var(--lx-navy)}
.llh-resort__media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.llh-resort__tag{position:absolute;top:12px;left:12px;z-index:2}
.llh-resort__body{padding:24px;display:flex;flex-direction:column;justify-content:space-between;gap:18px}
.llh-resort__head{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:14px}
.llh-resort__head h3{font-family:var(--lx-serif);font-size:22px;font-weight:700;color:var(--lx-navy);margin:0}
.llh-resort__area{font-size:12px;color:var(--lx-ink-muted);display:flex;align-items:center;gap:6px;margin-top:4px}
.llh-resort__area svg{width:13px;height:13px;color:var(--lx-gold)}
.llh-resort__price{text-align:right;flex:none}
.llh-resort__price em{font-style:normal;font-size:10px;text-transform:uppercase;letter-spacing:.1em;color:var(--lx-ink-muted)}
.llh-resort__price b{display:block;font-family:var(--lx-serif);font-size:26px;font-weight:700;color:var(--lx-navy)}
.llh-resort__hls{display:grid;grid-template-columns:1fr 1fr;gap:8px;font-size:12px;color:var(--lx-ink-muted)}
.llh-resort__hls div{display:flex;align-items:flex-start;gap:8px}
.llh-resort__hls svg{width:14px;height:14px;color:var(--lx-green);flex:none;margin-top:2px}
.llh-resort__foot{display:flex;flex-wrap:wrap;align-items:center;gap:10px;padding-top:16px;border-top:1px solid var(--lx-line-soft)}

.llh-gallery-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.llh-gallery-strip a,.llh-gallery-strip div{position:relative;border-radius:var(--lx-r);overflow:hidden;aspect-ratio:4/3;background:var(--lx-navy)}
.llh-gallery-strip img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--lx-ease)}
.llh-gallery-strip a:hover img{transform:scale(1.08)}

.llh-prose{font-size:15px;line-height:1.8;color:var(--lx-ink-muted)}
.llh-prose h2,.llh-prose h3{color:var(--lx-navy);margin:32px 0 12px}
.llh-prose h2{font-size:28px}
.llh-prose h3{font-size:22px}
.llh-prose a{color:var(--lx-gold-dark);text-decoration:underline}
.llh-prose ul,.llh-prose ol{padding-left:22px}
.llh-prose img{border-radius:var(--lx-r);margin-block:20px}

/* ---------- 23. RESPONSIVE ---------- */
@media (max-width:1180px){
  .llh-nav{display:none}
  .llh-burger{display:block}
  .llh-head__ghost{display:none}
  .llh-builder{grid-template-columns:1fr}
  .llh-quote{position:static}
  .llh-dealgrid{grid-template-columns:1fr}
  .llh-book{position:static}
}
@media (max-width:1024px){
  .llh-pillars{grid-template-columns:repeat(2,1fr)}
  .llh-types,.lx-grid-3{grid-template-columns:repeat(2,1fr)}
  .llh-metrics{grid-template-columns:repeat(2,1fr)}
  .llh-route__grid{grid-template-columns:1fr}
  .llh-foot__grid{grid-template-columns:1fr 1fr}
  .llh-hero__pills{grid-template-columns:repeat(3,1fr)}
  .llh-desthero__facts{grid-template-columns:repeat(2,1fr)}
  .llh-planner__form{grid-template-columns:repeat(6,1fr)}
  .llh-planner__col-4,.llh-planner__col-3,.llh-planner__col-2,.llh-planner__submit{grid-column:span 3}
}
@media (max-width:820px){
  .llh-topbar__sub{display:none}
  .llh-topbar__right{gap:10px}
  .llh-perks{grid-template-columns:repeat(2,1fr)}
  .llh-rooms{grid-template-columns:1fr}
  .llh-resort{grid-template-columns:1fr}
  .llh-resort__media{min-height:200px}
  .llh-gallery-strip{grid-template-columns:repeat(2,1fr)}
  .llh-gallery__thumbs{grid-template-columns:repeat(4,1fr)}
  .llh-hero__trust{grid-template-columns:repeat(2,1fr)}
  .llh-cal__tools{grid-template-columns:1fr}
  .llh-panel__split{grid-template-columns:1fr}
  .llh-opt-grid{grid-template-columns:repeat(2,1fr)}
  .llh-route__incl-grid{grid-template-columns:1fr}
  .llh-map__cta{align-items:flex-start;width:100%;flex-direction:row;justify-content:space-between;flex-wrap:wrap}
}
@media (max-width:680px){
  .llh-hero{min-height:auto;padding-top:118px}
  .llh-hero__pills{grid-template-columns:repeat(2,1fr)}
  .llh-hero__arrow{display:none}
  .llh-planner{margin-top:-40px}
  .llh-planner__form{grid-template-columns:1fr}
  .llh-planner__col-4,.llh-planner__col-3,.llh-planner__col-2,.llh-planner__submit{grid-column:span 1}
  .llh-pillars,.llh-types,.lx-grid-3,.lx-grid-2,.llh-metrics{grid-template-columns:1fr}
  .llh-foot__grid{grid-template-columns:1fr}
  .llh-rail > *{flex-basis:min(84vw,320px)}
  .llh-form__row{grid-template-columns:1fr}
  .llh-cal__grid,.llh-cal__weekdays{gap:4px}
  .llh-cal__day{min-height:60px;padding:5px}
  .llh-cal__day-price{font-size:12px}
  .llh-desthero__facts{grid-template-columns:1fr}
  .llh-banner,.llh-concierge,.llh-payplan{flex-direction:column;align-items:flex-start}
  .llh-mnav__sub{grid-template-columns:1fr}
  .llh-map__stage{height:340px}
  .llh-opt-grid,.llh-opt-grid--4{grid-template-columns:repeat(2,1fr)}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
}

/* Scrollbar polish */
::-webkit-scrollbar{width:9px;height:9px}
::-webkit-scrollbar-track{background:#f1ede4}
::-webkit-scrollbar-thumb{background:var(--lx-gold);border-radius:5px}
::-webkit-scrollbar-thumb:hover{background:var(--lx-gold-dark)}

/* ---------- 24. SELF-SUFFICIENT RESETS + NARROW-VIEWPORT FIXES ---------- */
/* llh-v2 sits on top of style.css, but keep the V2 chrome correct even if the
   base sheet is unavailable (editor previews, partial loads). */
/* :where() keeps these at zero specificity so every component class still wins.
   Without it, `.llh-v2 button` (0,1,1) beat `.lx-btn--gold` (0,1,0) and stripped
   the background and colour off every button on the site. */
:where(.llh-v2 a){text-decoration:none;color:inherit}
:where(.llh-v2 button){font-family:inherit;border:0;background:none;color:inherit;cursor:pointer}
:where(.llh-v2 img),:where(.llh-v2 svg){max-width:100%}
:where(.llh-v2 *),:where(.llh-v2 *::before),:where(.llh-v2 *::after){box-sizing:border-box}
.llh-topbar,.llh-head,.llh-foot,.llh-hero,.llh-section{overflow-x:clip}

@media (max-width:820px){
  .llh-topbar__inner{min-height:0;padding-block:6px;row-gap:4px}
  .llh-topbar__left{gap:14px;flex-wrap:wrap}
  .llh-topbar__right{gap:10px;font-size:10px;flex-wrap:wrap}
  .llh-topbar__atol{padding:3px 8px;letter-spacing:.04em}
}
@media (max-width:560px){
  .llh-topbar{font-size:11px}
  .llh-topbar__wa span{display:none}
  .llh-topbar__rating span:last-child{display:none}
  .llh-head__actions{gap:8px}
  .llh-head__actions .lx-btn{padding:9px 12px;font-size:10px;letter-spacing:.08em}
  .llh-brand__name{font-size:17px;letter-spacing:.12em}
  .llh-brand__sub{letter-spacing:.28em}
  .llh-hero__badge{font-size:10px;letter-spacing:.16em;padding:6px 12px}
  .lx-btn{padding:12px 18px}
}
@media (max-width:420px){
  .llh-topbar__atol span,.llh-topbar__atol{font-size:9px}
  .llh-head__actions .lx-btn{font-size:9px;padding:8px 10px}
}

/* Calendar cells must never dictate the grid width on small screens. */
.llh-cal__day-price,.llh-cal__day-pp,.llh-cal__day-num{overflow:hidden;text-overflow:ellipsis}
@media (max-width:480px){
  .llh-cal__grid,.llh-cal__weekdays{gap:3px}
  .llh-cal__day{padding:4px;min-height:56px}
  .llh-cal__day-num{font-size:11px}
  .llh-cal__day-price{font-size:11px}
  .llh-cal__day-pp{font-size:8px}
  .llh-cal__best{display:none}
  .llh-cal__weekdays{font-size:9px}
}


/* ---------- 25. HOMEPAGE SEARCH PANEL (container only) ---------- */
/* The form inside is the site's existing search engine and is untouched;
   this only gives it a deliberate elevated card instead of letting it
   straddle the hero/section boundary. */
.llh-searchdock{position:relative;z-index:25;margin-top:clamp(-56px,-4.5vw,-32px);margin-bottom:8px}
/* The flights plugin already renders its own white card, so the dock stays
   transparent — otherwise you get a card inside a card. */
.llh-searchdock .hero-search-wrap{background:transparent;border:0;padding:0}
.llh-searchdock .hero-search-tabs{
  display:flex;gap:6px;margin:0 0 -1px;padding:0 0 0 6px;background:transparent;border:0;
}
.llh-searchdock .hero-search-tabs .hst{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 22px;border:0;cursor:pointer;
  border-radius:14px 14px 0 0;
  font-size:13px;font-weight:700;letter-spacing:.02em;
  background:rgba(255,255,255,.14);color:rgba(255,255,255,.85);
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  transition:background .25s,color .25s;
}
.llh-searchdock .hero-search-tabs .hst:hover{background:rgba(255,255,255,.24);color:#fff}
.llh-searchdock .hero-search-tabs .hst[aria-selected="true"]{background:#fff;color:var(--lx-navy)}
.llh-searchdock .hero-search-pane{padding:0}
/* One shared card surface under both panes. */
.llh-searchdock .hero-search-pane > *{
  background:#fff;border-radius:0 var(--lx-r-xl) var(--lx-r-xl) var(--lx-r-xl);
  box-shadow:0 30px 70px -25px rgba(7,21,38,.55);
}
.llh-searchdock .searchwidget{margin:0;padding:20px 22px 22px}
@media (max-width:680px){
  .llh-searchdock{margin-top:-20px}
  .llh-searchdock .hero-search-tabs .hst{padding:9px 16px;font-size:12px}
  .llh-searchdock .hero-search-pane > *{border-radius:0 var(--lx-r-lg) var(--lx-r-lg) var(--lx-r-lg)}
  .llh-searchdock .searchwidget{padding:16px}
}

/* Give the block after the hero room so nothing collides with the dock. */
.llh-searchdock + .llh-section,
.llh-searchdock ~ #llh-trust{padding-top:clamp(40px,5vw,72px)}

/* ---------- 26. HERO HEADLINE SCALE ---------- */
/* The gold line is a short editorial tagline, not the full excerpt — keep it
   visually subordinate to the destination name and never let it run away. */
.llh-hero h1 .llh-hero__tag{
  display:block;margin-top:8px;font-size:.72em;line-height:1.15;
  max-width:16ch;margin-inline:auto;text-wrap:balance;
}
@media (max-width:680px){
  .llh-hero h1 .llh-hero__tag{font-size:.8em;max-width:22ch}
}

/* ---------- 27. BRAND LOGO ON THE DARK HEADER ---------- */
.llh-brand img{max-height:52px;width:auto;object-fit:contain}
/* A raster logo with a baked-in white background reads as a white slab on the
   navy bar; a soft plate makes it look deliberate instead of broken. */
.llh-brand--plated img{background:#fff;padding:6px 10px;border-radius:10px}


/* ---------- 28. BENTO GRID (curated destinations) ---------- */
.llh-bento{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  grid-auto-rows:minmax(320px,auto);
  gap:24px;
}
/* Full bento: the feature holds two columns and both rows. */
.llh-bento__feature{grid-column:span 2;grid-row:span 2}
.llh-bento > *{min-width:0}

/* Thin catalogue: a wide feature with the rest in a single row beneath. */
.llh-bento--wide{grid-template-columns:repeat(3,minmax(0,1fr))}
.llh-bento--wide .llh-bento__feature{grid-column:span 3;grid-row:auto}
.llh-bento--wide .llh-dcard--feature{flex-direction:row}
.llh-bento--wide .llh-dcard--feature .llh-dcard__media{flex:1 1 55%;min-height:0}
.llh-bento--wide .llh-dcard--feature .llh-dcard__body{flex:1 1 45%;justify-content:center}

/* Single destination: just a normal card. */
.llh-bento--solo{grid-template-columns:minmax(0,1fr)}
.llh-bento--solo .llh-bento__feature{grid-column:auto;grid-row:auto}
.llh-bento--solo .llh-dcard--feature .llh-dcard__media{min-height:320px}

@media (max-width:820px){
  .llh-bento--wide .llh-dcard--feature{flex-direction:column}
  .llh-bento--wide .llh-dcard--feature .llh-dcard__media{min-height:300px}
}

/* The feature card gets a taller image and larger type. */
.llh-dcard--feature{height:100%}
.llh-dcard--feature .llh-dcard__media{height:auto;flex:1;min-height:340px}
.llh-dcard--feature .llh-dcard__body h3{font-size:30px}
.llh-dcard--feature .llh-dcard__price{font-size:32px}
.llh-dcard--feature .llh-dcard__tagline{font-size:14px;-webkit-line-clamp:3}

@media (max-width:1024px){
  .llh-bento{grid-template-columns:repeat(2,minmax(0,1fr))}
  .llh-bento__feature{grid-column:span 2;grid-row:auto}
  .llh-dcard--feature .llh-dcard__media{min-height:280px}
}
@media (max-width:680px){
  .llh-bento{grid-template-columns:minmax(0,1fr);gap:20px}
  .llh-bento__feature{grid-column:auto}
  .llh-dcard--feature .llh-dcard__body h3{font-size:24px}
}

/* ---------- 29. ATLAS SECTION ---------- */
/* The stage is sized by aspect ratio so the projection always fills it. */
.llh-map__stage{height:auto;aspect-ratio:1200/470}
.llh-map__stage svg{display:block;width:100%;height:100%}
@media (max-width:680px){
  .llh-map__stage{aspect-ratio:4/3}
}


/* ---------- 30. FORM VALIDATION FEEDBACK ---------- */
.llh-form__error{
  margin:0;padding:11px 14px;border-radius:12px;
  background:#fef2f2;border:1px solid #fecaca;color:#b91c1c;
  font-size:12.5px;font-weight:600;
}
.llh-form [aria-invalid="true"]{box-shadow:0 0 0 3px rgba(220,38,38,.12)}

/* ---------- 31. HERO IMAGE RENDERING ---------- */
/* The slide fills the stage; centring on the upper third keeps horizons and
   architecture in frame rather than cropping to the middle of the sky. */
.llh-hero__slide img{object-position:center 40%}


/* =====================================================================
   32. DESIGN PASS — header, hero, vertical rhythm, centred headings,
       and a mobile scale that is not just the desktop card shrunk.
   ===================================================================== */

/* ---- 32.1 Header: no gradient band, no seam ---- */
/* The old gradient ended mid-hero and read as a hard horizontal edge. Over the
   hero the bar is now genuinely transparent; once stuck it becomes solid. */
.llh-head{
  background:transparent;
  padding-block:14px;
  border-bottom:1px solid transparent;
  transition:background .35s var(--lx-ease),padding .35s var(--lx-ease),
             border-color .35s var(--lx-ease),box-shadow .35s var(--lx-ease);
}
.llh-head.is-stuck{
  background:rgba(7,21,38,.94);
  -webkit-backdrop-filter:saturate(140%) blur(16px);backdrop-filter:saturate(140%) blur(16px);
  border-bottom-color:rgba(255,255,255,.10);
  box-shadow:0 10px 34px rgba(0,0,0,.32);
  padding-block:10px;
}
body:not(.home) .llh-head{
  background:rgba(7,21,38,.96);
  border-bottom-color:rgba(255,255,255,.08);
}
.llh-head__inner{gap:28px}

/* Brand: a restrained plate, vertically centred with the nav. */
.llh-brand--plated img{
  background:#fff;padding:7px 12px;border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,.18);
}
.llh-brand img{max-height:44px}

/* Nav: even rhythm, clear active/hover affordance. */
.llh-nav{gap:4px}
.llh-nav__link{padding:10px 14px;font-size:14.5px;letter-spacing:.01em;position:relative}
.llh-nav__link::after{
  content:"";position:absolute;left:14px;right:14px;bottom:4px;height:1px;
  background:var(--lx-gold);transform:scaleX(0);transform-origin:left;
  transition:transform .3s var(--lx-ease);
}
.llh-nav__link:hover::after,.llh-nav__item.is-open .llh-nav__link::after{transform:scaleX(1)}

.llh-head__actions{gap:14px}
.llh-head__phone{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:600;color:rgba(255,255,255,.9);
  padding:8px 4px;transition:color .2s;white-space:nowrap;
}
.llh-head__phone:hover{color:var(--lx-gold)}
.llh-head__phone svg{width:15px;height:15px;color:var(--lx-gold)}
@media (max-width:1180px){.llh-head__phone{display:none}}

/* ---- 32.2 Hero: one honest scrim, calmer crop ---- */
.llh-hero{min-height:min(88vh,860px);padding:clamp(104px,13vh,140px) 0 clamp(48px,7vh,84px)}
.llh-hero__slide img{object-position:center 45%}
/* A single vertical wash: dark enough to read on, light enough to see the place. */
.llh-hero__scrim{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(4,10,20,.82) 0%,
    rgba(4,10,20,.42) 22%,
    rgba(4,10,20,.40) 52%,
    rgba(4,10,20,.78) 82%,
    rgba(4,10,20,.95) 100%
  );
}
.llh-hero h1{font-size:clamp(32px,5.4vw,64px)}
.llh-hero h1 .llh-hero__tag{max-width:20ch;font-size:.66em}
.llh-hero__desc{margin-top:14px;max-width:600px;font-size:clamp(14.5px,1.25vw,17px)}
.llh-hero__badge{margin-bottom:20px}
.llh-hero__ctas{margin-top:28px}
.llh-hero__pills{margin-top:34px;gap:8px}
.llh-hero__trust{margin-top:34px;padding-top:22px}

/* ---- 32.3 Vertical rhythm: less air, more intent ---- */
.llh-section{padding-block:clamp(48px,5.6vw,92px)}
.llh-section--tight{padding-block:clamp(34px,3.6vw,58px)}
.llh-sechead{margin-bottom:clamp(26px,3.2vw,48px)}
.llh-banner{margin-top:clamp(32px,3.6vw,48px)}
.llh-searchdock + .llh-section,
.llh-searchdock ~ #llh-trust{padding-top:clamp(34px,3.6vw,56px)}
.llh-pillars{gap:18px}
.llh-bento{gap:20px}
.llh-types{gap:20px}
.llh-rail{gap:20px;padding-bottom:24px}
.llh-metrics{gap:18px;margin-bottom:clamp(32px,4vw,52px)}
.llh-quotebox{margin-bottom:clamp(32px,4vw,52px)}
.llh-foot{padding:clamp(44px,5vw,64px) 0 36px}
.llh-foot__grid{padding-bottom:clamp(32px,4vw,48px);gap:32px}

/* ---- 32.4 Every section heading is centred ---- */
.llh-sechead{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;gap:18px;max-width:900px;margin-inline:auto;
}
.llh-sechead__text{max-width:780px}
.llh-sechead .llh-lede{margin-inline:auto}
/* Controls that used to sit to the right now sit centred underneath. */
.llh-sechead > *:not(.llh-sechead__text){justify-content:center}
.llh-filters{justify-content:center}
.llh-filters::after,.llh-filters::before{content:"";margin:auto}

/* ---- 32.5 Cards: tighter, more considered ---- */
.llh-dcard__media{height:250px}
.llh-dcard__body{padding:20px;gap:14px}
.llh-dcard__body h3{font-size:21px}
.llh-deal__media{height:215px}
.llh-deal__body{padding:20px}
.llh-type{height:320px}
.llh-article__media{height:200px}
.llh-article__body{padding:20px}
.llh-pillar{padding:22px}

/* ---- 32.6 Mobile: a layout of its own, not a squeezed desktop ---- */
@media (max-width:680px){
  .llh-section{padding-block:40px}
  .llh-section--tight{padding-block:28px}
  .llh-sechead{margin-bottom:24px;gap:14px}
  .llh-h2{font-size:clamp(25px,7.2vw,32px)}
  .llh-lede{font-size:14.5px;margin-top:10px}

  /* Cards: shorter media, tighter type, no wasted padding. */
  .llh-dcard__media{height:190px}
  .llh-dcard__body{padding:16px;gap:12px}
  .llh-dcard__body h3{font-size:19px}
  .llh-dcard__price{font-size:22px}
  .llh-dcard__tagline{font-size:12.5px;-webkit-line-clamp:2}
  .llh-dcard__actions{padding-top:12px;gap:8px}
  .llh-dcard__actions > *{padding:10px 8px;font-size:10.5px;letter-spacing:.06em}

  .llh-deal__media{height:180px}
  .llh-deal__body{padding:16px}
  .llh-deal__body h3{font-size:16px}
  .llh-deal__price b{font-size:21px}
  .llh-deal__incl{margin-top:10px;padding-top:10px;gap:5px}
  .llh-deal__incl div{font-size:11.5px}
  .llh-deal__actions{padding:6px 16px 16px;gap:8px}
  .llh-deal__actions > *{padding:10px 8px;font-size:10.5px}

  .llh-type{height:250px}
  .llh-type__body{padding:18px}
  .llh-type h3{font-size:22px}
  .llh-type__tagline{font-size:12.5px;-webkit-line-clamp:2}

  .llh-article__media{height:180px}
  .llh-article__body{padding:16px}
  .llh-article h3{font-size:18px}
  .llh-article__foot{padding:12px 16px 16px}

  .llh-pillar{padding:18px}
  .llh-pillar h3{font-size:16px}
  .llh-pillar p{font-size:12px}
  .llh-pillar__ic{width:40px;height:40px}

  /* Rails: peek the next card so the swipe is discoverable. */
  .llh-rail{gap:14px;padding-bottom:18px}
  .llh-rail > *{flex-basis:min(80vw,300px)}

  .llh-bento{gap:16px}
  .llh-banner{padding:20px;gap:16px;margin-top:28px}
  .llh-banner b{font-size:17px}
  .llh-banner__actions{width:100%}
  .llh-banner__actions > *{flex:1}

  .llh-hero{min-height:auto;padding:96px 0 44px}
  .llh-hero__trust{grid-template-columns:1fr 1fr;gap:14px;margin-top:26px;padding-top:18px}
  .llh-hero__trust b{font-size:12px}
  .llh-hero__trust span{font-size:10.5px}
  .llh-hero__ctas{width:100%}
  .llh-hero__ctas > *{width:100%}

  .llh-metrics{gap:14px}
  .llh-metric{padding:20px}
  .llh-concierge{padding:20px;gap:16px}
  .llh-concierge__actions{width:100%}
  .llh-concierge__actions > *{flex:1}
  .llh-foot{padding:36px 0 28px}
  .llh-foot__grid{gap:26px;padding-bottom:26px}
}

@media (max-width:400px){
  .llh-hero__trust{grid-template-columns:1fr}
  .llh-rail > *{flex-basis:86vw}
}

/* ---- 32.7 Hero legibility on bright imagery ----
   A clean scrim alone loses contrast over sunlit water or sand. Rather than
   darkening the picture further, lift the type off it with shadow and a
   brighter gold, so the photograph stays the hero. */
.llh-hero__scrim{
  background:linear-gradient(
    180deg,
    rgba(4,10,20,.84) 0%,
    rgba(4,10,20,.46) 24%,
    rgba(4,10,20,.50) 54%,
    rgba(4,10,20,.82) 84%,
    rgba(4,10,20,.96) 100%
  );
}
.llh-hero h1{text-shadow:0 2px 28px rgba(4,10,20,.85),0 1px 3px rgba(4,10,20,.6)}
.llh-hero__desc{text-shadow:0 1px 16px rgba(4,10,20,.8)}
.llh-hero__badge{background:rgba(4,10,20,.62)}
/* On photography the gradient needs to sit in the light end of the range. */
.llh-hero h1 .llh-gold-text{
  background:linear-gradient(135deg,#fdf3e2 0%,#f0d9a8 45%,#e3c48d 100%);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
  filter:drop-shadow(0 2px 18px rgba(4,10,20,.7));
}
.llh-hero__price{background:rgba(4,10,20,.55);border-color:rgba(255,255,255,.28)}

/* ---- 32.8 Hero price pill: a caption, not a slab ---- */
@media (max-width:680px){
  .llh-hero__price{
    display:inline-flex;flex-wrap:nowrap;align-items:baseline;justify-content:center;
    gap:8px;padding:6px 14px;font-size:11.5px;max-width:100%;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  }
  .llh-hero__price b{font-size:14px}
  /* the trailing vibe note is the first thing to go when space is tight */
  .llh-hero__price [data-hero-vibe]{display:none}
  .llh-hero__desc{font-size:14px;line-height:1.55;max-width:34ch;margin-inline:auto}
  .llh-hero h1{font-size:clamp(28px,8.5vw,36px)}
  .llh-hero h1 .llh-hero__tag{font-size:.72em;max-width:18ch}
}

/* The feature card's min-height must not survive into the mobile scale. */
@media (max-width:680px){
  .llh-dcard--feature .llh-dcard__media{flex:none;height:200px;min-height:0}
  .llh-dcard--feature .llh-dcard__body h3{font-size:21px}
  .llh-dcard--feature .llh-dcard__price{font-size:24px}
  .llh-dcard--feature .llh-dcard__tagline{font-size:12.5px;-webkit-line-clamp:2}
}

/* =====================================================================
   33. PERFORMANCE
   ===================================================================== */

/* The hero image is the LCP element — never let a filter or animation
   delay its paint. */
.llh-hero__slide img{will-change:auto}

/* Continuous transform on a full-bleed 2400px image is the single most
   expensive thing on the page for a mid-range phone. Desktop keeps the
   drift; small screens and data-saver clients get a still frame. */
@media (max-width:900px){
  .llh-hero__slide.is-active img{animation:none}
}
@media (prefers-reduced-data:reduce){
  .llh-hero__slide.is-active img{animation:none}
}

/* backdrop-filter forces an expensive readback on every scroll frame.
   Worth it on desktop; on phones the same panels use a solid fill that
   is visually near-identical over these dark backgrounds. */
@media (max-width:900px){
  .llh-glass,.llh-panel,.llh-quote__card,.llh-metric,.llh-quotebox,
  .llh-concierge,.llh-route,.llh-map__bar{
    -webkit-backdrop-filter:none;backdrop-filter:none;
    background:rgba(7,21,38,.92);
  }
  .llh-head.is-stuck{
    -webkit-backdrop-filter:none;backdrop-filter:none;
    background:rgba(7,21,38,.97);
  }
  .llh-hero__badge,.llh-hero__price,.llh-hero__arrow,
  .llh-tag--dark,.llh-tag--atol,.llh-type__count{
    -webkit-backdrop-filter:none;backdrop-filter:none;
  }
}

/* Reserve the atlas box so deferring D3 cannot shift layout. */
.llh-map__stage{contain:layout paint}

/* =====================================================================
   34. HEADER + LAYOUT CORRECTIONS
   ===================================================================== */

/* Nav items were wrapping onto two lines and doubling the header height,
   which is what pushed the hero down and exposed a white strip. */
.llh-nav__link{white-space:nowrap}
.llh-nav{flex-wrap:nowrap}
.llh-head__inner{gap:20px;min-height:56px}
.llh-head__actions{flex:0 0 auto}

/* The logo was being squashed by the flex row: 300x81 rendered at 131x43.
   Pin the aspect ratio and stop it flexing. */
.llh-brand{flex:0 0 auto;align-items:flex-start}
.llh-brand img{
  flex:0 0 auto;width:auto;height:auto;max-height:40px;max-width:200px;
  object-fit:contain;
}
/* content-box so the plate's padding sits AROUND the logo instead of eating
   into max-height — otherwise the mark renders ~30px tall and looks cramped. */
.llh-brand--plated img{box-sizing:content-box;padding:7px 11px;border-radius:8px}

/* Slightly tighter nav so everything fits on one row at 1280px. */
@media (max-width:1320px){
  .llh-nav__link{padding:10px 10px;font-size:13.5px}
  .llh-head__inner{gap:14px}
  .llh-brand img{max-width:168px;max-height:34px}
}

/* Belt and braces for the hero pull-up: even with a stale custom property
   the hero can never leave a pale gap under the header. */
.llh-hero,.llh-desthero{background-color:var(--lx-navy-deep)}
.llh-hero::before{
  content:"";position:absolute;left:0;right:0;top:-120px;height:120px;
  background:var(--lx-navy-deep);z-index:0;
}

/* ---- Deals grid: show the catalogue, not three cards ---- */
.llh-dealgrid-cards{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.llh-dealgrid-cards > *{min-width:0}
@media (max-width:1180px){ .llh-dealgrid-cards{grid-template-columns:repeat(3,minmax(0,1fr))} }
@media (max-width:900px){ .llh-dealgrid-cards{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px} }
@media (max-width:600px){ .llh-dealgrid-cards{grid-template-columns:minmax(0,1fr);gap:16px} }

/* At four across the cards are narrower, so trim their internals. */
@media (min-width:1181px){
  .llh-dealgrid-cards .llh-deal__media{height:180px}
  .llh-dealgrid-cards .llh-deal__body{padding:16px}
  .llh-dealgrid-cards .llh-deal__body h3{font-size:16px}
  .llh-dealgrid-cards .llh-deal__price b{font-size:21px}
  .llh-dealgrid-cards .llh-deal__actions{padding:6px 16px 16px;gap:8px}
  .llh-dealgrid-cards .llh-deal__actions > *{padding:10px 6px;font-size:10px;letter-spacing:.06em}
}

/* ---- Headings now run on one line where they fit ---- */
.llh-h2{text-wrap:balance}
.llh-accent{display:inline}

/* ---- Close the remaining vertical gaps ---- */
.llh-section{padding-block:clamp(40px,4.6vw,76px)}
.llh-sechead{margin-bottom:clamp(22px,2.6vw,38px);gap:14px}
.llh-lede{margin-top:12px}
.llh-banner{margin-top:clamp(26px,3vw,40px)}


/* ------------------------------------------------------------------
   35. "From" qualifier on lead-in fares
   Every headline price on the site is a lead-in, never a fixed fare, so
   the qualifier sits with the number rather than only in the small print.
   ------------------------------------------------------------------ */
.llh-quote__from{
  display:block;font-family:var(--lx-sans);font-size:11px;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;color:var(--lx-gold);
  margin-bottom:2px;
}

/* ------------------------------------------------------------------
   36. Monthly fare board (deal page)
   Replaces the old day-by-day calendar. Pricing is stored per month,
   so the UI shows months — a day grid implied a precision the data
   never had, and every cell in a month carried the same figure.
   ------------------------------------------------------------------ */
.llh-fares{
  background:var(--lx-ivory);
  border:1px solid var(--lx-line);
  border-radius:18px;
  padding:clamp(22px,3vw,34px);
  margin-bottom:clamp(22px,3vw,32px);
}
.llh-fares__head h2{margin:0 0 10px}
.llh-fares__head p{
  margin:0;max-width:62ch;font-size:14.5px;line-height:1.65;color:var(--lx-ink-muted);
}

.llh-fares__tools{
  display:flex;flex-wrap:wrap;gap:22px 34px;
  margin-top:24px;padding-top:22px;border-top:1px solid var(--lx-line-soft);
}
.llh-fares__tool{min-width:200px}
.llh-fares__label{
  display:block;font-size:10.5px;font-weight:700;letter-spacing:.16em;
  text-transform:uppercase;color:var(--lx-ink-muted);margin-bottom:10px;
}
.llh-fares__durs{display:flex;flex-wrap:wrap;gap:8px}
.llh-fares__dur{
  padding:9px 16px;border-radius:999px;border:1px solid var(--lx-line);
  background:#fff;font-size:13px;font-weight:600;color:var(--lx-navy);
  cursor:pointer;transition:border-color .2s,background .2s,color .2s;
}
.llh-fares__dur:hover{border-color:var(--lx-gold)}
.llh-fares__dur.is-active{
  background:var(--lx-navy);border-color:var(--lx-navy);color:#fff;
}
.llh-fares__airport{position:relative}
.llh-fares__airport select{
  width:100%;appearance:none;padding:11px 40px 11px 15px;border-radius:12px;
  border:1px solid var(--lx-line);background:#fff;color:var(--lx-navy);
  font-family:inherit;font-size:13.5px;font-weight:500;cursor:pointer;
}
.llh-fares__airport svg{
  position:absolute;right:14px;top:50%;transform:translateY(-50%);
  width:16px;height:16px;color:var(--lx-gold);pointer-events:none;
}

.llh-fares__board{
  margin-top:26px;padding:clamp(18px,2.4vw,26px);
  background:linear-gradient(180deg,#fff,var(--lx-ivory-2));
  border:1px solid var(--lx-line-soft);border-radius:14px;
  display:flex;flex-direction:column;gap:22px;
}
.llh-fares__year{display:flex;flex-direction:column;gap:14px}
.llh-fares__yearchip{
  align-self:flex-start;
  background:var(--lx-navy);color:var(--lx-gold-light);
  font-family:var(--lx-serif);font-size:19px;font-weight:600;letter-spacing:.04em;
  padding:5px 20px;border-radius:999px;font-variant-numeric:tabular-nums;
}
.llh-fares__months{display:flex;flex-wrap:wrap;gap:12px}

.llh-fare{
  position:relative;flex:0 0 auto;min-width:112px;
  display:flex;flex-direction:column;align-items:center;gap:4px;
  padding:14px 18px;border-radius:12px;
  border:1px solid var(--lx-line);background:#fff;cursor:pointer;
  transition:border-color .2s,box-shadow .2s,transform .2s;
}
.llh-fare:hover{border-color:var(--lx-gold);transform:translateY(-2px)}
.llh-fare__m{
  font-size:10.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--lx-ink-muted);
}
.llh-fare__p{
  font-family:var(--lx-serif);font-size:21px;font-weight:600;color:var(--lx-navy);
  font-variant-numeric:tabular-nums;line-height:1.15;
}
.llh-fare__p span{
  display:block;font-family:var(--lx-sans);font-size:9.5px;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;color:var(--lx-ink-muted);
  margin-bottom:1px;
}
.llh-fare__badge{
  position:absolute;top:-9px;left:50%;transform:translateX(-50%);
  background:var(--lx-gold);color:#fff;font-size:9px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;padding:2px 9px;border-radius:999px;
  white-space:nowrap;
}
.llh-fare.is-low{border-color:var(--lx-gold);background:#fffdf8}
.llh-fare.is-low .llh-fare__p{color:var(--lx-gold-dark)}
.llh-fare.is-selected{
  border-color:var(--lx-navy);box-shadow:0 0 0 2px rgba(7,21,38,.12);
}
.llh-fare.is-selected .llh-fare__p{color:var(--lx-navy)}

.llh-fares__note{
  margin:18px 0 0;font-size:12.5px;line-height:1.6;color:var(--lx-ink-muted);
}

@media (max-width:640px){
  .llh-fares__months{display:grid;grid-template-columns:repeat(auto-fill,minmax(104px,1fr));gap:10px}
  .llh-fare{min-width:0;padding:13px 10px}
  .llh-fare__p{font-size:19px}
}

/* Sub-headings that label a UI region rather than open a document section.
   These were <h5> elements with no <h4> above them, which broke the heading
   outline for anyone navigating by heading. */
.llh-sub-h,
.llh-book__aside-title{
  display:flex;align-items:center;gap:8px;
  margin:0 0 12px;font-family:var(--lx-serif);font-size:16px;font-weight:600;
  color:var(--lx-navy);
}
.llh-sub-h svg{width:16px;height:16px;color:var(--lx-gold);flex:none}

/* The rotating destination line, demoted out of the H1 so the heading can
   stay fixed while the carousel keeps moving. */
.llh-hero__now{
  display:flex;flex-wrap:wrap;align-items:baseline;gap:6px 12px;
  margin:0 0 14px;font-family:var(--lx-serif);font-size:clamp(20px,2.4vw,28px);
  font-weight:600;color:#fff;line-height:1.2;
}
.llh-hero__tag-inline{font-size:.82em;font-weight:400;font-style:italic}

/* ------------------------------------------------------------------
   37. Editorial byline and table of contents
   ------------------------------------------------------------------ */
.llh-byline{display:inline-flex;flex-wrap:wrap;gap:6px 14px;align-items:center}
.llh-byline__by a{color:inherit;text-decoration:underline;text-underline-offset:3px}
.llh-byline__by a:hover{color:var(--lx-gold)}
.llh-byline__upd{opacity:.8}

.llh-toc{
  margin:0 0 34px;padding:22px 26px;
  background:var(--lx-ivory-2);border:1px solid var(--lx-line);border-radius:14px;
}
.llh-toc__title{
  margin:0 0 12px!important;font-family:var(--lx-sans)!important;
  font-size:11px!important;font-weight:700!important;letter-spacing:.16em;
  text-transform:uppercase;color:var(--lx-ink-muted)!important;
}
.llh-toc__list{
  margin:0;padding:0;list-style:none;
  display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:8px 26px;counter-reset:llh-toc;
}
.llh-toc__list li{counter-increment:llh-toc;display:flex;gap:10px;align-items:baseline;margin:0}
.llh-toc__list li::before{
  content:counter(llh-toc,decimal-leading-zero);
  font-family:var(--lx-mono,ui-monospace,monospace);font-size:11px;
  color:var(--lx-gold);flex:none;font-variant-numeric:tabular-nums;
}
.llh-toc__list a{
  color:var(--lx-navy);text-decoration:none;font-size:14px;line-height:1.5;
  border-bottom:1px solid transparent;
}
.llh-toc__list a:hover{color:var(--lx-gold-dark);border-bottom-color:currentColor}

/* Visually hidden, still announced. Used for headings that exist to keep the
   document outline intact where the design carries no visible section title. */
.lx-sr-only{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;border:0;
}

/* ------------------------------------------------------------------
   38. Homepage positioning copy
   Set as a reading column rather than another card grid — it is the one
   part of the page meant to be read rather than scanned.
   ------------------------------------------------------------------ */
.llh-about__grid{
  display:grid;grid-template-columns:1fr;gap:26px;
}
@media (min-width:900px){
  .llh-about__grid{grid-template-columns:minmax(220px,300px) minmax(0,1fr);gap:56px;align-items:start}
  .llh-about__intro{position:sticky;top:calc(var(--lx-head-h,80px) + 28px)}
}
.llh-about__intro .llh-h2{margin-bottom:0}
.llh-about__body{max-width:68ch}
.llh-about__body p{
  margin:0 0 18px;font-size:15.5px;line-height:1.75;color:var(--lx-ink-muted);
}
.llh-about__body strong{color:var(--lx-navy);font-weight:600}
.llh-about__body h3{
  margin:30px 0 10px;font-family:var(--lx-serif);font-size:20px;font-weight:600;
  color:var(--lx-navy);letter-spacing:-.01em;
}
.llh-about__body h3:first-of-type{margin-top:26px}
.llh-about__cta{
  margin-top:26px!important;padding-top:20px;border-top:1px solid var(--lx-line);
  color:var(--lx-navy)!important;
}
.llh-about__body a{color:var(--lx-gold-dark);font-weight:600;text-decoration:underline;text-underline-offset:3px}
.llh-about__body a:hover{color:var(--lx-navy)}
.llh-linkbtn{
  background:none;border:0;padding:0;font:inherit;cursor:pointer;
  color:var(--lx-gold-dark);font-weight:600;text-decoration:underline;text-underline-offset:3px;
}
.llh-linkbtn:hover{color:var(--lx-navy)}

/* ------------------------------------------------------------------
   39. Quick answer capsule (deal + AEO/GEO)
   A single self-contained summary, first thing in the experience card,
   sized so an answer engine can lift it whole.
   ------------------------------------------------------------------ */
.llh-qa{
  margin:0 0 24px;padding:16px 20px;border-radius:14px;
  background:var(--lx-ivory-2);border:1px solid var(--lx-line);
  border-left:4px solid var(--lx-gold);
}
.llh-qa__label{
  display:inline-flex;align-items:center;gap:7px;
  font-size:10.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--lx-gold-dark);margin-bottom:8px;
}
.llh-qa__label svg{width:15px;height:15px}
.llh-qa__body{margin:0;font-size:15px;line-height:1.7;color:var(--lx-navy)}
.llh-qa__body strong{color:var(--lx-gold-dark);font-weight:700}

/* ------------------------------------------------------------------
   40. Payment plan, compact — lives in the sticky booking rail
   ------------------------------------------------------------------ */
.llh-book__pay{
  margin-top:16px;padding:20px;border-radius:16px;
  background:linear-gradient(180deg,#fff,var(--lx-ivory-2));
  border:1px solid var(--lx-line);
}
.llh-book__pay-eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--lx-gold-dark);margin-bottom:10px;
}
.llh-book__pay-eyebrow svg{width:15px;height:15px}
.llh-book__pay-title{
  margin:0 0 6px;font-family:var(--lx-serif);font-size:19px;font-weight:600;color:var(--lx-navy);
}
.llh-book__pay-text{margin:0 0 14px;font-size:13px;line-height:1.6;color:var(--lx-ink-muted)}
.llh-book__pay-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.llh-book__pay-row > div{
  padding:12px;border-radius:11px;background:#fff;border:1px solid var(--lx-line-soft);text-align:center;
}
.llh-book__pay-row b{
  display:block;font-family:var(--lx-serif);font-size:20px;font-weight:700;color:var(--lx-navy);
  font-variant-numeric:tabular-nums;line-height:1.1;
}
.llh-book__pay-row small{display:block;margin-top:4px;font-size:11px;color:var(--lx-ink-muted);line-height:1.4}

/* ------------------------------------------------------------------
   41. Auto-scroll deal rail (homepage first + Christmas sections)
   A horizontal, scroll-snapping carousel. Two cards show on a phone —
   never the cramped single/three-up the grid produced — widening to
   four on desktop. Auto-advances (see llh-v2.js), pausing on touch,
   hover or focus.
   ------------------------------------------------------------------ */
.llh-dealrail{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding:4px 2px 18px;
  scroll-behavior:smooth;
  scrollbar-width:none;              /* Firefox */
}
.llh-dealrail::-webkit-scrollbar{display:none}
.llh-dealrail > *{
  flex:0 0 47%;                       /* phones: two cards per row */
  min-width:0;
  scroll-snap-align:start;
}
@media (min-width:900px){ .llh-dealrail > *{flex-basis:calc((100% - 44px) / 3)} } /* 3 up — the maximum */

/* Carousel shell + arrows (injected by JS) */
.llh-carousel{position:relative}
.llh-carousel__arrow{
  position:absolute;top:38%;transform:translateY(-50%);z-index:4;
  width:46px;height:46px;border:0;border-radius:50%;
  background:#fff;color:var(--lx-navy);cursor:pointer;
  display:grid;place-items:center;box-shadow:0 8px 24px rgba(4,9,20,.22);
  transition:transform .2s,opacity .2s,background .2s;
}
.llh-carousel__arrow:hover{background:var(--lx-navy);color:#fff;transform:translateY(-50%) scale(1.06)}
.llh-carousel__arrow svg{width:20px;height:20px}
.llh-carousel__arrow--prev{left:-6px}
.llh-carousel__arrow--next{right:-6px}
.llh-carousel__arrow[disabled]{opacity:0;pointer-events:none}
@media (max-width:760px){ .llh-carousel__arrow{display:none} }

/* ------------------------------------------------------------------
   42. Larger, more readable deal-card text
   The cards were set for a dense 4-up grid; in a roomier rail the type
   was too small to read comfortably. These lift the key lines.
   ------------------------------------------------------------------ */
.llh-deal__body h3{font-size:19px;line-height:1.32}
.llh-deal__hl{font-size:13.5px;-webkit-line-clamp:2}
.llh-deal__incl div{font-size:13px}
.llh-deal__dest{font-size:14px}
.llh-deal__nights{font-size:13px}
.llh-deal__price b{font-size:24px}
.llh-deal__actions > *{font-size:11.5px;padding:12px 10px;letter-spacing:.08em}
/* The old 4-up grid trim shrank these again — bring it back up to match. */
@media (min-width:1181px){
  /* Grid (archive pages) can still run 4-up, so keep its trim. */
  .llh-dealgrid-cards .llh-deal__body h3{font-size:18px}
  .llh-dealgrid-cards .llh-deal__actions > *{font-size:11px;padding:11px 8px}
  /* The rail is capped at 3-up, so its cards are wide — let the type breathe. */
  .llh-dealrail .llh-deal__body{padding:22px}
  .llh-dealrail .llh-deal__body h3{font-size:20px}
  .llh-dealrail .llh-deal__hl{font-size:14px}
  .llh-dealrail .llh-deal__incl div{font-size:13.5px}
  .llh-dealrail .llh-deal__price b{font-size:26px}
  .llh-dealrail .llh-deal__actions > *{font-size:12px;padding:13px 12px}
  .llh-dealrail .llh-deal__media{height:230px}
}
@media (max-width:560px){
  /* Two cards per row on a phone: keep the type legible and stop nights/price
     wrapping mid-phrase in the narrow card. */
  .llh-dealrail .llh-deal__body{padding:15px 13px}
  .llh-dealrail .llh-deal__body h3{font-size:16px;line-height:1.3}
  .llh-dealrail .llh-deal__price b{font-size:20px}
  .llh-dealrail .llh-deal__media{height:150px}
  .llh-deal__row{flex-direction:column;align-items:flex-start;gap:5px}
  .llh-deal__actions{flex-direction:column}
  .llh-deal__actions > *{font-size:12px;padding:12px 10px}
}
