:root {
  --bg: #fff9f9;
  --ink: #2c221c;
  --accent: #ef7922;
  --white: #2c221c;
  --white-60: rgba(44, 34, 28, 0.62);
  --white-50: rgba(44, 34, 28, 0.5);
  --white-40: rgba(44, 34, 28, 0.4);
  --white-20: rgba(44, 34, 28, 0.16);
  --white-10: rgba(44, 34, 28, 0.08);
  --icon-grey: #8a7a70;
  --max: 1600px;
  --pad: clamp(20px, 4vw, 48px);
  --gutter: max(var(--pad), calc((100vw - var(--max)) / 2));
  --font: Inter, system-ui, sans-serif;
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

.muted {
  color: var(--white-50);
}

.muted em {
  font-style: normal;
  color: var(--white-40);
}

/* Type */
.h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white-60);
  margin-bottom: 20px;
}

.eyebrow__mark {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.55;
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section-head {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head--ink {
  text-align: left;
}

.section-head--ink .ink-reveal {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-inline: 0;
  text-align: left;
}

.ink-reveal__char {
  color: rgba(44, 34, 28, 0.16);
  transition: color 0.22s ease;
}

.ink-reveal__char.is-on {
  color: var(--ink);
}

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.section-head--split .muted {
  max-width: 360px;
  font-size: 15px;
}

/* Spark / 4-point star */
.spark {
  width: 8px;
  height: 8px;
  display: inline-block;
  flex-shrink: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}

.spark--sm {
  width: 10px;
  height: 10px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-radius 0.28s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: #1f1814;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--white-20);
}

.btn-secondary:hover {
  background: var(--white-10);
}

/* Header */
.header {
  --header-line: rgba(255, 255, 255, 0.32);
  --header-h: 96px;
  --header-move: 0.82s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid var(--header-line);
  transition:
    background var(--header-move),
    color var(--header-move),
    border-color var(--header-move),
    box-shadow var(--header-move),
    backdrop-filter var(--header-move);
}

.header.is-scrolled:not(.is-light) {
  background: rgba(16, 12, 10, 0.28);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.header.is-light {
  --header-h: 64px;
  --header-line: rgba(44, 34, 28, 0.14);
  color: var(--ink);
  background: rgba(255, 249, 249, 0.86);
  border-bottom-color: var(--header-line);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: none;
}

.header__in {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  transition: min-height var(--header-move);
}

.header__brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.header__brand {
  justify-content: flex-start;
  padding: 0 28px 0 0;
  border-right: 1px solid var(--header-line);
}

.brand-lockup {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 76px;
  overflow: visible;
  transition: width var(--header-move), height var(--header-move);
}

.brand-lockup img:not(.brand-lockup__wide) {
  grid-area: 1 / 1;
  display: block;
  object-fit: contain;
  transition:
    width var(--header-move),
    height var(--header-move),
    opacity 0.7s ease,
    transform var(--header-move);
}

.brand-lockup__named {
  width: 100px;
  height: 68px;
  transform: none;
}

.brand-lockup__icon {
  width: 32px;
  height: 32px;
  opacity: 0;
  transform: translateY(-1px) scale(0.84);
}

.header.is-light .brand-lockup {
  width: 32px;
  height: 100%;
}

.header.is-light .brand-lockup__named,
.header.is-light .brand-lockup__icon {
  width: 32px;
  height: 32px;
}

.header.is-light .brand-lockup__named {
  opacity: 0;
  transform: translateY(-1px);
}

.header.is-light .brand-lockup__icon {
  opacity: 1;
  transform: none;
}

.brand-lockup__wide,
.brand-lockup img.brand-lockup__wide {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 0 20px;
}

.header-nav__link {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
}

.header-nav__link:hover {
  opacity: 0.6;
}

.mega {
  position: static;
}

.mega__trigger {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mega__trigger:hover,
.mega.is-open .mega__trigger {
  opacity: 1;
}

.mega__chevron {
  width: 10px;
  height: 10px;
  display: block;
  transition: transform 0.22s ease;
}

.mega.is-open .mega__chevron {
  transform: rotate(180deg);
}

.mega__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  padding-top: var(--header-h);
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid rgba(44, 34, 28, 0.12);
  box-shadow: 0 28px 60px rgba(44, 34, 28, 0.1);
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -8px, 0);
  transition:
    transform 0.32s var(--reveal-ease),
    visibility 0.28s ease;
}

.mega__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 249, 249, 0.72);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.mega.is-open .mega__panel {
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.mega__rule {
  height: 0;
  border-top: 1px solid rgba(44, 34, 28, 0.22);
}

.mega__in {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

.mega__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.2fr) minmax(0, 0.82fr) minmax(260px, 0.92fr);
  align-items: stretch;
}

.mega__col,
.mega__aside {
  min-width: 0;
  padding: 22px 28px;
  border-right: 1px solid rgba(44, 34, 28, 0.1);
}

.mega__col:first-child {
  padding-left: 0;
}

.mega__aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 0;
  border-right: 0;
}

.mega__h {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-50);
}

.mega__h--next {
  margin-top: 22px;
}

.mega__list {
  display: grid;
  gap: 1px;
}

.mega__list--split {
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
}

.mega__list a {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  min-height: 28px;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.mega__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--reveal-ease);
  pointer-events: none;
}

.mega__list a span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.mega__list a em {
  flex-shrink: 0;
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: var(--white-50);
}

.mega__list a:hover::after,
.mega__list a:focus-visible::after,
.mega__list a.is-on::after {
  transform: scaleX(1);
}

.mega__badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.mega__badge--rec {
  background: rgba(239, 121, 34, 0.12);
  border-color: rgba(239, 121, 34, 0.22);
  color: #c45d12;
}

.mega__badge--hot {
  background: rgba(44, 34, 28, 0.08);
  border-color: rgba(44, 34, 28, 0.12);
  color: var(--ink);
}

.mega__feature,
.mega__blog,
.mega__banner {
  display: grid;
  border: 1px solid rgba(44, 34, 28, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
}

.mega__feature-media {
  position: relative;
  display: block;
  height: 118px;
  overflow: hidden;
  background: rgba(44, 34, 28, 0.06);
}

.mega__feature-media img,
.mega__blog img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.mega__feature-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.55s var(--reveal-ease),
    transform 0.7s var(--reveal-ease);
}

.mega__feature-media img.is-on {
  opacity: 1;
  transform: none;
  z-index: 1;
}

.mega__feature-body {
  transition: opacity 0.28s ease;
}

.mega__feature-body.is-out {
  opacity: 0;
}

.mega__feature-media .mega__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  transition: opacity 0.28s ease;
}

.mega__feature-body,
.mega__blog-copy,
.mega__banner {
  display: grid;
  gap: 4px;
  padding: 10px 12px 12px;
}

.mega__feature-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.mega__feature-body strong,
.mega__blog-copy strong,
.mega__banner strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.mega__feature-body span:last-child {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.4;
}

.mega__blog {
  grid-template-columns: 88px 1fr;
  align-items: stretch;
}

.mega__blog img {
  height: 100%;
  min-height: 78px;
}

.mega__banner {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.mega__banner .mega__feature-meta,
.mega__banner-cta {
  color: rgba(255, 249, 249, 0.62);
}

.mega__banner-cta {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
}

.mega__foot {
  border-top: 1px solid rgba(44, 34, 28, 0.12);
}

.mega__foot-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  font-size: 12px;
  color: var(--white-50);
}

.mega__all {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.mega__all:hover,
.mega__feature:hover,
.mega__blog:hover,
.mega__banner:hover {
  opacity: 0.86;
}

.header__brand,
.header__cta {
  position: relative;
  z-index: 2;
}

.header.is-mega,
.header.is-scrolled.is-mega,
.header.is-light.is-mega {
  --header-line: rgba(44, 34, 28, 0.12);
  color: var(--ink);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition-duration: 0.28s;
}

.header.is-mega:not(.is-light) .brand-lockup__named {
  opacity: 0;
}

.header.is-mega:not(.is-light) .brand-lockup__icon {
  opacity: 1;
  transform: none;
}

.header__cta {
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--header-line);
}

.header__explore {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
}

.header__explore:hover {
  opacity: 0.6;
}

.lang {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 96px;
  width: 96px;
  border-right: 1px solid var(--header-line);
}

.lang__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang__code {
  display: inline-block;
  width: 1.7em;
  text-align: center;
}

.lang__toggle:hover {
  opacity: 0.6;
}

.lang__globe,
.lang__chevron {
  display: block;
  flex-shrink: 0;
}

.lang__globe {
  width: 16px;
  height: 16px;
}

.lang__chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.lang.is-open .lang__chevron {
  transform: rotate(180deg);
}

.lang__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  min-width: max(100%, 168px);
  padding: 6px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(44, 34, 28, 0.1);
  box-shadow: 0 16px 40px rgba(44, 34, 28, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 0.22s ease,
    transform 0.22s var(--reveal-ease),
    visibility 0.22s ease;
}

.lang.is-open .lang__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.lang__menu button {
  display: block;
  width: 100%;
  padding: 9px 12px;
  text-align: left;
  font-size: 14px;
}

.lang__menu button:hover,
.lang__menu button[aria-selected="true"] {
  background: rgba(44, 34, 28, 0.06);
}

.header__burger {
  display: none;
  position: relative;
  align-self: stretch;
  width: 64px;
  min-height: 44px;
}

.header__burger-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.header__burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.36s var(--reveal-ease),
    top 0.36s var(--reveal-ease),
    width 0.36s var(--reveal-ease),
    opacity 0.18s ease;
}

.header__burger-line:nth-child(1) {
  top: 0;
}

.header__burger-line:nth-child(2) {
  top: 7px;
  width: 70%;
}

.header__burger-line:nth-child(3) {
  top: 14px;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  width: 100%;
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.header.is-menu {
  --header-line: rgba(44, 34, 28, 0.14);
  color: var(--ink);
  background: var(--bg);
  border-bottom-color: var(--header-line);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 108px var(--pad) 40px;
  overflow-y: auto;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu .btn-primary {
  width: fit-content;
  margin-top: 12px;
  font-size: 14px;
}

.mobile-menu__langs {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  font-size: 16px;
}

.mobile-menu__langs button {
  color: var(--white-50);
}

.mobile-menu__langs button[aria-selected="true"],
.mobile-menu__langs button.is-active {
  color: var(--ink);
}

/* Hero */
.hero {
  --hero-h: 864px;
  position: relative;
  height: var(--hero-h);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #7eb7e4;
}

.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide__sky,
.hero-slide__mountain {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.hero-slide__sky {
  inset: -12% 0 -28%;
  z-index: 1;
  background: linear-gradient(180deg, #8ec8f0 0%, #6bb4e8 50%, #9dcef2 100%);
}

.hero-slide__sky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.78;
}

.hero-slide__intro {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(148px + 13%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.hero-slide__titles {
  position: relative;
  z-index: 2;
  text-align: center;
  will-change: transform;
}

.hero-slide__kicker {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-slide__title {
  max-width: 14ch;
  margin-inline: auto;
  font-size: clamp(34px, 4.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-slide__lead {
  position: relative;
  z-index: 5;
  max-width: 40ch;
  margin-top: 18px;
  padding: 0 var(--pad);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45), 0 10px 28px rgba(0, 0, 0, 0.4);
}

.hero-slide__mountain {
  left: -6%;
  right: -6%;
  bottom: -22%;
  z-index: 4;
  height: 82%;
}

.hero-slide__mountain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.hero-reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  filter: blur(10px);
}

.hero:not(.is-ready) .hero-reveal {
  opacity: 0;
  filter: blur(10px);
  transition: none;
}

.hero-reveal--sky {
  transform: scale(1.08);
  filter: blur(12px);
}

.hero-reveal--title {
  transform: translate3d(0, 56px, 0);
}

.hero-reveal--mountain {
  transform: translate3d(0, 80px, 0);
}

.hero-reveal--trip-title {
  transform: translate3d(0, 56px, 0);
}

.hero-reveal--thumbs {
  transform: translate3d(28px, 0, 0);
}

.hero.is-ready .hero-reveal:not(.hero-reveal--trip):not(.hero-reveal--thumbs) {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 1s var(--reveal-ease),
    transform 1.05s var(--reveal-ease),
    filter 0.9s ease;
}

.hero.is-ready .hero-reveal--sky {
  opacity: 0.78;
  transition-delay: 0.02s;
}

.hero.is-ready .hero-reveal--kicker {
  transition-delay: 0.16s;
}

.hero.is-ready .hero-reveal--title {
  transition-delay: 0.3s;
}

.hero.is-ready .hero-reveal--mountain {
  transition-delay: 0.46s;
}

.hero.is-ready .hero-reveal--copy {
  transition-delay: 0.62s;
}

.hero.is-ready .hero-reveal--search {
  transition-delay: 0.78s;
}

.hero.is-slider-in .hero-reveal--trip,
.hero.is-slider-in .hero-reveal--thumbs {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 1s var(--reveal-ease),
    transform 1.05s var(--reveal-ease),
    filter 0.9s ease;
}

.hero.is-slider-in .hero-reveal--trip-kicker {
  transition-delay: 0.12s;
}

.hero.is-slider-in .hero-reveal--trip-title {
  transition-delay: 0.26s;
}

.hero.is-slider-in .hero-reveal--trip-lead {
  transition-delay: 0.42s;
}

.hero.is-slider-in .hero-reveal--trip-index {
  transition-delay: 0.54s;
}

.hero.is-slider-in .hero-reveal--trip-meta {
  transition-delay: 0.62s;
}

.hero.is-slider-in .hero-reveal--trip-actions {
  transition-delay: 0.74s;
}

.hero.is-slider-in .hero-reveal--thumbs {
  transition-delay: 0.38s;
}

.hero[data-hero-mode="slider"]:not(.is-slider-in) .hero-trips {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(12px);
}

.hero.is-slider-in .hero-trips {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 1.1s var(--reveal-ease),
    transform 1.25s var(--reveal-ease),
    filter 1s ease;
}

.hero[data-hero-mode="slider"]:not(.is-slider-in) .hero-thumbs__item {
  opacity: 0;
  transform: translate3d(18px, 12px, 0);
  filter: blur(8px);
  transition: none;
}

.hero.is-slider-in .hero-thumbs__item {
  animation: hero-slider-thumb-in 0.82s var(--reveal-ease) backwards;
}

.hero.is-slider-in .hero-thumbs__item:nth-child(1) { animation-delay: 0.46s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(2) { animation-delay: 0.54s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(3) { animation-delay: 0.62s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(4) { animation-delay: 0.7s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(5) { animation-delay: 0.78s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(6) { animation-delay: 0.86s; }

@keyframes hero-slider-thumb-in {
  from {
    opacity: 0;
    transform: translate3d(18px, 12px, 0);
    filter: blur(8px);
  }
}

.hero-video,
.hero-trips {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video__media,
.hero-trips__frame,
.hero-trips__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__media {
  display: block;
  transform: scale(1.04);
}

.hero-video__veil,
.hero-trips__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video__veil {
  background:
    linear-gradient(180deg, rgba(16, 12, 10, 0.28) 0%, rgba(16, 12, 10, 0.12) 38%, rgba(16, 12, 10, 0.45) 100%);
}

.hero-trips__veil {
  background:
    linear-gradient(90deg, rgba(16, 12, 10, 0.62) 0%, rgba(16, 12, 10, 0.22) 48%, rgba(16, 12, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 12, 10, 0.2) 0%, transparent 28%, rgba(16, 12, 10, 0.42) 100%);
}

.hero-trips__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s ease, transform 8s linear;
}

.hero-trips__frame.is-on {
  opacity: 1;
  transform: scale(1);
}

.hero[data-hero-mode="video"] .hero-slide__intro,
.hero[data-hero-mode="slider"] .hero-trip-copy {
  z-index: 5;
}

.hero[data-hero-mode="video"] .hero-slide__lead {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-trip-copy {
  position: absolute;
  left: var(--gutter);
  right: calc(var(--gutter) + 95px + 40px);
  top: 26%;
  z-index: 5;
  max-width: 560px;
  pointer-events: auto;
}

.hero.is-thumbs-wide .hero-trip-copy {
  right: calc(100vw - var(--thumbs-left) + 28px);
}

.hero-trip-copy__title {
  max-width: 16ch;
  margin-top: 8px;
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-trip-copy__lead,
.hero-trip-copy__meta {
  max-width: 38ch;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-trip-copy__index,
.hero-trip-copy__meta {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-trip-copy__index {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.hero-trip-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trip-copy__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: border-radius 0.28s ease, opacity 0.2s ease;
}

.hero-trip-copy__btn--solid {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.hero-trip-copy__btn:hover {
  opacity: 0.82;
}

.hero-thumbs {
  --thumb-idle: 95px;
  --thumb-inset: 10px;
  position: absolute;
  top: 96px;
  right: var(--gutter);
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  width: calc(var(--thumb-idle) + var(--thumb-inset));
  padding: 8px 0 12px var(--thumb-inset);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  gap: 6px;
}

.hero.is-thumbs-wide .hero-thumbs {
  left: var(--thumbs-left);
  width: auto;
}

.hero-thumbs__item {
  position: relative;
  min-height: 0;
  width: var(--thumb-idle);
  height: 100%;
  justify-self: start;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.38;
  filter: saturate(0.55);
  transition:
    width 0.45s var(--reveal-ease),
    opacity 0.28s ease,
    filter 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.hero-thumbs__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-thumbs__meta {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.hero-thumbs__num {
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.hero-thumbs__name {
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-thumbs__item.is-on {
  width: 100%;
  opacity: 1;
  filter: none;
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.hero-thumbs__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.hero-thumbs__item.is-on::after {
  animation: hero-thumb-load 6.5s linear forwards;
}

.hero-thumbs.is-paused .hero-thumbs__item.is-on::after {
  animation-play-state: paused;
}

@keyframes hero-thumb-load {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-thumbs__item.is-on .hero-thumbs__name {
  opacity: 1;
  transform: none;
}

.hero-thumbs__item:hover {
  opacity: 0.78;
  filter: saturate(0.85);
}

.hero-thumbs__item.is-on:hover {
  opacity: 1;
  filter: none;
}

.hero-picker {
  position: fixed;
  left: max(16px, var(--gutter));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

body:has(.cookie:not([hidden])) .hero-picker {
  bottom: max(92px, calc(env(safe-area-inset-bottom) + 84px));
}

.hero-picker__toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #14110f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hero-picker__toggle svg {
  width: 18px;
  height: 18px;
}

.hero-picker__toggle:hover,
.hero-picker.is-open .hero-picker__toggle {
  background: #1d1815;
}

.hero-picker__menu {
  min-width: 228px;
  padding: 14px 10px 10px;
  background: rgba(22, 18, 16, 0.78);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-picker__menu[hidden] {
  display: none;
}

.hero-picker__label {
  padding: 0 10px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.hero-picker__option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
}

.hero-picker__option:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-picker__check {
  width: 14px;
  height: 10px;
  opacity: 0;
  border-right: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}

.hero-picker__option.is-on .hero-picker__check,
.hero-picker__option[aria-selected="true"] .hero-picker__check {
  opacity: 1;
}

.hero-picker__radii {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 2px 6px 4px;
}

.hero-picker__radii [data-radius-option] {
  min-height: 36px;
  padding: 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 600;
}

.hero-picker__radii [data-radius-option]:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-picker__radii [data-radius-option].is-on,
.hero-picker__radii [data-radius-option][aria-selected="true"] {
  background: #fff;
  color: #14110f;
  border-color: #fff;
}

.hero[data-hero-mode="slider"] .trip-search {
  width: min(100% - var(--gutter) * 2, 920px);
  margin-right: auto;
  margin-left: var(--gutter);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 0.9s var(--reveal-ease),
    transform 0.95s var(--reveal-ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Trip search */
.trip-search {
  --search-glass: rgba(255, 249, 249, 0.94);
  --search-line: rgba(44, 34, 28, 0.1);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 6;
  width: min(100% - var(--gutter) * 2, 1080px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: var(--ink);
  pointer-events: auto;
}

.trip-search__advanced {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-bottom: 0;
  pointer-events: none;
  transition:
    grid-template-rows 0.32s var(--reveal-ease),
    opacity 0.28s ease,
    margin-bottom 0.32s var(--reveal-ease);
}

.trip-search.is-advanced .trip-search__advanced {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
}

.trip-search__shell {
  background: var(--search-glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(20, 14, 10, 0.18);
  transition: border-radius 0.28s ease;
}

.trip-search__advanced-in {
  overflow: hidden;
  min-height: 0;
  border-bottom: 1px solid var(--search-line);
}

.trip-search.is-advanced .trip-search__advanced-in {
  overflow: visible;
}

.trip-search__advanced-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trip-search__checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--search-line);
}

.trip-search__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--search-line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
}

.trip-search__check input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.trip-search__box {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(44, 34, 28, 0.28);
  background: #fff;
}

.trip-search__check:hover {
  border-color: rgba(44, 34, 28, 0.28);
}

.trip-search__check:has(:checked) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.trip-search__check:has(:checked) .trip-search__box {
  border-color: var(--bg);
  background: var(--accent);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.trip-search__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trip-search__chips [role="option"] {
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--search-line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 13px;
  line-height: 1.2;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.trip-search__chips [role="option"]:hover {
  border-color: rgba(44, 34, 28, 0.28);
}

.trip-search__chips [role="option"].is-active,
.trip-search__chips [role="option"][aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.trip-search__bar {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr)) auto;
  align-items: stretch;
  min-height: 76px;
  padding: 6px;
}

.trip-search__field {
  position: relative;
  min-width: 0;
  padding: 8px 16px 8px 20px;
}

.trip-search__field:not(:first-child) {
  border-left: 1px solid var(--search-line);
}

.trip-search__bar > .trip-search__field:last-of-type {
  padding-right: 0;
}

.trip-search__label {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}

.trip-search__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.trip-search__trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trip-search__trigger svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: var(--white-50);
  transition: transform 0.2s ease;
}

.trip-search__field.is-open .trip-search__trigger svg {
  transform: rotate(180deg);
}

.trip-search__field.is-set .trip-search__trigger {
  color: var(--ink);
}

.trip-search__panel {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: calc(100% + 10px);
  z-index: 8;
  max-height: 248px;
  overflow: auto;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(44, 34, 28, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(20, 14, 10, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 0.2s ease,
    transform 0.22s var(--reveal-ease),
    visibility 0.2s ease;
}

.trip-search__field[data-field="destination"] .trip-search__panel {
  height: 248px;
  min-width: 260px;
  right: auto;
  padding: 0 0 6px;
}

.trip-search__field.is-open .trip-search__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.trip-search__find {
  position: sticky;
  top: 0;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid var(--search-line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.trip-search__field[data-field="destination"] .trip-search__panel [role="option"] {
  margin-inline: 6px;
}

.trip-search__find::placeholder {
  color: var(--white-40);
}

.trip-search__panel [role="option"] {
  display: block;
  width: 100%;
  padding: 9px 12px;
  border-radius: 0;
  text-align: left;
  font-size: 14px;
}

.trip-search__panel [role="option"].is-miss {
  display: none;
}

.trip-search__empty {
  display: none;
  padding: 18px 12px;
  color: var(--white-50);
  font-size: 14px;
}

.trip-search__empty.is-on {
  display: block;
}

.trip-search__panel [role="option"]:hover,
.trip-search__panel [role="option"].is-active,
.trip-search__panel [role="option"][aria-selected="true"] {
  background: rgba(44, 34, 28, 0.06);
}

.trip-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
  min-height: 56px;
  margin-left: 30px;
  padding: 0 38px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease, border-radius 0.28s ease;
}

.trip-search__submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.trip-search__submit:hover {
  background: #d96b1c;
}

.trip-search__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  margin-top: 12px;
  padding: 6px 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.trip-search__more:hover {
  opacity: 0.78;
}

.trip-search__more-label {
  display: inline-grid;
  justify-items: start;
}

.trip-search__more-text {
  grid-area: 1 / 1;
  transition: opacity 0.32s ease, transform 0.32s var(--reveal-ease);
}

.trip-search__more-text--hide {
  opacity: 0;
  transform: translateY(5px);
}

.trip-search.is-advanced .trip-search__more-text--show {
  opacity: 0;
  transform: translateY(-5px);
}

.trip-search.is-advanced .trip-search__more-text--hide {
  opacity: 1;
  transform: none;
}

.trip-search__more.is-set::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 121, 34, 0.28);
}

.trip-search__more-icon {
  position: relative;
  width: 12px;
  height: 12px;
}

.trip-search__more-icon::before,
.trip-search__more-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.trip-search__more-icon::before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 1.5px;
}

.trip-search__more-icon::after {
  top: 0;
  left: 5px;
  width: 1.5px;
  height: 12px;
}

.trip-search.is-advanced .trip-search__more-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Destination pin slider */
.dest-pin {
  --dest-travel: 0px;
  --dest-inset: var(--gutter);
  height: calc(100vh + var(--dest-travel));
}

.dest-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 108px 0 32px;
  background: var(--bg);
  overflow: hidden;
}

.dest-pin__head .section-head {
  margin-bottom: 28px;
}

.dest-pin__viewport {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.dest-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding-inline: var(--dest-inset);
  width: max-content;
  will-change: transform;
}

.dest-slide {
  position: relative;
  flex: 0 0 min(38vw, 400px);
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  min-height: 0;
  transition: border-radius 0.28s ease;
}

.dest-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--reveal-ease);
}

.dest-slide:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.dest-slide:hover img {
  transform: scale(1.06);
}

.dest-slide::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 52%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(255, 249, 249, 0.22) 0%,
    rgba(255, 249, 249, 0.08) 48%,
    rgba(255, 249, 249, 0) 100%
  );
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  -webkit-mask-image: linear-gradient(to top, #000 18%, rgba(0, 0, 0, 0.55) 58%, transparent 100%);
  mask-image: linear-gradient(to top, #000 18%, rgba(0, 0, 0, 0.55) 58%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.dest-slide:hover::before,
.dest-slide:focus-visible::before {
  opacity: 0;
}

.dest-slide__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20, 14, 10, 0.42) 0%,
    rgba(20, 14, 10, 0.12) 42%,
    rgba(20, 14, 10, 0.06) 100%
  );
  transition: opacity 0.5s ease;
}

.dest-slide:hover .dest-slide__shade,
.dest-slide:focus-visible .dest-slide__shade {
  opacity: 0.35;
}

.dest-slide__body {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 22px;
}

.dest-slide__count {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.dest-slide h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  text-shadow: 0 8px 24px rgba(20, 14, 10, 0.35);
}

.dest-slide--all {
  background: var(--ink);
  color: var(--bg);
  box-shadow: inset 0 0 0 1px rgba(255, 249, 249, 0.14);
}

.dest-slide--all::before,
.dest-slide--all .dest-slide__shade {
  display: none;
}

.dest-slide--all h3 {
  text-shadow: none;
}

.dest-slide--all .dest-slide__count {
  background: rgba(255, 249, 249, 0.1);
}

.dest-slide__go {
  position: absolute;
  top: 22px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 249, 249, 0.28);
  border-radius: 50%;
  transition: border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.dest-slide__go svg {
  width: 22px;
  height: 22px;
}

.dest-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.dest-slide--all:hover,
.dest-slide--all:focus-visible {
  background: #1f1814;
}

.dest-slide--all:hover .dest-slide__go,
.dest-slide--all:focus-visible .dest-slide__go {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}

.dest-slide--all:hover .dest-slide__cta,
.dest-slide--all:focus-visible .dest-slide__cta {
  color: var(--accent);
}

.dest-pin__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.dest-pin__meter {
  flex: 1;
  height: 2px;
  background: rgba(44, 34, 28, 0.12);
  overflow: hidden;
}

.dest-pin__meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.dest-pin__step {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--white-50);
}

.dest-pin.is-static {
  height: auto;
}

.dest-pin.is-static .dest-pin__sticky {
  position: relative;
  height: auto;
  padding-bottom: 56px;
}

.dest-pin.is-static .dest-pin__viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dest-pin.is-static .dest-track {
  transform: none !important;
}

/* Featured trips */
.featured {
  --featured-inset: var(--gutter);
  --featured-line: rgba(44, 34, 28, 0.12);
  overflow-x: clip;
}

.featured-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: var(--featured-inset);
  border-top: 1px solid var(--featured-line);
  border-bottom: 1px solid var(--featured-line);
}

.featured-item {
  min-width: 0;
  padding: 28px 24px 32px;
  border-right: 1px solid var(--featured-line);
  border-bottom: 1px solid var(--featured-line);
}

.featured-item:nth-child(3n) {
  border-right: none;
}

.featured-item:nth-last-child(-n + 3) {
  border-bottom: none;
}

.featured-item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.featured-item__link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.featured-item__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition: border-radius 0.28s ease;
}

.featured-item__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s var(--reveal-ease);
}

.featured-item__link:hover img,
.featured-item__link:focus-visible img {
  transform: scale(1.05);
}

.featured-item__tag,
.featured-item__flag,
.featured-item__len {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: rgba(255, 249, 249, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--ink);
}

.featured-item__tag {
  top: 12px;
  left: 12px;
}

.featured-item__flag {
  top: 12px;
  right: 12px;
}

.featured-item__flag--rec,
.featured-item__flag--last,
.featured-item__flag--sale {
  background: var(--accent);
  color: #fff9f9;
}

.featured-item__len {
  left: 12px;
  bottom: 12px;
}

.featured-item__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 2px 0;
}

.featured-item__place {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.featured-item__text h3 {
  margin: 6px 0 8px;
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.featured-item__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.featured-item__rating strong {
  font-weight: 600;
}

.featured-item__rating span:last-child {
  color: var(--white-50);
}

.stars {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--accent);
}

.featured-item__lead {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 8px 0 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--white-60);
}

.featured-item__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 12px;
  margin-bottom: 28px;
  font-size: 13px;
}

.featured-item__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-item__meta svg {
  width: 14px;
  height: 14px;
  color: var(--icon-grey);
  flex-shrink: 0;
}

.featured-item__diff {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.featured-item__diff i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--white-20);
  font-style: normal;
}

.featured-item__diff[data-lvl="2"] i:nth-child(-n + 2),
.featured-item__diff[data-lvl="3"] i:nth-child(-n + 3),
.featured-item__diff[data-lvl="4"] i:nth-child(-n + 4),
.featured-item__diff[data-lvl="5"] i:nth-child(-n + 5) {
  background: var(--accent);
}

.featured-item__spots {
  color: #c45d12;
  font-weight: 500;
}

.featured-item__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--featured-line);
}

.featured-item__cost > span {
  display: block;
  font-size: 12px;
  color: var(--white-50);
}

.featured-item__cost strong {
  display: block;
  font-size: clamp(22px, 1.6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.featured-item__cost em {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-style: normal;
  color: var(--white-40);
}

.featured-item__was {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.featured-item__was s {
  font-size: 13px;
  font-weight: 500;
  color: var(--white-40);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.featured-item__off {
  display: inline-block;
  padding: 2px 6px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.featured-item__cost--sale strong {
  color: var(--accent);
}

.featured-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.featured-item__link:hover .featured-item__cta,
.featured-item__link:focus-visible .featured-item__cta {
  color: var(--accent);
}

/* Combine extras */
.combine {
  --combine-line: rgba(44, 34, 28, 0.12);
  overflow-x: clip;
  padding-bottom: clamp(20px, 3vw, 36px);
}

.combine__intro {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.combine__intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.7fr);
  gap: 28px 48px;
  align-items: end;
  margin-bottom: 28px;
}

.combine__lead {
  max-width: 38ch;
  font-size: 17px;
  line-height: 1.45;
  color: var(--white-60);
}

.combine__mix {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 12px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.combine__mix-trip {
  color: var(--ink);
}

.combine__mix-plus {
  color: var(--white-40);
  font-weight: 500;
}

.combine__mix-item {
  color: var(--ink);
}

.combine__stage {
  border-top: 1px solid var(--combine-line);
  border-bottom: 1px solid var(--combine-line);
}

.combine__board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--combine-line);
}

.combine-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 32px 28px 36px;
  border-right: 1px solid var(--combine-line);
  color: inherit;
}

.combine-card:first-child {
  padding-left: var(--gutter);
}

.combine-card:last-child {
  padding-right: var(--gutter);
  border-right: none;
}

.combine-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.combine-card__plus {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--white-40);
}

.combine-card:last-child .combine-card__plus {
  right: var(--gutter);
}

.combine-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--ink);
}

.combine-card h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.combine-card p {
  max-width: 34ch;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--white-60);
}

.combine-card ul {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.combine-card li {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.combine-card li::before {
  content: "· ";
  color: var(--white-40);
}

.combine-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.combine__path {
  --path-mark: 34px;
  --path-top: 32px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.combine__path::before {
  content: "";
  position: absolute;
  top: calc(var(--path-top) + var(--path-mark) / 2);
  left: calc(var(--gutter) + var(--path-mark) / 2);
  right: calc(var(--gutter) + var(--path-mark) / 2);
  height: 1px;
  background: var(--combine-line);
  pointer-events: none;
}

.combine__path li {
  position: relative;
  z-index: 1;
  padding: var(--path-top) 28px 36px;
}

.combine__path li:first-child {
  padding-left: var(--gutter);
}

.combine__path li:last-child {
  padding-right: var(--gutter);
}

.combine__path-n {
  display: grid;
  place-items: center;
  width: var(--path-mark);
  height: var(--path-mark);
  margin: 0 0 18px;
  border: 1px solid var(--combine-line);
  background: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.combine__path strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.combine__path p {
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.4;
  color: var(--white-60);
}

/* Destinations stay on the cream page canvas so #efeded continents read.
   How + team use the same fill, so land meets the next band without a fade. */
.destinations {
  padding-top: clamp(24px, 3.5vw, 40px);
  padding-bottom: 0;
}

.destinations__lead {
  margin-top: 16px;
  max-width: 46ch;
  font-size: 18px;
  color: var(--white-50);
}

.dest-map {
  position: relative;
  z-index: 0;
  margin-top: 4px;
  margin-bottom: -2.8%;
  overflow: visible;
}

.dest-map__earth {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.dest-map__cta {
  display: none;
}

.dest-map__dots {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dest-map__dot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 5px rgba(239, 121, 34, 0.16),
    0 0 16px rgba(239, 121, 34, 0.55);
  opacity: 0;
  transform: scale(0.15);
  transition:
    width 0.28s var(--reveal-ease),
    height 0.28s var(--reveal-ease),
    margin 0.28s var(--reveal-ease),
    opacity 0.45s ease,
    transform 0.45s var(--reveal-ease),
    box-shadow 0.28s ease;
}

.dest-map__dot::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(239, 121, 34, 0.42);
  opacity: 0;
  pointer-events: none;
}

.dest-map__dot.is-on {
  opacity: 1;
  transform: none;
}

.dest-map__dot.is-on::before {
  animation: dest-dot-pulse var(--pulse-dur, 2.8s) var(--pulse-delay, 0s) ease-out infinite;
}

.dest-map__mark {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.6);
  filter: brightness(0) invert(1);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dest-map__dot:hover,
.dest-map__dot:focus-visible,
.dest-map__dot.is-open {
  z-index: 5;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  transform: none;
  outline: none;
  box-shadow:
    0 0 0 6px rgba(239, 121, 34, 0.18),
    0 0 18px rgba(239, 121, 34, 0.5);
}

.dest-map__dot:hover::before,
.dest-map__dot:focus-visible::before,
.dest-map__dot.is-open::before {
  animation: none;
  opacity: 0;
}

.dest-map__dot:hover .dest-map__mark,
.dest-map__dot:focus-visible .dest-map__mark,
.dest-map__dot.is-open .dest-map__mark {
  opacity: 1;
  transform: none;
}

.dest-map__tip {
  display: none;
}

.dest-map__card {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(44, 34, 28, 0.1);
  box-shadow: 0 18px 40px rgba(44, 34, 28, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition: opacity 0.2s ease, transform 0.22s var(--reveal-ease), border-radius 0.28s ease;
}

.dest-map__card.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.dest-map__card-img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.dest-map__card-body {
  display: grid;
  gap: 8px;
  padding: 12px 12px 13px;
}

.dest-map__card-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.dest-map__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  color: var(--white-50);
}

.dest-map__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
}

@keyframes dest-dot-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.7);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(2.15);
  }
}

/* How it works */
.how,
.team {
  --band: #efeded;
  --band-line: rgba(44, 34, 28, 0.12);
  background: var(--band);
}

.how {
  position: relative;
  z-index: 1;
  padding-top: clamp(64px, 8vw, 96px);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-inline: var(--gutter);
  border-top: 1px solid var(--band-line);
  border-bottom: 1px solid var(--band-line);
}

.how-item {
  min-width: 0;
  padding: 32px 28px 40px;
  border-right: 1px solid var(--band-line);
}

.how-item:last-child {
  border-right: none;
}

.how-item__n {
  display: block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-40);
}

.how-item h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.how-item p {
  font-size: 15px;
  line-height: 1.45;
  color: var(--white-60);
  max-width: 32ch;
}

/* Team */
.team {
  padding-top: 0;
  padding-bottom: clamp(72px, 9vw, 120px);
}

.team-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  border-top: 1px solid var(--band-line);
  border-bottom: 1px solid var(--band-line);
}

.team-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.team-tile {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  border-right: 1px solid var(--band-line);
  border-bottom: 1px solid var(--band-line);
  color: inherit;
}

.team-tile:nth-child(2n) {
  border-right: none;
}

.team-tile:nth-child(n + 3) {
  border-bottom: none;
}

.team-tile:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
  z-index: 2;
}

.team-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--reveal-ease);
}

.team-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 10, 0.55) 0%, rgba(20, 14, 10, 0.08) 46%, transparent 72%);
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.team-tile:hover img,
.team-tile:focus-visible img,
.team-tile.is-open img {
  transform: scale(1.04);
}

.team-tile__meta {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  transition: opacity 0.22s ease;
}

.team-tile__meta strong {
  display: block;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.team-tile__meta em {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-style: normal;
  color: rgba(255, 249, 249, 0.72);
}

.team-tile__bio {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 16px;
  background: var(--band);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.32s var(--reveal-ease);
}

.team-tile:hover .team-tile__bio,
.team-tile:focus-visible .team-tile__bio,
.team-tile.is-open .team-tile__bio {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.team-tile:hover::after,
.team-tile:focus-visible::after,
.team-tile.is-open::after,
.team-tile:hover .team-tile__meta,
.team-tile:focus-visible .team-tile__meta,
.team-tile.is-open .team-tile__meta {
  opacity: 0;
}

.team-tile__place {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-50);
}

.team-tile__place svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.team-tile__bio > strong {
  display: block;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.team-tile__bio > em {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-style: normal;
  color: var(--white-50);
}

.team-tile__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-top: 10px;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.4;
  color: var(--white-60);
}

.team-tile__stats {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}

.team-tile__stats span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--white-50);
}

.team-tile__stats b {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.team-copy {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 0;
  border-left: 1px solid var(--band-line);
}

.team-copy__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 32px;
}

.team-copy__head .eyebrow {
  margin-bottom: 16px;
}

.team-copy__head .h2 {
  max-width: 11ch;
}

.team-copy__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--band-line);
}

.team-copy__col {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 28px;
}

.team-copy__col + .team-copy__col {
  border-left: 1px solid var(--band-line);
}

.team-copy__plus {
  display: block;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
}

.team-copy__col h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.team-copy__col p {
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.45;
  color: var(--white-60);
}

.team-copy__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

.team-copy__more::after {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}

/* Prefooter */
.prefooter {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: end;
  min-height: clamp(560px, 60vw, 740px);
  overflow: hidden;
  color: var(--bg);
  background: linear-gradient(to bottom, #efeded 0%, #2c221c 100%);
}

.prefooter__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.28) 30%,
    rgba(0, 0, 0, 0.62) 42%,
    #000 54%,
    #000 74%,
    rgba(0, 0, 0, 0.5) 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.28) 30%,
    rgba(0, 0, 0, 0.62) 42%,
    #000 54%,
    #000 74%,
    rgba(0, 0, 0, 0.5) 88%,
    transparent 100%
  );
}

.prefooter__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 28%,
      rgba(20, 16, 14, 0.2) 44%,
      rgba(20, 16, 14, 0.48) 60%,
      rgba(44, 34, 28, 0.78) 84%,
      #2c221c 100%
    );
}

.prefooter__shade::after {
  content: "";
  position: absolute;
  inset: 42% 10% 20%;
  background: radial-gradient(
    ellipse 68% 70% at 50% 45%,
    rgba(20, 16, 14, 0.32),
    transparent 76%
  );
  pointer-events: none;
}

.prefooter__in {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(168px, 20vw, 248px) 0 clamp(72px, 9vw, 108px);
  text-align: center;
}

.prefooter__eyebrow {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 249, 249, 0.72);
}

.prefooter .h2 {
  color: #fff9f9;
  text-shadow: 0 2px 24px rgba(20, 16, 14, 0.35);
}

.prefooter__lead {
  max-width: 38ch;
  margin: 16px auto 28px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 249, 249, 0.78);
}

.prefooter__row {
  display: flex;
  align-items: stretch;
  max-width: 520px;
  margin-inline: auto;
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(20, 16, 14, 0.28);
}

.prefooter__form input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 54px;
  height: 54px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.prefooter__form input::placeholder {
  color: var(--white-40);
}

.prefooter__form input:focus {
  outline: none;
}

.prefooter__row:focus-within {
  box-shadow:
    0 12px 40px rgba(20, 16, 14, 0.28),
    inset 0 0 0 1px rgba(44, 34, 28, 0.32);
}

.prefooter__form button {
  flex-shrink: 0;
  padding: 0 24px;
  background: var(--accent);
  color: #fff9f9;
  font-size: 14px;
  font-weight: 600;
}

.prefooter__form button:hover {
  background: #d96a1a;
}

.prefooter__form button:focus-visible,
.to-top:focus-visible {
  outline: 2px solid #fff9f9;
  outline-offset: 3px;
}

.prefooter__form button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.prefooter__note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 249, 249, 0.5);
}

.prefooter__note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prefooter__note a:hover {
  color: var(--accent);
}

.prefooter__status {
  min-height: 1.3em;
  margin-top: 10px;
  font-size: 14px;
}

.prefooter__form.is-error .prefooter__status {
  color: #ffb38a;
}

.to-top {
  --to-top-progress: 0;
  position: fixed;
  right: max(16px, var(--gutter));
  bottom: max(88px, calc(env(safe-area-inset-bottom) + 68px));
  z-index: 54;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #14110f;
  color: #fff;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    bottom 0.28s ease;
}

.to-top.is-on {
  opacity: 0.7;
  pointer-events: auto;
  transform: none;
}

.to-top.is-on:hover,
.to-top.is-on:focus-visible {
  opacity: 1;
}

.to-top__ring {
  position: absolute;
  inset: 0;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.to-top__track,
.to-top__progress {
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.to-top__track {
  stroke: rgba(255, 255, 255, 0.42);
}

.to-top__progress {
  stroke: var(--accent);
  stroke-dasharray: 100;
  stroke-dashoffset: calc((1 - var(--to-top-progress)) * 100);
  transition: stroke-dashoffset 0.12s linear;
}

.to-top__icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}

body:has(.cookie:not([hidden])) .to-top {
  bottom: max(160px, calc(env(safe-area-inset-bottom) + 148px));
}

/* Footer */
.footer {
  --footer-line: rgba(255, 249, 249, 0.12);
  --footer-muted: rgba(255, 249, 249, 0.56);
  background: var(--ink);
  color: var(--bg);
  padding: 56px 0 28px;
}

body:has(.cookie:not([hidden])) .footer {
  padding-bottom: 104px;
}

.footer__in {
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.85fr));
  gap: 48px 32px;
  padding-bottom: 56px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer__logo img {
  width: 92px;
  height: 62px;
  object-fit: contain;
}

.footer__pitch {
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.5;
  color: var(--footer-muted);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--footer-line);
  color: var(--bg);
  transition:
    color 0.28s ease,
    border-color 0.28s ease;
}

.footer__social a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.footer__social a:last-child svg {
  fill: none;
}

.footer__social a:last-child circle:last-child {
  fill: currentColor;
}

.footer__h {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 249, 249, 0.42);
}

.footer__nav ul,
.footer__contact {
  display: grid;
  gap: 10px;
}

.footer__nav a,
.footer__contact a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.28s ease;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--accent);
}

.footer__contact {
  font-size: 15px;
  line-height: 1.45;
  color: var(--footer-muted);
}

.footer__contact a {
  color: var(--bg);
}

.footer__bar {
  padding-top: 22px;
  border-top: 1px solid var(--footer-line);
}

.footer__trust {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: rgba(255, 249, 249, 0.4);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--footer-muted);
}

.footer-dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.28s ease;
}

.footer-dev-credit__label {
  font-size: 13px;
}

.footer-dev-credit img {
  width: 125px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.footer-dev-credit:hover {
  color: var(--bg);
}

/* Cookie bar */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(255, 249, 249, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--white-10);
}

.cookie[hidden] {
  display: none;
}

.cookie p {
  font-size: 12px;
  color: var(--white-50);
  max-width: 720px;
}

.cookie a {
  text-decoration: underline;
}

.cookie__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie__close {
  width: 36px;
  height: 36px;
  font-size: 22px;
  color: var(--white-50);
}

@media (max-width: 1500px) {
  .mega__cols {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr) minmax(0, 0.78fr) minmax(232px, 0.82fr);
  }

  .mega__col,
  .mega__aside {
    padding-left: 22px;
    padding-right: 22px;
  }

  .mega__col:first-child {
    padding-left: 0;
  }

  .mega__aside {
    padding-right: 0;
  }
}

@media (max-width: 1280px) {
  .featured-list {
    grid-template-columns: 1fr 1fr;
  }

  .featured-item,
  .featured-item:nth-child(3n + 1),
  .featured-item:nth-child(3n) {
    padding: 28px 24px 32px;
    border-right: 1px solid var(--featured-line);
    border-bottom: 1px solid var(--featured-line);
  }

  .featured-item:nth-child(even) {
    border-right: none;
  }

  .featured-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--featured-line);
  }

  .featured-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .header__in {
    width: 100%;
    grid-template-columns: 1fr auto;
  }

  .header__brand {
    padding: 0 0 0 var(--pad);
    border-right: none;
  }

  .header__nav,
  .header__explore,
  .lang,
  .mega__panel {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .brand-lockup {
    overflow: hidden;
    place-items: center start;
  }

  .brand-lockup img.brand-lockup__wide {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    display: block;
    visibility: hidden;
    width: 220px;
    height: 36px;
    object-fit: contain;
    object-position: left center;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(10px, -50%, 0) scale(0.96);
    transition:
      opacity 0.55s var(--reveal-ease),
      transform 0.7s var(--header-move);
  }

  .header.is-light .brand-lockup,
  .header.is-menu .brand-lockup {
    width: 220px;
    height: 36px;
  }

  .header.is-light .brand-lockup__named,
  .header.is-menu .brand-lockup__named,
  .header.is-light .brand-lockup__icon,
  .header.is-menu .brand-lockup__icon {
    opacity: 0;
    transform: scale(0.86);
  }

  .header.is-light .brand-lockup img.brand-lockup__wide,
  .header.is-menu .brand-lockup img.brand-lockup__wide {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-reveal--thumbs {
    transform: translate3d(0, 24px, 0);
  }

  .hero[data-hero-mode="slider"]:not(.is-slider-in) .hero-thumbs__item {
    transform: translate3d(0, 14px, 0);
  }

  .hero-thumbs {
    top: auto;
    right: var(--gutter);
    left: var(--gutter);
    bottom: 216px;
    width: auto;
    height: 56px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: 1fr;
    padding: 0;
    border-left: 0;
    background: none;
    gap: 6px;
  }

  .hero-thumbs__item,
  .hero-thumbs__item.is-on {
    width: auto;
    height: 100%;
    justify-self: stretch;
  }

  .hero-trip-copy {
    right: var(--gutter);
    top: 18%;
  }

  .hero[data-hero-mode="slider"] .trip-search {
    width: min(100% - var(--gutter) * 2, 1080px);
    margin-inline: auto;
  }

  .header {
    --header-h: 84px;
  }

  .brand-lockup,
  .brand-lockup__named {
    width: 88px;
    height: 60px;
  }

  .header__in {
    grid-template-columns: 1fr auto;
  }

  .header__nav,
  .header__explore,
  .lang {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header.is-light .brand-lockup,
  .header.is-menu .brand-lockup {
    width: 220px;
    height: 36px;
  }

  .section-head--split,
  .how-grid,
  .footer__bottom,
  .cookie {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .footer-dev-credit {
    align-self: auto;
  }

  .how-grid {
    padding-inline: 0;
  }

  .how-item,
  .how-item:first-child,
  .how-item:last-child {
    padding: 28px var(--gutter);
    border-right: none;
    border-bottom: 1px solid var(--band-line);
  }

  .how-item:last-child {
    border-bottom: none;
  }

  .team-board {
    grid-template-columns: 1fr;
  }

  .team-copy {
    order: -1;
    border-left: none;
    grid-template-rows: auto auto;
  }

  .team-copy__head,
  .team-copy__col,
  .team-copy__col + .team-copy__col {
    padding-left: 28px;
    padding-right: 28px;
  }

  .team-tile:nth-child(n + 3) {
    border-bottom: 1px solid var(--band-line);
  }

  .team-tile:nth-child(3),
  .team-tile:nth-child(4) {
    border-bottom: none;
  }

  .section-head--split {
    align-items: flex-start;
  }

  .dest-pin__sticky {
    padding-top: 96px;
  }

  .dest-slide {
    flex-basis: min(62vw, 360px);
  }

  .featured-list {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .combine__intro-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .combine__board,
  .combine__path {
    grid-template-columns: 1fr;
  }

  .combine-card,
  .combine-card:first-child,
  .combine-card:last-child {
    padding: 28px var(--gutter);
    border-right: none;
    border-bottom: 1px solid var(--combine-line);
  }

  .combine-card:last-child {
    border-bottom: none;
  }

  .combine-card__plus,
  .combine-card:last-child .combine-card__plus {
    right: var(--gutter);
  }

  .combine__path {
    --path-top: 0;
  }

  .combine__path::before {
    top: 36px;
    bottom: 36px;
    left: calc(var(--gutter) + var(--path-mark) / 2);
    right: auto;
    width: 1px;
    height: auto;
  }

  .combine__path li,
  .combine__path li:first-child,
  .combine__path li:last-child {
    display: grid;
    grid-template-columns: var(--path-mark) minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
    padding: 22px var(--gutter);
    border: 0;
  }

  .combine__path-n {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .combine__path strong,
  .combine__path p {
    grid-column: 2;
  }

  .featured-item,
  .featured-item:nth-child(odd),
  .featured-item:nth-child(even),
  .featured-item:nth-child(3n + 1),
  .featured-item:nth-child(3n) {
    padding: 28px var(--featured-inset) 32px;
    border-right: none;
    border-bottom: 1px solid var(--featured-line);
  }

  .featured-item:nth-last-child(-n + 3),
  .featured-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--featured-line);
  }

  .featured-item:last-child {
    border-bottom: none;
  }

  .featured-item__visual img {
    aspect-ratio: 16 / 10;
  }

  .dest-map__dots,
  .dest-map__card {
    display: none;
  }

  .dest-map__cta {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    min-height: 48px;
    padding: 12px 26px;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 28px rgba(44, 34, 28, 0.16);
  }

  .footer {
    padding: 40px 0 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 28px;
  }

  .footer__brand-col,
  .footer__aside {
    grid-column: 1 / -1;
  }

  .footer__contact {
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }

  .footer__pitch {
    max-width: none;
    font-size: 14px;
  }

  .footer__social {
    margin-top: 16px;
  }

  .footer__h {
    margin-bottom: 12px;
  }

  .footer__nav ul,
  .footer__contact {
    gap: 8px;
  }

  .footer__nav a,
  .footer__contact,
  .footer__contact a {
    font-size: 14px;
  }

  .prefooter__in {
    padding-inline: 0;
  }

  .prefooter__row {
    flex-direction: column;
  }

  .prefooter__form input {
    flex: 0 0 auto;
    width: 100%;
    min-height: 54px;
    height: 54px;
  }

  .prefooter__form button {
    min-height: 52px;
  }

  .cookie__actions {
    width: 100%;
  }

  .cookie .btn-primary,
  .cookie .btn-secondary {
    flex: 1;
  }

  .trip-search {
    bottom: 18px;
  }

  .trip-search__shell,
  .trip-search.is-advanced .trip-search__shell {
    border-radius: var(--radius);
  }

  .trip-search__checks {
    grid-template-columns: 1fr 1fr;
  }

  .trip-search__bar {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    padding: 8px;
  }

  .trip-search__field,
  .trip-search__bar > .trip-search__field:last-of-type {
    padding: 10px 12px;
  }

  .trip-search__field:nth-child(2),
  .trip-search__field:nth-child(4) {
    border-left: 1px solid var(--search-line);
  }

  .trip-search__field:nth-child(3),
  .trip-search__field:nth-child(4) {
    border-top: 1px solid var(--search-line);
  }

  .trip-search__field:nth-child(3) {
    border-left: 0;
  }

  .trip-search__submit,
  .trip-search.is-advanced .trip-search__submit {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    margin-left: 0;
    border-radius: var(--radius);
  }

  .trip-search__field[data-field="destination"] .trip-search__panel {
    min-width: 0;
    right: 8px;
  }

  .trip-search__advanced .trip-search__panel {
    top: calc(100% + 8px);
    bottom: auto;
    transform: translate3d(0, -8px, 0);
  }

  .trip-search__advanced .trip-search__field.is-open .trip-search__panel {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  .hero-slide__sky,
  .hero-slide__titles,
  .hero-slide__mountain {
    transform: none !important;
  }

  .hero-trips__frame {
    transform: none;
    transition: opacity 0.35s ease;
  }

  .hero-thumbs__item.is-on::after {
    animation: none;
    transform: scaleX(1);
  }

  .hero-reveal,
  .reveal,
  .hero-trips {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero-thumbs__item {
    animation: none !important;
  }

  .ink-reveal__char {
    color: var(--ink);
    transition: none;
  }

  .dest-map__dot {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dest-map__dot.is-on::before {
    animation: none;
  }

  .combine-card__plus,
  .combine__mix-item,
  .combine__mix-plus {
    transition: none;
  }

  .to-top,
  .footer__nav a,
  .footer__contact a,
  .footer__social a,
  .footer-dev-credit,
  .lang__menu,
  .trip-search__panel,
  .trip-search__advanced,
  .trip-search__more-text,
  .header,
  .header__in,
  .header__burger-line,
  .brand-lockup,
  .brand-lockup img,
  .brand-lockup__wide,
  .dest-track,
  .dest-pin__meter span,
  .dest-slide::before,
  .dest-slide__shade,
  .dest-slide__go,
  .mega__list a::after,
  .mega__panel,
  .mega__chevron,
  .mega__feature-media img,
  .mega__feature-body,
  .mega__feature-media .mega__badge,
  .featured-item__visual img {
    transition: none;
  }

  .featured-item__link:hover img,
  .featured-item__link:focus-visible img,
  .dest-slide--all:hover .dest-slide__go,
  .dest-slide--all:focus-visible .dest-slide__go,
  .team-tile:hover img,
  .team-tile:focus-visible img,
  .team-tile.is-open img {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero {
    --hero-h: 760px;
  }

  .hero:has(.trip-search.is-advanced) {
    --hero-h: 920px;
  }

  .hero:has(.trip-search.is-advanced) .hero-slide__lead {
    opacity: 0;
  }

  .trip-search__checks {
    grid-template-columns: 1fr;
  }

  .hero-slide__intro {
    top: calc(120px + 12%);
  }

  .hero-slide__title {
    font-size: 34px;
  }

  .hero-slide__lead {
    font-size: 15px;
  }

  .hero-slide__mountain {
    bottom: -20%;
    height: 70%;
  }

  .hero-trip-copy {
    top: 18%;
    right: var(--gutter);
    max-width: none;
  }

  .hero-trip-copy__title {
    font-size: 32px;
  }

  .hero-thumbs {
    bottom: 268px;
    height: 48px;
  }

  .hero-thumbs__name {
    display: none;
  }

  .hero[data-hero-mode="slider"] .trip-search {
    width: min(100% - var(--gutter) * 2, 1080px);
    margin-inline: auto;
  }

  .dest-slide {
    flex-basis: 78vw;
  }

  .dest-slide h3 {
    font-size: 28px;
  }

  .combine__intro-row,
  .combine__board,
  .combine__path {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .team-copy__cols {
    grid-template-columns: 1fr;
  }

  .team-copy__col + .team-copy__col {
    border-left: none;
    border-top: 1px solid var(--band-line);
  }
}

@media (hover: none) {
  .team-tile:hover img,
  .team-tile:focus-visible img {
    transform: none;
  }

  .team-tile:hover .team-tile__bio,
  .team-tile:focus-visible .team-tile__bio {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  .team-tile.is-open .team-tile__bio {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .team-tile:hover::after,
  .team-tile:focus-visible::after,
  .team-tile:hover .team-tile__meta,
  .team-tile:focus-visible .team-tile__meta {
    opacity: 1;
  }

  .team-tile.is-open::after,
  .team-tile.is-open .team-tile__meta {
    opacity: 0;
  }
}
