@charset "UTF-8";
/* ==========================================================================
   UNIQUE HOLIDAYS — "MIDNIGHT ATLAS" DESIGN SYSTEM
   Cinematic dark-first luxury travel.
   ========================================================================== */

/* ── 1. TOKENS ─────────────────────────────────────────────────────────── */
:root {
  /* Ground & surfaces */
  --ink:        #06090F;
  --ink-2:      #0B1119;
  --ink-3:      #121A26;
  --ink-4:      #1A2533;

  /* Light source */
  --aurora:     #22E3C4;
  --aurora-dim: #0FA893;
  --deep-teal:  #0A5F5A;

  /* Warm accent */
  --lumen:      #F2C46B;
  --lumen-2:    #D9A23F;

  /* Text */
  --chalk:      #EAF2F7;
  --mist:       #8CA0B6;
  --mist-dim:   #5F7185;

  /* Lines */
  --hair:       rgba(140,160,182,.16);
  --hair-lit:   rgba(34,227,196,.42);

  /* Gradients */
  --g-aurora:   linear-gradient(135deg, var(--aurora) 0%, var(--deep-teal) 100%);
  --g-lumen:    linear-gradient(135deg, var(--lumen) 0%, var(--lumen-2) 100%);
  --g-glass:    linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.012));

  /* Glow */
  --glow-a:     0 0 0 1px rgba(34,227,196,.28), 0 18px 60px -18px rgba(34,227,196,.45);
  --glow-l:     0 0 0 1px rgba(242,196,107,.30), 0 18px 60px -18px rgba(242,196,107,.42);
  --lift:       0 32px 80px -32px rgba(0,0,0,.85);

  /* Geometry */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 26px;

  /* Motion */
  --ease:  cubic-bezier(.22,1,.36,1);
  --ease2: cubic-bezier(.65,0,.35,1);
  --t:     .55s var(--ease);

  /* Rhythm */
  --pad:  clamp(20px, 5vw, 64px);
  --bay:  clamp(72px, 10vw, 148px);
  --max:  1320px;

  /* Type */
  --f-display: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --f-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --f-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ── 2. RESET & BASE ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.68;
  color: var(--chalk);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient depth wash behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 620px at 12% -6%,  rgba(34,227,196,.10), transparent 62%),
    radial-gradient(760px 560px at 92% 8%,   rgba(242,196,107,.075), transparent 60%),
    radial-gradient(1100px 800px at 50% 108%, rgba(10,95,90,.16),   transparent 66%);
}

a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

::selection { background: var(--aurora); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--aurora);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Every real section sits above the ambient wash */
header, section, footer,
.uh-band, .marquee, .p-hero { position: relative; z-index: 1; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────────────────── */
.d1, .d2, .d3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.d1 { font-size: clamp(2.9rem, 7.2vw, 6.4rem); }
.d2 { font-size: clamp(2.2rem, 4.6vw, 3.9rem); }
.d3 { font-size: clamp(1.55rem, 2.6vw, 2.3rem); }

.d1 em, .d2 em, .d3 em {
  font-style: italic;
  color: var(--lumen);
}
.d1 .aur, .d2 .aur, .d3 .aur { color: var(--aurora); font-style: italic; }

/* Mono eyebrow — the instrument-panel voice */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--aurora);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--aurora);
  opacity: .65;
}
.eyebrow.lum { color: var(--lumen); }
.eyebrow.lum::before { background: var(--lumen); }

.lede {
  font-size: clamp(1rem, 1.15vw, 1.09rem);
  color: var(--mist);
  line-height: 1.78;
  max-width: 62ch;
}

/* Generic WordPress content (the_content()) — the fallback branch in
   page.php for any page that isn't one of our named sections, e.g. a
   Privacy Policy edited from wp-admin. Bare HTML has no classes of its
   own, so every element needs a legible default against the dark ground. */
.lede h2, .lede h3, .lede h4 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--chalk);
  line-height: 1.25;
  margin: 2.2em 0 .6em;
}
.lede h2:first-child, .lede h3:first-child { margin-top: 0; }
.lede h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.lede h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
.lede h4 { font-size: 1.05rem; font-family: var(--f-body); font-weight: 700; }
.lede p  { margin-bottom: 1.1em; }
.lede ul, .lede ol { margin: 0 0 1.3em; padding-left: 1.3em; display: grid; gap: .5em; }
.lede li { line-height: 1.7; }
.lede li::marker { color: var(--aurora); }
.lede strong { color: var(--chalk); font-weight: 700; }
.lede a { color: var(--aurora); border-bottom: 1px solid rgba(34,227,196,.35); transition: border-color .3s var(--ease); }
.lede a:hover { border-bottom-color: var(--aurora); }
.lede hr { border: 0; border-top: 1px solid var(--hair); margin: 2.4em 0; }
.lede blockquote {
  border-left: 2px solid var(--aurora);
  padding-left: 1.2em;
  color: var(--chalk);
  font-style: italic;
  margin: 1.5em 0;
}

.mono {
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

/* ── 4. LAYOUT PRIMITIVES ──────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.bay { padding-block: var(--bay); }

.sec-head { margin-bottom: clamp(2.6rem, 5vw, 4.2rem); }
.sec-head.center { text-align: center; }
.sec-head.center .eyebrow::before { display: none; }
.sec-head.center .lede { margin-inline: auto; }

/* Split head: title left, aside right */
.sec-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Hairline divider band */
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair) 18%, var(--hair) 82%, transparent);
}

/* ── 5. MOTION UTILITIES ───────────────────────────────────────────────── */
/* Reveal primitives. JS adds .in — a no-JS fallback below un-hides them. */
[data-rise], [data-fade], [data-slide], [data-scale], [data-clip] {
  will-change: transform, opacity;
}

[data-rise]  { opacity: 0; transform: translateY(38px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
[data-fade]  { opacity: 0;                              transition: opacity 1.05s var(--ease); }
[data-slide] { opacity: 0; transform: translateX(-46px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-slide="right"] { transform: translateX(46px); }
[data-scale] { opacity: 0; transform: scale(.93);       transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* Cinematic clip reveal for imagery */
[data-clip] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease);
}

/* Hero entrance pieces — sequenced by JS after the loader clears */
[data-hero-in] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-rise].in, [data-fade].in, [data-slide].in, [data-scale].in, [data-hero-in].in {
  opacity: 1;
  transform: none;
}
[data-clip].in { clip-path: inset(0 0 0 0); }

/* Staggered children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1)  { transition-delay: .00s }
[data-stagger].in > *:nth-child(2)  { transition-delay: .07s }
[data-stagger].in > *:nth-child(3)  { transition-delay: .14s }
[data-stagger].in > *:nth-child(4)  { transition-delay: .21s }
[data-stagger].in > *:nth-child(5)  { transition-delay: .28s }
[data-stagger].in > *:nth-child(6)  { transition-delay: .35s }
[data-stagger].in > *:nth-child(7)  { transition-delay: .42s }
[data-stagger].in > *:nth-child(8)  { transition-delay: .49s }
[data-stagger].in > *:nth-child(9)  { transition-delay: .10s }
[data-stagger].in > *:nth-child(10) { transition-delay: .17s }
[data-stagger].in > *:nth-child(n+11) { transition-delay: .24s }

/* Word-by-word text reveal */
.rev-line { display: block; overflow: hidden; }
.rev-word {
  display: inline-block;
  transform: translateY(105%) rotate(4deg);
  opacity: 0;
  transition: transform .95s var(--ease), opacity .8s var(--ease);
}
.in .rev-word, .rev-word.in { transform: none; opacity: 1; }

/* Char reveal (hero) */
.rev-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(88%) rotateX(-72deg);
  transform-origin: 50% 100%;
  transition: opacity .8s var(--ease), transform 1s var(--ease);
}
.rev-char.in { opacity: 1; transform: none; }

/* Safety: if JS never runs, nothing stays invisible */
.no-js [data-rise], .no-js [data-fade], .no-js [data-slide],
.no-js [data-scale], .no-js [data-hero-in], .no-js [data-stagger] > * {
  opacity: 1 !important;
  transform: none !important;
}
.no-js [data-clip]  { clip-path: none !important; }
.no-js .rev-word,
.no-js .rev-char    { opacity: 1 !important; transform: none !important; }

/* ── 6. LOADER ─────────────────────────────────────────────────────────── */
#uh-load {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
#uh-load .lo-inner { text-align: center; width: min(320px, 74vw); }

#uh-load .lo-mark {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  letter-spacing: -.01em;
  color: var(--chalk);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
#uh-load .lo-mark em { font-style: italic; color: var(--lumen); }
#uh-load .lo-mark span {
  display: inline-block;
  animation: loMark .9s var(--ease) both;
}
@keyframes loMark { from { transform: translateY(110%); } }

#uh-load .lo-track {
  height: 2px;
  background: rgba(140,160,182,.18);
  border-radius: 2px;
  overflow: hidden;
}
#uh-load .lo-fill {
  height: 100%;
  width: 0;
  background: var(--g-aurora);
  box-shadow: 0 0 18px var(--aurora);
  animation: loFill 1.65s var(--ease2) forwards;
}
@keyframes loFill { to { width: 100%; } }

#uh-load .lo-meta {
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--mist-dim);
}

#uh-load.done { opacity: 0; visibility: hidden; }

/* ── 7. CURSOR ─────────────────────────────────────────────────────────── */
.cur-dot, .cur-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  translate: -50% -50%;
}
.cur-dot {
  width: 6px; height: 6px;
  background: var(--aurora);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s;
}
.cur-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(34,227,196,.55);
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: .5rem;
  letter-spacing: .16em;
  color: transparent;
  transition: width .38s var(--ease), height .38s var(--ease),
              background .38s var(--ease), border-color .38s var(--ease), color .25s;
}
body.cur-lg .cur-ring {
  width: 78px; height: 78px;
  background: rgba(34,227,196,.10);
  border-color: rgba(34,227,196,.75);
}
body.cur-lg .cur-dot { opacity: 0; }
body.cur-view .cur-ring { color: var(--aurora); }

@media (hover: none), (max-width: 900px) {
  .cur-dot, .cur-ring { display: none; }
}

/* ── 8. JOURNEY RAIL (scroll progress) ─────────────────────────────────── */
.rail {
  position: fixed;
  left: 26px;
  top: 50%;
  translate: 0 -50%;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.rail-line {
  position: relative;
  width: 1px;
  height: 168px;
  background: var(--hair);
  overflow: hidden;
}
.rail-fill {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 0;
  background: var(--aurora);
  box-shadow: 0 0 12px var(--aurora);
}
.rail-pct {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  color: var(--mist-dim);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 1180px) { .rail { display: none; } }

/* Top scroll bar */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--g-aurora);
  z-index: 9998;
  box-shadow: 0 0 14px rgba(34,227,196,.8);
}

/* ── 9. HEADER ─────────────────────────────────────────────────────────── */
#uh-head {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  padding-block: 20px;
  transition: padding .5s var(--ease), background .5s var(--ease),
              backdrop-filter .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
#uh-head.stuck {
  padding-block: 11px;
  background: rgba(6,9,15,.82);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-bottom-color: var(--hair);
}
.head-in {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--g-lumen);
  color: var(--ink);
  font-size: 1.05rem;
  box-shadow: 0 8px 26px -8px rgba(242,196,107,.7);
  transition: transform .5s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-14deg) scale(1.08); }
.brand-name {
  font-family: var(--f-display);
  font-size: 1.32rem;
  letter-spacing: -.01em;
  color: var(--chalk);
  white-space: nowrap;
}
.brand-name em { font-style: italic; color: var(--lumen); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 8px 15px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--mist);
  border-radius: 8px;
  transition: color .35s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px;
  bottom: 3px;
  height: 1px;
  background: var(--aurora);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--chalk); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--aurora); }

.head-cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--chalk);
  border-radius: 2px;
  transition: transform .45s var(--ease), opacity .3s;
}
.burger.on span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── 10. BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 27px;
  font-family: var(--f-body);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 50px;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease);
}
.btn > * { position: relative; z-index: 2; }
.btn:hover { transform: translateY(-3px); }

.btn-lg { padding: 16px 36px; font-size: .95rem; }

/* Gold — primary */
.btn-gold { background: var(--g-lumen); color: var(--ink); box-shadow: 0 10px 34px -12px rgba(242,196,107,.72); }
.btn-gold:hover { box-shadow: 0 20px 48px -14px rgba(242,196,107,.85); }

/* Aurora — secondary */
.btn-aurora { background: var(--g-aurora); color: var(--ink); box-shadow: 0 10px 34px -12px rgba(34,227,196,.7); }
.btn-aurora:hover { box-shadow: 0 20px 48px -14px rgba(34,227,196,.85); }

/* Ghost */
.btn-ghost {
  border: 1px solid var(--hair);
  color: var(--chalk);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--hair-lit); color: var(--aurora); }

/* Sweep sheen on hover */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.42) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform .85s var(--ease);
}
.btn:hover::before { transform: translateX(110%); }

/* ── 11. HERO (front page) ─────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 150px 90px;
}
.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1200px 720px at 78% 18%, rgba(34,227,196,.20), transparent 58%),
    radial-gradient(900px 620px at 16% 76%,  rgba(242,196,107,.16), transparent 60%),
    linear-gradient(175deg, #070B12 0%, #0A121C 46%, #06090F 100%);
}
#hero canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
}
.hero-horizon {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 46%;
  z-index: 1;
  background: linear-gradient(to top, var(--ink) 12%, transparent 100%);
  pointer-events: none;
}
.hero-in {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 17px 7px 8px;
  border: 1px solid var(--hair);
  border-radius: 50px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--mist);
  margin-bottom: 1.7rem;
}
.hero-badge b {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--aurora);
  color: var(--ink);
  font-size: .62rem;
}
.hero-title { margin-bottom: 1.5rem; perspective: 900px; }
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--mist);
  min-height: 2.6em;
  max-width: 48ch;
  margin-bottom: 2.3rem;
}
.tw-caret {
  display: inline-block;
  width: 2px; height: 1.05em;
  background: var(--aurora);
  vertical-align: -.16em;
  margin-left: 3px;
  animation: caret 1.05s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

.hero-acts { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 3.6rem; }

.hero-figs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  padding-top: 1.9rem;
  border-top: 1px solid var(--hair);
  max-width: 640px;
}
.hero-fig strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
  color: var(--chalk);
  margin-bottom: .3rem;
}
.hero-fig span {
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mist-dim);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  translate: -50% 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--mist-dim);
}
.scroll-cue i {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--aurora), transparent);
  animation: cue 2.1s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── 12. PAGE HERO (inner pages) ───────────────────────────────────────── */
.p-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 170px 0 clamp(48px, 7vw, 84px);
}
.p-hero-img {
  position: absolute;
  inset: -8% 0 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.72) brightness(.5);
  will-change: transform;
}
.p-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, var(--ink) 4%, rgba(6,9,15,.62) 52%, rgba(6,9,15,.78) 100%),
    radial-gradient(760px 460px at 22% 92%, rgba(34,227,196,.20), transparent 66%);
}
.p-hero-in {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  width: 100%;
}
.p-hero-in .d1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); margin-bottom: 1rem; }
.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.9rem;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mist-dim);
}
.crumb a { color: var(--mist); transition: color .3s; }
.crumb a:hover { color: var(--aurora); }
.crumb .now { color: var(--aurora); }

/* ── 13. MARQUEE RIBBON ────────────────────────────────────────────────── */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 22px;
  border-block: 1px solid var(--hair);
  background: rgba(255,255,255,.017);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.mq-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: mq 44s linear infinite;
}
.marquee:hover .mq-track { animation-play-state: paused; }
@keyframes mq { to { transform: translateX(-50%); } }
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-inline: 20px;
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  color: var(--mist);
  white-space: nowrap;
  transition: color .35s;
}
.mq-item:hover { color: var(--aurora); }
.mq-item i {
  font-style: normal;
  color: var(--lumen);
  font-size: .6em;
  opacity: .8;
}

/* ── 14. GLASS CARD BASE ───────────────────────────────────────────────── */
.card {
  position: relative;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--g-glass), var(--ink-2);
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .5s var(--ease),
              box-shadow .55s var(--ease);
}
.card:hover {
  border-color: var(--hair-lit);
  box-shadow: var(--lift);
}
/* Specular glare that follows the pointer (JS sets --mx/--my) */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%),
              rgba(34,227,196,.16), transparent 62%);
  transition: opacity .5s var(--ease);
}
.card:hover::after { opacity: 1; }

/* ── 15. STATS ─────────────────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  overflow: hidden;
}
.stat {
  background: var(--ink-2);
  padding: clamp(28px, 3.4vw, 44px) clamp(18px, 2.4vw, 30px);
  text-align: center;
  transition: background .5s var(--ease);
}
.stat:hover { background: var(--ink-3); }
.stat i {
  display: block;
  font-style: normal;
  font-size: 1.5rem;
  margin-bottom: .85rem;
  opacity: .92;
}
.stat-n {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  color: var(--aurora);
  margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}
.stat-n sup { font-size: .5em; vertical-align: super; color: var(--lumen); }
.stat-l {
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--mist-dim);
}

/* ── 16. SEARCH PANEL ──────────────────────────────────────────────────── */
.search-panel {
  position: relative;
  z-index: 20;
  max-width: var(--max);
  margin: -58px auto 0;
  padding-inline: var(--pad);
}
.search-in {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  padding: 18px;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  background: rgba(11,17,25,.86);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  box-shadow: var(--lift);
}
.sf { flex: 1 1 168px; padding: 6px 14px; }
.sf label {
  display: block;
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mist-dim);
  margin-bottom: 7px;
}
.sf select, .sf input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--chalk);
  font-size: .93rem;
  font-weight: 600;
  padding: 3px 0;
  cursor: pointer;
}
.sf select option { background: var(--ink-3); color: var(--chalk); }
.sf input[type="date"] { color-scheme: dark; }
.sf-div { width: 1px; align-self: stretch; background: var(--hair); margin-block: 6px; }

/* ── 17. DESTINATION CARDS ─────────────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dest {
  position: relative;
  height: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hair);
  transform-style: preserve-3d;
  transition: transform .6s var(--ease), border-color .5s, box-shadow .55s var(--ease);
  cursor: pointer;
}
.dest:hover { border-color: var(--hair-lit); box-shadow: var(--lift); }
.dest img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) brightness(.72);
  transition: transform 1.15s var(--ease), filter .6s var(--ease);
}
.dest:hover img { transform: scale(1.1); filter: saturate(1.05) brightness(.82); }
.dest-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,15,.95) 6%, rgba(6,9,15,.35) 48%, transparent 78%);
}
.dest-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 5px 13px;
  border-radius: 50px;
  background: rgba(6,9,15,.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hair-lit);
  font-family: var(--f-mono);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--aurora);
}
.dest-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
}
.dest-name {
  font-family: var(--f-display);
  font-size: 1.55rem;
  line-height: 1.12;
  color: #fff;
  margin-bottom: .4rem;
}
.dest-meta {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--mist);
  margin-bottom: 1rem;
}
.dest-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--aurora);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), gap .3s;
}
.dest:hover .dest-go { opacity: 1; transform: none; }
.dest-go:hover { gap: 14px; }

/* ── 18. FEATURE CARDS ─────────────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--g-glass), var(--ink-2);
  position: relative;
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .5s, background .5s;
}
.feat:hover { transform: translateY(-8px); border-color: var(--hair-lit); }
.feat::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(340px circle at var(--mx,50%) var(--my,50%),
              rgba(34,227,196,.14), transparent 60%);
  transition: opacity .5s;
}
.feat:hover::after { opacity: 1; }
.feat-n {
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .2em;
  color: var(--mist-dim);
  margin-bottom: 1.5rem;
}
.feat-ico {
  font-size: 1.85rem;
  margin-bottom: 1.05rem;
  display: block;
  transition: transform .55s var(--ease);
}
.feat:hover .feat-ico { transform: translateY(-5px) scale(1.13); }
.feat h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--chalk);
  margin-bottom: .6rem;
}
.feat p { font-size: .89rem; color: var(--mist); line-height: 1.72; }

/* ── 19. PACKAGE CARDS ─────────────────────────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pkg {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--ink-2);
  overflow: hidden;
  position: relative;
  transition: transform .55s var(--ease), border-color .5s var(--ease), box-shadow .55s var(--ease);
}
.pkg:hover { transform: translateY(-9px); border-color: var(--hair-lit); box-shadow: var(--lift); }
.pkg.star { border-color: rgba(242,196,107,.5); box-shadow: 0 0 0 1px rgba(242,196,107,.16); }
.pkg.star:hover { box-shadow: var(--glow-l), var(--lift); }

.pkg-top {
  position: relative;
  height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px 17px;
  overflow: hidden;
}
.pkg-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,15,.9) 4%, rgba(6,9,15,.2) 55%, transparent 85%);
}
/* Subtle drifting texture over the gradient */
.pkg-top::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.13), transparent 42%);
  animation: drift 15s ease-in-out infinite alternate;
}
@keyframes drift {
  to { transform: translate(14%, 11%) rotate(9deg); }
}
.pkg-ico {
  position: absolute;
  top: 15px; left: 17px;
  z-index: 2;
  font-size: 1.95rem;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.6));
  transition: transform .55s var(--ease);
}
.pkg:hover .pkg-ico { transform: scale(1.15) rotate(-7deg); }
.pkg-star-tag {
  position: absolute;
  top: 15px; left: 17px;
  z-index: 3;
  padding: 4px 11px;
  border-radius: 50px;
  background: var(--g-lumen);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pkg-off {
  position: absolute;
  top: 15px; right: 15px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 50px;
  background: #E1394E;
  color: #fff;
  font-family: var(--f-mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .06em;
}
.pkg-loc, .pkg-dur {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-family: var(--f-mono);
  letter-spacing: .07em;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.pkg-loc {
  font-size: .66rem;
  color: #fff;
  background: rgba(6,9,15,.5);
  border: 1px solid rgba(255,255,255,.14);
  padding: 3px 10px;
  margin-bottom: 6px;
  align-self: flex-start;
}
.pkg-dur {
  font-size: .62rem;
  color: var(--ink);
  background: var(--aurora);
  padding: 3px 10px;
  align-self: flex-start;
  font-weight: 500;
}
.pkg-body { padding: 16px 18px 10px; flex: 1; }
.pkg-rate {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: .5rem;
}
.pkg-rate b { color: var(--lumen); font-size: .8rem; letter-spacing: .06em; }
.pkg-rate span {
  font-family: var(--f-mono);
  font-size: .63rem;
  color: var(--mist-dim);
}
.pkg-name {
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.22;
  color: var(--chalk);
}
/* One line, always — so every card's price row sits on the same baseline. */
.pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
  padding: 12px 18px 18px;
  border-top: 1px solid var(--hair);
  margin-top: 12px;
}
.pkg-foot > div { min-width: 0; }
.pkg-was {
  font-family: var(--f-mono);
  font-size: .68rem;
  color: var(--mist-dim);
  text-decoration: line-through;
}
.pkg-now {
  font-family: var(--f-mono);
  font-size: .95rem;
  font-weight: 500;
  color: var(--aurora);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.pkg-now i { font-style: normal; font-size: .6rem; color: var(--mist-dim); }
.pkg-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid var(--hair);
  font-size: .73rem;
  font-weight: 700;
  color: var(--chalk);
  transition: background .4s var(--ease), color .4s, border-color .4s, gap .3s;
}
.pkg-go:hover {
  background: var(--aurora);
  border-color: var(--aurora);
  color: var(--ink);
  gap: 11px;
}

/* ── 20. ABOUT / EDITORIAL SPLIT ───────────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: clamp(2.4rem, 5vw, 5rem);
  align-items: center;
}
.frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hair);
}
.frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(.86);
  transition: transform 1.3s var(--ease);
}
.frame:hover img { transform: scale(1.06); }
.frame-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 20px;
  border-radius: var(--r);
  background: rgba(11,17,25,.9);
  backdrop-filter: blur(18px);
  border: 1px solid var(--hair-lit);
}
.frame-badge i { font-style: normal; font-size: 1.5rem; }
.frame-badge strong { display: block; font-size: .88rem; color: var(--chalk); }
.frame-badge span {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist-dim);
}

.point-list { display: flex; flex-direction: column; gap: 4px; margin-block: 2rem; }
.point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: background .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.point:hover {
  background: var(--ink-2);
  border-color: var(--hair);
  transform: translateX(7px);
}
.point i { font-style: normal; font-size: 1.28rem; flex-shrink: 0; margin-top: 2px; }
.point h4 { font-size: .96rem; font-weight: 700; color: var(--chalk); margin-bottom: .18rem; }
.point p { font-size: .84rem; color: var(--mist); line-height: 1.6; }

/* ── 21. TESTIMONIALS ──────────────────────────────────────────────────── */
.testi-vp { overflow: hidden; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
.testi-track {
  display: flex;
  gap: 22px;
  transition: transform .85s var(--ease);
  will-change: transform;
}
.testi {
  flex: 0 0 clamp(290px, 33%, 420px);
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  background: var(--g-glass), var(--ink-2);
  display: flex;
  flex-direction: column;
  transition: border-color .5s, transform .6s var(--ease);
}
.testi:hover { border-color: var(--hair-lit); }
.testi-mark {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: .6;
  color: var(--aurora);
  opacity: .34;
  margin-bottom: .6rem;
}
.testi-say {
  font-size: .96rem;
  line-height: 1.78;
  color: var(--chalk);
  flex: 1;
  margin-bottom: 1.7rem;
}
.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--g-aurora);
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 1.2rem;
}
.testi-nm { font-size: .9rem; font-weight: 700; color: var(--chalk); }
.testi-tr {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  color: var(--mist-dim);
  text-transform: uppercase;
}
.testi-st { color: var(--lumen); font-size: .76rem; letter-spacing: .1em; margin-top: .2rem; }

.testi-nav { display: flex; align-items: center; gap: 12px; }
.tnav {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hair);
  color: var(--chalk);
  transition: background .4s var(--ease), border-color .4s, color .4s, transform .4s var(--ease);
}
.tnav:hover { background: var(--aurora); border-color: var(--aurora); color: var(--ink); transform: scale(1.09); }
.tdots { display: flex; gap: 7px; }
.tdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hair);
  cursor: pointer;
  transition: width .45s var(--ease), background .4s;
}
.tdot.on { width: 24px; border-radius: 50px; background: var(--aurora); }

/* Static grid variant (inner pages) */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ── 22. GALLERY ───────────────────────────────────────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gal-i {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--hair);
  cursor: pointer;
}
.gal-i:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-i:nth-child(6) { grid-column: span 2; }
.gal-i img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.8) brightness(.66);
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
}
.gal-i:hover img { transform: scale(1.1); filter: saturate(1.05) brightness(.85); }
.gal-cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(6,9,15,.92), transparent);
  transform: translateY(14px);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .5s var(--ease);
}
.gal-i:hover .gal-cap { transform: none; opacity: 1; }
.gal-cap strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: #fff;
}
.gal-cap span {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--aurora);
}

/* ── 23. TRUST STRIP ───────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border-block: 1px solid var(--hair);
}
.trust {
  background: var(--ink);
  padding: clamp(28px, 3.2vw, 42px) clamp(20px, 2.6vw, 32px);
  transition: background .5s var(--ease);
}
.trust:hover { background: var(--ink-2); }
.trust i { font-style: normal; font-size: 1.55rem; display: block; margin-bottom: .9rem; }
.trust strong { display: block; font-size: .95rem; color: var(--chalk); margin-bottom: .35rem; }
.trust p { font-size: .82rem; color: var(--mist); line-height: 1.62; }

/* ── 24. NEWSLETTER ────────────────────────────────────────────────────── */
.nl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  background:
    radial-gradient(700px 400px at 88% 8%, rgba(34,227,196,.12), transparent 62%),
    var(--g-glass), var(--ink-2);
}
.perks { display: grid; gap: 10px; margin-bottom: 1.7rem; }
.perk {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .88rem;
  color: var(--mist);
}
.perk::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(34,227,196,.14);
  color: var(--aurora);
  font-size: .66rem;
}
.nl-row { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-in {
  flex: 1 1 220px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid var(--hair);
  background: rgba(6,9,15,.6);
  color: var(--chalk);
  font-size: .9rem;
  transition: border-color .4s var(--ease);
}
.nl-in::placeholder { color: var(--mist-dim); }
.nl-in:focus { outline: none; border-color: var(--aurora); }
.nl-note {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .06em;
  color: var(--mist-dim);
  margin-top: .95rem;
}

/* ── 25. CTA BAND ──────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(76px, 10vw, 132px);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 480px at 50% 0%,   rgba(34,227,196,.16), transparent 62%),
    radial-gradient(680px 440px at 22% 100%, rgba(242,196,107,.13), transparent 62%),
    var(--ink-2);
}
/* Slow-rotating grid pattern for depth */
.cta-band::after {
  content: '';
  position: absolute;
  inset: -30%;
  opacity: .3;
  background-image:
    linear-gradient(var(--hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 68%);
          mask-image: radial-gradient(circle at 50% 50%, #000, transparent 68%);
  animation: spin 92s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-in { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; padding-inline: var(--pad); }
.cta-in .lede { margin-inline: auto; margin-bottom: 2.3rem; }
.cta-acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-marks {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hair);
}
.cta-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
}
.cta-mark b { color: var(--aurora); }

/* ── 26. FOOTER ────────────────────────────────────────────────────────── */
.site-foot {
  border-top: 1px solid var(--hair);
  background: var(--ink);
  padding-top: clamp(52px, 7vw, 84px);
}
.foot-grid {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.35fr;
  gap: clamp(2rem, 4vw, 3.4rem);
  padding-bottom: clamp(38px, 5vw, 58px);
}
.foot-brand .brand-name { font-size: 1.5rem; margin-bottom: 1rem; display: inline-block; }
.foot-brand p { font-size: .87rem; color: var(--mist); line-height: 1.72; margin-bottom: 1.5rem; max-width: 34ch; }
.socials { display: flex; gap: 9px; }
.soc {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hair);
  font-size: .76rem;
  font-weight: 700;
  color: var(--mist);
  transition: background .4s var(--ease), color .4s, border-color .4s, transform .4s var(--ease);
}
.soc:hover { background: var(--lumen); border-color: var(--lumen); color: var(--ink); transform: translateY(-4px); }

.foot-col h4 {
  font-family: var(--f-mono);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--aurora);
  margin-bottom: 1.15rem;
}
.foot-links { list-style: none; display: grid; gap: 10px; }
.foot-links a {
  font-size: .87rem;
  color: var(--mist);
  transition: color .35s, padding-left .35s var(--ease);
}
.foot-links a:hover { color: var(--chalk); padding-left: 7px; }

.fci { display: flex; gap: 11px; margin-bottom: .95rem; font-size: .85rem; color: var(--mist); line-height: 1.6; }
.fci i { font-style: normal; flex-shrink: 0; }
.fci a { color: var(--lumen); transition: color .3s; }
.fci a:hover { color: var(--aurora); }

.foot-bot {
  border-top: 1px solid var(--hair);
  padding: 22px var(--pad);
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .05em;
  color: var(--mist-dim);
}
.foot-bot a { color: var(--mist); transition: color .3s; }
.foot-bot a:hover { color: var(--aurora); }
.fbl { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ── 27. VALUES / TIMELINE / FILTERS / FAQ (inner) ─────────────────────── */
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.val {
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--g-glass), var(--ink-2);
  position: relative;
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .5s;
}
.val:hover { transform: translateY(-7px); border-color: var(--hair-lit); }
.val i { font-style: normal; font-size: 1.75rem; display: block; margin-bottom: 1rem; }
.val h3 {
  font-family: var(--f-display);
  font-size: 1.24rem;
  font-weight: 400;
  color: var(--chalk);
  margin-bottom: .55rem;
  line-height: 1.2;
}
.val p { font-size: .87rem; color: var(--mist); line-height: 1.72; }

/* Timeline — a real chronological sequence, so numbering earns its place */
.tl { position: relative; max-width: 860px; margin-inline: auto; padding-left: 34px; }
.tl::before {
  content: '';
  position: absolute;
  left: 5px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--hair) 8%, var(--hair) 92%, transparent);
}
.tl-item { position: relative; padding-bottom: 2.8rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 9px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--aurora);
  transition: background .45s var(--ease), box-shadow .45s var(--ease);
}
.tl-item:hover::before { background: var(--aurora); box-shadow: 0 0 16px var(--aurora); }
.tl-yr {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--aurora);
  margin-bottom: .5rem;
}
.tl-item h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--chalk);
  margin-bottom: .45rem;
}
.tl-item p { font-size: .89rem; color: var(--mist); line-height: 1.74; max-width: 58ch; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.filt {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--hair);
  font-size: .8rem;
  font-weight: 600;
  color: var(--mist);
  transition: background .4s var(--ease), color .4s, border-color .4s, transform .35s var(--ease);
}
.filt:hover { color: var(--chalk); border-color: var(--hair-lit); transform: translateY(-2px); }
.filt.on { background: var(--aurora); border-color: var(--aurora); color: var(--ink); }

.faq-list { max-width: 880px; margin-inline: auto; display: grid; gap: 10px; }
.faq {
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--ink-2);
  overflow: hidden;
  transition: border-color .45s var(--ease), background .45s;
}
.faq.open { border-color: var(--hair-lit); background: var(--ink-3); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: .97rem;
  font-weight: 700;
  color: var(--chalk);
  cursor: pointer;
}
.faq-pm {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hair);
  color: var(--aurora);
  font-size: 1rem;
  transition: transform .5s var(--ease), background .4s, color .4s;
}
.faq.open .faq-pm { transform: rotate(135deg); background: var(--aurora); color: var(--ink); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease);
}
.faq-a p {
  padding: 0 24px 22px;
  font-size: .89rem;
  color: var(--mist);
  line-height: 1.78;
  max-width: 68ch;
}

/* ── 28. CONTACT ───────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(1.6rem, 3vw, 2.4rem); align-items: start; }
.form-card {
  padding: clamp(28px, 3.6vw, 44px);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  background: var(--g-glass), var(--ink-2);
}
.form-card h3 { font-family: var(--f-display); font-size: 1.75rem; font-weight: 400; color: var(--chalk); margin-bottom: .5rem; }
.form-card > p { font-size: .89rem; color: var(--mist); margin-bottom: 1.9rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-grp { margin-bottom: 14px; }
.f-grp label {
  display: block;
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--mist-dim);
  margin-bottom: 7px;
}
.f-grp input, .f-grp select, .f-grp textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hair);
  background: rgba(6,9,15,.55);
  color: var(--chalk);
  font-size: .9rem;
  transition: border-color .4s var(--ease), background .4s;
}
.f-grp input::placeholder, .f-grp textarea::placeholder { color: var(--mist-dim); }
.f-grp input:focus, .f-grp select:focus, .f-grp textarea:focus {
  outline: none;
  border-color: var(--aurora);
  background: rgba(6,9,15,.85);
}
.f-grp select option { background: var(--ink-3); }
.f-grp textarea { resize: vertical; min-height: 108px; }
.f-send {
  width: 100%;
  margin-top: .6rem;
  padding: 15px;
  border-radius: 50px;
  background: var(--g-lumen);
  color: var(--ink);
  font-size: .93rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  box-shadow: 0 10px 34px -12px rgba(242,196,107,.7);
}
.f-send:hover { transform: translateY(-3px); box-shadow: 0 20px 48px -14px rgba(242,196,107,.85); }

.cinfo {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--ink-2);
  transition: border-color .45s var(--ease), transform .45s var(--ease);
}
.cinfo:hover { border-color: var(--hair-lit); transform: translateX(6px); }
.cinfo i { font-style: normal; font-size: 1.4rem; flex-shrink: 0; }
.cinfo h4 { font-size: .93rem; font-weight: 700; color: var(--chalk); margin-bottom: .35rem; }
.cinfo p, .cinfo a { display: block; font-size: .85rem; color: var(--mist); line-height: 1.66; }
.cinfo a { color: var(--lumen); transition: color .3s; }
.cinfo a:hover { color: var(--aurora); }

.hours { padding: 22px; border: 1px solid var(--hair); border-radius: var(--r); background: var(--ink-2); }
.hours h4 {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--aurora);
  margin-bottom: 1rem;
}
.hours ul { list-style: none; display: grid; gap: 11px; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .84rem;
  color: var(--mist);
  padding-bottom: 11px;
  border-bottom: 1px solid var(--hair);
}
.hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours li span:last-child { font-family: var(--f-mono); font-size: .76rem; color: var(--chalk); }

/* ── 28a. FILTER SUMMARY + EMPTY STATE ─────────────────────────────────── */
.filter-empty {
  text-align: center;
  margin-top: 1.6rem;
  font-size: .9rem;
  color: var(--mist);
}
.filter-empty a { color: var(--aurora); border-bottom: 1px solid rgba(34,227,196,.4); }

.filter-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.2rem;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid var(--hair);
  background: var(--ink-2);
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--mist);
}
.filter-summary strong { color: var(--aurora); }
.filter-summary a {
  color: var(--lumen);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.filter-summary a:hover { border-bottom-color: var(--lumen); }

.empty-state {
  text-align: center;
  padding: clamp(48px, 8vw, 88px) var(--pad);
  border: 1px dashed var(--hair);
  border-radius: var(--r-lg);
  background: var(--ink-2);
}
.empty-ico { font-size: 2.6rem; margin-bottom: 1rem; }
.empty-state h3 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 400;
  color: var(--chalk);
  margin-bottom: .6rem;
}
.empty-state p {
  font-size: .95rem;
  color: var(--mist);
  max-width: 46ch;
  margin: 0 auto 1.8rem;
  line-height: 1.7;
}
.empty-acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── 28b. FORM FEEDBACK, HONEYPOT, REQUIRED ────────────────────────────── */
/* Honeypot — off-screen for people, still fillable by bots. */
.uh-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-msg {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: .89rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
  border: 1px solid;
}
.form-msg.good {
  background: rgba(34,227,196,.10);
  border-color: rgba(34,227,196,.42);
  color: var(--aurora);
}
.form-msg.bad {
  background: rgba(225,57,78,.10);
  border-color: rgba(225,57,78,.45);
  color: #FF8B9B;
}

.form-note {
  padding: 12px 18px;
  border-radius: var(--r-sm);
  background: rgba(242,196,107,.10);
  border: 1px solid rgba(242,196,107,.38);
  color: var(--lumen);
  font-size: .87rem;
  margin-bottom: 1.1rem;
}
.form-note strong { color: var(--chalk); }

.f-grp label .req { color: var(--lumen); }

.f-send[disabled] { opacity: .65; cursor: progress; }

/* ── 29. WHATSAPP FAB ──────────────────────────────────────────────────── */
.wa {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 900;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 12px 34px -10px rgba(37,211,102,.8);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.wa:hover { transform: scale(1.11) rotate(7deg); box-shadow: 0 18px 46px -10px rgba(37,211,102,.95); }
.wa svg { width: 27px; height: 27px; fill: #fff; }
.wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.75); opacity: 0; }
}
.wa-tip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  padding: 8px 15px;
  border-radius: 50px;
  background: var(--ink-3);
  border: 1px solid var(--hair);
  font-size: .78rem;
  color: var(--chalk);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.wa:hover .wa-tip { opacity: 1; transform: none; }

/* ── 30. RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .dest-grid, .pkg-grid, .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav, .head-cta .btn { display: none; }
  .burger { display: flex; }

  /* Mobile drawer */
  .nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(6,9,15,.97);
    backdrop-filter: blur(26px);
    z-index: 480;
  }
  .nav.open a { font-size: 1.6rem; font-family: var(--f-display); padding: 12px; }
  .nav.open a::after { display: none; }

  .split-grid, .nl-grid, .contact-grid { grid-template-columns: 1fr; }
  .stat-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .val-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-i:nth-child(1), .gal-i:nth-child(6) { grid-column: span 2; }
  .gal-i:nth-child(1) { grid-row: span 1; }
  .search-in { flex-direction: column; align-items: stretch; }
  .sf-div { display: none; }
  .sf { width: 100%; }
  .search-in .btn { width: 100%; }
}

@media (max-width: 760px) {
  .dest-grid, .pkg-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .val-grid, .testi-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .search-panel { margin-top: -20px; }
  #hero { min-height: auto; padding-block: 128px 72px; }
  .scroll-cue { display: none; }
}

@media (max-width: 520px) {
  .dest-grid, .pkg-grid, .feat-grid, .stat-grid, .trust-grid, .gal-grid { grid-template-columns: 1fr; }
  .gal-i { grid-column: span 1 !important; }
  .dest { height: 340px; }
  .foot-bot { justify-content: center; text-align: center; }
}

/* ── 31. REDUCED MOTION ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  /* Nothing may stay hidden waiting on an observer */
  [data-rise], [data-fade], [data-slide], [data-scale], [data-hero-in],
  [data-stagger] > *, .rev-word, .rev-char {
    opacity: 1 !important;
    transform: none !important;
  }
  [data-clip] { clip-path: none !important; }

  .cur-dot, .cur-ring { display: none; }
  #uh-load { display: none; }
}
