:root {
  --ink: #071d24;
  --ink-soft: #0d2d35;
  --ink-rgb: 7, 29, 36;
  --teal: #39c7bc;
  --teal-rgb: 57, 199, 188;
  --teal-light: #74e0d6;
  --teal-light-rgb: 116, 224, 214;
  --teal-dark: #148a85;
  --amber: #ffb562;
  --amber-rgb: 255, 181, 98;
  --amber-deep: #ed8f3d;
  --sand: #f3efe5;
  --sand-light: #faf8f2;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --primary-rgb: 20, 138, 133;
  --whatsapp: #25d366;
  --whatsapp-rgb: 37, 211, 102;
  --whatsapp-dark: #128c7e;
  --smoke: #dce5e3;
  --muted: #65767a;
  --line: rgba(var(--ink-rgb), 0.14);
  --line-light: rgba(var(--white-rgb), 0.16);
  --font-heading: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --header-height: 88px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 24px 70px rgba(var(--ink-rgb), 0.12);
  --shadow-deep: 0 32px 100px rgba(var(--ink-rgb), 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 20px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sand-light);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-family: var(--font-heading);
  letter-spacing: -0.045em;
}

::selection {
  color: var(--ink);
  background: var(--amber);
}

.container-wide {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(100px, 11vw, 168px);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 11px 18px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 4px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--teal-light);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.button i {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  transition: transform 0.35s var(--ease-out);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover i {
  transform: translate(2px, -2px);
}

.button--primary {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 16px 42px rgba(var(--amber-rgb), 0.24);
}

.button--primary::before {
  display: none;
}

.button--primary span,
.button--primary i {
  position: relative;
  z-index: 1;
}

.button--primary:hover::before {
  display: none;
}

.button--primary:hover {
  color: var(--ink);
  background: var(--teal-light);
}

.button--ghost {
  color: var(--white);
  background: rgba(var(--white-rgb), 0.06);
  border: 1px solid rgba(var(--white-rgb), 0.36);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(var(--ink-rgb), 0.18);
}

.button--light:hover {
  background: var(--amber);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--amber);
}

.button--large {
  min-height: 62px;
  padding-inline: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.text-link:hover {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}

/* Loader */
.site-loader {
  position: fixed;
  z-index: 9998;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.site-loader::before {
  position: absolute;
  width: 52vw;
  height: 52vw;
  max-width: 620px;
  max-height: 620px;
  border: 1px solid rgba(var(--teal-light-rgb), 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(var(--teal-light-rgb), 0.025), 0 0 0 140px rgba(var(--teal-light-rgb), 0.015);
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-loader__map {
  position: relative;
  width: 170px;
  height: 82px;
}

.site-loader__route {
  position: absolute;
  inset: 38px 10px auto;
  height: 1px;
  border-top: 1px dashed rgba(var(--white-rgb), 0.5);
}

.site-loader__point {
  position: absolute;
  top: 33px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--amber);
  border-radius: 50%;
}

.site-loader__point--start {
  left: 4px;
}

.site-loader__point--end {
  right: 4px;
}

.site-loader__map i {
  position: absolute;
  top: 20px;
  left: 6px;
  color: var(--teal-light);
  font-size: 1.7rem;
  animation: loader-flight 1.7s var(--ease-out) infinite;
}

.site-loader p {
  position: relative;
  margin: 18px 0 0;
  color: rgba(var(--white-rgb), 0.7);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

@keyframes loader-flight {
  0% { transform: translateX(0) translateY(8px) rotate(4deg); opacity: 0; }
  15% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(132px) translateY(-7px) rotate(-5deg); opacity: 0; }
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  box-shadow: 0 0 16px var(--teal);
  pointer-events: none;
}

/* Brand and header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: calc(var(--header-height) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  color: var(--white);
  border-bottom: 1px solid rgba(var(--white-rgb), 0.12);
  transition: height 0.4s var(--ease-out), color 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: calc(74px + env(safe-area-inset-top));
  color: var(--ink);
  background: rgba(var(--white-rgb), 0.92);
  border-color: rgba(var(--ink-rgb), 0.1);
  box-shadow: 0 12px 40px rgba(var(--ink-rgb), 0.08);
  backdrop-filter: blur(18px) saturate(150%);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
}

.site-logo {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}

.brand__mark img { width: 100%; height: 100%; object-fit: contain; }

.brand__orbit {
  position: absolute;
  inset: 2px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.5;
}

.brand__orbit::before {
  position: absolute;
  top: -3px;
  right: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--amber);
  box-shadow: 0 0 14px rgba(var(--amber-rgb), 0.8);
}

.brand__orbit::after {
  position: absolute;
  right: -4px;
  bottom: 7px;
  width: 11px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: rotate(-32deg);
}

.brand__j {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__copy strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  max-width: 15rem;
  overflow: hidden;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__copy small {
  margin-top: 5px;
  color: var(--teal-light);
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.42em;
}

.site-header.is-scrolled .brand__copy small,
.site-header.menu-active .brand__copy small {
  color: var(--teal-dark);
}

.brand--footer {
  color: var(--white);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  color: inherit;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--amber);
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active {
  color: var(--teal-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.header-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.76;
  transition: opacity 0.25s ease;
}

.header-login:hover {
  color: inherit;
  opacity: 1;
}

.button--header {
  min-height: 42px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--amber);
  font-size: 0.67rem;
}

.site-header.is-scrolled .button--header {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 19px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease-out), top 0.35s var(--ease-out);
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle.is-open span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle.is-open span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 100dvh;
  flex-direction: column;
  justify-content: center;
  padding: calc(110px + env(safe-area-inset-top)) max(24px, 7vw) calc(48px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  color: var(--ink);
  background: var(--sand-light);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.5s var(--ease-out);
}

.mobile-menu::after {
  position: absolute;
  right: -18vw;
  bottom: -22vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(var(--primary-rgb), 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(var(--primary-rgb), 0.04), 0 0 0 160px rgba(var(--primary-rgb), 0.025);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 7vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.mobile-menu nav a span {
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.mobile-menu > .button {
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

/* Hero */
.hero {
  position: relative;
  height: 185svh;
  min-height: 1380px;
  overflow: clip;
  color: var(--white);
  background: var(--sand-light);
  isolation: isolate;
}

.hero__stage {
  --hero-copy-y: 0px;
  --hero-copy-opacity: 1;
  --hero-line-one-x: 0px;
  --hero-line-two-x: 0px;
  --hero-planner-y: 0px;
  --hero-planner-opacity: 1;
  --hero-foot-y: 0px;
  --hero-foot-opacity: 1;
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-image-scale: 1;
  --hero-topography-x: 0px;
  --hero-topography-scale: 1;
  --hero-route-offset: 1;
  --hero-stage-darkness: 0;
  --hero-departure-y: 110px;
  --hero-departure-opacity: 0;
  --hero-rail-fill: 0%;
  --hero-rail-marker: 0px;
  --hero-stage-inset: 0px;
  --hero-stage-radius: 0px;
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  height: 100svh;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  clip-path: inset(var(--hero-stage-inset) round var(--hero-stage-radius));
  isolation: isolate;
  will-change: clip-path;
}

.hero__stage::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(var(--ink-rgb), 0.86);
  opacity: var(--hero-stage-darkness);
  pointer-events: none;
}

.hero__media {
  position: absolute;
  z-index: -4;
  inset: -8%;
  transform: translate3d(var(--hero-image-x), var(--hero-image-y), 0) scale(var(--hero-image-scale));
  will-change: transform;
}

.hero__media picture,
.about__image picture,
.contact__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  animation: hero-drift 19s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.03) translate3d(-0.4%, 0, 0); }
  to { transform: scale(1.11) translate3d(1%, -0.8%, 0); }
}

.hero__veil {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--ink-rgb), 0.94) 0%, rgba(var(--ink-rgb), 0.72) 46%, rgba(var(--ink-rgb), 0.36) 73%, rgba(var(--ink-rgb), 0.55) 100%),
    linear-gradient(180deg, rgba(var(--ink-rgb), 0.48), transparent 40%, rgba(var(--ink-rgb), 0.88) 100%);
}

.hero__topography {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.34;
  background-image:
    repeating-radial-gradient(ellipse at 82% 42%, transparent 0 25px, rgba(var(--teal-light-rgb), 0.16) 26px, transparent 27px 39px),
    repeating-radial-gradient(ellipse at 86% 48%, transparent 0 38px, rgba(var(--amber-rgb), 0.1) 39px, transparent 40px 58px);
  mask-image: linear-gradient(90deg, transparent 20%, #000 75%);
}

.hero__topography {
  transform: translate3d(var(--hero-topography-x), 0, 0) scale(var(--hero-topography-scale));
  transform-origin: 82% 42%;
  will-change: transform;
}

.hero__flight-path {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hero__flight-path path {
  fill: none;
  stroke: rgba(var(--teal-light-rgb), 0.58);
  stroke-width: 1.2;
  stroke-dasharray: 1;
  stroke-dashoffset: var(--hero-route-offset);
  vector-effect: non-scaling-stroke;
}

.hero__route {
  position: absolute;
  z-index: 0;
  top: 22%;
  right: 4.5%;
  width: min(32vw, 480px);
  height: 36%;
  opacity: 0.9;
}

.hero__route-line {
  position: absolute;
  inset: 20% 8% 12%;
  border-top: 1px dashed rgba(var(--white-rgb), 0.55);
  border-right: 1px dashed rgba(var(--white-rgb), 0.55);
  border-radius: 0 70% 0 0;
  transform: rotate(-12deg);
}

.hero__route-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: rgba(var(--ink-rgb), 0.4);
  box-shadow: 0 0 0 7px rgba(var(--amber-rgb), 0.13);
}

.hero__route-dot--one { bottom: 15%; left: 4%; }
.hero__route-dot--two { top: 13%; right: 3%; }

.hero__route-label {
  position: absolute;
  color: rgba(var(--white-rgb), 0.65);
  font-family: var(--font-heading);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
}

.hero__route-label--one { bottom: 4%; left: 1%; }
.hero__route-label--two { top: 0; right: 0; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  padding-top: 84px;
  padding-bottom: 130px;
}

.hero__copy {
  max-width: 790px;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: opacity, transform;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.55rem, 6vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.97;
  text-wrap: balance;
}

.hero-title__line {
  display: block;
  color: var(--white);
  will-change: transform;
}

.hero-title__line--one { transform: translate3d(var(--hero-line-one-x), 0, 0); }
.hero-title__line--two { transform: translate3d(var(--hero-line-two-x), 0, 0); }

.hero h1 .hero-title__accent {
  position: relative;
  color: var(--amber);
}

.hero h1 .hero-title__accent::after {
  position: absolute;
  right: 4px;
  bottom: -5px;
  left: 4px;
  height: 2px;
  content: "";
  background: var(--amber);
  transform: rotate(-1deg);
  opacity: 0.75;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(var(--white-rgb), 0.78);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
}

.page-ready .reveal-hero {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease 0.12s, transform 0.9s var(--ease-out) 0.12s;
}

.page-ready .reveal-hero--2 { transition-delay: 0.2s; }
.page-ready .reveal-hero--3 { transition-delay: 0.3s; }
.page-ready .reveal-hero--4 { transition-delay: 0.42s; }

.glass-panel {
  border: 1px solid rgba(var(--white-rgb), 0.2);
  background: rgba(var(--ink-rgb), 0.54);
  box-shadow: var(--shadow-deep), inset 0 1px rgba(var(--white-rgb), 0.12);
  backdrop-filter: blur(22px) saturate(140%);
}

.trip-planner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  padding: 26px;
  overflow: visible;
  background:
    radial-gradient(circle at 108% -8%, rgba(var(--teal-rgb), 0.18), transparent 34%),
    rgba(var(--ink-rgb), 0.54);
  border-radius: 10px;
  isolation: isolate;
}

.hero__planner-layer {
  width: 100%;
  max-width: 470px;
  justify-self: end;
  opacity: var(--hero-planner-opacity);
  transform: translate3d(0, var(--hero-planner-y), 0);
  will-change: opacity, transform;
}

.hero__stage.is-departing .hero__copy,
.hero__stage.is-departing .hero__planner-layer,
.hero__stage.is-departing .hero__foot {
  pointer-events: none;
}

.trip-planner::before {
  display: none;
}

.trip-planner__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}

.trip-planner__step {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-light);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trip-planner h2 {
  margin: 0;
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.trip-planner__status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  color: rgba(var(--white-rgb), 0.7);
  border: 1px solid rgba(var(--white-rgb), 0.13);
  border-radius: 30px;
  font-size: 0.56rem;
  font-weight: 600;
}

.trip-planner__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 0 4px rgba(var(--teal-light-rgb), 0.1);
  animation: status-pulse 1.8s infinite;
}

@keyframes status-pulse {
  50% { box-shadow: 0 0 0 8px rgba(var(--teal-light-rgb), 0); }
}

.planner-field {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 13px;
}

.planner-field:focus-within {
  z-index: 20;
}

.planner-field.form-floating > label {
  color: rgba(var(--white-rgb), 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.planner-field.form-floating > label i {
  margin-right: 6px;
  color: var(--teal-light);
}

.planner-field .form-control,
.planner-field .form-select,
.planner-field .dselect-wrapper > .form-select {
  width: 100%;
  min-height: 58px;
  color: var(--white);
  background-color: rgba(var(--white-rgb), 0.07);
  border: 1px solid rgba(var(--white-rgb), 0.16);
  border-radius: 4px;
  font-size: 0.8rem;
  color-scheme: dark;
  box-shadow: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.planner-field .form-control:focus,
.planner-field .form-select:focus,
.planner-field .dselect-wrapper > .form-select:focus {
  color: var(--white);
  background-color: rgba(var(--white-rgb), 0.11);
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(var(--teal-light-rgb), 0.2);
  outline: 0;
}

.planner-field .dselect-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.planner-field .dselect-wrapper > .form-select {
  overflow: hidden;
  padding: 1.55rem 2.5rem 0.45rem 0.75rem;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planner-field .dselect-wrapper > .form-select::after {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  opacity: 0.65;
  transform: translateY(-70%) rotate(45deg);
}

.planner-field .dselect-wrapper .dropdown-menu {
  z-index: 1200;
  width: 100%;
  padding: 0.45rem;
  border: 1px solid rgba(var(--ink-rgb), 0.12) !important;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(var(--ink-rgb), 0.22);
}

.planner-field .dselect-wrapper .dropdown-menu .form-control {
  min-height: 42px;
  padding: 0.65rem 0.75rem;
  color: var(--ink);
  background: var(--sand-light);
  border-color: rgba(var(--ink-rgb), 0.12);
  color-scheme: light;
}

.planner-field .dselect-wrapper .dropdown-item {
  padding: 0.62rem 0.72rem;
  border-radius: 5px;
  font-size: 0.78rem;
}

.planner-field .dselect-wrapper.is-invalid > .form-select {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(var(--amber-rgb), 0.16);
}

.planner-field .invalid-feedback {
  margin-top: 0.35rem;
  color: var(--amber);
  font-size: 0.7rem;
}

.planner-field .dselect-wrapper.is-invalid ~ .invalid-feedback {
  display: block;
}

.planner-field option {
  color: var(--ink);
  background: var(--white);
}

.planner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.button--planner {
  width: 100%;
  min-height: 51px;
  margin-top: 2px;
  color: var(--ink);
  background: var(--site-color-1, var(--teal));
}

.button--planner:hover {
  background: var(--amber);
  box-shadow: 0 12px 32px rgba(var(--amber-rgb), 0.2);
}

.trip-planner__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  color: rgba(var(--white-rgb), 0.7);
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: center;
}

.hero__foot {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 175px)) 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 52px);
  color: rgba(var(--white-rgb), 0.72);
  opacity: var(--hero-foot-opacity);
  transform: translate3d(0, var(--hero-foot-y), 0);
  will-change: opacity, transform;
}

.hero__promise {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__promise span {
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero__promise p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero__promise strong {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  color: rgba(var(--white-rgb), 0.7);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__scroll i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(var(--white-rgb), 0.28);
  border-radius: 50%;
  animation: scroll-bob 1.7s ease-in-out infinite;
}

@keyframes scroll-bob {
  50% { transform: translateY(5px); }
}

.hero__departure {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-inline: 24px;
  text-align: center;
  opacity: var(--hero-departure-opacity);
  transform: translate3d(0, var(--hero-departure-y), 0) scale(var(--hero-departure-scale, 0.92));
  pointer-events: none;
  will-change: opacity, transform;
}

.hero__departure::before {
  position: absolute;
  width: min(72vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(var(--teal-light-rgb), 0.22);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(var(--teal-light-rgb), 0.035), 0 0 0 160px rgba(var(--teal-light-rgb), 0.02);
}

.hero__departure span,
.hero__departure small {
  position: relative;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__departure span { color: var(--teal-light); }

.hero__departure strong {
  position: relative;
  margin-block: 8px 18px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.9;
  text-shadow: 0 24px 90px rgba(var(--ink-rgb), 0.42);
}

.hero__departure small { color: rgba(var(--white-rgb), 0.62); letter-spacing: 0.14em; }

.hero__scroll-rail {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: max(20px, 2vw);
  display: grid;
  grid-template-rows: auto 180px auto;
  justify-items: center;
  gap: 10px;
  color: rgba(var(--white-rgb), 0.6);
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  transform: translateY(-50%);
}

.hero__scroll-rail > div {
  position: relative;
  width: 1px;
  height: 180px;
  background: rgba(var(--white-rgb), 0.2);
}

.hero__scroll-rail i {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: var(--hero-rail-fill);
  background: linear-gradient(var(--teal-light), var(--amber));
  box-shadow: 0 0 12px rgba(var(--teal-light-rgb), 0.7);
}

.hero__scroll-rail b {
  position: absolute;
  top: 0;
  left: -4px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(var(--hero-rail-marker));
  box-shadow: 0 0 0 5px rgba(var(--amber-rgb), 0.12);
}

.hero__scroll-rail small {
  position: absolute;
  top: 50%;
  left: 21px;
  color: rgba(var(--white-rgb), 0.48);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left top;
}

html:not(.js) .hero {
  height: auto;
  min-height: 100svh;
}

html:not(.js) .hero__stage {
  position: relative;
  height: auto;
  min-height: 100svh;
  clip-path: none;
}

html:not(.js) .hero__flight-path,
html:not(.js) .hero__departure,
html:not(.js) .hero__scroll-rail { display: none; }

/* Shared heading */
.section-heading h2,
.about__copy h2,
.contact__copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5.2vw, 5.4rem);
  font-weight: 500;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading h2 em,
.about__copy h2 em,
.contact__copy h2 em {
  color: var(--teal-dark);
  font-style: normal;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.section-heading__aside {
  padding-bottom: 8px;
}

.section-heading__aside p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Publicity */
.publicity-band {
  position: relative;
  isolation: isolate;
  min-height: clamp(280px, 34vw, 470px);
  overflow: hidden;
  background: var(--publicity-background);
}

.publicity-band__background { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--publicity-background); }
.publicity-band__background::after { position: absolute; inset: 0; background: var(--publicity-background); content: ""; opacity: .68; }
.publicity-band__background img { width: 100%; height: 100%; object-fit: cover; opacity: .42; mix-blend-mode: luminosity; }
.publicity-band__content { position: relative; z-index: 1; display: grid; min-height: inherit; grid-template-columns: 1fr; align-items: center; justify-items: center; gap: clamp(28px, 5vw, 76px); padding-block: clamp(48px, 7vw, 92px); }
.publicity-band--with-photo .publicity-band__content { grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); }
.publicity-band__copy { display: flex; width: 100%; min-width: 0; max-width: 820px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.publicity-band--with-photo .publicity-band__copy { justify-self: stretch; }
.publicity-band__copy h2 { max-width: 18ch; margin: 0; color: var(--publicity-title); font-size: clamp(2rem, 4.7vw, 5rem); font-weight: 500; line-height: 1.02; text-wrap: balance; }
.publicity-band__copy p { width: 100%; max-width: 650px; margin: clamp(18px, 2.5vw, 30px) 0 0; overflow-wrap: anywhere; color: var(--publicity-subtitle); font-size: clamp(.95rem, 1.35vw, 1.2rem); line-height: 1.65; text-wrap: balance; }
.publicity-band__photo { width: 100%; height: clamp(220px, 27vw, 350px); overflow: hidden; border: 1px solid rgba(var(--white-rgb), .35); border-radius: 7px; box-shadow: 0 24px 65px rgba(var(--ink-rgb), .2); }
.publicity-band__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Destinations */
.destinations {
  position: relative;
  background: var(--sand-light);
}

.destinations::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 84px;
  content: "";
  background: var(--line);
}

.destination-grid {
  display: grid;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.destination-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
  border-radius: 7px;
  cursor: pointer;
  isolation: isolate;
}

.destination-card--feature { grid-column: span 7; grid-row: span 2; }
.destination-card--tall { grid-column: span 5; grid-row: span 2; }
.destination-card--small { grid-column: span 4; }
.destination-card--wide { grid-column: span 8; }
.destination-card--half { grid-column: span 6; }

.destination-card picture {
  position: absolute;
  z-index: -2;
  inset: -6%;
  display: block;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.destination-card__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--ink-rgb), 0.12), rgba(var(--ink-rgb), 0.18) 38%, rgba(var(--ink-rgb), 0.9) 100%);
  transition: background 0.5s ease;
}

.destination-card__top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.destination-card__top > span:first-child {
  padding: 6px 9px;
  color: var(--white);
  background: rgba(var(--ink-rgb), 0.38);
  border: 1px solid rgba(var(--white-rgb), 0.22);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.destination-card__number {
  color: rgba(var(--white-rgb), 0.65);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.destination-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  transform: none;
}

.destination-card__content > p {
  margin-bottom: 4px;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.destination-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05;
}

.destination-card__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: var(--teal-light);
  background: transparent;
  border: 0;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 1;
  transition: color 0.25s ease;
}

.destination-card__action i {
  transition: transform 0.25s ease;
}

.destination-card__action:hover,
.destination-card:hover .destination-card__action,
.destination-card:focus-within .destination-card__action {
  color: var(--amber);
}

.destination-card:hover .destination-card__action i,
.destination-card:focus-within .destination-card__action i {
  transform: translate(3px, -3px);
}

.destination-card:hover .destination-card__overlay {
  background: linear-gradient(180deg, rgba(var(--ink-rgb), 0.05), rgba(var(--ink-rgb), 0.22) 35%, rgba(var(--ink-rgb), 0.95) 100%);
}

/* Services */
.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.services::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.3;
  background-image: linear-gradient(rgba(var(--teal-light-rgb), 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--teal-light-rgb), 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 15% 10%, #000 0, transparent 55%);
}

.services__orb {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
}

.services__orb--one {
  top: -150px;
  right: 5%;
  background: var(--teal);
}

.services__orb--two {
  bottom: -180px;
  left: -80px;
  background: var(--amber);
}

.section-heading--light {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 65px;
}

.section-heading--light .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -15px;
}

.section-heading--light h2 em {
  color: var(--teal-light);
}

.section-heading--light > p:last-child {
  max-width: 250px;
  margin: 0 0 9px;
  color: rgba(var(--white-rgb), 0.55);
  font-size: 0.83rem;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 30px 27px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background-color 0.45s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(var(--teal-light-rgb), 0.13), rgba(var(--teal-light-rgb), 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card__index {
  position: relative;
  color: rgba(var(--white-rgb), 0.34);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.service-card__icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  margin-top: 48px;
  place-items: center;
  color: var(--teal-light);
  border: 1px solid rgba(var(--teal-light-rgb), 0.3);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

.service-card h3 {
  position: relative;
  margin: 26px 0 12px;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.service-card p {
  position: relative;
  margin: 0;
  color: rgba(var(--white-rgb), 0.55);
  font-size: 0.78rem;
  line-height: 1.7;
  transition: color 0.35s ease;
}

.service-card__line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  background: rgba(var(--white-rgb), 0.04);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card__icon {
  color: var(--ink);
  background: var(--teal-light);
  border-color: var(--teal-light);
}
.service-card:hover p { color: rgba(var(--white-rgb), 0.78); }
.service-card:hover .service-card__line { opacity: 1; }

/* Support */
.support-band {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--amber);
}

.support-band__track {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding-block: 12px;
  color: rgba(var(--ink-rgb), 0.56);
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.17);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.support-band__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.support-band__content {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.support-band__content > i {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
  border: 1px solid rgba(var(--ink-rgb), 0.25);
  border-radius: 50%;
  font-size: 1.6rem;
}

.support-band__content p {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.55;
}

.support-band__content strong {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Network */
.travel-network {
  padding-block: clamp(78px, 8vw, 118px);
  background: var(--white);
}

.travel-network__head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.travel-network h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
}

.travel-network__head > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.network-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.network-list span {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.35s ease, background-color 0.35s ease;
}

.network-list span:last-child { border-right: 0; }
.network-list i { color: var(--teal-dark); font-size: 1.2rem; }
.network-list span:hover { color: var(--ink); background: var(--sand-light); }

.network-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  text-align: right;
}

/* About */
.about {
  position: relative;
  background: var(--sand);
}

.about::before {
  position: absolute;
  top: 0;
  left: 7%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(var(--ink-rgb), 0.06);
}

.about__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(60px, 8vw, 126px);
}

.about__media {
  position: relative;
  min-height: 690px;
}

.about__image {
  position: absolute;
  inset: 0 50px 58px 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.about__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(var(--ink-rgb), 0.5));
}

.about__image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 50% 68%;
}

.about__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(88%, 420px);
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  color: var(--white);
  background: var(--ink);
  border-radius: 5px;
  box-shadow: 0 18px 50px rgba(var(--ink-rgb), 0.2);
}

.about__caption span {
  color: var(--teal-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__caption strong {
  margin-top: 5px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
}

.about__stamp {
  position: absolute;
  z-index: 2;
  top: -34px;
  right: 12px;
  display: flex;
  width: 128px;
  height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--amber);
  border-radius: 50%;
  font-family: var(--font-heading);
  text-align: center;
  transform: rotate(7deg);
  box-shadow: 0 12px 38px rgba(var(--ink-rgb), 0.16);
}

.about__stamp::after {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(var(--ink-rgb), 0.45);
  border-radius: 50%;
  content: "";
}

.about__stamp span {
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about__stamp strong {
  margin-block: 2px;
  font-size: 1.03rem;
}

.about__copy h2 em { color: var(--teal-dark); }

.about__lead {
  max-width: 690px;
  margin: 34px 0 22px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.5;
}

.about__copy > p:not(.eyebrow):not(.about__lead) {
  max-width: 670px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about__copy blockquote {
  margin: 34px 0 0;
  padding: 18px 0 18px 25px;
  color: var(--ink);
  border-left: 2px solid var(--amber-deep);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.why-us {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  margin-top: clamp(90px, 10vw, 145px);
  padding: clamp(42px, 5vw, 70px);
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(var(--primary-rgb), 0.16);
}

.why-us__title > span {
  display: block;
  margin-bottom: 18px;
  color: rgba(var(--white-rgb), 0.62);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.why-us__title h3 {
  max-width: 350px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.12;
}

.why-us__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-us__list li {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 13px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(var(--white-rgb), 0.2);
  font-size: 0.82rem;
  line-height: 1.5;
}

.why-us__list i {
  flex: 0 0 auto;
  color: var(--amber);
  font-size: 1.2rem;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.purpose-card {
  position: relative;
  min-height: 365px;
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 7px;
}

.purpose-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(var(--teal-light-rgb), 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 35px rgba(var(--teal-light-rgb), 0.03), 0 0 0 70px rgba(var(--teal-light-rgb), 0.02);
}

.purpose-card--accent {
  color: var(--ink);
  background: var(--amber);
}

.purpose-card--accent::after {
  border-color: rgba(var(--ink-rgb), 0.16);
  box-shadow: 0 0 0 35px rgba(var(--ink-rgb), 0.03), 0 0 0 70px rgba(var(--ink-rgb), 0.02);
}

.purpose-card > span {
  display: block;
  margin-bottom: 70px;
  color: var(--teal-light);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purpose-card--accent > span { color: rgba(var(--ink-rgb), 0.64); }

.purpose-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.18;
}

.purpose-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(var(--white-rgb), 0.6);
  font-size: 0.8rem;
}

.purpose-card--accent p { color: rgba(var(--ink-rgb), 0.68); }

.values {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 60px;
  margin-top: clamp(80px, 9vw, 130px);
}

.values h3 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(1.8rem, 3.3vw, 3.25rem);
  font-weight: 500;
  line-height: 1.13;
}

.values__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.values__list span {
  padding: 12px 19px;
  color: var(--ink);
  border: 1px solid rgba(var(--ink-rgb), 0.25);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.values__list span:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* Contact */
.contact {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.contact__media {
  position: absolute;
  z-index: -3;
  inset: -8%;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.82);
}

.contact__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--ink-rgb), 0.97), rgba(var(--ink-rgb), 0.85) 52%, rgba(var(--ink-rgb), 0.56)),
    linear-gradient(180deg, rgba(var(--ink-rgb), 0.3), rgba(var(--ink-rgb), 0.74));
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.contact__copy h2 {
  max-width: 830px;
}

.contact__copy h2 em { color: var(--amber); }

.contact__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 34px;
  color: rgba(var(--white-rgb), 0.67);
  font-size: 1rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(var(--white-rgb), 0.2);
}

.contact-channel {
  display: grid;
  min-height: 116px;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  color: var(--white);
  border-bottom: 1px solid rgba(var(--white-rgb), 0.2);
  transition: padding 0.35s var(--ease-out), color 0.25s ease;
}

.contact-channel:hover {
  padding-inline: 12px;
  color: var(--amber);
}

.contact-channel__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--teal-light);
  border: 1px solid rgba(var(--teal-light-rgb), 0.35);
  border-radius: 50%;
  font-size: 1.15rem;
}

.contact-channel > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-channel small {
  color: rgba(var(--white-rgb), 0.7);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-channel strong {
  overflow: hidden;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-channel > i { font-size: 1rem; }

/* Footer */
.site-footer {
  color: var(--white);
  background: var(--ink-soft);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  padding-block: 78px 62px;
}

.site-footer__brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(var(--white-rgb), 0.48);
  font-size: 0.82rem;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.site-footer__nav > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav h3 {
  margin-bottom: 12px;
  color: var(--teal-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-footer__nav a {
  align-self: flex-start;
  color: rgba(var(--white-rgb), 0.67);
  font-size: 0.79rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer__nav a:hover {
  color: var(--amber);
  transform: translateX(3px);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding-block: 22px;
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
  color: rgba(var(--white-rgb), 0.66);
  border-top: 1px solid rgba(var(--white-rgb), 0.1);
  font-size: 0.7rem;
}

.site-footer__bottom p { margin: 0; }
.site-footer__bottom strong { color: rgba(var(--white-rgb), 0.58); font-weight: 600; }
.site-footer__credit { text-align: right; }
.site-footer__credit a { color: var(--teal-light); }

/* Floating controls */
.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: calc(24px + env(safe-area-inset-right));
  bottom: calc(24px + env(safe-area-inset-bottom));
  display: flex;
  height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 0;
  color: var(--white);
  background: var(--whatsapp);
  border-radius: 100px;
  box-shadow: 0 14px 36px rgba(var(--whatsapp-rgb), 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  transform: translateY(110px);
  transition: transform 0.5s var(--ease-out), box-shadow 0.3s ease;
}

.page-ready .whatsapp-float {
  transform: translateY(0);
  transition-delay: 1s;
}

.whatsapp-float::before {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(var(--whatsapp-rgb), 0.7);
  border-radius: inherit;
  content: "";
  animation: whatsapp-ring 2.4s ease-out infinite;
}

.whatsapp-float i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  font-size: 1.55rem;
}

.whatsapp-float:hover {
  color: var(--white);
  background: var(--whatsapp-dark);
  box-shadow: 0 18px 46px rgba(var(--whatsapp-rgb), 0.4);
  transform: translateY(-3px);
}

@keyframes whatsapp-ring {
  from { opacity: 0.7; transform: scale(0.96); }
  to { opacity: 0; transform: scale(1.18, 1.35); }
}

.back-to-top {
  position: fixed;
  z-index: 890;
  right: calc(30px + env(safe-area-inset-right));
  bottom: calc(94px + env(safe-area-inset-bottom));
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  visibility: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(var(--white-rgb), 0.16);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s var(--ease-out);
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.travel-toast {
  color: var(--white);
  background: rgba(var(--ink-rgb), 0.95);
  border: 1px solid rgba(var(--white-rgb), 0.14);
  border-radius: 6px;
  box-shadow: 0 16px 45px rgba(var(--ink-rgb), 0.22);
  backdrop-filter: blur(16px);
}

.toast-container {
  padding-bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
}

.travel-toast .toast-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 0.76rem;
}

.travel-toast i { color: var(--teal-light); }

/* Scroll reveal */
[data-scroll-motion] {
  translate: var(--scroll-x, 0px) var(--scroll-y, 0px);
  rotate: var(--scroll-rotate, 0deg);
  scale: var(--scroll-scale, 1);
}

[data-scroll-motion].is-scroll-active {
  will-change: translate, rotate, scale;
}

.js .reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.8s ease var(--reveal-delay, 0ms), transform 0.9s var(--ease-out) var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .desktop-nav { gap: 20px; }
  .header-login span { display: none; }
  .hero__inner { gap: 50px; }
  .hero h1 { font-size: clamp(3.2rem, 6.5vw, 5.4rem); }
  .service-card { min-height: 345px; padding-inline: 22px; }
  .about__intro { gap: 70px; }
}

@media (max-width: 1050px) {
  :root { --header-height: 78px; }
  .container-wide { width: min(100% - 40px, 1380px); }
  .desktop-nav,
  .header-login,
  .button--header { display: none; }
  .menu-toggle { display: block; }
  .hero { height: 175svh; min-height: 1300px; }
  .hero__stage { min-height: 100svh; padding: 110px 0 105px; }
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    padding-block: 0;
  }
  .hero__foot { bottom: 25px; grid-template-columns: repeat(3, 1fr); }
  .hero__scroll { display: none; }
  .hero__scroll-rail { display: none; }
  .hero__route { opacity: 0.5; }
  .destination-grid { grid-auto-rows: 220px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 300px; }
  .network-list { grid-template-columns: repeat(3, 1fr); }
  .network-list span:nth-child(3) { border-right: 0; }
  .network-list span:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .about__intro { grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
  .about__media { min-height: 600px; }
  .contact__inner { gap: 65px; }
}

@media (max-width: 860px) {
  .section-space { padding-block: 96px; }
  .hero { height: auto; min-height: 100svh; }
  .hero__stage {
    position: relative;
    height: auto;
    min-height: 100svh;
    padding: 125px 0 135px;
    clip-path: none;
  }
  .hero__flight-path,
  .hero__departure { display: none; }
  .hero__copy,
  .hero__planner-layer,
  .hero__foot { opacity: 1; transform: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 45px; }
  .hero__copy { max-width: 700px; }
  .hero__planner-layer { max-width: 610px; justify-self: start; }
  .trip-planner { max-width: 610px; justify-self: start; }
  .hero__foot { grid-template-columns: repeat(3, 1fr); }
  .section-heading--split,
  .travel-network__head,
  .values { grid-template-columns: 1fr; gap: 32px; }
  .section-heading--light { grid-template-columns: 1fr; gap: 20px; }
  .section-heading--light > p:last-child { max-width: none; text-align: left; }
  .destination-card:nth-child(n) { grid-column: span 6; grid-row: span 1; }
  .destination-card:nth-child(1),
  .destination-card:nth-child(2) { grid-row: span 2; }
  .travel-network__head > p { max-width: 560px; }
  .network-list { grid-template-columns: repeat(2, 1fr); }
  .network-list span:nth-child(n) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .network-list span:nth-child(2n) { border-right: 0; }
  .network-list span:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .about__intro { grid-template-columns: 1fr; gap: 65px; }
  .about__media { width: min(100%, 620px); min-height: 680px; }
  .why-us { grid-template-columns: 1fr; gap: 35px; }
  .purpose-grid { grid-template-columns: 1fr; }
  .purpose-card { min-height: 0; }
  .purpose-card > span { margin-bottom: 50px; }
  .values__list { justify-content: flex-start; }
  .publicity-band--with-photo .publicity-band__content { grid-template-columns: 1fr; }
  .publicity-band__photo { width: min(100%, 680px); }
  .contact__inner { grid-template-columns: 1fr; }
  .contact { min-height: auto; }
  .contact-channels { max-width: 620px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 50px; }
  .site-footer__bottom { grid-template-columns: 1fr; gap: 8px; }
  .site-footer__credit { text-align: left; }
}

@media (max-width: 640px) {
  :root { --header-height: 72px; }
  body { font-size: 1rem; }
  .container-wide { width: calc(100% - 32px); }
  .section-space { padding-block: 82px; }
  .site-header.is-scrolled,
  .site-header.menu-active { height: calc(66px + env(safe-area-inset-top)); }
  .brand__mark { width: 38px; height: 38px; }
  .brand__copy strong { font-size: 0.87rem; }
  .brand__copy small { font-size: 0.48rem; }
  .menu-toggle { width: 42px; height: 42px; }
  .menu-toggle span { left: 11px; }
  .hero__stage { padding: 112px 0 100px; }
  .hero__veil {
    background: linear-gradient(180deg, rgba(var(--ink-rgb), 0.84), rgba(var(--ink-rgb), 0.55) 45%, rgba(var(--ink-rgb), 0.93));
  }
  .hero__topography { opacity: 0.2; mask-image: linear-gradient(180deg, transparent, #000); }
  .hero__route { display: none; }
  .hero h1 { font-size: clamp(3rem, 14.5vw, 4.4rem); }
  .hero__lead { font-size: 0.98rem; }
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .hero__buttons .button { width: 100%; }
  .trip-planner { padding: 21px; }
  .trip-planner__head { flex-direction: column; }
  .planner-row { grid-template-columns: 1fr; gap: 0; }
  .trip-planner__note { font-size: 0.68rem; }
  .hero__foot { display: none; }
  .section-heading h2,
  .about__copy h2,
  .contact__copy h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .section-heading--split { margin-bottom: 42px; }
  .destination-grid { grid-auto-rows: 320px; grid-template-columns: 1fr; gap: 12px; }
  .destination-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .destination-card { min-height: 320px; }
  .destination-card__content { transform: none; }
  .destination-card__action { opacity: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .service-card__icon { margin-top: 32px; }
  .support-band__content { min-height: 210px; align-items: flex-start; flex-direction: column; gap: 18px; padding-block: 35px; }
  .support-band__content > i { width: 58px; height: 58px; flex-basis: 58px; }
  .network-list { grid-template-columns: 1fr; }
  .network-list span:nth-child(n) { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line); }
  .network-list span:last-child { grid-column: auto; border-bottom: 0; }
  .network-note { text-align: left; }
  .about__media { min-height: 570px; }
  .about__image { inset: 0 24px 70px 0; }
  .about__stamp { top: -24px; right: 0; width: 108px; height: 108px; }
  .about__caption { width: 94%; padding: 20px; }
  .why-us { padding: 32px 24px; }
  .publicity-band { min-height: 0; }
  .publicity-band__content { gap: 30px; padding-block: 46px; }
  .publicity-band__photo { height: min(64vw, 280px); }
  .why-us__list { grid-template-columns: 1fr; }
  .why-us__list li { min-height: 62px; }
  .purpose-card { padding: 34px 26px; }
  .values__list span { padding: 10px 14px; font-size: 0.62rem; }
  .contact-channel { grid-template-columns: 46px minmax(0, 1fr) auto; gap: 12px; }
  .contact-channel__icon { width: 44px; height: 44px; }
  .contact-channel strong { font-size: 0.78rem; }
  .site-footer__nav { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .whatsapp-float { right: calc(14px + env(safe-area-inset-right)); bottom: calc(14px + env(safe-area-inset-bottom)); width: 56px; padding: 0; overflow: hidden; }
  .whatsapp-float i { width: 56px; height: 56px; flex: 0 0 56px; }
  .whatsapp-float span { display: none; }
  .back-to-top { right: calc(20px + env(safe-area-inset-right)); bottom: calc(82px + env(safe-area-inset-bottom)); }
  .support-band__track { flex-wrap: wrap; padding-inline: 16px; }
}

@media (max-width: 370px) {
  .brand__copy { display: none; }
  .hero h1 { font-size: 2.7rem; }
  .trip-planner { padding: 17px; }
  .site-footer__nav { grid-template-columns: 1fr; }
}

@media (hover: none), (pointer: coarse) {
  .destination-card__content { transform: none; }
  .destination-card__action { opacity: 1; }
  .destination-card:hover img { filter: none; transform: scale(1.015); }
  .destination-card:hover .destination-card__overlay {
    background: linear-gradient(180deg, rgba(var(--ink-rgb), 0.12), rgba(var(--ink-rgb), 0.18) 38%, rgba(var(--ink-rgb), 0.9) 100%);
  }
}

@media (max-height: 650px) and (max-width: 1050px) {
  .mobile-menu {
    justify-content: flex-start;
    padding-top: calc(86px + env(safe-area-inset-top));
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
  .mobile-menu nav { margin-bottom: 22px; }
  .mobile-menu nav a { padding-block: 9px; }
}

@media (max-height: 780px) and (min-width: 1051px) {
  .hero { min-height: 760px; }
  .hero__inner { padding-top: 78px; padding-bottom: 105px; }
  .hero h1 { font-size: clamp(3.3rem, 5.2vw, 5rem); margin-bottom: 20px; }
  .hero__lead { margin-bottom: 26px; line-height: 1.6; }
  .trip-planner { padding: 21px; }
  .trip-planner__head { margin-bottom: 17px; }
  .planner-field { margin-bottom: 9px; }
  .planner-field .form-control,
  .planner-field .form-select,
  .planner-field .dselect-wrapper > .form-select { min-height: 54px; }
  .hero__foot { bottom: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__media,
  .about__image,
  .contact__media { transform: none !important; }
  .hero { height: auto; min-height: 100svh; }
  .hero__stage { position: relative; height: auto; min-height: 100svh; clip-path: none; }
  .hero__flight-path,
  .hero__departure,
  .hero__scroll-rail { display: none; }
  .hero__copy,
  .hero__planner-layer,
  .hero__foot { opacity: 1 !important; transform: none !important; }
  [data-scroll-motion] {
    translate: 0 0 !important;
    rotate: 0deg !important;
    scale: 1 !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
