@font-face {
  font-family: "Hurme Geometric Sans";
  src: url("assets/fonts/HurmeGeometricSans1-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hurme Geometric Sans";
  src: url("assets/fonts/HurmeGeometricSans1.otf") format("opentype");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hurme Geometric Sans";
  src: url("assets/fonts/HurmeGeometricSans1-SemiBold.otf") format("opentype");
  font-weight: 650 750;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hurme Geometric Sans";
  src: url("assets/fonts/HurmeGeometricSans1-Bold.otf") format("opentype");
  font-weight: 800 950;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #101713;
  --muted: #6d756d;
  --paper: #f7f2e7;
  --sand: #e7d8bd;
  --deep: #07120d;
  --forest: #0d3d27;
  --leaf: #39d36c;
  --cyan: #62d9ff;
  --sun: #f4bd4e;
  --clay: #c5643f;
  --line: rgba(16, 23, 19, 0.13);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(5, 12, 8, 0.22);
  --radius: 8px;
  --container: min(1200px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Hurme Geometric Sans", Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 18, 13, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 18, 13, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 18% 10%, rgba(57, 211, 108, 0.13), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(244, 189, 78, 0.12), transparent 24rem),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, transparent 0 42px, rgba(13, 61, 39, 0.045) 43px 44px, transparent 45px 84px),
    radial-gradient(ellipse at 12% 24%, transparent 0 21%, rgba(13, 61, 39, 0.08) 21.2% 21.6%, transparent 21.8% 30%, rgba(13, 61, 39, 0.055) 30.2% 30.7%, transparent 31%),
    radial-gradient(ellipse at 88% 30%, transparent 0 18%, rgba(197, 100, 63, 0.075) 18.2% 18.6%, transparent 19% 28%, rgba(98, 217, 255, 0.06) 28.2% 28.7%, transparent 29%);
  opacity: 0.84;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.72; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 18, 13, 0.82);
  border-bottom: 1px solid rgba(98, 217, 255, 0.18);
  backdrop-filter: blur(22px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--cyan), var(--sun), var(--clay));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.nav {
  width: var(--container);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: inline-flex; align-items: center; min-width: 84px; }
.brand img { width: 76px; filter: drop-shadow(0 10px 22px rgba(57, 211, 108, 0.18)); transition: transform 240ms ease, filter 240ms ease; }
.brand:hover img { transform: rotate(-2deg) translateY(-2px) scale(1.06); filter: drop-shadow(0 0 24px rgba(98, 217, 255, 0.45)); }

.nav-links { display: flex; align-items: center; gap: 3px; }
.mobile-nav-cta { display: none; }
.nav-links a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 760;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(98, 217, 255, 0.24), rgba(57, 211, 108, 0.12), transparent 64%);
  opacity: 0;
  transition: opacity 180ms ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; transform: translateY(-2px); background: rgba(255, 255, 255, 0.08); }
.nav-links a:hover::before, .nav-links a.active::before { opacity: 1; }

.nav-dropdown { position: relative; }
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 760;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown[open] summary, .nav-dropdown.active summary {
  color: #fff;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 290px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(7, 18, 13, 0.96);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 999px;
}
.nav-dropdown-main { color: var(--leaf) !important; }

.nav-cta, .button, button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.nav-cta, .button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: #07120d;
  background: linear-gradient(135deg, var(--leaf), var(--cyan));
  box-shadow: 0 18px 42px rgba(57, 211, 108, 0.2);
  font-weight: 860;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.nav-cta::before, .button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 60%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transition: left 520ms ease;
}
.nav-cta:hover, .button:hover {
  transform: translateY(-4px) scale(1.025);
  filter: saturate(1.12);
  box-shadow: 0 28px 54px rgba(57, 211, 108, 0.32), 0 0 0 5px rgba(98, 217, 255, 0.12);
}
.nav-cta:hover::before, .button:hover::before { left: 125%; }
.button.alt {
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(13, 61, 39, 0.12);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  align-items: center;
  justify-content: center;
}
.menu-button span, .menu-button span::before, .menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.menu-button span::before, .menu-button span::after { content: ""; position: relative; }
.menu-button span::before { top: -7px; }
.menu-button span::after { top: 5px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(850px, calc(92vh - 76px));
  display: grid;
  align-items: center;
  background: #07120d;
  color: #fff;
}
.home-hero {
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  justify-items: center;
  padding: clamp(70px, 8vw, 118px) max(20px, calc((100vw - 1200px) / 2)) 72px;
  text-align: center;
}
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .34;
  animation: heroFloat 12s ease-in-out infinite;
}
.orb-a {
  width: min(34vw, 440px);
  height: min(34vw, 440px);
  left: -6%;
  top: 8%;
  background: radial-gradient(circle, rgba(57, 211, 108, 0.34), rgba(57, 211, 108, 0.02) 68%);
}
.orb-b {
  width: min(28vw, 320px);
  height: min(28vw, 320px);
  right: 10%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(98, 217, 255, 0.26), rgba(98, 217, 255, 0.02) 68%);
  animation-delay: -5s;
}
.ambient-scan {
  position: absolute;
  inset: 12% -20%;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.045) 36%, transparent 38% 62%, rgba(57,211,108,.08) 64%, transparent 66%);
  animation: heroScan 10s linear infinite;
}
.home-hero::before, .subhero::before, .itinerary-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(115deg, rgba(7, 18, 13, 0.94) 0 38%, rgba(7, 18, 13, 0.52) 70%, rgba(7, 18, 13, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(255, 255, 255, 0.045) 69px 70px),
    repeating-linear-gradient(0deg, transparent 0 68px, rgba(255, 255, 255, 0.035) 69px 70px);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  padding: 0 20px;
}
.home-hero .hero-content {
  width: min(980px, 100%);
  padding-left: 0;
  display: grid;
  justify-items: center;
  order: 1;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: clamp(0.76rem, 1.1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-title-lines, h1, h2, h3 {
  font-family: "Hurme Geometric Sans", Avenir Next, system-ui, sans-serif;
  letter-spacing: 0;
}
.hero-title-lines {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.86;
  font-weight: 950;
  text-transform: uppercase;
}
.home-hero .hero-title-lines { font-size: clamp(3rem, 6.8vw, 6.8rem); }
.hero-title-lines span { display: block; white-space: nowrap; }
.hero-title-lines span:nth-child(2) { color: var(--cyan); }
.hero-title-lines span:nth-child(3) { color: var(--sun); }
.hero-copy {
  width: min(650px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.36rem);
  overflow-wrap: anywhere;
}
.home-hero .hero-copy {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.hero-actions, .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.home-hero .hero-actions, .home-hero .hero-stats { justify-content: center; }
.home-hero .hero-stats { order: 3; }
.hero-stats div {
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}
.hero-stats strong { display: block; color: #fff; font-size: 1.6rem; }
.hero-stats span { color: rgba(255, 255, 255, 0.68); font-size: 0.88rem; }

.hero-depth-scene {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  min-height: 560px;
  display: block;
  perspective: 1600px;
  contain: layout paint style;
}
.home-hero .hero-depth-scene { order: 2; }
.hero-hang-scene::before {
  content: "";
  position: absolute;
  inset: 8% 12% 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 189, 78, 0.12), rgba(57, 211, 108, 0.08) 42%, rgba(7, 18, 13, 0) 74%);
  filter: blur(18px);
  opacity: 0.92;
}
.hero-hang-scene::after {
  content: "";
  position: absolute;
  inset: auto 10% 0;
  height: 104px;
  background: radial-gradient(circle at 50% 10%, rgba(98, 217, 255, 0.08), rgba(7, 18, 13, 0));
  filter: blur(10px);
  opacity: 0.56;
}
.hero-hang-rail {
  position: absolute;
  left: 4%;
  right: 4%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  pointer-events: none;
}
.rail-main {
  top: 18px;
  height: 168px;
}
.rail-echo {
  left: 11%;
  right: 11%;
  top: 44px;
  height: 136px;
  border-bottom-color: rgba(57, 211, 108, 0.14);
  opacity: 0.7;
}
.hero-carousel-track {
  position: relative;
  min-height: 470px;
  isolation: isolate;
}
.hero-hang-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(188px, 18vw, 238px);
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #f3efe5 100%);
  border: 1px solid rgba(16, 23, 19, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  transform-origin: 50% -50px;
  will-change: transform, opacity;
  transition: transform 680ms cubic-bezier(.22, .78, .2, 1), opacity 420ms ease, filter 420ms ease, box-shadow 420ms ease;
  transform:
    translate3d(calc(-50% + var(--card-x, 0px)), var(--card-y, 154px), 0)
    rotate(var(--card-rotate, 0deg))
    scale(var(--card-scale, 1));
  opacity: var(--card-opacity, 1);
  filter: saturate(1.04) brightness(var(--card-brightness, 1));
  z-index: var(--card-layer, 1);
}
.hero-hang-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -42px;
  width: 2px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(57, 211, 108, 0.46));
  transform: translateX(-50%);
}
.hero-hang-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -58px;
  width: 20px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(180deg, #39d36c, #2ab55a);
  box-shadow: 0 10px 18px rgba(57, 211, 108, 0.24);
  transform: translateX(-50%);
}
.hero-hang-card img {
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  filter: saturate(1.04) contrast(1.02);
}
.hang-card-copy {
  padding: 14px 8px 8px;
  color: var(--ink);
  text-align: left;
}
.hang-card-copy strong {
  display: block;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}
.hang-card-copy small {
  display: block;
  margin-top: 6px;
  color: #556158;
  font-size: 0.9rem;
  line-height: 1.4;
}
.hero-hang-card[data-slot="0"] {
  --card-x: 0px;
  --card-y: 168px;
  --card-rotate: 0deg;
  --card-scale: 1.06;
  --card-opacity: 1;
  --card-layer: 6;
  --card-brightness: 1;
}
.hero-hang-card[data-slot="-1"] {
  --card-x: -260px;
  --card-y: 150px;
  --card-rotate: -8deg;
  --card-scale: .94;
  --card-opacity: .96;
  --card-layer: 5;
  --card-brightness: .98;
}
.hero-hang-card[data-slot="1"] {
  --card-x: 260px;
  --card-y: 150px;
  --card-rotate: 8deg;
  --card-scale: .94;
  --card-opacity: .96;
  --card-layer: 5;
  --card-brightness: .98;
}
.hero-hang-card[data-slot="-2"] {
  --card-x: -485px;
  --card-y: 116px;
  --card-rotate: -16deg;
  --card-scale: .82;
  --card-opacity: .78;
  --card-layer: 3;
  --card-brightness: .92;
}
.hero-hang-card[data-slot="2"] {
  --card-x: 485px;
  --card-y: 116px;
  --card-rotate: 16deg;
  --card-scale: .82;
  --card-opacity: .78;
  --card-layer: 3;
  --card-brightness: .92;
}
.hero-hang-card[data-active="true"] {
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.28);
}
.hero-hang-card:hover {
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.26);
}
.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  z-index: 8;
}
.hero-carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.2);
  box-shadow: none;
  min-height: 0;
}
.hero-carousel-dot.active {
  width: 30px;
  background: linear-gradient(90deg, var(--leaf), var(--cyan));
  border-color: rgba(255,255,255,.4);
}
.hero-orbit {
  position: relative;
  width: min(560px, 94%);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform;
  animation: orbitFloat 10.5s ease-in-out infinite;
}
.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 217, 255, 0.2), rgba(57, 211, 108, 0.08) 44%, rgba(7, 18, 13, 0) 68%);
  filter: blur(10px);
  transform: translateZ(-18px);
}
.hero-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.ring-a {
  inset: 4%;
  border-color: rgba(98, 217, 255, 0.34);
  transform: rotateX(74deg) rotateZ(6deg);
  animation: orbitSpinA 16s linear infinite;
}
.ring-b {
  inset: 12%;
  border-style: dashed;
  border-color: rgba(57, 211, 108, 0.32);
  transform: rotateY(78deg) rotateZ(-18deg);
  animation: orbitSpinB 18s linear infinite;
}
.ring-c {
  inset: 1%;
  border-color: rgba(244, 189, 78, 0.22);
  transform: rotateX(84deg) rotateY(-14deg);
  animation: orbitSpinC 22s linear infinite;
}
.hero-depth-card {
  position: absolute;
  inset: 16%;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(98, 217, 255, 0.08);
  background: #10291a;
  transform: translateZ(56px);
}
.hero-depth-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.03);
  animation: heroImageBreath 18s ease-in-out infinite;
  will-change: transform;
}
.hero-depth-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 13, 0.04), rgba(7, 18, 13, 0.24) 55%, rgba(7, 18, 13, 0.62)),
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.2), transparent 22%);
}
.hero-orbit-copy {
  position: absolute;
  left: 50%;
  bottom: 5%;
  z-index: 4;
  width: min(82%, 360px);
  padding: 16px 18px;
  border-radius: 26px;
  background: rgba(7, 18, 13, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateX(-50%) translateZ(64px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}
.hero-orbit-copy span {
  display: block;
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-orbit-copy strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.06rem;
  line-height: 1.15;
}
.hero-orbit-tag {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(7, 18, 13, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}
.tag-a {
  top: 18%;
  left: -2%;
  transform: translateZ(48px);
}
.tag-b {
  right: -3%;
  top: 66%;
  transform: translateZ(36px);
}
.hero-orbit-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
  z-index: 4;
  will-change: transform;
}
.orbit-node-a {
  top: 16%;
  right: 14%;
  background: var(--leaf);
  animation: nodePulseLeaf 4.2s ease-in-out infinite;
}
.orbit-node-b {
  left: 18%;
  bottom: 22%;
  background: var(--sun);
  animation: nodePulseSun 4.8s ease-in-out infinite;
}
.orbit-node-c {
  right: 22%;
  bottom: 28%;
  background: var(--cyan);
  animation: nodePulseCyan 5.2s ease-in-out infinite;
}

.hero-photo-stack {
  position: relative;
  z-index: 2;
  min-height: 560px;
}
.hero-route-flow {
  position: absolute;
  inset: 0 2% 0 0;
  z-index: 3;
  pointer-events: none;
}
.flow-path {
  position: absolute;
  inset: auto;
  height: 2px;
  border-radius: 999px;
  transform-origin: left center;
  opacity: .65;
}
.path-a {
  left: 18%;
  bottom: 24%;
  width: 62%;
  background: linear-gradient(90deg, rgba(57,211,108,.1), rgba(98,217,255,.95), rgba(244,189,78,.1));
  transform: rotate(-24deg);
  animation: routePulse 4.2s ease-in-out infinite;
}
.path-b {
  left: 32%;
  top: 25%;
  width: 36%;
  background: linear-gradient(90deg, rgba(244,189,78,.08), rgba(57,211,108,.9), rgba(98,217,255,.12));
  transform: rotate(14deg);
  animation: routePulse 4.2s ease-in-out infinite;
  animation-delay: -2s;
}
.flow-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.9);
  background: var(--sun);
  box-shadow: 0 0 0 0 rgba(98,217,255,.45);
  animation: nodePing 3.4s ease-out infinite;
}
.node-a { left: 22%; bottom: 18%; }
.node-b { left: 56%; bottom: 36%; animation-delay: -1.2s; }
.node-c { right: 8%; top: 24%; background: var(--leaf); animation-delay: -2.1s; }
.hero-photo-main {
  position: absolute;
  inset: 8% 10% 8% 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  background: #10291a;
}
.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.04);
  animation: heroImageBreath 11s ease-in-out infinite;
}
.hero-photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 18, 13, 0.18), rgba(7, 18, 13, 0.58)),
    radial-gradient(circle at 18% 18%, rgba(57, 211, 108, 0.2), transparent 16rem);
}
.hero-photo-main figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(7, 18, 13, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-photo-main figcaption span, .journey-panel-copy span {
  display: block;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-photo-main figcaption strong, .journey-panel-copy strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.25rem;
}
.hero-mini-photo {
  position: absolute;
  z-index: 3;
  width: 190px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}
.hero-mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-mini-photo.one { right: 0; top: 4%; }
.hero-mini-photo.two { right: 6%; bottom: 0; }
.hero-chip {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 18, 13, 0.74);
  backdrop-filter: blur(14px);
  color: #fff;
}
.hero-chip span { display: block; color: var(--leaf); font-size: 0.76rem; text-transform: uppercase; font-weight: 900; letter-spacing: 0.12em; }
.hero-chip strong { display: block; margin-top: 4px; }
.chip-a { left: 28px; top: 28px; }
.chip-b { right: 26px; bottom: 26px; }

.route-ribbon {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 40px));
  margin: -36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7, 18, 13, 0.88);
  color: #fff;
  box-shadow: var(--shadow);
}
.route-ribbon a { padding: 20px; border-right: 1px solid rgba(255, 255, 255, 0.12); transition: background 180ms ease, transform 180ms ease; }
.route-ribbon a:last-child { border-right: 0; }
.route-ribbon span { display: block; color: var(--cyan); font-size: 0.78rem; text-transform: uppercase; font-weight: 900; letter-spacing: 0.12em; }
.route-ribbon strong { display: block; margin-top: 6px; }
.route-ribbon a:hover { background: rgba(57, 211, 108, 0.13); transform: translateY(-2px); }

.route-scroll-pin {
  position: fixed;
  right: 16px;
  top: 50%;
  z-index: 60;
  width: 72px;
  height: 360px;
  transform: translateY(-50%);
  pointer-events: none;
  border: 1px solid rgba(57, 211, 108, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(8, 23, 16, 0.88), rgba(8, 23, 16, 0.56)),
    radial-gradient(circle at 50% 16%, rgba(57, 211, 108, 0.12), transparent 52%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}
.route-scroll-line {
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(57, 211, 108, 0.5), rgba(57, 211, 108, 0.12));
}
.route-scroll-stop {
  position: absolute;
  left: 50%;
  top: calc(18px + (var(--stop-position) * ((100% - 36px) / 3)));
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(57,211,108,.22);
  box-shadow: 0 0 0 10px rgba(57,211,108,.03);
}
.route-scroll-stop.active {
  background: rgba(244,189,78,.92);
  box-shadow: 0 0 0 10px rgba(57,211,108,.08);
}
.route-scroll-marker {
  position: absolute;
  left: 50%;
  top: calc(18px + (var(--route-progress, 0) * ((100% - 36px) / 3)));
  width: 42px;
  height: 42px;
  border: 4px solid var(--leaf);
  border-radius: 50% 50% 50% 0;
  background: rgba(7,18,13,.75);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 18px rgba(57,211,108,.18);
  transition: top 520ms cubic-bezier(.2,.82,.2,1);
}
.route-scroll-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sun);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 0 6px rgba(244,189,78,.08);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(76px, 8vw, 128px) 0;
  position: relative;
}
main > .section,
main > .journey-scroll,
main > .trail-feature,
main > .destination-story,
main > .route-lab,
main > .contact-panel,
main > .itinerary-shell,
main > .souvenir-shell,
main > .blog-shell {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.section-head {
  width: min(820px, 100%);
  margin-bottom: 34px;
}
.section-head h2, .trail-copy h2, .story-panel h2, .lab-panel h2, .trip-dossier h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 0.92;
  font-weight: 930;
  text-transform: uppercase;
}
.section-lead {
  width: min(760px, 100%);
  color: var(--muted);
  font-size: 1.1rem;
}

.dark-section, .band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1200px) / 2));
  padding-right: max(20px, calc((100vw - 1200px) / 2));
  background:
    radial-gradient(circle at 15% 0%, rgba(57, 211, 108, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 20%, rgba(98, 217, 255, 0.12), transparent 28rem),
    #07120d;
  color: #fff;
}
.dark-section .section-head, .band .section-head { width: min(900px, 100%); }
.dark-section .section-lead, .band .section-lead { color: rgba(255, 255, 255, 0.7); }

.grid { display: grid; gap: 22px; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.category-tile, .tour-card, .destination-card, .world-card, .story-lanes a, .program-matrix a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
  transform-style: preserve-3d;
}
.category-tile, .tour-card a, .destination-card a {
  display: block;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 61, 39, 0.12);
  box-shadow: 0 14px 44px rgba(7, 18, 13, 0.09);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.category-tile::before, .tour-card a::before, .destination-card a::before, .world-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 45%), rgba(98, 217, 255, 0.42), transparent 28%);
  transition: opacity 180ms ease;
}
.category-tile:hover, .tour-card a:hover, .destination-card a:hover {
  transform: translateY(-8px) rotateX(1.8deg) rotateY(-1.2deg);
  border-color: rgba(57, 211, 108, 0.45);
  box-shadow: 0 30px 90px rgba(7, 18, 13, 0.2);
}
.category-tile:hover::before, .tour-card a:hover::before, .destination-card a:hover::before, .world-card:hover::before { opacity: 1; }
.category-tile img, .tour-card img, .destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  transition: transform 520ms ease, filter 520ms ease;
}
.category-tile:hover img, .tour-card a:hover img, .destination-card a:hover img {
  transform: scale(1.08);
  filter: saturate(1.18) contrast(1.1);
}
.category-tile span, .tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(57, 211, 108, 0.13);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.category-tile h3, .tour-card h3, .destination-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.category-tile p, .tour-card p, .destination-card p { color: #566057; margin: 0; }
.category-tile { padding-bottom: 24px; }
.category-tile span, .category-tile h3, .category-tile p { margin-left: 22px; margin-right: 22px; position: relative; z-index: 2; }
.category-tile span { margin-top: 22px; }
.card-body { position: relative; z-index: 2; padding: 22px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.text-link { display: inline-flex; margin-top: 18px; color: var(--forest); font-weight: 900; }
.text-link::after { content: "→"; margin-left: 8px; transition: transform 180ms ease; }
a:hover .text-link::after { transform: translateX(5px); }

.journey-scroll {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}
.journey-image-panel {
  position: sticky;
  top: 110px;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 61, 39, 0.16);
  background: #0a1b12;
  box-shadow: var(--shadow);
}
.journey-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}
.journey-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 13, 0.06), rgba(7, 18, 13, 0.8)),
    repeating-linear-gradient(135deg, transparent 0 44px, rgba(255, 255, 255, 0.12) 45px 46px, transparent 47px 88px);
}
.journey-panel-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(7, 18, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.journey-panel-copy small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  font-size: 0.96rem;
}
.journey-copy { display: grid; gap: 22px; }
.route-stage {
  min-height: 310px;
  padding: clamp(24px, 4vw, 44px);
  border-left: 4px solid rgba(13, 61, 39, 0.14);
  background: rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.route-stage.active {
  border-color: var(--leaf);
  background: #fff;
  transform: translateX(6px);
}
.route-stage span {
  display: block;
  color: var(--clay);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.route-stage h2 { margin: 16px 0 0; font-size: clamp(2.1rem, 4.5vw, 4.8rem); line-height: 0.9; text-transform: uppercase; }
.route-stage p { color: #4f5d53; font-size: 1.08rem; }

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.world-card {
  min-height: 220px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0a1b12;
  transition: transform 220ms ease, background 220ms ease;
}
.world-card span { color: var(--cyan); font-weight: 900; }
.world-card strong { display: block; margin-top: 28px; font-size: 1.32rem; line-height: 1; text-transform: uppercase; }
.world-card small { display: block; margin-top: 14px; color: rgba(255, 255, 255, 0.62); line-height: 1.55; font-size: 0.95rem; }
.world-card:hover { transform: translateY(-6px); background-color: #10291a; }

.trail-feature, .destination-story, .route-lab, .itinerary-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.itinerary-shell > * { min-width: 0; }
.mobile-itinerary-actions {
  display: none;
  gap: 12px;
  margin-bottom: 20px;
}
.trail-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trail-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trail-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 45%, rgba(98, 217, 255, 0.5) 45.3% 45.7%, transparent 46% 52%, rgba(244, 189, 78, 0.48) 52.2% 52.6%, transparent 53%),
    radial-gradient(circle at 30% 40%, transparent 0 16%, rgba(57, 211, 108, 0.38) 16.3% 16.7%, transparent 17% 26%);
  mix-blend-mode: screen;
}
.trail-copy, .story-panel, .lab-panel, .trip-dossier, .story-card {
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 61, 39, 0.12);
  box-shadow: 0 18px 60px rgba(7, 18, 13, 0.08);
}
.trail-copy p, .story-panel p, .lab-panel p, .trip-dossier p, .story-card p { color: #4f5d53; }

.feature-card, .coffee-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 61, 39, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 60px rgba(7, 18, 13, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.feature-card {
  padding: 24px;
}
.feature-card::before, .coffee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(57, 211, 108, 0.22), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}
.feature-card:hover, .coffee-card:hover {
  transform: translateY(-7px);
  border-color: rgba(57, 211, 108, 0.45);
  box-shadow: 0 28px 78px rgba(7, 18, 13, 0.16);
}
.feature-card:hover::before, .coffee-card:hover::before { opacity: 1; }
.feature-card > *, .coffee-card > * { position: relative; z-index: 2; }
.feature-card h3, .coffee-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.feature-card p, .coffee-card p { color: #566057; margin: 8px 0 0; }
.coffee-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 520ms ease;
}
.coffee-card:hover img { transform: scale(1.07); }
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07120d;
  background: linear-gradient(135deg, var(--leaf), var(--cyan));
  font-weight: 950;
}
.band .feature-card, .band .story-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  color: #fff;
}
.band .feature-card p, .band .story-card p, .band .story-card .section-lead {
  color: rgba(255, 255, 255, 0.72);
}
.band .feature-card h3, .band .story-card h3 { color: #fff; }

.blog-strip { padding-top: 40px; }
.story-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.story-lanes a {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(13, 61, 39, 0.12);
  transition: transform 180ms ease, background 180ms ease;
}
.story-lanes a:hover { transform: translateY(-5px); background: #fdf8ef; }
.story-lanes strong { display: block; font-size: 1.35rem; text-transform: uppercase; line-height: 1; }
.story-lanes span { display: block; margin-top: 12px; color: #5b665d; line-height: 1.55; }

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -20px, 0) scale(1.06); }
}

@keyframes heroScan {
  0% { transform: translate3d(-12%, 0, 0); opacity: .12; }
  50% { opacity: .32; }
  100% { transform: translate3d(12%, 0, 0); opacity: .12; }
}

@keyframes heroImageBreath {
  0%, 100% { transform: scale(1.04); }
  50% { transform: scale(1.08); }
}

@keyframes hangSwingA {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(6px); }
}

@keyframes hangSwingB {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(8px); }
}

@keyframes hangSwingCenter {
  0%, 100% { transform: rotate(0deg) translateY(0) scale(1.02); }
  50% { transform: rotate(2deg) translateY(10px) scale(1.05); }
}

@keyframes hangSwingC {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(8px); }
}

@keyframes hangSwingD {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(6px); }
}

@keyframes orbitFloat {
  0%, 100% { transform: rotateX(0deg) rotateY(0deg) translate3d(0, 0, 0); }
  50% { transform: rotateX(6deg) rotateY(-7deg) translate3d(0, -10px, 0); }
}

@keyframes orbitSpinA {
  from { transform: rotateX(74deg) rotateZ(6deg); }
  to { transform: rotateX(74deg) rotateZ(366deg); }
}

@keyframes orbitSpinB {
  from { transform: rotateY(78deg) rotateZ(-18deg); }
  to { transform: rotateY(78deg) rotateZ(-378deg); }
}

@keyframes orbitSpinC {
  from { transform: rotateX(84deg) rotateY(-14deg) rotateZ(0deg); }
  to { transform: rotateX(84deg) rotateY(-14deg) rotateZ(360deg); }
}

@keyframes atlasDriftA {
  0%, 100% { transform: rotate(-3deg) translate3d(0, -8px, 0); }
  50% { transform: rotate(-1deg) translate3d(0, 10px, 0); }
}

@keyframes atlasDriftB {
  0%, 100% { transform: rotate(4deg) translate3d(0, 0, 0); }
  50% { transform: rotate(2deg) translate3d(0, -12px, 0); }
}

@keyframes atlasDriftC {
  0%, 100% { transform: rotate(-2deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-4deg) translate3d(0, 12px, 0); }
}

@keyframes routePulse {
  0%, 100% { opacity: .28; }
  50% { opacity: .82; }
}

@keyframes nodePing {
  0% { box-shadow: 0 0 0 0 rgba(98,217,255,.35); }
  70% { box-shadow: 0 0 0 18px rgba(98,217,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(98,217,255,0); }
}

@keyframes nodePulseLeaf {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(57, 211, 108, 0.08); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 16px rgba(57, 211, 108, 0); }
}

@keyframes nodePulseSun {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(244, 189, 78, 0.08); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 16px rgba(244, 189, 78, 0); }
}

@keyframes nodePulseCyan {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(98, 217, 255, 0.08); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 16px rgba(98, 217, 255, 0); }
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 24px;
  align-items: stretch;
}
.story-photo {
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 61, 39, 0.12);
  box-shadow: 0 18px 60px rgba(7, 18, 13, 0.08);
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-grid { align-items: stretch; }
.team-card.team-avatar-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}
.team-avatar {
  width: 88px;
  height: 88px;
  padding: 4px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(57, 211, 108, 0.9), rgba(98, 217, 255, 0.85));
  box-shadow: 0 18px 36px rgba(57, 211, 108, 0.16);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card .team-copy {
  padding: 0;
  display: grid;
  gap: 8px;
}
.team-card .team-copy h3 {
  margin: 0;
  font-size: 1.5rem;
}
.team-role {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(13, 61, 39, 0.08);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.review-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.review-badge {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(13, 61, 39, 0.12);
  box-shadow: 0 18px 60px rgba(7, 18, 13, 0.08);
}
.review-badge strong {
  font-size: 1.2rem;
  text-transform: uppercase;
}
.detail-stack {
  display: grid;
  gap: 12px;
}
.detail-stack div {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.detail-stack span {
  display: block;
  color: var(--leaf);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-stack strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}
.split-field {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button-row .button {
  flex: 1 1 220px;
}
.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 61, 39, 0.12);
  box-shadow: 0 18px 60px rgba(7, 18, 13, 0.08);
  min-height: 320px;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}
.placeholder-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.placeholder-tile {
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  gap: 18px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.testimonial-slider article {
  flex: 0 0 min(420px, 85vw);
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: testimonialSlide 18s linear infinite;
}
.testimonial-slider p { margin: 0; color: #fff; font-size: 1.35rem; line-height: 1.35; }
.testimonial-slider strong { display: block; margin-top: 18px; color: var(--leaf); }

.subhero {
  grid-template-columns: minmax(0, 1fr);
  min-height: 560px;
  padding: clamp(76px, 9vw, 128px) max(20px, calc((100vw - 1200px) / 2));
}
.subhero .hero-content { padding: 0; }
.subhero-art, .hero-media {
  position: absolute;
  inset: 0;
}
.subhero-art img, .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.08) contrast(1.06);
}
.terrain-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 46px, rgba(98, 217, 255, 0.14) 47px 48px, transparent 49px 92px),
    linear-gradient(90deg, rgba(57, 211, 108, 0.08) 1px, transparent 1px);
  background-size: 92px 92px, 116px 116px;
  opacity: 0.56;
}

.destination-dropdown {
  margin-bottom: 22px;
  border: 1px solid rgba(13, 61, 39, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}
.destination-dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: 24px;
  color: var(--forest);
  font-weight: 950;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  text-transform: uppercase;
}
.destination-dropdown summary::-webkit-details-marker { display: none; }
.destination-dropdown summary span {
  float: right;
  font-size: 0.86rem;
  color: #677066;
  text-transform: none;
  margin-top: 8px;
}
.destination-dropdown .grid { padding: 0 22px 22px; }

.program-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.program-matrix a {
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 180ms ease, transform 180ms ease;
}
.program-matrix a:hover { background: rgba(57, 211, 108, 0.12); transform: translateX(5px); }
.program-matrix strong, .program-matrix span, .program-matrix small { display: block; }
.program-matrix strong { color: #fff; font-size: 1.25rem; text-transform: uppercase; }
.program-matrix span { margin-top: 8px; color: var(--cyan); font-weight: 900; }
.program-matrix small { margin-top: 10px; color: rgba(255, 255, 255, 0.64); line-height: 1.5; font-size: 0.92rem; }

.lab-panel, .trip-dossier {
  position: sticky;
  top: 108px;
}
.lab-panel { background: #07120d; color: #fff; border-color: rgba(255,255,255,.14); }
.lab-panel p { color: rgba(255,255,255,.72); }
.lab-panel > span, .trip-dossier > span {
  display: block;
  color: var(--leaf);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.lab-stats, .dossier-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.lab-stats div, .dossier-list div {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 61, 39, 0.12);
  background: rgba(255, 255, 255, 0.58);
}
.lab-panel .lab-stats div { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.07); }
.lab-stats strong, .dossier-list strong { display: block; font-size: 1.15rem; }
.lab-stats small, .dossier-list small { display: block; margin-top: 4px; color: #6a756d; }
.lab-panel .lab-stats small { color: rgba(255,255,255,.62); }

.destination-story { align-items: stretch; }
.terrain-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.terrain-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(98, 217, 255, 0.13);
  color: var(--forest);
  font-weight: 850;
}
.vertical-links { display: grid; gap: 12px; }
.vertical-links a {
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13, 61, 39, 0.1);
  transition: transform 180ms ease, border-color 180ms ease;
}
.vertical-links a:hover { transform: translateX(5px); border-color: rgba(57,211,108,.45); }
.vertical-links strong, .vertical-links span { display: block; }
.vertical-links span { margin-top: 6px; color: #5c665e; line-height: 1.5; }

.itinerary-hero {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 42px;
  min-height: 700px;
  padding: clamp(70px, 8vw, 116px) max(20px, calc((100vw - 1200px) / 2));
}
.itinerary-hero .hero-title-lines {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: .9;
}
.itinerary-visual {
  position: relative;
  z-index: 2;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.itinerary-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.itinerary-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(7,18,13,.22), rgba(7,18,13,.86)),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(98,217,255,.18) 35px 36px, transparent 37px 68px);
}
.tour-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}
.tour-overview div {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.tour-overview span, .tour-overview strong { display: block; }
.tour-overview span { color: rgba(255,255,255,.58); font-size: .75rem; text-transform: uppercase; font-weight: 900; letter-spacing: .08em; }
.tour-overview strong { margin-top: 8px; color: #fff; line-height: 1.1; }

.itinerary-shell { align-items: start; }
.trip-dossier .button { width: 100%; margin-top: 10px; }
.day-track { position: relative; }
.day-track::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 170px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--leaf), var(--cyan), var(--sun));
}
.day-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13, 61, 39, 0.1);
  box-shadow: 0 14px 42px rgba(7,18,13,.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.day-card:hover { transform: translateX(6px); border-color: rgba(57,211,108,.45); box-shadow: 0 24px 64px rgba(7,18,13,.12); }
.day-index {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #07120d;
  color: var(--leaf);
  font-weight: 950;
  box-shadow: 0 0 0 8px var(--paper);
}
.day-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-transform: uppercase;
}
.day-card p { color: #4f5d53; margin: 0; }
.next-route { text-align: center; }
.next-route .section-head { margin-left: auto; margin-right: auto; }
.next-route .hero-actions { justify-content: center; }

.contact-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}
.contact-info, .form-card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  border: 1px solid rgba(13,61,39,.12);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 60px rgba(7,18,13,.08);
}
.contact-info {
  background:
    linear-gradient(180deg, rgba(7,18,13,.96), rgba(13,61,39,.94)),
    rgba(255,255,255,.72);
  color: #fff;
}
.contact-info h2 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: .92; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 7px; color: var(--forest); font-weight: 850; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(13,61,39,.15);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.form-status { color: var(--forest); font-weight: 850; }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  background: #25d366;
  color: #06170f;
  font-weight: 930;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.34);
}
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; }

.site-footer {
  background: #07120d;
  color: #fff;
  padding: 64px max(20px, calc((100vw - 1200px) / 2)) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .75fr .85fr 1fr;
  gap: 34px;
}
.footer-grid img { width: 90px; }
.footer-grid p, .footer-links a, .footer-bottom { color: rgba(255,255,255,.68); }
.footer-grid h3 { margin: 0 0 14px; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: var(--leaf); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }

.reveal {
  opacity: 1;
  transform: none;
}
.js-enabled .reveal {
  opacity: 1;
  transform: translateY(28px) scale(.985);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.82,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-enabled .reveal.visible {
  opacity: 1;
  transform: none;
}
.js-enabled .hero .reveal {
  opacity: 1;
  transform: none;
}

@keyframes testimonialSlide { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100% - 18px)); } }

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

@media (max-width: 1060px) {
  .home-hero, .itinerary-hero, .journey-scroll, .trail-feature, .destination-story, .route-lab, .itinerary-shell, .contact-panel { grid-template-columns: 1fr; }
  .hero-photo-stack, .journey-image-panel, .lab-panel, .trip-dossier { position: relative; top: auto; }
  .hero-depth-scene { min-height: 560px; }
  .hero-hang-scene { min-height: 500px; }
  .hero-carousel-track { min-height: 420px; }
  .hero-hang-card { width: clamp(168px, 24vw, 220px); }
  .hero-hang-card[data-slot="-1"] { --card-x: -220px; }
  .hero-hang-card[data-slot="1"] { --card-x: 220px; }
  .hero-hang-card[data-slot="-2"] { --card-x: -400px; }
  .hero-hang-card[data-slot="2"] { --card-x: 400px; }
  .route-ribbon, .world-grid, .category-grid, .cards-5, .cards-4, .cards-3, .cards-2, .footer-grid, .program-matrix, .story-lanes, .tour-overview { grid-template-columns: 1fr 1fr; }
  .home-hero { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1200px); }
  .nav { min-height: 68px; }
  .menu-button { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(7,18,13,.96);
    border: 1px solid rgba(255,255,255,.12);
  }
  .nav-links.open { display: grid; }
  .nav-cta { display: none; }
  .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 6px;
  }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    padding: 8px 0 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .hero-title-lines { font-size: clamp(2rem, 7.3vw, 3.05rem); line-height: .92; overflow-wrap: normal; }
  .home-hero .hero-title-lines { font-size: clamp(1.25rem, 6.6vw, 1.95rem); }
  .home-hero, .subhero, .itinerary-hero { min-height: auto; padding-top: 58px; padding-bottom: 58px; }
  .hero-content { width: 100%; max-width: 100%; padding: 0; }
  .home-hero .hero-content { order: 1; }
  .home-hero .hero-depth-scene { order: 2; }
  .hero-copy { width: 100%; max-width: 32ch; font-size: 1rem; }
  .hero-title-lines span { white-space: nowrap; }
  .home-hero .hero-actions { gap: 10px; width: 100%; flex-direction: column; align-items: center; }
  .home-hero .hero-actions .button { width: min(240px, 100%); justify-content: center; padding: 0 18px; min-height: 48px; font-size: 0.98rem; }
  .hero-depth-scene, .hero-photo-stack, .itinerary-visual, .trail-visual, .journey-image-panel { min-height: 450px; }
  .hero-hang-scene { min-height: 540px; touch-action: pan-y; }
  .hero-carousel-track { min-height: 470px; }
  .hero-hang-rail { left: -4%; right: -4%; }
  .rail-main { top: 8px; height: 112px; }
  .rail-echo { left: 8%; right: 8%; top: 28px; height: 96px; }
  .hero-hang-card { width: min(72vw, 282px); padding: 10px; border-radius: 22px; }
  .hero-hang-card img { aspect-ratio: 1.22; }
  .hero-hang-card::before { top: -34px; height: 34px; }
  .hero-hang-card::after { top: -48px; width: 17px; height: 28px; }
  .hero-hang-card[data-slot="0"] {
    --card-x: 0px;
    --card-y: 118px;
    --card-rotate: 0deg;
    --card-scale: 1;
    --card-opacity: 1;
  }
  .hero-hang-card[data-slot="-1"] {
    --card-x: -92vw;
    --card-y: 124px;
    --card-rotate: -7deg;
    --card-scale: .92;
    --card-opacity: .08;
  }
  .hero-hang-card[data-slot="1"] {
    --card-x: 92vw;
    --card-y: 124px;
    --card-rotate: 7deg;
    --card-scale: .92;
    --card-opacity: .08;
  }
  .hero-hang-card[data-slot="-2"],
  .hero-hang-card[data-slot="2"] {
    --card-x: 0px;
    --card-y: 124px;
    --card-rotate: 0deg;
    --card-scale: .88;
    --card-opacity: 0;
  }
  .hang-card-copy { padding: 10px 4px 2px; }
  .hang-card-copy strong { font-size: 1rem; }
  .hang-card-copy small { font-size: 0.78rem; }
  .hero-carousel-dots { bottom: 18px; }
  .hero-photo-main { inset: 0; }
  .route-ribbon, .world-grid, .category-grid, .cards-5, .cards-4, .cards-3, .cards-2, .footer-grid, .program-matrix, .story-lanes, .tour-overview, .form-grid { grid-template-columns: 1fr; }
  .route-ribbon { margin-top: 0; border-radius: 0; width: 100%; }
  .route-ribbon a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { padding: 62px 0; }
  .section-head h2, .trail-copy h2, .story-panel h2, .lab-panel h2, .trip-dossier h2 { font-size: clamp(2.05rem, 11vw, 3.5rem); }
  .route-scroll-pin {
    right: 6px;
    height: 236px;
    width: 46px;
    top: auto;
    bottom: 18px;
    transform: none;
  }
  .route-scroll-marker {
    width: 28px;
    height: 28px;
    border-width: 3px;
  }
  .route-scroll-core {
    width: 8px;
    height: 8px;
  }
  .team-card.team-avatar-card { padding: 20px; }
  .team-avatar { width: 76px; height: 76px; }
  .story-split, .review-badge-grid, .placeholder-board, .split-field { grid-template-columns: 1fr; }
  .mobile-itinerary-actions { display: flex; }
  .day-track::before { display: none; }
  .day-card { grid-template-columns: 1fr; }
  .day-index { box-shadow: none; }
  .whatsapp-float span { display: none; }
}
