/* ==========================================================================
   Nomadvibe Immersion — Design System
   Travel Beyond Places. Immerse Yourself.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette — deep charcoal, warm ivory, sand, muted gold, olive */
  --ink:        #16150F;   /* near-black charcoal */
  --ink-soft:   #2A2823;
  --ivory:      #F7F3EC;   /* warm ivory */
  --ivory-dim:  #EFE9DF;
  --sand:       #DCCFBC;
  --sand-deep:  #A9977C;
  --beige:      #6E6252;
  --gold:       #7E6229;   /* muted gold */
  --gold-lift:  #D4B678;
  --olive:      #5C6350;   /* subtle olive accent */
  --olive-lift: #7A8168;

  --text:       var(--ink);
  --text-mute:  #4A4638;   /* darkened for readable body copy on ivory */
  --line:       rgba(22, 21, 15, 0.16);
  --line-soft:  rgba(22, 21, 15, 0.09);

  /* Dark surface tokens */
  --dk-text:    #F4EFE6;
  --dk-mute:    rgba(244, 239, 230, 0.85);  /* lifted for readable copy on charcoal */
  --dk-line:    rgba(244, 239, 230, 0.22);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --gut: clamp(20px, 4.5vw, 64px);
  --sec: clamp(84px, 11vw, 168px);
  --maxw: 1440px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);

  --r-s: 6px;
  --r-m: 14px;
  --r-l: 22px;
  --r-xl: 32px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.012em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-locked { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, blockquote, figure, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

::selection { background: var(--gold); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--ivory);
  padding: 14px 22px; border-radius: 0 0 var(--r-s) 0;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Typography scale
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.1rem, 10.5vw, 9.5rem);
  line-height: 0.94;
  letter-spacing: -0.028em;
}
.h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6.2vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 4.6vw, 4.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
}
.h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.24rem, 1.7vw, 1.5rem);
  line-height: 1.28;
}
.italic { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--line { position: relative; padding-left: 54px; }
.eyebrow--line::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 38px; height: 1px; background: var(--gold); opacity: 0.7;
}
.eyebrow--mute { color: var(--beige); }

.lede {
  font-size: clamp(1.02rem, 1.32vw, 1.2rem);
  line-height: 1.85;
  color: var(--text-mute);
  font-weight: 300;
}
.body-copy { color: var(--text-mute); }
.measure    { max-width: 60ch; }
.measure-sm { max-width: 48ch; }

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.shell--wide { max-width: 1680px; }

.section { padding-block: var(--sec); position: relative; }
.section--tight { padding-block: clamp(60px, 7vw, 104px); }
.section--flush-b { padding-bottom: 0; }

.sec-head { margin-bottom: clamp(44px, 5.5vw, 80px); }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}
.sec-head--center { text-align: center; max-width: 780px; margin-inline: auto; }
.sec-head--center .eyebrow--line { padding-left: 0; }
.sec-head--center .eyebrow--line::before { display: none; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Dark surface */
.surface-dark {
  background: var(--ink);
  color: var(--dk-text);
}
.surface-dark .h1, .surface-dark .h2, .surface-dark .h3, .surface-dark .h4 { color: var(--dk-text); }
.surface-dark .lede, .surface-dark .body-copy { color: var(--dk-mute); }
.surface-dark .rule { background: var(--dk-line); }
.surface-dark .eyebrow { color: #E2C489; }
.surface-dark .eyebrow--line::before { background: #E2C489; }

.surface-sand { background: var(--ivory-dim); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-fg: var(--ivory);
  --btn-bg: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.btn > span { position: relative; z-index: 2; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right center;
  transition: transform 0.6s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: scaleX(1); transform-origin: left center; }
.btn:hover { color: var(--ink); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { color: var(--ivory); }
.btn--ghost::before { background: var(--ink); }

.btn--light {
  --btn-bg: var(--ivory);
  --btn-fg: var(--ink);
}
.btn--light:hover { color: var(--ink); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--ivory);
  border: 1px solid rgba(247, 243, 236, 0.42);
}
.btn--outline-light:hover { color: var(--ink); border-color: transparent; }
.btn--outline-light::before { background: var(--ivory); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--gold::before { background: var(--ink); }
.btn--gold:hover { color: var(--ivory); }

.btn--lg { padding: 21px 44px; font-size: 0.74rem; }
.btn--block { width: 100%; justify-content: center; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Text link with animated underline */
.tlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 7px;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor; opacity: 0.34;
  transform: scaleX(1); transform-origin: right center;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.tlink:hover::after { transform: scaleX(0.28); transform-origin: left center; opacity: 1; }
.tlink .arw { transition: transform 0.5s var(--ease); }
.tlink:hover .arw { transform: translateX(6px); }

.arw { display: inline-block; width: 14px; height: 9px; flex: none; }
.arw svg { display: block; width: 100%; height: 100%; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding-block: clamp(18px, 2.2vw, 30px);
  color: var(--ivory);
  transition: background 0.55s var(--ease), color 0.45s var(--ease),
              padding 0.55s var(--ease), box-shadow 0.55s var(--ease),
              transform 0.55s var(--ease);
}
.hdr::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(10,10,7,0.55), rgba(10,10,7,0));
  opacity: 1; transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.hdr.is-solid {
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  color: var(--ink);
  padding-block: 15px;
  box-shadow: 0 1px 0 var(--line-soft), 0 14px 40px -28px rgba(22,21,15,0.4);
}
.hdr.is-solid::after { opacity: 0; }
.hdr.is-hidden { transform: translateY(-102%); }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 15px; }
.logo__mark {
  width: 46px; height: 46px; flex: none;
  transition: transform 0.7s var(--ease);
}
.logo:hover .logo__mark { transform: rotate(90deg); }
.logo__mark svg { width: 100%; height: 100%; display: block; }
.logo__txt { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  white-space: nowrap;
  line-height: 1;
}
.logo__sub {
  position: relative;
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-top: 7px;
  padding-top: 7px;
  white-space: nowrap;
}
/* Hairline rule under the wordmark — the classic luxury lockup */
.logo__sub::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 1px;
  background: currentColor; opacity: 0.28;
}
.hdr.is-solid .logo__name { color: var(--ink); }
.logo:hover .logo__name { color: var(--gold); }
.logo__name, .logo__sub { transition: color 0.4s var(--ease); }

@media (max-width: 1024px) {
  .logo__mark { width: 40px; height: 40px; }
  .logo__name { font-size: 1.5rem; }
  .logo__sub { font-size: 0.52rem; letter-spacing: 0.38em; }
}
@media (max-width: 480px) {
  .logo { gap: 11px; }
  .logo__mark { width: 36px; height: 36px; }
  .logo__name { font-size: 1.3rem; }
  .logo__sub { font-size: 0.46rem; letter-spacing: 0.3em; margin-top: 5px; padding-top: 5px; }
}

/* Nav */
.nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); }
.nav__link {
  position: relative;
  font-size: 0.71rem;
  font-weight: 400;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding-block: 6px;
  opacity: 0.88;
  transition: opacity 0.35s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right center;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left center; }
.nav__link[aria-current="page"] { opacity: 1; }

.hdr__cta { display: flex; align-items: center; gap: 14px; }
.hdr .btn--outline-light { border-color: rgba(247,243,236,0.45); }
.hdr.is-solid .btn--hdr {
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.hdr.is-solid .btn--hdr::before { background: var(--ink); }
.hdr.is-solid .btn--hdr:hover { color: var(--ivory); border-color: transparent; }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid currentColor;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.burger:hover { opacity: 1; }
.burger i {
  display: block; width: 17px; height: 1px; background: currentColor;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.burger.is-open i:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; }
.burger.is-open i:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 190;
  background: var(--ink);
  color: var(--dk-text);
  padding: clamp(96px, 15vh, 140px) var(--gut) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.75s var(--ease);
  overflow-y: auto;
  visibility: hidden;
}
.drawer.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.drawer__link {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 2.9rem);
  font-weight: 300;
  line-height: 1.34;
  letter-spacing: -0.015em;
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s var(--ease);
}
.drawer.is-open .drawer__link { opacity: 1; transform: none; }
.drawer__link:hover { color: var(--gold-lift); }
.drawer__link span {
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.22em; color: var(--gold); opacity: 0.75;
}
.drawer__foot {
  margin-top: 44px; padding-top: 28px;
  border-top: 1px solid var(--dk-line);
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0; transition: opacity 0.5s var(--ease) 0.35s;
}
.drawer.is-open .drawer__foot { opacity: 1; }
.drawer__meta { font-size: 0.78rem; color: var(--dk-mute); line-height: 2; }
.drawer__meta a:hover { color: var(--gold-lift); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: -8% 0 -8% 0;
  z-index: -2;
  will-change: transform;
}
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  animation: heroZoom 12s var(--ease) forwards;
}

/* Rotating destination banner — 7 countries */
.hero__slides { position: absolute; inset: -8% 0; }
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  animation: none;
  transition: opacity 1.6s var(--ease-io), transform 8s linear;
  will-change: opacity, transform;
}
.hero__slide.is-on {
  opacity: 1;
  transform: scale(1);
}

/* Now-showing indicator */
.hero__now {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero__now-label {
  font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(247,243,236,0.62);
  text-shadow: 0 1px 12px rgba(10,10,7,0.8);
}
.hero__now-place {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  color: #F0E2C4; letter-spacing: 0.02em; min-width: 6.5ch;
  text-shadow: 0 1px 14px rgba(10,10,7,0.85);
}
.hero__dots { display: inline-flex; gap: 7px; }
.hero__dot {
  width: 26px; height: 2px; border-radius: 2px;
  background: rgba(247,243,236,0.32);
  cursor: pointer; padding: 0; border: 0;
  transition: background 0.5s var(--ease), width 0.5s var(--ease);
}
.hero__dot:hover { background: rgba(247,243,236,0.6); }
.hero__dot.is-on { background: var(--sand); width: 40px; }

@media (max-width: 640px) {
  .hero__dot { width: 18px; }
  .hero__dot.is-on { width: 28px; }
  .hero__now-place { font-size: 1.05rem; }
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(12,11,8,0.92) 0%, rgba(12,11,8,0.62) 38%, rgba(12,11,8,0.42) 66%, rgba(12,11,8,0.60) 100%);
}
.hero__in {
  width: 100%;
  padding-block: clamp(96px, 13vh, 150px) clamp(72px, 9vh, 112px);
  position: relative;
}
.hero .eyebrow {
  color: #F0E2C4;
  margin-bottom: clamp(18px, 2.4vw, 30px);
  text-shadow: 0 1px 14px rgba(10,10,7,0.85), 0 0 3px rgba(10,10,7,0.6);
}
.hero .eyebrow--line::before { background: #F0E2C4; box-shadow: 0 0 10px rgba(10,10,7,0.7); }
.hero__title { color: var(--ivory); margin-bottom: clamp(22px, 3vw, 34px);
  text-shadow: 0 2px 40px rgba(10,10,7,0.55), 0 1px 4px rgba(10,10,7,0.3); }
.hero__title em { font-style: italic; color: var(--sand); display: block; }
.hero__sub {
  max-width: 46ch;
  color: #FFFDF9;
  text-shadow: 0 1px 16px rgba(10,10,7,0.8);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.85;
  margin-bottom: clamp(30px, 4vw, 44px);
}
.hero__foot {
  margin-top: clamp(46px, 7vh, 84px);
  padding-top: 26px;
  border-top: 1px solid rgba(247,243,236,0.18);
  display: flex; flex-wrap: wrap; gap: 22px 46px;
  align-items: center; justify-content: space-between;
}
.hero__stats { display: flex; flex-wrap: wrap; gap: 22px 46px; }
.hero__stat { display: flex; flex-direction: column; gap: 3px; }
.hero__stat b {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 400;
  letter-spacing: -0.01em; color: var(--sand);
}
.hero__stat span {
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: #EFE9DE; text-shadow: 0 1px 12px rgba(10,10,7,0.8);
}

/* Scroll indicator */
.scroll-cue {
  display: inline-flex; align-items: center; gap: 13px;
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: #EFE9DE;
  text-shadow: 0 1px 12px rgba(10,10,7,0.8);
  transition: color 0.35s var(--ease);
}
.scroll-cue:hover { color: var(--ivory); }
.scroll-cue i {
  position: relative; display: block; width: 1px; height: 42px;
  background: rgba(247,243,236,0.24); overflow: hidden;
}
.scroll-cue i::after {
  content: ""; position: absolute; inset: 0; background: var(--sand);
  transform: translateY(-100%);
  animation: cueRun 2.3s var(--ease-io) infinite;
}
@keyframes cueRun {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* --------------------------------------------------------------------------
   8. Intro / editorial split
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__body > * + * { margin-top: 26px; }

.frame {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--sand);
}
.frame::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(247,243,236,0.1);
  border-radius: inherit; pointer-events: none;
}
.frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.frame--tall  { aspect-ratio: 4 / 5; }
.frame--port  { aspect-ratio: 3 / 4; }
.frame--wide  { aspect-ratio: 16 / 10; }
.frame--sq    { aspect-ratio: 1 / 1; }
.frame:hover img { transform: scale(1.05); }

/* Editorial two-image composition — fills its column, no dead space */
.media-duo {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(6, 1fr);
  aspect-ratio: 1 / 1.06;
  gap: clamp(10px, 1.2vw, 18px);
}
.media-duo__a {
  grid-column: 1 / 5;
  grid-row: 1 / 6;
}
.media-duo__b {
  grid-column: 3 / 6;
  grid-row: 4 / 7;
  border: 6px solid var(--ivory);
  border-radius: var(--r-m);
  box-shadow: 0 30px 70px -34px rgba(22,21,15,0.55);
}
.surface-sand .media-duo__b { border-color: var(--ivory-dim); }
.surface-dark .media-duo__b { border-color: var(--ink); }
/* Grid rows drive the height here — clear any inherited aspect-ratio */
.media-duo .frame { aspect-ratio: auto; height: 100%; min-height: 0; margin: 0; }
.media-duo .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-duo .badge-note {
  position: absolute;
  left: 0; bottom: clamp(14px, 2.5vw, 34px);
  transform: translateX(-12%);
  z-index: 4;
  /* keep it a compact card — it is not a grid track */
  height: auto; width: max-content; max-width: 210px;
  align-self: end; justify-self: start;
}

@media (max-width: 860px) {
  .media-duo { aspect-ratio: 1 / 0.92; }
  .media-duo .badge-note { transform: none; left: 12px; }
}
@media (max-width: 560px) {
  .media-duo { grid-template-rows: repeat(7, 1fr); aspect-ratio: 1 / 1.08; }
  .media-duo__a { grid-column: 1 / 6; grid-row: 1 / 6; }
  .media-duo__b { grid-column: 3 / 6; grid-row: 5 / 8; border-width: 5px; }
}

.frame-stack { position: relative; }
.frame-stack__b {
  position: absolute;
  right: clamp(-14px, -2vw, -30px);
  bottom: clamp(-22px, -3vw, -46px);
  width: 46%;
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(22,21,15,0.55);
  border: 6px solid var(--ivory);
}
.surface-dark .frame-stack__b { border-color: var(--ink); }
.frame-stack__b img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }

.badge-note {
  position: absolute;
  left: clamp(-10px, -1.6vw, -26px);
  top: clamp(20px, 4vw, 48px);
  background: var(--ivory);
  color: var(--ink);
  border-radius: var(--r-m);
  padding: 18px 24px;
  box-shadow: 0 26px 60px -30px rgba(22,21,15,0.5);
  max-width: 210px;
}
.badge-note b {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 400;
  display: block; line-height: 1; color: var(--gold);
}
.badge-note span {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute); display: block; margin-top: 8px; line-height: 1.6;
}

/* Value list */
.vlist { display: grid; gap: 0; margin-top: 34px; }
.vlist li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}
.vlist li:last-child { border-bottom: 1px solid var(--line); }
.vlist b {
  font-family: var(--serif); font-size: 0.9rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.06em;
}
.vlist h4 { margin-bottom: 5px; font-size: 1.06rem; font-family: var(--sans); font-weight: 500; letter-spacing: 0.01em; }
.vlist p { font-size: 0.92rem; color: var(--text-mute); line-height: 1.72; }

/* --------------------------------------------------------------------------
   9. Destination cards
   -------------------------------------------------------------------------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
}
.dest-grid > *:nth-child(7) { grid-column: span 3; }

.dcard {
  position: relative;
  display: block;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3 / 4;
  isolation: isolate;
}
.dcard--wide { aspect-ratio: 21 / 9; }
.dcard__img { position: absolute; inset: 0; }
.dcard__img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.5s var(--ease), filter 1s var(--ease);
  filter: saturate(0.94);
}
.dcard::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,11,8,0.94) 4%, rgba(12,11,8,0.52) 46%, rgba(12,11,8,0.16) 78%);
  transition: opacity 0.7s var(--ease);
}
.dcard:hover .dcard__img img { transform: scale(1.09); filter: saturate(1.04); }

.dcard__body {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(22px, 2.4vw, 34px);
  color: var(--ivory);
}
.dcard__tag {
  position: absolute; top: clamp(20px, 2.2vw, 30px); left: clamp(22px, 2.4vw, 34px);
  font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(247,243,236,0.95);
  padding: 7px 14px; border-radius: 100px;
  background: rgba(12,11,8,0.32);
  border: 1px solid rgba(247,243,236,0.24);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.dcard__name {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.014em;
  margin-bottom: 12px;
  transition: transform 0.65s var(--ease);
}
.dcard__desc {
  font-size: 0.9rem; line-height: 1.72;
  color: rgba(247,243,236,0.92);
  max-width: 44ch;
}
.dcard__reveal {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.7s var(--ease), opacity 0.5s var(--ease);
  opacity: 0;
}
.dcard__reveal > div { overflow: hidden; }
.dcard:hover .dcard__reveal, .dcard:focus-visible .dcard__reveal { grid-template-rows: 1fr; opacity: 1; }
.dcard__meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 18px;
}
.chip {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px;
  border: 1px solid rgba(247,243,236,0.26);
  color: rgba(247,243,236,0.95);
}
.dcard__go {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 20px;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand);
}
.dcard__go .arw { transition: transform 0.5s var(--ease); }
.dcard:hover .dcard__go .arw { transform: translateX(7px); }

/* --------------------------------------------------------------------------
   10. Experiences mosaic
   -------------------------------------------------------------------------- */
.xp-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}
.xp {
  position: relative;
  grid-column: span 2;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-m);
  overflow: hidden;
  background: var(--ink-soft);
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.xp--w3 { grid-column: span 3; aspect-ratio: 16 / 10; }
.xp--w4 { grid-column: span 4; aspect-ratio: 16 / 9; }
.xp img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.32) brightness(0.86);
  transform: scale(1.02);
  transition: transform 1.4s var(--ease), filter 0.8s var(--ease);
}
.xp::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(12,11,8,0.90) 2%, rgba(12,11,8,0.30) 66%);
}
.xp:hover img { transform: scale(1.08); filter: grayscale(0) brightness(0.94); }
.xp__body { padding: clamp(18px, 2vw, 28px); color: var(--ivory); width: 100%; }
.xp__num {
  font-size: 0.58rem; letter-spacing: 0.24em; color: var(--sand); opacity: 0.8;
  display: block; margin-bottom: 8px;
}
.xp__name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.2rem, 1.62vw, 1.6rem); line-height: 1.16;
}
.xp__line {
  font-size: 0.84rem; color: rgba(247,243,236,0.9); line-height: 1.65;
  margin-top: 8px; max-width: 34ch;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.xp:hover .xp__line { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   11. Storytelling bands
   -------------------------------------------------------------------------- */
.story { display: grid; gap: clamp(56px, 8vw, 120px); }
.story__row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
}
.story__row:nth-child(even) .story__media { order: -1; }
.story__k {
  font-family: var(--serif); font-style: italic;
  color: var(--gold-lift); font-size: 1.05rem; margin-bottom: 14px; display: block;
}
.story__row h3 { margin-bottom: 18px; }
.story__media { position: relative; }
.story__media .frame { aspect-ratio: 5 / 6; }

/* Parallax layer */
.par { will-change: transform; }

/* --------------------------------------------------------------------------
   12. Signature journeys
   -------------------------------------------------------------------------- */
.jrow {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(0, 0.9fr) 150px;
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
  padding-block: clamp(26px, 3vw, 40px);
  border-top: 1px solid var(--dk-line);
  transition: padding 0.6s var(--ease);
}
.jrow:last-of-type { border-bottom: 1px solid var(--dk-line); }
.jrow:hover { padding-inline-start: 14px; }
.jrow__i {
  font-family: var(--serif); font-size: 0.92rem; color: var(--gold-lift);
  letter-spacing: 0.1em;
}
.jrow__name {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.06; letter-spacing: -0.018em;
}
.jrow__name em { font-style: italic; color: var(--sand-deep); }
.jrow__route {
  font-size: 0.82rem; letter-spacing: 0.05em; color: var(--dk-mute);
  line-height: 1.9;
}
.jrow__route b { color: var(--dk-text); font-weight: 400; }
.jrow__go {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand);
}
.jrow__go .arw { transition: transform 0.5s var(--ease); }
.jrow:hover .jrow__go .arw { transform: translateX(7px); }

/* Hover preview image following cursor */
.jpeek {
  position: fixed; z-index: 90;
  width: clamp(200px, 20vw, 300px); aspect-ratio: 4/5;
  border-radius: var(--r-m); overflow: hidden;
  pointer-events: none;
  opacity: 0; transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7);
}
.jpeek.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.jpeek img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none) { .jpeek { display: none; } }

.note-line {
  margin-top: 34px;
  font-size: 0.86rem; color: var(--dk-mute); font-style: italic;
  font-family: var(--serif); font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   13. Why / feature blocks
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
}
.why {
  padding: clamp(28px, 3vw, 42px) clamp(24px, 2.4vw, 34px);
  border-radius: var(--r-m);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.42);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease),
              border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.why:hover {
  transform: translateY(-7px);
  border-color: transparent;
  background: var(--ink);
  color: var(--dk-text);
  box-shadow: 0 34px 70px -40px rgba(22,21,15,0.6);
}
.why:hover p { color: var(--dk-mute); }
.why:hover .why__ic { border-color: var(--gold-lift); color: var(--gold-lift); }
.why__ic {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 26px;
  transition: border-color 0.5s var(--ease), color 0.5s var(--ease), transform 0.6s var(--ease);
}
.why:hover .why__ic { transform: rotate(-8deg); }
.why__ic svg { width: 21px; height: 21px; }
.why h3 { margin-bottom: 12px; font-size: 1.42rem; }
.why p { font-size: 0.91rem; color: var(--text-mute); line-height: 1.75; transition: color 0.4s var(--ease); }

/* --------------------------------------------------------------------------
   14. Process
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 40px);
  counter-reset: st;
}
.step { position: relative; padding-top: 34px; border-top: 1px solid var(--dk-line); }
.step::before {
  content: ""; position: absolute; top: -1px; left: 0; height: 1px; width: 0;
  background: var(--gold-lift);
  transition: width 1.1s var(--ease);
}
.step.in-view::before { width: 100%; }
.step__n {
  font-family: var(--serif); font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  font-weight: 300; color: var(--gold-lift); line-height: 1;
  display: block; margin-bottom: 20px; opacity: 0.9;
}
.step h3 { font-size: 1.32rem; margin-bottom: 12px; }
.step p { font-size: 0.9rem; line-height: 1.76; }

/* --------------------------------------------------------------------------
   15. Journey builder (interactive)
   -------------------------------------------------------------------------- */
.builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}
.moods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.mood {
  position: relative;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-mute);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease),
              background 0.4s var(--ease), transform 0.4s var(--ease);
}
.mood:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--ink); }
.mood.is-on { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.mood.is-on:hover { color: var(--ivory); }

.builder__out {
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--ink);
  color: var(--dk-text);
  min-height: 430px;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.builder__bg { position: absolute; inset: 0; }
.builder__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1s var(--ease), transform 1.6s var(--ease);
}
.builder__bg img.is-on { opacity: 1; transform: scale(1); }
.builder__out::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,11,8,0.94) 8%, rgba(12,11,8,0.34) 62%, rgba(12,11,8,0.12));
}
.builder__panel { position: relative; z-index: 2; padding: clamp(26px, 3vw, 42px); }
.builder__hint {
  font-size: 0.86rem; color: var(--dk-mute); font-style: italic; font-family: var(--serif); font-size: 1.06rem;
}
.builder__pick { display: none; }
.builder__pick.is-on { display: block; animation: fadeUp 0.7s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.builder__pick .eyebrow { margin-bottom: 12px; }
.builder__pick h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: 12px; color: var(--dk-text); }
.builder__pick p { font-size: 0.93rem; color: var(--dk-mute); line-height: 1.76; max-width: 46ch; margin-bottom: 22px; }
.builder__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

/* --------------------------------------------------------------------------
   16. Journal
   -------------------------------------------------------------------------- */
/* Featured lead article */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
}
.feature__media {
  border-radius: var(--r-l);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--sand);
}
.feature__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.feature:hover .feature__media img { transform: scale(1.05); }
.feature__flag {
  display: inline-block;
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ivory); background: var(--gold);
  padding: 8px 16px; border-radius: 100px;
}
.feature__body h2 { margin: 14px 0 18px; transition: color 0.4s var(--ease); }
.feature:hover .feature__body h2 { color: var(--gold); }
.feature__body .lede { max-width: 52ch; }

@media (max-width: 860px) {
  .feature { grid-template-columns: minmax(0, 1fr); }
  .feature__media { aspect-ratio: 16 / 10; }
}

.cat-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.cat {
  font-size: 0.64rem; letter-spacing: 0.17em; text-transform: uppercase;
  padding: 9px 17px; border-radius: 100px;
  border: 1px solid var(--line); color: var(--text-mute);
  transition: all 0.4s var(--ease);
}
.cat:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }

.jn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 38px);
}
.jn-grid--feature { grid-template-columns: minmax(0, 1.34fr) minmax(0, 1fr) minmax(0, 1fr); }
.post { display: block; }
.post__media {
  border-radius: var(--r-m); overflow: hidden; margin-bottom: 22px;
  aspect-ratio: 4 / 3; background: var(--sand);
}
.post--tall .post__media { aspect-ratio: 4 / 5; }
.post__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.post:hover .post__media img { transform: scale(1.07); }
.post__meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 13px;
}
.post__meta span { color: var(--beige); }
.post__meta i { width: 3px; height: 3px; border-radius: 50%; background: var(--sand-deep); display: block; }
.post h3 {
  font-size: clamp(1.24rem, 1.6vw, 1.55rem); line-height: 1.24; margin-bottom: 11px;
  transition: color 0.4s var(--ease);
}
.post:hover h3 { color: var(--gold); }
.post p { font-size: 0.9rem; color: var(--text-mute); line-height: 1.72; }

/* --------------------------------------------------------------------------
   17. Testimonials
   -------------------------------------------------------------------------- */
.tst-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 400px);
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--sand-deep) transparent;
}
.tst-rail::-webkit-scrollbar { height: 3px; }
.tst-rail::-webkit-scrollbar-track { background: var(--line-soft); }
.tst-rail::-webkit-scrollbar-thumb { background: var(--sand-deep); border-radius: 4px; }

.tst {
  scroll-snap-align: start;
  border-radius: var(--r-m);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  padding: clamp(26px, 2.6vw, 36px);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.tst:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -40px rgba(22,21,15,0.5); }
.stars { display: flex; gap: 4px; color: var(--gold); }
.stars svg { width: 13px; height: 13px; }
.tst blockquote {
  font-family: var(--serif); font-size: 1.16rem; line-height: 1.62;
  font-weight: 400; color: var(--ink-soft); flex: 1;
}
.tst__who { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.tst__av {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex: none;
  background: var(--sand);
}
.tst__av img { width: 100%; height: 100%; object-fit: cover; }
.tst__who b { display: block; font-size: 0.94rem; font-weight: 500; letter-spacing: 0.01em; }
.tst__who span {
  font-size: 0.62rem; letter-spacing: 0.19em; text-transform: uppercase; color: var(--gold);
}
.rail-nav { display: flex; gap: 10px; }
.rail-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all 0.4s var(--ease);
}
.rail-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.rail-btn svg { width: 15px; height: 10px; }

/* --------------------------------------------------------------------------
   18. Full-bleed CTA band
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--ivory);
  isolation: isolate;
}
.band__bg { position: absolute; inset: -10% 0; z-index: -2; will-change: transform; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(12,11,8,0.86), rgba(12,11,8,0.55) 52%, rgba(12,11,8,0.28));
}
.band--center::after { background: linear-gradient(to top, rgba(12,11,8,0.82), rgba(12,11,8,0.42)); }
.band__in { padding-block: clamp(72px, 10vw, 120px); max-width: 720px; }
.band--center .band__in { max-width: 860px; margin-inline: auto; text-align: center; }
.band--center .eyebrow--line { padding-left: 0; }
.band--center .eyebrow--line::before { display: none; }
.band .eyebrow { color: #F0E2C4; text-shadow: 0 1px 14px rgba(10,10,7,0.8); }
.band .eyebrow--line::before { background: #F0E2C4; }
.band h2 { color: var(--ivory); margin-bottom: 22px; text-shadow: 0 2px 30px rgba(10,10,7,0.5); }
.band p { color: rgba(247,243,236,0.93); margin-bottom: 34px; }
.band--center .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   19. Philosophy statement
   -------------------------------------------------------------------------- */
.statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 6.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.026em;
  text-transform: uppercase;
}
.statement em { font-style: italic; color: var(--gold-lift); text-transform: none; }
.statement-foot {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(24px, 4vw, 60px);
  margin-top: clamp(40px, 5vw, 70px);
  padding-top: 34px; border-top: 1px solid var(--dk-line);
}

/* --------------------------------------------------------------------------
   20. Enquiry form
   -------------------------------------------------------------------------- */
.enq {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.contact-list { display: grid; gap: 2px; margin-top: 36px; }
.contact-list a, .contact-list div {
  display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 16px;
  align-items: center;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  transition: padding 0.5s var(--ease);
}
.contact-list > *:last-child { border-bottom: 1px solid var(--line); }
.contact-list a:hover { padding-inline-start: 10px; }
.contact-list .ic {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--gold);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.contact-list a:hover .ic { background: var(--gold); border-color: var(--gold); color: var(--ivory); }
.contact-list .ic svg { width: 17px; height: 17px; }
.contact-list b { display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--beige); font-weight: 400; }
.contact-list em { font-style: normal; font-size: 1rem; color: var(--ink); }

.form-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(26px, 3.4vw, 52px);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}
.fld { display: flex; flex-direction: column; gap: 9px; }
.fld--full { grid-column: 1 / -1; }
.fld label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: #5A5344;
}
.fld label .req { color: var(--gold); }
.fld input, .fld select, .fld textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  padding: 11px 0;
  font-size: 0.97rem; font-weight: 300;
  border-radius: 0;
  transition: border-color 0.4s var(--ease);
}
.fld textarea { resize: vertical; min-height: 92px; line-height: 1.7; }
.fld select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A99680' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; padding-right: 22px;
}
.fld input::placeholder, .fld textarea::placeholder { color: #767063; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-bottom-color: var(--gold); }
.fld input[type="date"] { color: var(--text-mute); }

.chip-pick { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-pick input { position: absolute; opacity: 0; pointer-events: none; }
.chip-pick label {
  display: inline-block;
  padding: 10px 18px; border-radius: 100px;
  border: 1px solid var(--line);
  font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute); cursor: pointer;
  transition: all 0.35s var(--ease);
}
.chip-pick label:hover { border-color: var(--gold); color: var(--ink); }
.chip-pick input:checked + label { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.chip-pick input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 3px; }

.form-foot {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.consent { display: flex; gap: 11px; align-items: flex-start; max-width: 42ch; }
.consent input { margin-top: 5px; accent-color: var(--gold); width: 15px; height: 15px; flex: none; }
.consent span { font-size: 0.78rem; color: var(--text-mute); line-height: 1.65; }
.form-msg {
  grid-column: 1/-1;
  display: none;
  padding: 16px 20px; border-radius: var(--r-s);
  background: rgba(92, 99, 80, 0.1);
  border-left: 2px solid var(--olive);
  font-size: 0.9rem; color: var(--ink-soft);
}
.form-msg.is-on { display: block; animation: fadeUp 0.5s var(--ease) both; }
.fld.has-error input, .fld.has-error select, .fld.has-error textarea { border-bottom-color: #A5563E; }
.err { font-size: 0.72rem; color: #A5563E; display: none; }
.fld.has-error .err { display: block; }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.ftr { background: var(--ink); color: var(--dk-text); padding-top: clamp(64px, 8vw, 110px); }
.ftr__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.85fr));
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.ftr__brandline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.36;
  color: var(--sand); margin-top: 22px; max-width: 20ch;
}
.ftr__note { font-size: 0.88rem; color: var(--dk-mute); margin-top: 20px; max-width: 40ch; line-height: 1.8; }
.ftr h4 {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-lift);
  margin-bottom: 24px;
}
.ftr__links { display: grid; gap: 13px; }
.ftr__links a {
  font-size: 0.9rem; color: rgba(244,239,230,0.88);
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
  display: inline-block;
}
.ftr__links a:hover { color: var(--sand); transform: translateX(5px); }
.ftr__soc { display: flex; gap: 10px; margin-top: 26px; }
.ftr__soc a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--dk-line);
  display: grid; place-items: center; color: var(--dk-mute);
  transition: all 0.4s var(--ease);
}
.ftr__soc a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
.ftr__soc svg { width: 16px; height: 16px; }
.ftr__bot {
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  align-items: center; justify-content: space-between;
  padding-block: 28px;
  border-top: 1px solid var(--dk-line);
  font-size: 0.78rem; color: var(--dk-mute);
}
.ftr__bot nav { display: flex; flex-wrap: wrap; gap: 24px; }
.ftr__bot a:hover { color: var(--sand); }

/* Floating WhatsApp */
.wa {
  position: fixed; right: clamp(16px, 2.2vw, 30px); bottom: clamp(16px, 2.2vw, 30px);
  z-index: 220;                 /* above progress bar so it stays clickable */
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #FFFFFF;
  display: grid; place-items: center;
  box-shadow: 0 16px 34px -14px rgba(22,21,15,0.55);
  transform: translateY(90px); opacity: 0;
  pointer-events: none;         /* not clickable while hidden */
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease), background 0.4s var(--ease);
}
.wa.is-on { transform: none; opacity: 1; pointer-events: auto; }
.wa:hover { background: #1EBE5A; transform: translateY(-3px) scale(1.05); }
.wa svg { width: 25px; height: 25px; }

/* Progress bar */
.prog {
  position: fixed; top: 0; left: 0; z-index: 210;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--sand));
  transition: width 0.12s linear;
}

/* Custom cursor */
.cur {
  position: fixed; top: 0; left: 0; z-index: 300;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  pointer-events: none; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.34s var(--ease), height 0.34s var(--ease), background 0.34s var(--ease);
  will-change: transform;
}
.cur.is-lg { width: 52px; height: 52px; background: rgba(176,141,69,0.5); }
@media (hover: none), (pointer: coarse) { .cur { display: none; } }

/* --------------------------------------------------------------------------
   22. Reveal animations
   -------------------------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rv.in-view { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rv-l.in-view { opacity: 1; transform: none; }
.rv-r { opacity: 0; transform: translateX(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rv-r.in-view { opacity: 1; transform: none; }

/* Image mask reveal */
/* Image reveal — the photograph is never hidden by CSS. The curtain is only
   drawn once JS has explicitly armed it (.js-reveal on <html>), so a missed
   observer, a JS error, or no JS at all can never leave an image blank. */
.rv-img { position: relative; overflow: hidden; }
.js-reveal .rv-img::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--ivory);
  transform: translateY(0);
  transition: transform 1.15s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.js-reveal .rv-img.in-view::after { transform: translateY(-100.5%); }
/* second image of a duo trails the first slightly */
.js-reveal .media-duo__b::after { transition-delay: 0.16s; }
.js-reveal .surface-dark .rv-img::after { background: var(--ink); }
.js-reveal .surface-sand .rv-img::after { background: var(--ivory-dim); }

/* Line-by-line text reveal */
.rv-txt .ln { display: block; overflow: hidden; }
.rv-txt .ln > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1.15s var(--ease);
}
.rv-txt.in-view .ln > span { transform: none; }
.rv-txt .ln:nth-child(2) > span { transition-delay: 0.09s; }
.rv-txt .ln:nth-child(3) > span { transition-delay: 0.18s; }
.rv-txt .ln:nth-child(4) > span { transition-delay: 0.27s; }

[data-d="1"] { transition-delay: 0.09s; }
[data-d="2"] { transition-delay: 0.18s; }
[data-d="3"] { transition-delay: 0.27s; }
[data-d="4"] { transition-delay: 0.36s; }
[data-d="5"] { transition-delay: 0.45s; }
[data-d="6"] { transition-delay: 0.54s; }

/* Page enter */
.page-in { animation: pageIn 0.9s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* --------------------------------------------------------------------------
   23. Destination page specifics
   -------------------------------------------------------------------------- */
.crumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #E8E1D5; text-shadow: 0 1px 12px rgba(10,10,7,0.8); margin-bottom: 26px;
}
.crumb a:hover { color: var(--sand); }
.crumb i { width: 12px; height: 1px; background: currentColor; opacity: 0.5; display: block; }

.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.hl {
  position: relative; border-radius: var(--r-m); overflow: hidden;
  aspect-ratio: 4 / 5; display: flex; align-items: flex-end;
  isolation: isolate; background: var(--ink);
}
.hl img {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.4s var(--ease);
}
.hl::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(12,11,8,0.92) 2%, rgba(12,11,8,0.28) 60%);
}
.hl:hover img { transform: scale(1.08); }
.hl__b { padding: clamp(20px, 2.2vw, 30px); color: var(--ivory); }
.hl__b b { font-family: var(--serif); font-weight: 400; font-size: 1.36rem; display: block; margin-bottom: 8px; }
.hl__b p { font-size: 0.85rem; color: rgba(247,243,236,0.9); line-height: 1.65; }

.xcard-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}
.xcard {
  border-radius: var(--r-m); overflow: hidden;
  border: 1px solid var(--dk-line);
  background: rgba(255,255,255,0.03);
  display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease), border-color 0.5s var(--ease);
}
.xcard:hover { transform: translateY(-6px); border-color: rgba(176,141,69,0.5); }
.xcard__m { aspect-ratio: 16/10; overflow: hidden; }
.xcard__m img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.xcard:hover .xcard__m img { transform: scale(1.07); }
.xcard__b { padding: clamp(22px, 2.2vw, 30px); flex: 1; display: flex; flex-direction: column; gap: 11px; }
.xcard__k { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lift); }
.xcard__b h3 { font-size: 1.34rem; }
.xcard__b p { font-size: 0.88rem; color: var(--dk-mute); line-height: 1.7; }

.stay-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(14px, 1.8vw, 24px); }
.stay { position: relative; border-radius: var(--r-m); overflow: hidden; aspect-ratio: 3/4; isolation: isolate; }
.stay img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.stay::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(12,11,8,0.90), rgba(12,11,8,0.12) 62%); }
.stay:hover img { transform: scale(1.07); }
.stay__b { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(18px,2vw,26px); color: var(--ivory); }
.stay__b b { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; display: block; margin-bottom: 6px; }
.stay__b span { font-size: 0.78rem; color: rgba(247,243,236,0.9); line-height: 1.6; }

/* Itinerary timeline */
.tl { position: relative; display: grid; gap: 0; }
.tl__item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 44px);
  padding-block: clamp(26px, 3vw, 38px);
  border-top: 1px solid var(--line);
  align-items: start;
}
.tl__item:last-child { border-bottom: 1px solid var(--line); }
.tl__d { font-family: var(--serif); font-size: 1.02rem; color: var(--gold); letter-spacing: 0.06em; }
.tl__item h3 { font-size: clamp(1.32rem, 2vw, 1.72rem); }
.tl__item p { font-size: 0.91rem; color: var(--text-mute); line-height: 1.78; }

/* Seasons */
.seasons { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 6px; }
.mo {
  text-align: center; padding: 20px 4px; border-radius: var(--r-s);
  border: 1px solid var(--line); background: rgba(255,255,255,0.35);
  transition: transform 0.4s var(--ease);
}
.mo:hover { transform: translateY(-4px); }
.mo b { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.mo i { display: block; width: 8px; height: 8px; border-radius: 50%; margin: 0 auto 10px; }
.mo span { font-size: 0.62rem; color: var(--text-mute); letter-spacing: 0.04em; }
.mo--best i { background: var(--olive); }
.mo--good i { background: var(--gold); }
.mo--ok   i { background: var(--sand-deep); }
.legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; font-size: 0.74rem; color: var(--text-mute); }
.legend span { display: inline-flex; align-items: center; gap: 9px; }
.legend i { width: 8px; height: 8px; border-radius: 50%; display: block; }

/* Other destinations rail */
.od-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 290px);
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--sand-deep) transparent;
}
.od-rail::-webkit-scrollbar { height: 3px; }
.od-rail::-webkit-scrollbar-thumb { background: var(--sand-deep); }
.od { scroll-snap-align: start; position: relative; border-radius: var(--r-m); overflow: hidden; aspect-ratio: 4/5; isolation: isolate; }
.od img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.od::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(to top, rgba(12,11,8,0.90), rgba(12,11,8,0.12) 60%); }
.od:hover img { transform: scale(1.08); }
.od b {
  position: absolute; left: 22px; bottom: 22px; color: var(--ivory);
  font-family: var(--serif); font-weight: 400; font-size: 1.44rem;
}

/* Facts strip */
.facts { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(16px,2vw,30px); }
.fact { padding-top: 22px; border-top: 1px solid var(--dk-line); }
.fact b { display: block; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lift); margin-bottom: 12px; }
.fact span { font-family: var(--serif); font-size: clamp(1.2rem,1.6vw,1.5rem); line-height: 1.35; }

/* Marquee */
.mq { overflow: hidden; padding-block: clamp(30px, 4vw, 52px); border-block: 1px solid var(--line); }
.mq__t { display: flex; width: max-content; animation: mqRun 42s linear infinite; }
.mq:hover .mq__t { animation-play-state: paused; }
.mq__t > span {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 300; letter-spacing: -0.01em; color: var(--beige);
  padding-inline: clamp(20px, 3vw, 46px);
  display: inline-flex; align-items: center; gap: clamp(20px,3vw,46px);
  white-space: nowrap;
}
.mq__t > span::after { content: "✳"; font-size: 0.6em; color: var(--gold); }
@keyframes mqRun { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   24. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .dest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dest-grid > *:nth-child(7) { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .jn-grid, .jn-grid--feature { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stay-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .xcard-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .seasons { grid-template-columns: repeat(6, minmax(0,1fr)); }
}

@media (max-width: 1024px) {
  .nav, .hdr__cta .btn { display: none; }
  .burger { display: inline-flex; }
  .jrow { grid-template-columns: 60px minmax(0,1fr); row-gap: 12px; }
  .jrow__route { grid-column: 2; }
  .jrow__go { grid-column: 2; justify-self: start; }
  .builder { grid-template-columns: minmax(0,1fr); }
  .enq { grid-template-columns: minmax(0,1fr); }
  .ftr__top { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hl-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .split, .story__row, .sec-head--split { grid-template-columns: minmax(0, 1fr); }
  .split--reverse .split__media, .story__row:nth-child(even) .story__media { order: 0; }
  .story__media { order: -1; }
  .sec-head--split { gap: 22px; align-items: start; }
  .xp-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .xp, .xp--w3, .xp--w4 { grid-column: span 1; aspect-ratio: 4/5; }
  .form-grid { grid-template-columns: minmax(0,1fr); }
  .tl__item { grid-template-columns: 78px minmax(0,1fr); }
  .tl__item p { grid-column: 2; }
  .frame-stack__b { width: 42%; right: 0; bottom: -24px; }
  .statement-foot { grid-template-columns: minmax(0,1fr); }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .dest-grid { grid-template-columns: minmax(0, 1fr); }
  .dest-grid > *:nth-child(7) { grid-column: span 1; }
  .dcard, .dcard--wide { aspect-ratio: 4 / 5; }
  .why-grid, .steps { grid-template-columns: minmax(0, 1fr); }
  .jn-grid, .jn-grid--feature, .xcard-grid, .stay-grid, .hl-grid, .facts {
    grid-template-columns: minmax(0, 1fr);
  }
  .xp-grid { grid-template-columns: minmax(0,1fr); }
  .seasons { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ftr__top { grid-template-columns: minmax(0,1fr); gap: 40px; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 30px; }
  .hero__stats { gap: 18px 30px; }
  .btn { padding: 15px 26px; font-size: 0.67rem; }
  .btn--lg { padding: 18px 32px; }
  .tst-rail { grid-auto-columns: minmax(260px, 84vw); }
  .frame-stack__b { display: none; }
  .media-duo .badge-note { padding: 13px 17px; max-width: 165px; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { justify-content: center; }
}

@media print {
  .hdr, .drawer, .wa, .cur, .prog, .scroll-cue { display: none !important; }
  .rv, .rv-l, .rv-r, .rv-img, .rv-txt .ln > span { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
