/* ============================================================
   NOMADIC TOURISM — concept travel site
   Dark cinematic · poster-display headlines · amber accent
   Tokens → base → layout → components → pages → responsive
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --ink: #0b0e13;
  --ink-soft: #121823;
  --ink-card: #141b26;
  --paper: #f4f2ec;
  --mist: #99a0aa;
  --line: rgba(244, 242, 236, 0.12);
  --line-strong: rgba(244, 242, 236, 0.28);
  --gold: #e0a45a;
  --gold-deep: #c68a3e;
  --tide: #3e6e73;
  --base-rgb: 11, 14, 19; /* required by js/vendor/app.js menu backdrop */

  /* type */
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-ui: "Space Grotesk", system-ui, sans-serif;

  /* spacing / layout */
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --maxw: 1680px;
  --section-pad: clamp(4.5rem, 11vh, 11rem);
  --header-h: clamp(54px, 8vh, 72px); /* approx .site-header height — hero clearance */

  /* eases (mirror js/vendor/app.js custom eases for CSS) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-hop: cubic-bezier(0.87, 0, 0.13, 1);

  /* z layers */
  --z-cursor: 10000;
  --z-loader: 9999;
  --z-transition: 9990;
  --z-menu: 9000;
  --z-header: 800;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto; /* Lenis handles smoothing */
}
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
input,
textarea {
  font: inherit;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}

/* Hide native cursor on desktop where custom cursor runs.
   The triangle cursor is the only cursor, so suppress every native cursor —
   including the grab/grabbing/pointer cursors that libraries (Swiper, GSAP
   Draggable) set inline. !important is needed to beat those inline styles. */
@media (hover: hover) and (pointer: fine) {
  *,
  *::before,
  *::after {
    cursor: none !important;
  }
  /* vendor dot cursor replaced by the bespoke triangle cursor (js/main.js) */
  #mxd-cursor {
    display: none;
  }
}

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--paper);
  text-stroke: 1.4px var(--paper);
}
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.muted {
  color: var(--mist);
}
.accent {
  color: var(--gold);
}

/* ---------- Layout ---------- */
.mxd-app {
  position: relative;
  width: 100%;
  overflow: clip;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section-pad);
  position: relative;
}
.section--tight {
  padding-block: clamp(3rem, 7vh, 6rem);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.section-head__label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.section-head__label .rule {
  width: clamp(40px, 12vw, 220px);
  height: 1px;
  background: var(--line-strong);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.015em;
  font-size: clamp(2.5rem, 7vw, 7rem);
}

/* Magnetic elements: motion.dev owns `transform`, so strip any CSS
   transform transition that would otherwise fight per-frame updates.
   Keep colour/border transitions for hover. */
@media (hover: hover) and (pointer: fine) {
  .magnetic {
    transition:
      background-color 0.3s ease,
      color 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--paper);
  --fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  padding: 1.05em 1.8em;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 2px;
  transition:
    transform 0.16s var(--ease-out),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  will-change: transform;
}
.btn .btn__arrow {
  transition: transform 0.35s var(--ease-out);
}
.btn:hover .btn__arrow {
  transform: translateX(6px);
}
.btn:active {
  transform: scale(0.97);
}
.btn--ghost {
  --bg: transparent;
  --fg: var(--paper);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--paper);
  background: rgba(244, 242, 236, 0.06);
}
.btn--solid:hover {
  --bg: var(--gold);
  --fg: var(--ink);
}

/* Inline arrow link (PLAN YOUR ADVENTURE →) */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 0.7em;
  position: relative;
  width: fit-content;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.45s var(--ease-out);
}
.link-arrow:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}
.link-arrow .link-arrow__line {
  display: inline-block;
  width: 2.4em;
  height: 1px;
  background: var(--gold);
  position: relative;
  top: 1px;
  transition: width 0.4s var(--ease-out);
}
.link-arrow:hover .link-arrow__line {
  width: 3.4em;
}

/* ============================================================
   LOADER
   ============================================================ */
.mxd-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  display: none; /* default hidden (internal nav uses .mxd-page-transition) */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--ink);
}
/* js/transition-boot.js flags first-visit/reload pre-paint so the loader covers
   the page from the first frame (no home-content flash); js/vendor/app.js then
   runs its show/hide lifecycle via inline display. */
:root[data-loader="show"] .mxd-loader {
  display: flex;
}
.mxd-loader__top,
.mxd-loader__bottom {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: var(--gutter);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
}
.mxd-loader__top {
  top: 0;
}
.mxd-loader__bottom {
  bottom: 0;
}
/* vendor hooks — kept in the DOM so js/vendor/app.js targets resolve, but hidden */
.mxd-loader__images,
.mxd-loader__count {
  display: none;
}
/* brand logomark — drawn by js/main.js customLoader() (GSAP DrawSVG) */
.mxd-loader__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-logo {
  width: clamp(120px, 20vw, 240px);
  height: auto;
  overflow: visible;
}
/* sleek progress bar */
.mxd-loader__bar {
  width: clamp(180px, 24vw, 300px);
  height: 2px;
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 2px;
  background: color-mix(in srgb, var(--mist) 18%, transparent);
}
.mxd-loader__bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0); /* js/main.js drives scaleX from the vendor counter */
  transform-origin: left center;
}
@media (prefers-reduced-motion: reduce) {
  /* no draw loop — show the mark fully drawn and the bar filled */
  .mxd-loader__bar-fill {
    transform: scaleX(1);
  }
}

/* ============================================================
   PAGE TRANSITION
   ============================================================ */
.mxd-page-transition {
  position: fixed;
  inset: 0;
  z-index: var(--z-transition);
  background: var(--ink);
  transform: translateY(0); /* covers; js/vendor/app.js lifts to -100% */
  display: none; /* inert: js/main.js owns visible page transitions */
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mxd-page-transition__mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.7;
}

/* ============================================================
   PAGE TRANSITION — per-destination variants (cover → reveal)
   Driven by js/main.js pageTransitions(). The vendor .mxd-page-transition
   is inert; these overlays replace it. Incoming covers are shown only when
   js/transition-boot.js validates a fresh click-navigation marker.
   archive → home · team → destinations · contact → contact
   ============================================================ */
.np-pt {
  position: fixed;
  inset: 0;
  z-index: var(--z-transition);
  pointer-events: none;
}
.np-pt > div {
  position: fixed;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}

body.is-transitioning a {
  pointer-events: none;
}

/* — Team: dark band sweep + masked destination word — */
.np-pt__team {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  clip-path: polygon(0% 44%, 0% 44%, 0% 56%, 0% 56%);
  will-change: clip-path;
}
.np-pt__team-band {
  display: none;
}
.np-pt__label {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 var(--gutter);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 9vw, 7rem);
  line-height: 1;
  color: var(--gold);
  text-align: center;
}
.np-pt__word {
  will-change: transform;
}

/* — Archive: ink veil + drawing gold spiral — */
.np-pt__archive {
  display: grid;
  place-items: center;
  overflow: hidden;
}
.np-pt__archive svg {
  display: block;
  width: 125%;
  height: 100%;
  aspect-ratio: 1;
}
.np-pt__archive path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 100;
  opacity: 0;
  will-change: stroke-width, opacity;
}

/* — Contact: polygon panel peel; the ink band is the cover, the page is revealed directly — */
.np-pt__contact {
  background: transparent;
  clip-path: polygon(15% 75%, 85% 75%, 85% 75%, 15% 75%);
  will-change: clip-path;
}
.np-pt__contact-band {
  position: absolute;
  inset: 0;
  background: var(--ink);
  clip-path: inset(0% 0% 0% 0%);
  will-change: clip-path;
}
.np-pt__contact-title {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0 var(--gutter);
  font-family: var(--font-display);
  font-size: clamp(3rem, 13vw, 12rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--paper);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Incoming cover appears only when transition-boot validates a fresh marker */
html[data-pt-pending="team"] .np-pt__team,
html[data-pt-pending="archive"] .np-pt__archive,
html[data-pt-pending="contact"] .np-pt__contact {
  visibility: visible;
}
html[data-pt-pending="team"] .np-pt__team {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
html[data-pt-pending="archive"] .np-pt__archive path {
  opacity: 1;
  stroke-width: 400;
}
html[data-pt-pending="contact"] .np-pt__contact {
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
}
html[data-pt-pending="contact"] .np-pt__contact-band {
  clip-path: inset(0% 0% 0% 0%);
}
html[data-pt-pending="contact"] .np-pt__contact-title {
  opacity: 1;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#mxd-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  mix-blend-mode: difference;
}
#mxd-cursor.difference {
  mix-blend-mode: difference;
}
#mxd-cursor__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper);
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease-out),
    height 0.3s var(--ease-out),
    background 0.3s ease;
}
#mxd-cursor__dot.expand {
  width: 64px;
  height: 64px;
  background: rgba(244, 242, 236, 0.18);
}
#mxd-cursor__dot.cursor-btn-link {
  width: 46px;
  height: 46px;
  background: var(--paper);
}
#mxd-cursor__text {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}
#mxd-cursor__text.show {
  opacity: 1;
}
#mxd-cursor__image,
#mxd-cursor__image-tr {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition:
    opacity 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}
#mxd-cursor__image.show,
#mxd-cursor__image-tr.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#mxd-cursor__image img {
  width: 100%;
  border-radius: 2px;
}

/* ---- Triangle cursor (bespoke, driven by js/main.js triangleCursor()) ----
   #tri-cursor   : 0x0 anchor point, positioned at the pointer (gsap x/y)
   .__shape      : centered on the point + rotated to travel direction (gsap)
   .__tri        : the actual triangle; hover scale lives here so it never
                   fights gsap's transform on .__shape
   .__label      : sibling of .__shape so it stays upright while .__shape spins */
#tri-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  mix-blend-mode: normal;
}
.tri-cursor__shape {
  position: absolute;
  top: 0;
  left: 0;
}
.tri-cursor__tri {
  width: 15px;
  height: 18px;
  background: var(--paper);
  /* swept arrowhead: apex up-center, two swept-back wings, V-notch at the tail
     → reads as a directional arrow, not a flat triangle */
  clip-path: polygon(50% 0%, 100% 100%, 50% 72%, 0% 100%);
  filter: drop-shadow(0 0 1px rgba(11, 14, 19, 0.95))
    drop-shadow(0 2px 6px rgba(11, 14, 19, 0.5));
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}
.tri-cursor__label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(14px, 12px);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow:
    0 0 1px rgba(11, 14, 19, 0.95),
    0 2px 6px rgba(11, 14, 19, 0.75);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
}
#tri-cursor.is-hover .tri-cursor__tri {
  transform: scale(1.6);
}
#tri-cursor.is-hover .tri-cursor__label {
  opacity: 1;
}
#tri-cursor.is-link .tri-cursor__tri {
  transform: scale(1.4);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(0.65rem, 1.4vw, 1rem) var(--gutter);
  transition:
    transform 0.5s var(--ease-hop),
    background 0.4s ease,
    backdrop-filter 0.4s ease;
}
.site-header.is-hidden {
  transform: translateY(-105%);
}
.site-header.is-solid {
  background: rgba(11, 14, 19, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

/* logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}
.brand__mark {
  width: 30px;
  height: 30px;
  color: var(--paper);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
}
.brand__name small {
  display: block;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.5rem;
  letter-spacing: 0.42em;
  color: var(--mist);
  margin-top: 2px;
}

/* nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 0.4em 0;
  overflow: hidden;
  transition: color 0.3s ease;
}
.nav-link span {
  display: inline-block;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--paper);
}
.nav-link.is-active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--paper);
  transition:
    transform 0.16s var(--ease-out),
    color 0.25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .icon-btn:hover {
    color: var(--gold);
  }
}
.icon-btn:active {
  transform: scale(0.94);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}

/* hamburger — bare bars, no container */
.mxd-menu__toggle {
  width: 44px;
  height: 44px;
  color: var(--paper);
  display: grid;
  place-items: center;
  transition: transform 0.16s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  /* tactile "breathe": outer bars spread + tint gold on hover */
  .mxd-menu__toggle:hover .mxd-menu__hamburger:not(.active) span {
    background: var(--gold);
  }
  .mxd-menu__toggle:hover .mxd-menu__hamburger:not(.active) span:nth-child(1) {
    transform: translateY(-2px);
  }
  .mxd-menu__toggle:hover .mxd-menu__hamburger:not(.active) span:nth-child(3) {
    transform: translateY(2px);
  }
}
.mxd-menu__toggle:active {
  transform: scale(0.94);
}
.mxd-menu__hamburger {
  position: relative;
  width: 22px;
  height: 12px;
}
.mxd-menu__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: var(--paper);
  transition:
    transform 0.35s var(--ease-hop),
    background 0.25s ease,
    opacity 0.2s ease;
}
.mxd-menu__hamburger span:nth-child(1) {
  top: 0;
}
.mxd-menu__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.mxd-menu__hamburger span:nth-child(3) {
  bottom: 0;
}
.mxd-menu__hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.mxd-menu__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.mxd-menu__hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ============================================================
   OFF-CANVAS MENU
   ============================================================ */
.mxd-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-menu) - 1);
  background: rgba(var(--base-rgb), 0);
  pointer-events: none;
}
.mxd-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: var(--ink);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  overflow: hidden;
}
/* close button — labelled, borderless; direct child of the overlay so it
   rides the clip-path reveal */
.mxd-menu__close {
  position: absolute;
  top: clamp(1.75rem, 4vw, 3rem);
  right: var(--gutter);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--mist);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition:
    color 0.25s var(--ease-out),
    transform 0.16s var(--ease-out);
}
.mxd-menu__close svg {
  width: 17px;
  height: 17px;
  transition: transform 0.4s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .mxd-menu__close:hover {
    color: var(--paper);
  }
  .mxd-menu__close:hover svg {
    transform: rotate(90deg);
  }
}
.mxd-menu__close:active {
  transform: scale(0.96);
}
.mxd-menu__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  will-change: transform;
}
/* single-column menu: image + social column removed, kept only as a hidden
   GSAP hook for the untouched vendor app.js */
.mxd-menu__media {
  display: none;
}
.mxd-menu__main {
  padding: clamp(3.5rem, 9vh, 7rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2.5rem, 6vh, 5rem);
  max-width: 1100px;
}
.mxd-menu__caption {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.menu-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.menu-logo__mark {
  flex: none;
  width: 32px;
  height: 32px;
  color: var(--paper);
}
.menu-logo__text {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  overflow: hidden;
}
.mxd-menu__caption p {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  overflow: hidden;
}
.main-menu {
  display: flex;
  flex-direction: column;
}
.main-menu__item {
  border-top: 1px solid transparent;
  position: relative;
}
.main-menu__divider {
  height: 1px;
  background: var(--line);
}
.main-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.6rem, 2vw, 1.4rem) 0;
}
.main-menu__link span {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
  transition:
    color 0.3s ease,
    transform 0.4s var(--ease-out);
}
.main-menu__link:hover span {
  color: var(--gold);
  transform: translateX(0.4rem);
}
.main-menu__arrow {
  color: var(--gold);
  width: 30px;
  height: 30px;
}
.menu-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  font-size: 0.85rem;
}
.menu-contact a {
  color: var(--mist);
  transition: color 0.3s ease;
}
.menu-contact a:hover {
  color: var(--paper);
}
/* ============================================================
   SIDE RAILS (vertical text + pager + socials)
   ============================================================ */
.hero-rail {
  position: absolute;
  left: var(--gutter);
  top: 0;
  bottom: 0;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}
.hero-rail__line {
  width: 1px;
  height: 90px;
  background: var(--line-strong);
  transform-origin: top;
}
.hero-rail__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-block: 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mist);
}
.hero-social {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(2rem, 6vh, 5rem);
  z-index: 3;
}
.social-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.social-stack a {
  color: var(--mist);
  transition:
    color 0.3s ease,
    transform 0.3s var(--ease-out);
}
.social-stack a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.social-stack svg {
  width: 17px;
  height: 17px;
}

/* ============================================================
   HERO (full-bleed video)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* keep centered content clear of the fixed header on short/laptop viewports */
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: 1rem;
}
.hero__media,
.parallax-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 80% at 50% 40%,
      rgba(11, 14, 19, 0.1) 0%,
      rgba(11, 14, 19, 0.55) 60%,
      rgba(11, 14, 19, 0.9) 100%
    ),
    linear-gradient(
      180deg,
      rgba(11, 14, 19, 0.55) 0%,
      rgba(11, 14, 19, 0.05) 30%,
      rgba(11, 14, 19, 0.85) 100%
    );
  z-index: 2;
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-inline: clamp(3rem, 8vw, 7rem);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
}
.hero__eyebrow .rule {
  width: 34px;
  height: 1px;
  background: var(--line-strong);
}
.hero__word {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.03em;
  /* bold but contained; cap by viewport height so short laptops shrink too */
  font-size: clamp(3rem, min(14vw, 22vh), 15rem);
  /* lock the THAI / LAND stack regardless of size (don't let it collapse to one line) */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__word .word-outline {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.18vw, 2.2px) var(--paper);
}
.hero__meta {
  margin-top: clamp(1.2rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
}
.hero__loc svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}
.hero__elev {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}
.hero__elev small {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.42em;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.hero__sub {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}
.hero__cta {
  margin-top: clamp(1.6rem, 4vw, 3rem);
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* scroll-to-discover */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1.2rem, 4vh, 2.5rem);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}
.scroll-cue__chev {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ============================================================
   INTRO BAND (Explore the world)
   ============================================================ */
.intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.intro__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 10vw, 11rem);
}
.intro__title .outline {
  display: block;
}
.intro__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 42ch;
  padding-bottom: 0.6rem;
}
.intro__body p {
  color: var(--mist);
  font-size: 1.05rem;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: clamp(1.2rem, 3vw, 2.2rem);
}
.marquee__toleft,
.marquee__toright {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  padding-inline: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
.marquee__item .dot {
  color: var(--gold);
}
.marquee__item.is-outline {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--paper);
}

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.dest-card {
  position: relative;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.4s ease,
    transform 0.5s var(--ease-out);
}
.dest-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
}
.dest-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.dest-card:hover .dest-card__media img {
  transform: scale(1.08);
}
.dest-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 14, 19, 0) 35%,
    rgba(11, 14, 19, 0.85) 100%
  );
}
.dest-card__num {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.dest-card__num .rule {
  width: 28px;
  height: 1px;
  background: var(--paper);
  opacity: 0.7;
}
.dest-card__loc {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.dest-card__loc svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}
.dest-card__body {
  padding: 1.4rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.dest-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.7rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.dest-card__name small {
  display: block;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--mist);
  margin-top: 0.3rem;
}
.dest-card__desc {
  font-size: 0.9rem;
  color: var(--mist);
  flex: 1;
}
.dest-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dest-card__price {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}
.dest-card__price svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease-out);
}
.dest-card:hover .dest-card__price svg {
  transform: translateX(5px);
}

/* arrows pair (section head + slider controls) */
.arrow-pair {
  display: flex;
  gap: 0.7rem;
}
.arrow-pair button {
  /* reset Swiper's default absolute placement + icon-font arrow so these sit
     in the controls row with only the Lucide glyph (no doubled arrow). */
  position: relative;
  margin: 0;
  inset: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.18s var(--ease-out);
}
.arrow-pair button::after {
  /* Swiper injects its own arrow glyph here — suppress it. */
  display: none;
  content: none;
}
/* gold wipe fill that grows from the bottom on hover */
.arrow-pair button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.35s var(--ease-out);
}
.arrow-pair button:hover {
  color: var(--ink);
  border-color: var(--gold);
}
.arrow-pair button:hover::before {
  transform: scale(1);
}
.arrow-pair button:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 164, 90, 0.3);
}
.arrow-pair button:active {
  transform: scale(0.92);
}
.arrow-pair svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-out);
}
.arrow-pair .swiper-button-prev:hover svg {
  transform: translateX(-3px);
}
.arrow-pair .swiper-button-next:hover svg {
  transform: translateX(3px);
}
/* The Popular Destinations arrows are a slideshow control: on desktop all four
   cards are visible in the grid, so hide them. They reappear only when the grid
   becomes a horizontal carousel at <=900px (see RESPONSIVE). */
#destinations .arrow-pair {
  display: none;
}
.arrow-pair button[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features {
  border: 1px solid var(--line);
  border-radius: 3px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink-soft);
}
.feature {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  border-left: 1px solid var(--line);
}
.feature:first-child {
  border-left: 0;
}
.feature__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: var(--gold);
}
.feature h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.feature p {
  font-size: 0.85rem;
  color: var(--mist);
}

/* ============================================================
   EXPERIENCES (horizontal pinned)
   ============================================================ */
.exp {
  position: relative;
}
.exp__track {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  will-change: transform;
}
.exp__panel {
  position: relative;
  flex: 0 0 100vw;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.exp__media {
  position: absolute;
  inset: 0;
}
.exp__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 14, 19, 0.25),
    rgba(11, 14, 19, 0.85)
  );
}
.exp__content {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 7vw, 7rem) var(--gutter);
  max-width: 720px;
}
.exp__index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.exp__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.exp__desc {
  margin-top: 1.2rem;
  max-width: 46ch;
  color: rgba(244, 242, 236, 0.85);
}
.exp__progress {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 2rem;
  height: 2px;
  background: var(--line);
  z-index: 3;
}
.exp__progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}
/* vertical fallback (mobile) */
.exp--stacked .exp__track {
  flex-direction: column;
  height: auto;
  transform: none !important;
}
.exp--stacked .exp__panel {
  flex: 0 0 auto;
  height: 80vh;
}

/* ============================================================
   POV FLYTHROUGH (scroll-driven cinematic camera, pinned)
   ============================================================ */
.pov {
  position: relative;
  background: #000;
}
.pov__stage {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
/* rounded cinematic frame (brand) */
.pov__frame {
  position: relative;
  height: min(86vh, 66vw);
  aspect-ratio: 876 / 800;
  margin-inline: auto;
  border-radius: 2.5vh;
  overflow: hidden;
  /* matches the polaroid tabletop so the meet-fit letterbox is invisible */
  background: #1a1b1e;
  box-shadow:
    0 0 0 1px var(--line-strong),
    0 40px 120px -40px rgba(0, 0, 0, 0.85);
}
.pov__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* camera groups — GSAP drives the transforms (svgOrigin = board centre) */
.pov-scale,
.pov-pan {
  will-change: transform;
}
/* cinematic vignette + scrims so the viewfinder HUD stays legible over any frame */
.pov__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(11, 14, 19, 0.55) 0%,
      rgba(11, 14, 19, 0) 24%,
      rgba(11, 14, 19, 0) 56%,
      rgba(11, 14, 19, 0.85) 100%
    ),
    radial-gradient(
      120% 90% at 50% 50%,
      rgba(11, 14, 19, 0) 58%,
      rgba(11, 14, 19, 0.45) 100%
    );
}

/* ---- brand chrome / viewfinder HUD (never inherits the camera transform) ---- */
.pov__chrome {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  padding: clamp(1.5rem, 3vw, 3rem);
}

/* viewfinder corner brackets */
.pov__corner {
  position: absolute;
  width: clamp(20px, 3vw, 34px);
  height: clamp(20px, 3vw, 34px);
  border: 0 solid var(--line-strong);
}
.pov__corner--tl {
  top: clamp(1rem, 2.2vw, 1.75rem);
  left: clamp(1rem, 2.2vw, 1.75rem);
  border-top-width: 2px;
  border-left-width: 2px;
}
.pov__corner--tr {
  top: clamp(1rem, 2.2vw, 1.75rem);
  right: clamp(1rem, 2.2vw, 1.75rem);
  border-top-width: 2px;
  border-right-width: 2px;
}
.pov__corner--bl {
  bottom: clamp(1rem, 2.2vw, 1.75rem);
  left: clamp(1rem, 2.2vw, 1.75rem);
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.pov__corner--br {
  bottom: clamp(1rem, 2.2vw, 1.75rem);
  right: clamp(1rem, 2.2vw, 1.75rem);
  border-bottom-width: 2px;
  border-right-width: 2px;
}

/* center focus reticle — small crosshair, breathes via CSS */
.pov__reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(26px, 3.5vw, 40px);
  height: clamp(26px, 3.5vw, 40px);
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
.pov__reticle::before,
.pov__reticle::after {
  content: "";
  position: absolute;
  background: rgba(244, 242, 236, 0.7);
}
.pov__reticle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
.pov__reticle::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  transform: translateX(-50%);
}

.pov__head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.pov__head .rule {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}
/* HUD recording tag */
.pov__rec {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.7);
}
.pov__rec::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(224, 164, 90, 0.6);
  animation: pov-rec 1.8s ease-out infinite;
}
@keyframes pov-rec {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 164, 90, 0.55);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 7px rgba(224, 164, 90, 0);
    opacity: 0.55;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 164, 90, 0);
    opacity: 1;
  }
}

.pov__title {
  position: absolute;
  left: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(3.25rem, 7vh, 5.5rem);
  margin: 0;
  max-width: min(62%, 16ch);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5vw, 4.5rem);
}

/* live location readout — top-right HUD; JS crossfades via autoAlpha */
.pov__captions {
  position: absolute;
  top: clamp(4.25rem, 9vh, 6.5rem);
  right: clamp(1.5rem, 3vw, 3rem);
  text-align: right;
}
.pov__caption {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding-right: 0.85rem;
  border-right: 1px solid var(--line-strong);
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
}
.pov__caption em {
  display: block;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pov__caption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  line-height: 1;
}
.pov__caption span {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.66);
}

/* progress bar — mirrors .exp__progress, with a readout-friendly track */
.pov__progress {
  position: absolute;
  left: clamp(1.5rem, 3vw, 3rem);
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  height: 2px;
  background: var(--line);
}
.pov__progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  box-shadow: 0 0 12px -2px rgba(224, 164, 90, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
}

@media (prefers-reduced-motion: reduce) {
  .pov__rec::before {
    animation: none;
  }
}

/* on portrait / squarer viewports size the frame by width so it stays large */
@media (max-aspect-ratio: 3 / 2) {
  .pov__frame {
    height: auto;
    width: min(88vw, 74vh);
  }
}

/* mobile / reduced: static framed image, no pin or timeline */
@media (max-width: 900px) {
  .pov__frame {
    height: auto;
    width: 92vw;
  }
  /* No pin here, so the stage must not hold a full viewport of height — that
     left the frame floating in a tall black band. Collapse it to the frame and
     give it the normal section rhythm so it sits flush with the page. */
  .pov__stage {
    height: auto;
    min-height: 0;
    padding-block: var(--section-pad);
  }
}
.pov--static .pov-pan,
.pov--static .pov-scale {
  transform: none !important;
}
.pov--static .pov__captions,
.pov--static .pov__progress,
.pov--static .pov__reticle,
.pov--static .pov__rec {
  display: none;
}

/* ============================================================
   TESTIMONIALS (Swiper)
   ============================================================ */
.testimonials {
  position: relative;
}
.swiper-testimonials {
  overflow: hidden;
}
.swiper-testimonials .swiper-slide {
  width: clamp(320px, 42vw, 640px);
  height: auto;
}
.tstm-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink-card) 0%, var(--ink-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(2rem, 3vw, 3.25rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
/* static gold top hairline — a brand accent, not an interaction cue */
.tstm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(48px, 20%, 96px);
  height: 2px;
  background: var(--gold);
  opacity: 0.7;
}
/* oversized decorative quotation mark */
.tstm-card::after {
  content: "\201C";
  position: absolute;
  top: clamp(-1.2rem, -1vw, -0.6rem);
  right: 1.25rem;
  z-index: -1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(7rem, 12vw, 11rem);
  line-height: 1;
  color: var(--paper);
  opacity: 0.04;
  pointer-events: none;
}
.tstm-card__quote {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: none;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.tstm-card__stars {
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 0.9rem;
}
.tstm-card__by {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tstm-card__by img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  padding: 2px;
  border: 1px solid var(--line-strong);
}
.tstm-card__by strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.tstm-card__by span {
  font-size: 0.72rem;
  color: var(--mist);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
/* header: intro (left) + carousel controls (right), baseline-aligned */
.tstm-head {
  align-items: flex-end;
}
.tstm-head__intro {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.tstm-head__intro .section-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
}
.tstm-controls {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: none;
}
.tstm-controls .swiper-pagination {
  position: static;
  width: auto;
  margin: 0;
  inset: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--mist);
  white-space: nowrap;
}
.tstm-controls .swiper-pagination .swiper-pagination-current {
  color: var(--paper);
  font-size: 1.4rem;
}

/* stack the controls under the title on narrow viewports */
@media (max-width: 700px) {
  .tstm-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  isolation: isolate;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11, 14, 19, 0.85),
    rgba(11, 14, 19, 0.5)
  );
  z-index: -1;
}
.cta__inner {
  padding: clamp(3.5rem, 9vw, 8rem) clamp(1.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.4rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-col a {
  color: var(--paper);
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-about p {
  color: var(--mist);
  max-width: 32ch;
  margin-top: 1.2rem;
}
.newsletter {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1rem;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 0.9em 1em;
  font-size: 0.85rem;
  outline: none;
}
.newsletter input::placeholder {
  color: var(--mist);
}
.newsletter button {
  padding: 0 1.2em;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.newsletter button svg {
  width: 18px;
  height: 18px;
}
.footer-watermark {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(4rem, 22vw, 22rem);
  line-height: 0.8;
  letter-spacing: -0.03em;
  color: var(--ink);
  -webkit-text-stroke: 1px var(--line-strong);
  text-align: center;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  margin-bottom: -0.12em;
  text-shadow:
    0 0 6px var(--ink),
    0 0 12px var(--ink);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--mist);
}
.footer-bottom > * {
  position: relative;
  z-index: 3;
}
#to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper);
}
#to-top svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ============================================================
   PAGE HERO (inner pages — Destinations / Contact)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11, 14, 19, 0.55),
    rgba(11, 14, 19, 0.92)
  );
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  /* sized to fit the full word on one line within the gutters — no right-edge clip */
  font-size: clamp(2.25rem, 11vw, 13rem);
  line-height: 0.84;
  letter-spacing: -0.03em;
  margin-top: 1rem;
  white-space: nowrap;
}
.page-hero__title .word-outline {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.2vw, 2.4px) var(--paper);
  text-stroke: clamp(1px, 0.2vw, 2.4px) var(--paper);
}
.page-hero__lead {
  max-width: 52ch;
  margin-top: 1.5rem;
  color: rgba(244, 242, 236, 0.85);
  font-size: 1.1rem;
}

/* Destinations hero — typographic index masthead (no background photo) */
.page-hero--index {
  align-items: stretch;
  min-height: clamp(34rem, 90vh, 60rem);
  padding-top: clamp(7.5rem, 16vh, 12rem);
  padding-bottom: clamp(1.75rem, 4.5vh, 3.5rem);
}
/* swap the photo-darkening overlay for an ambient amber + tide glow */
.page-hero--index::after {
  background:
    radial-gradient(
      115% 85% at 80% 6%,
      rgba(224, 164, 90, 0.16),
      transparent 56%
    ),
    radial-gradient(
      130% 115% at 8% 104%,
      rgba(62, 110, 115, 0.14),
      transparent 60%
    );
}
.page-hero--index .page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}
.page-hero--index .page-hero__display {
  margin-top: auto;
}
.page-hero__top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.page-hero__top .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

/* bottom "regions" index strip — the page's table of contents */
.hero-index {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2.75rem);
  padding-top: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}
.hero-index__label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mist);
  margin-right: auto;
}
.hero-index__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 3rem);
}
.hero-index__item {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  color: var(--paper);
}
.hero-index__no {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  transform: translateY(-0.15em);
}
@media (max-width: 700px) {
  .hero-index {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .hero-index__list {
    gap: 0.75rem 1.5rem;
  }
}

/* ============================================================
   STICKY CLIP-REVEAL GALLERY (Destinations) — js/vendor/app.js hooks
   ============================================================ */
.mxd-dv-sticky-img {
  position: relative;
}
.mxd-dv-sticky-img__sticky {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}
.images__overflow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.images__overflow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mxd-dv-sticky-img__sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 14, 19, 0.35),
    rgba(11, 14, 19, 0.8)
  );
  z-index: 2;
  pointer-events: none;
}
.mxd-dv-sticky-img__titles {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(11rem, 28vh, 18rem);
  z-index: 3;
  height: clamp(3rem, 9vw, 9rem);
  overflow: hidden;
}
.mxd-dv-sticky-img__titleitem {
  position: absolute;
  left: 0;
  bottom: 0;
}
.mxd-dv-sticky-img__titleitem h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.mxd-dv-sticky-img__number {
  position: absolute;
  right: var(--gutter);
  top: clamp(6rem, 16vh, 11rem);
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mxd-dv-sticky-img__number .number__total {
  color: var(--mist);
}
.mxd-dv-sticky-img__progress {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(2rem, 6vh, 3.5rem);
  height: 2px;
  background: var(--gold);
  transform-origin: left center;
  z-index: 3;
}

/* Signature Journeys — persistent header (rides app.js's .btnholder fade-in) */
.mxd-dv-sticky-img__btnholder.dv-journeys__head {
  position: absolute;
  left: var(--gutter);
  top: clamp(6rem, 16vh, 11rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.dv-journeys__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.dv-journeys__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  transition:
    border-color 0.4s var(--ease-out),
    color 0.4s var(--ease-out);
}
.dv-journeys__cta i,
.dv-journeys__cta svg {
  width: 15px;
  height: 15px;
}
.dv-journeys__cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Signature Journeys — per-slide detail panel (.is-active swapped by main.js) */
.dv-journeys {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(4.5rem, 11vh, 7rem);
  z-index: 3;
  pointer-events: none;
}
.dv-journey {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 46ch;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.dv-journey.is-active {
  opacity: 1;
  transform: none;
}
.dv-journey__region {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.dv-journey__desc {
  margin-top: 0.6rem;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  line-height: 1.32;
  font-weight: 300;
  color: var(--paper);
}
.dv-journey__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin-top: 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--mist);
}
.dv-journey__meta span + span {
  position: relative;
  padding-left: 0.9rem;
}
.dv-journey__meta span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .mxd-dv-sticky-img__btnholder.dv-journeys__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    top: clamp(5.5rem, 14vh, 8rem);
  }
  .dv-journey {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dv-journey {
    transition-duration: 0.01ms;
    transform: none;
  }
}

/* editorial parallax grid */
.edito-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.edito {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  grid-column: span 4;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.edito--wide {
  grid-column: span 8;
}
.edito--tall {
  min-height: 520px;
}
.edito img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edito::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 14, 19, 0) 40%,
    rgba(11, 14, 19, 0.85)
  );
}
.edito__cap {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
}
.edito__cap h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 0.95;
}
.edito__cap span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.stat {
  background: var(--ink);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}
.stat__num small {
  font-size: 0.4em;
  color: var(--gold);
  vertical-align: super;
}
.stat__label {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  transition:
    opacity 0.4s ease,
    filter 0.4s ease;
}
.form.is-hidden {
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
}
.field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.6rem;
  transition: color 0.25s ease;
}
/* Label lights up while its control is being used */
.field:focus-within label {
  color: var(--gold);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.025), rgba(244, 242, 236, 0)) ,
    var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.95em 1em;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--mist);
  opacity: 0.65;
}
.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: var(--line-strong);
}
.field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 164, 90, 0.14);
  background-color: var(--ink-card);
}

/* ---- Custom select ----
   Built by customSelect() in js/main.js over the native <select>, whose
   OS-rendered option list can't be themed. Native stays in the DOM as the
   form value carrier (hidden once enhanced); these styles dress the listbox
   that replaces it so the dropdown matches the dark, cinematic shell. */
.select {
  position: relative;
}
.select__native {
  width: 100%;
}
.select.is-enhanced .select__native {
  display: none;
}
.select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  width: 100%;
  text-align: left;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.025), rgba(244, 242, 236, 0)),
    var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.95em 1em;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.select__trigger:hover {
  border-color: var(--line-strong);
}
.select__value {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.select__icon {
  flex: none;
  display: flex;
  color: var(--mist);
  transition:
    transform 0.25s var(--ease-out),
    color 0.25s ease;
}
.select__trigger:focus-visible,
.select.is-open .select__trigger {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 164, 90, 0.14);
  background-color: var(--ink-card);
}
.select.is-open .select__icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.select__panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  max-height: 17rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--ink-card);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  box-shadow: 0 22px 50px -16px rgba(0, 0, 0, 0.75);
  /* closed state — origin-aware reveal from the trigger, never from nothing */
  opacity: 0;
  transform: translateY(-0.4rem) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.18s var(--ease-out),
    transform 0.18s var(--ease-out);
}
.select.is-open .select__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.select__option {
  display: flex;
  align-items: center;
  gap: 0.65em;
  padding: 0.65em 0.7em;
  border-radius: 3px;
  color: var(--paper);
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.select__option::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.18s var(--ease-out),
    transform 0.18s var(--ease-out);
}
.select__option.is-active {
  background: rgba(244, 242, 236, 0.06);
}
.select__option[aria-selected="true"] {
  color: var(--gold);
}
.select__option[aria-selected="true"]::before {
  opacity: 1;
  transform: scale(1);
}
.form__submit {
  grid-column: 1 / -1;
}
.form__reply {
  margin-top: 1.5rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: rgba(224, 164, 90, 0.08);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s var(--ease-out);
  pointer-events: none;
}
.form__reply.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-block h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.7rem;
}
.contact-block p,
.contact-block a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.contact-block a:hover {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature:nth-child(3) {
    border-left: 0;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .header-actions .icon-btn.search {
    display: none;
  }
  .intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .edito,
  .edito--wide {
    grid-column: span 12;
  }

  /* Popular Destinations becomes a swipeable slideshow on tablet & smaller.
     The grid turns into a horizontal scroll-snap track (native touch swipe);
     the section-head arrows return as the slideshow control (wired in js/main.js). */
  #destinations .arrow-pair {
    display: flex;
  }
  #destinations .dest-grid {
    display: flex;
    grid-template-columns: none;
    gap: clamp(1rem, 3vw, 1.6rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* room for the card lift/shadow so the track doesn't clip it */
    padding-bottom: 0.5rem;
  }
  #destinations .dest-grid::-webkit-scrollbar {
    display: none;
  }
  #destinations .dest-card {
    flex: 0 0 64%;
    scroll-snap-align: start;
  }

  /* Experiences: the vertical stack of 4 full-height panels made the mobile scroll
     enormous (~4 screens). Collapse it into a one-screen horizontal swipe slideshow
     instead — same scroll-snap pattern as the destinations carousel. Content stays,
     scroll shrinks. (Reduced-motion users keep the simple vertical stack below.) */
  .exp--stacked .exp__track {
    flex-direction: row;
    flex-wrap: nowrap;
    height: auto;
    gap: clamp(0.75rem, 3vw, 1.25rem);
    padding: 0 var(--gutter) 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .exp--stacked .exp__track::-webkit-scrollbar {
    display: none;
  }
  .exp--stacked .exp__panel {
    flex: 0 0 86%;
    height: clamp(26rem, 64vh, 36rem);
    scroll-snap-align: start;
    border-radius: 4px;
    overflow: hidden;
  }
  /* the scrub progress bar is a desktop affordance; the panel peek signals swipe here */
  .exp__progress {
    display: none;
  }
}
@media (max-width: 620px) {
  .dest-grid,
  .features,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .feature:first-child {
    border-top: 0;
  }
  .hero-rail {
    display: none;
  }
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  /* wider slides (with a small peek of the next) on phones */
  #destinations .dest-card {
    flex-basis: 84%;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .exp__track {
    flex-direction: column;
    height: auto;
    transform: none !important;
  }
  .exp__panel {
    flex: 0 0 auto;
    height: 70vh;
  }
  /* POV: kill camera transforms, show a static framed image */
  .pov-pan,
  .pov-scale {
    transform: none !important;
  }
  .pov__captions,
  .pov__progress {
    display: none;
  }
}
