@charset "UTF-8";

:root {
  --red: #b62318;
  --red-dark: #861810;
  --red-soft: #f9e7e4;
  --blue: #006ba6;
  --blue-deep: #064b70;
  --blue-dark: #05344e;
  --blue-soft: #e7f3f9;
  --ink: #15191b;
  --ink-2: #343b3e;
  --muted: #667074;
  --line: #dce3e7;
  --line-dark: #b8c4ca;
  --paper: #ffffff;
  --snow: #f6f9fb;
  --snow-2: #eaf0f3;
  --night: #111719;
  --success: #1b6d4a;
  --shadow: 0 18px 50px rgba(29, 49, 58, 0.09);
  --shadow-soft: 0 8px 24px rgba(29, 49, 58, 0.06);
  --radius: 6px;
  --radius-lg: 12px;
  --container: 1232px;
  --header-height: 78px;
  --font-sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  --font-body: var(--font-sans);
  --brand-blue: var(--blue);
  --brand-blue-dark: var(--blue-deep);
  --brand-red: var(--red);
}

[hidden] {
  display: none !important;
}

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

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.drawer-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a:hover {
  color: var(--red);
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--red);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: #fff;
  background: var(--night);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--snow {
  background: var(--snow);
}

.section--night {
  color: #fff;
  background: var(--blue-dark);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #ff9c91;
}

.display-title,
.section-title,
.page-title,
.detail-title {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.display-title {
  max-width: 720px;
  font-size: clamp(52px, 6vw, 92px);
}

.page-title {
  max-width: 900px;
  font-size: clamp(48px, 5vw, 78px);
}

.detail-title {
  font-size: clamp(44px, 5vw, 72px);
}

.section-title {
  max-width: 800px;
  font-size: clamp(40px, 4vw, 62px);
}

.section-intro,
.lead {
  max-width: 720px;
  color: var(--ink-2);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

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

.section-head > :first-child {
  max-width: 820px;
}

.concept-bar {
  position: relative;
  z-index: 80;
  color: #fff;
  background: var(--blue-deep);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.concept-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 16px;
}

.concept-bar strong {
  color: #ffaea5;
}

.concept-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(21, 25, 27, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  gap: 36px;
}

.site-logo {
  display: block;
  width: 128px;
  flex: 0 0 auto;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: grid;
  margin-right: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.header-phone small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: 180ms ease;
}

.menu-toggle {
  flex-direction: column;
  gap: 4px;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 69;
  inset: calc(var(--header-height) + 34px) 0 0;
  padding: 24px;
  color: #fff;
  background: var(--blue-dark);
  overflow: auto;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 720;
}

.mobile-menu__meta {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: #c4cbcd;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  gap: 10px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  color: #fff;
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn--dark {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.btn--dark:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.btn--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-dark);
}

.btn--ghost:hover {
  color: var(--red);
  background: var(--paper);
  border-color: var(--red);
}

.btn--light {
  color: var(--night);
  background: #fff;
  border-color: #fff;
}

.btn--light:hover {
  color: var(--night);
  background: #f1f6f8;
  border-color: #f1f6f8;
}

.btn--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(182, 35, 24, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--red);
  font-size: 19px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.home-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 112px));
  background: linear-gradient(135deg, #ffffff 0%, #f2f7fa 100%);
  overflow: hidden;
}

.home-hero::before {
  position: absolute;
  top: 12%;
  left: -8%;
  width: 44%;
  height: 72%;
  border: 1px solid rgba(182, 35, 24, 0.16);
  border-radius: 50%;
  content: "";
  transform: rotate(-20deg);
}

.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: inherit;
  align-items: stretch;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px 0;
}

.home-hero__copy .lead {
  max-width: 590px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  align-items: center;
  margin-top: 52px;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.hero-trust::before {
  width: 54px;
  height: 2px;
  background: var(--red);
  content: "";
}

.home-hero__media {
  position: relative;
  min-height: 620px;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 300px;
  padding: 10px 13px;
  color: #fff;
  background: rgba(17, 23, 25, 0.78);
  border-radius: 3px;
  font-size: 11px;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.hero-route-marker {
  position: absolute;
  top: 28px;
  left: -25px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background: var(--red);
  border: 5px solid var(--paper);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.quick-paths {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.quick-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  background: var(--blue-deep);
  box-shadow: var(--shadow);
}

.quick-path {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 118px;
  padding: 25px 28px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-path:last-child {
  border-right: 0;
}

.quick-path:hover {
  color: #fff;
  background: var(--blue);
}

.quick-path small {
  display: block;
  margin-top: 4px;
  color: #aeb8bb;
  font-size: 12px;
}

.quick-path__arrow {
  color: #ff8a7e;
  font-size: 26px;
}

.finder {
  position: relative;
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.finder::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 2px;
  background: var(--red-soft);
  content: "";
}

.finder-step {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 94px;
  padding: 0 0 28px 28px;
  gap: 24px;
}

.finder-step:last-of-type {
  padding-bottom: 0;
}

.finder-step__heading::before {
  position: absolute;
  top: 4px;
  left: -23px;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border: 3px solid var(--red);
  border-radius: 50%;
  content: "";
}

.finder-step__number {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finder-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 8px;
}

.choice,
.filter-chip,
.mode-tab {
  min-height: 44px;
  padding: 10px 15px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.choice:hover,
.choice.is-selected,
.choice[aria-pressed="true"] {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.finder-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 34px 0 0 238px;
  padding-top: 26px;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.finder-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.finder-footer strong {
  color: var(--ink);
}

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

.trip-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.trip-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.trip-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.trip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.trip-card:hover .trip-card__media img {
  transform: scale(1.035);
}

.trip-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(17, 23, 25, 0.82);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.trip-card__body {
  padding: 25px;
}

.trip-card__body .eyebrow {
  margin-bottom: 9px;
  font-size: 10px;
}

.trip-card__title {
  min-height: 58px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.trip-card__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
  border-block: 1px solid var(--line);
}

.trip-card__facts > span {
  display: grid;
  padding: 14px 8px 14px 0;
}

.trip-card__facts > span + span {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.trip-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
}

.trip-card__facts b {
  font-size: 15px;
}

.trip-card__difficulty {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.difficulty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.difficulty__dots {
  display: flex;
  gap: 4px;
}

.difficulty__dots i {
  width: 18px;
  height: 3px;
  background: var(--snow-2);
}

.difficulty__dots i.is-on {
  background: var(--red);
}

.trip-card__date,
.trip-card__guide {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.trip-card__date {
  padding: 14px;
  background: var(--snow);
}

.trip-card__date span,
.trip-card__guide span {
  display: grid;
}

.trip-card__date strong,
.trip-card__guide strong {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.3;
}

.trip-card__price {
  text-align: right;
}

.trip-card__guide {
  padding: 15px 0 12px;
  border-bottom: 1px solid var(--line);
}

.availability-dot {
  position: relative;
  padding-left: 12px;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.availability-dot::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  content: "";
}

.trip-card .text-link {
  margin-top: 11px;
}

.live-feature {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  min-height: 570px;
  background: var(--blue-deep);
  overflow: hidden;
}

.live-feature__media {
  position: relative;
  min-height: 520px;
}

.live-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  gap: 8px;
  color: #fff;
  background: var(--red);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-badge::before {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.65); }
}

.live-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.live-feature__content h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.live-feature__content blockquote {
  margin: 0 0 26px;
  color: #d6dcdd;
  font-size: 18px;
  line-height: 1.6;
}

.live-meta {
  margin-bottom: 28px;
  color: #97a4a8;
  font-size: 12px;
}

.expedition-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 14px 0 34px;
}

.expedition-progress span {
  position: relative;
  padding-top: 17px;
  color: #8d9a9e;
  font-size: 10px;
}

.expedition-progress span::before {
  position: absolute;
  top: 4px;
  right: 0;
  left: 0;
  height: 2px;
  background: #5689a4;
  content: "";
}

.expedition-progress span::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #5689a4;
  border: 2px solid var(--blue-deep);
  border-radius: 50%;
  content: "";
}

.expedition-progress span.is-done,
.expedition-progress span.is-current {
  color: #fff;
}

.expedition-progress span.is-done::before,
.expedition-progress span.is-done::after,
.expedition-progress span.is-current::before,
.expedition-progress span.is-current::after {
  background: var(--red);
}

.path-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.path-steps::before {
  position: absolute;
  top: 22px;
  right: 11%;
  left: 11%;
  height: 2px;
  background: var(--red-soft);
  content: "";
}

.path-step {
  position: relative;
  padding-top: 62px;
}

.path-step::before {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border: 5px solid var(--red);
  border-radius: 50%;
  content: "";
}

.path-step small {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-step h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.08;
}

.path-step p {
  color: var(--muted);
  font-size: 14px;
}

.guide-feature {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
  min-height: 600px;
  background: var(--snow);
}

.guide-feature__portrait {
  position: relative;
  min-height: 560px;
  background: linear-gradient(145deg, var(--blue) 0 40%, var(--night) 40% 100%);
  overflow: hidden;
}

.guide-feature__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.guide-feature__initials {
  position: absolute;
  right: 26px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: 164px;
  font-weight: 800;
  line-height: 1;
}

.guide-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.guide-feature__content h2 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.guide-role {
  margin-bottom: 32px;
  color: var(--muted);
}

.guide-quote {
  max-width: 680px;
  margin: 0 0 32px;
  padding: 25px 0 25px 26px;
  border-left: 3px solid var(--red);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.25;
}

.guide-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 11px;
  font-style: normal;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.safety-card {
  padding: 32px;
  background: var(--paper);
}

.safety-card__number {
  display: block;
  margin-bottom: 44px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
}

.safety-card h3 {
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.08;
}

.safety-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 22px;
}

.story-main,
.story-side {
  position: relative;
  min-height: 600px;
  color: #fff;
  background: var(--night);
  overflow: hidden;
}

.story-main img,
.story-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.story-main::after,
.story-side::after {
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(transparent, rgba(17, 23, 25, 0.9));
  content: "";
}

.story-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px;
}

.story-content h3 {
  max-width: 650px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.story-content p {
  max-width: 520px;
  margin-bottom: 18px;
  color: #d6dddf;
}

.story-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 600px;
  background: transparent;
  gap: 22px;
  overflow: visible;
}

.story-small {
  position: relative;
  min-height: 289px;
  background: var(--night);
  overflow: hidden;
}

.story-small .story-content {
  padding: 24px;
}

.story-small h3 {
  font-size: 28px;
}

.consultation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  padding: 64px;
  align-items: end;
  gap: 64px;
  color: #fff;
  background: var(--red);
  overflow: hidden;
}

.consultation::after {
  position: absolute;
  top: -200px;
  right: -130px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  content: "";
}

.consultation h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.consultation p {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin: 0;
  color: #ffe3df;
  font-size: 18px;
}

.consultation .btn {
  position: relative;
  z-index: 2;
}

.site-footer {
  padding: 72px 0 28px;
  color: #d3dadc;
  background: var(--night);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 52px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 142px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 280px;
  color: #8f9a9d;
  font-size: 12px;
}

.footer-col h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 10px 0;
  color: #aeb8bb;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  gap: 24px;
  color: #778386;
  border-top: 1px solid #2d373a;
  font-size: 11px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumb li + li::before {
  color: var(--line-dark);
  content: "/";
}

.catalog-hero {
  padding: 76px 0 48px;
  background: var(--snow);
}

.catalog-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(250px, 3fr);
  align-items: end;
  gap: 60px;
}

.catalog-hero__aside {
  padding: 22px;
  background: var(--paper);
  border-left: 3px solid var(--red);
  color: var(--muted);
  font-size: 13px;
}

.catalog-modes {
  display: flex;
  margin-top: 46px;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-modes::-webkit-scrollbar {
  display: none;
}

.mode-tab {
  flex: 0 0 auto;
  background: transparent;
}

.mode-tab.is-active,
.mode-tab[aria-current="page"] {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.catalog-summary {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.catalog-summary__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  gap: 8px;
  color: var(--red-dark);
  background: var(--red-soft);
  border: 0;
  font-size: 12px;
}

.filter-chip span {
  font-size: 17px;
  line-height: 1;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  padding: 52px 0 100px;
  align-items: start;
  gap: 42px;
}

.filter-panel {
  position: sticky;
  top: 112px;
  padding: 24px;
  background: var(--snow);
  border: 1px solid var(--line);
}

.filter-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.filter-panel__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
}

.filter-close {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  cursor: pointer;
}

.filter-group {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}

.filter-group select {
  width: 100%;
  min-height: 46px;
  padding: 9px 36px 9px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
}

.filter-panel__footer {
  display: grid;
  gap: 9px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.filter-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.results-toolbar h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
}

.results-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.results-tools select {
  min-height: 44px;
  padding: 8px 34px 8px 12px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-size: 12px;
}

.results-hint {
  display: grid;
  margin-bottom: 22px;
  padding: 16px 18px;
  gap: 3px;
  color: #17485f;
  background: var(--blue-soft);
  border-left: 3px solid var(--blue);
  font-size: 12px;
}

.results-hint[hidden] {
  display: none;
}

.results-hint span {
  color: #477184;
}

.filter-mobile-trigger {
  display: none;
}

.catalog-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.catalog-results .trip-card__title {
  min-height: 56px;
}

.catalog-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  padding: 30px;
  gap: 24px;
  background: var(--snow);
  border-left: 3px solid var(--red);
}

.catalog-help h2 {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 28px;
}

.catalog-help p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.empty-state {
  padding: 70px 30px;
  text-align: center;
  background: var(--snow);
  border: 1px solid var(--line);
}

.empty-state h2 {
  font-family: var(--font-display);
  font-size: 38px;
}

.empty-state p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.detail-hero {
  padding: 50px 0 36px;
  background: var(--snow);
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  align-items: stretch;
  gap: 42px;
}

.detail-hero__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
}

.detail-hero__content .breadcrumb {
  margin-bottom: 22px;
}

.detail-lead {
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: 17px;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-fact {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-fact strong,
.detail-fact small {
  display: block;
}

.detail-fact strong {
  font-size: 16px;
}

.detail-fact small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.price-snapshot {
  margin-top: 16px;
  color: var(--muted);
  font-size: 10px;
}

.local-nav {
  position: sticky;
  z-index: 60;
  top: var(--header-height);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.local-nav__inner {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}

.local-nav__inner::-webkit-scrollbar {
  display: none;
}

.local-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 17px 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.local-nav a::after {
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
}

.local-nav a.is-current,
.local-nav a[aria-current="location"] {
  color: var(--ink);
}

.local-nav a.is-current::after,
.local-nav a[aria-current="location"]::after {
  opacity: 1;
}

.detail-body {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(300px, 3fr);
  padding: 86px 0 110px;
  align-items: start;
  gap: 62px;
}

.detail-content {
  min-width: 0;
}

.detail-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.detail-section:first-child {
  padding-top: 0;
}

.detail-section:last-child {
  border-bottom: 0;
}

.detail-section h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.detail-section > p {
  max-width: 760px;
  color: var(--ink-2);
}

.booking-card {
  position: sticky;
  top: 156px;
  padding: 26px;
  background: var(--blue-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.booking-card__label {
  margin-bottom: 6px;
  color: #9eaaad;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-card__price {
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.booking-card__date {
  margin-bottom: 24px;
  color: #d3dadc;
  font-size: 13px;
}

.booking-card__facts {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding: 18px 0;
  border-block: 1px solid #3a7594;
}

.booking-card__facts span {
  display: grid;
  gap: 2px;
}

.booking-card__facts small {
  color: #8f9a9d;
  font-size: 10px;
}

.booking-card__facts strong {
  font-size: 12px;
}

.booking-card__note {
  margin: 13px 0 0;
  color: #829093;
  font-size: 9px;
}

.date-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.date-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.7fr) 26px;
  padding: 18px;
  align-items: center;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.date-option:hover {
  border-color: var(--ink);
}

.date-option:has(input:checked) {
  background: #fff7f6;
  border-color: var(--red);
  box-shadow: inset 4px 0 var(--red);
}

.date-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.date-option:has(input:focus-visible) {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.date-option__main,
.date-option__meta {
  display: grid;
  gap: 4px;
}

.date-option__main strong {
  font-size: 15px;
}

.date-option__main small,
.date-option__meta small {
  color: var(--muted);
  font-size: 10px;
}

.date-option__state {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-option__meta {
  text-align: right;
}

.date-option__check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 12px;
}

.date-option:has(input:checked) .date-option__check {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.info-tip {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 4px;
  padding: 0;
  color: var(--blue);
  background: var(--blue-soft);
  border: 0;
  border-radius: 50%;
  cursor: help;
  font-size: 11px;
  font-weight: 900;
}

.count-note {
  margin-top: 14px;
  padding: 16px 18px;
  color: #17485f;
  background: var(--blue-soft);
  border-left: 3px solid var(--blue);
  font-size: 12px;
}

.fit-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.fit-card,
.included-card {
  padding: 28px;
  background: var(--snow);
  border-top: 3px solid var(--success);
}

.fit-card--caution,
.included-card--not {
  border-top-color: var(--red);
}

.fit-card h3,
.included-card h3 {
  font-family: var(--font-display);
  font-size: 27px;
}

.check-list,
.plain-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-2);
  font-size: 14px;
  list-style: none;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.fit-card--caution .check-list li::before,
.included-card--not .check-list li::before {
  color: var(--red);
  content: "—";
}

.route-timeline {
  position: relative;
  display: grid;
  margin-top: 34px;
  padding-left: 36px;
  gap: 4px;
}

.route-timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 10px;
  width: 2px;
  background: var(--red-soft);
  content: "";
}

.route-day {
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  padding: 20px 0;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.route-day::before {
  position: absolute;
  top: 25px;
  left: -32px;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border: 3px solid var(--red);
  border-radius: 50%;
  content: "";
}

.route-day--summit {
  margin: 8px 0;
  padding: 28px 24px;
  background: var(--blue-dark);
  color: #fff;
  border: 0;
}

.route-day--summit::before {
  top: 33px;
  left: -32px;
  background: var(--red);
  box-shadow: 0 0 0 6px var(--red-soft);
}

.route-day__number {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-day h3 {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 23px;
}

.route-day p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.route-day--summit p {
  color: #b5c0c3;
}

.route-day--summit .route-day__number {
  color: #ff8a7e;
}

.photo-pair {
  display: grid;
  grid-template-columns: 7fr 5fr;
  height: 500px;
  margin-top: 32px;
  gap: 12px;
}

.photo-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  gap: 12px;
}

.prep-card {
  padding: 24px;
  background: var(--snow);
}

.prep-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.prep-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 23px;
}

.prep-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.safety-process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
  background: var(--blue-dark);
  color: #fff;
}

.safety-process__copy {
  padding: 38px;
}

.safety-process__copy h3 {
  font-family: var(--font-display);
  font-size: 32px;
}

.safety-process__copy p,
.safety-process__copy li {
  color: #b9c3c5;
  font-size: 13px;
}

.safety-process__facts {
  display: grid;
  align-content: center;
  padding: 38px;
  gap: 20px;
  background: var(--blue-deep);
}

.safety-process__facts strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 16px;
}

.safety-process__facts small {
  color: #96a2a5;
}

.program-guide {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  margin-top: 28px;
  background: var(--snow);
}

.program-guide__portrait {
  position: relative;
  min-height: 290px;
  background: linear-gradient(145deg, var(--blue), var(--night));
  overflow: hidden;
}

.program-guide__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.program-guide__portrait span {
  position: absolute;
  right: 12px;
  bottom: 3px;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
}

.program-guide__copy {
  padding: 34px;
}

.program-guide__copy h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 35px;
}

.program-guide__copy p {
  color: var(--muted);
}

.review-card {
  margin-top: 28px;
  padding: 34px;
  background: var(--snow);
  border-left: 3px solid var(--red);
}

.review-card blockquote {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}

.review-card cite {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.archive-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  gap: 12px;
}

.archive-card {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.archive-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.archive-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 24px;
}

.archive-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 50%;
  content: "+";
  font-family: var(--font-sans);
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 50px 22px 0;
  color: var(--muted);
}

.mobile-booking-bar {
  display: none;
}

.booking-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: min(860px, calc(100vh - 32px));
  padding: 0;
  background: var(--paper);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  overflow: auto;
}

.booking-dialog::backdrop {
  background: rgba(5, 9, 10, 0.72);
  backdrop-filter: blur(4px);
}

.dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 28px 30px 22px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.dialog-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.dialog-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  cursor: pointer;
  font-size: 23px;
}

.dialog-body {
  padding: 28px 30px 34px;
}

.dialog-intro {
  margin-bottom: 24px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label,
.field > span {
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.field-error {
  min-height: 16px;
  color: var(--red-dark);
  font-size: 11px;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  margin-top: 20px;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.form-summary {
  margin-bottom: 18px;
  padding: 12px 14px;
  color: var(--red-dark);
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  font-size: 12px;
}

.form-actions {
  display: flex;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
}

.form-actions small {
  color: var(--muted);
}

.success-view {
  padding: 34px 0 10px;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-size: 28px;
}

.success-view h2 {
  font-family: var(--font-display);
  font-size: 42px;
}

.success-view p {
  max-width: 470px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.mode-view {
  padding: 42px 0 92px;
}

.calendar-shell,
.map-stage,
.map-destinations {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(19, 72, 101, 0.08);
}

.calendar-shell {
  padding: clamp(24px, 4vw, 52px);
}

.calendar-toolbar,
.map-stage__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.calendar-toolbar h2,
.map-stage__head h2,
.map-destinations h2 {
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.calendar-months {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: var(--snow);
  border: 1px solid var(--line);
}

.calendar-month {
  min-height: 44px;
  padding: 9px 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 700 0.92rem/1 var(--font-body);
  cursor: pointer;
}

.calendar-month.is-active {
  color: #fff;
  background: var(--brand-blue);
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.month-calendar {
  padding: 22px;
  background: var(--snow);
  border: 1px solid var(--line);
}

.month-calendar__weekdays,
.month-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.month-calendar__weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  min-height: 74px;
  padding: 9px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  text-align: left;
}

.calendar-day b {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}

.calendar-day span {
  display: block;
  margin-top: 9px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-day--departure {
  background: #fff;
  border-color: #9bcbe3;
  box-shadow: 0 8px 24px rgba(0, 107, 166, 0.1);
  cursor: pointer;
}

.calendar-day--departure:hover,
.calendar-day--departure:focus-visible {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

.calendar-day--departure i {
  position: absolute;
  right: 8px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
}

.departure-agenda__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.departure-agenda__head > span {
  color: var(--brand-blue-dark);
  font-size: 1.15rem;
  font-weight: 900;
}

.departure-agenda__head small {
  max-width: 330px;
  color: var(--muted);
  text-align: right;
}

.departure-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 148px auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.departure-row.is-highlighted {
  background: var(--ice);
  box-shadow: 16px 0 0 var(--ice), -16px 0 0 var(--ice);
  transform: translateX(4px);
}

.departure-row__date strong,
.departure-row__date small,
.departure-row__program span,
.departure-row__program small,
.departure-row__price small {
  display: block;
}

.departure-row__date strong {
  color: var(--brand-red);
  font-size: 1.3rem;
}

.departure-row__date small,
.departure-row__program span,
.departure-row__program small,
.departure-row__price small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.departure-row__program h3 {
  margin: 4px 0;
  font-size: 1.02rem;
}

.departure-row__price {
  text-align: right;
}

.departure-row__price strong {
  white-space: nowrap;
  font-size: 1.02rem;
}

.btn--small {
  min-height: 42px;
  padding: 10px 15px;
  white-space: nowrap;
  font-size: 0.82rem;
}

.mode-data-note {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.map-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.map-stage,
.map-destinations {
  padding: clamp(24px, 3vw, 42px);
}

.map-stage__head {
  align-items: flex-start;
}

.map-stage__head h2 {
  max-width: 780px;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
}

.map-back {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid #9bcbe3;
  background: #fff;
  color: var(--brand-blue-dark);
  font: 800 0.83rem/1 var(--font-body);
  cursor: pointer;
}

.world-map {
  position: relative;
  height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(225, 242, 250, 0.9) 64%, rgba(198, 226, 239, 0.9)),
    linear-gradient(180deg, #eff8fc, #d8edf7);
  border: 1px solid #bddbe9;
  outline: none;
}

.world-map:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 107, 166, 0.25);
}

.world-map__plane {
  position: absolute;
  inset: 0;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.world-map__continents {
  position: absolute;
  inset: 5% 3%;
  width: 94%;
  height: 90%;
  filter: drop-shadow(0 14px 18px rgba(10, 77, 112, 0.12));
}

.world-map__continents path {
  fill: #0c6f9f;
  stroke: #064b70;
  stroke-width: 2;
  opacity: 0.88;
}

.map-marker {
  position: absolute;
  left: var(--map-x);
  top: var(--map-y);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px 5px 5px;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-blue-dark);
  font: 800 0.72rem/1 var(--font-body);
  box-shadow: 0 7px 20px rgba(9, 58, 83, 0.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.map-marker:hover,
.map-marker:focus-visible,
.map-marker.is-active {
  z-index: 4;
  background: var(--brand-blue-dark);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.map-marker__dot {
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 2px var(--brand-red);
}

.map-explorer.is-zoomed .map-marker:not(.is-active) {
  opacity: 0.16;
}

.map-explorer.is-zoomed .world-map__continents path {
  opacity: 0.7;
}

.map-flight-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  opacity: 0;
  transform-origin: left center;
}

.map-explorer.is-zoomed .map-flight-line {
  width: 110px;
  opacity: 0.65;
  animation: map-flight 680ms ease both;
}

@keyframes map-flight {
  from { transform: scaleX(0); opacity: 0; }
  40% { opacity: 0.8; }
  to { transform: scaleX(1); opacity: 0; }
}

.map-instruction {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.map-destinations {
  display: flex;
  flex-direction: column;
}

.map-destinations h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
}

.map-destinations > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.map-destination-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.map-region-link,
.map-program {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: var(--snow);
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.map-region-link:hover,
.map-region-link:focus-visible,
.map-program:hover,
.map-program:focus-visible {
  border-color: var(--brand-blue);
  background: var(--ice);
}

.map-region-link span,
.map-program span {
  grid-column: 1 / -1;
  color: var(--brand-blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-region-link strong,
.map-program strong {
  font-size: 0.98rem;
}

.map-region-link small,
.map-program small {
  align-self: end;
  color: var(--muted);
  font-size: 0.72rem;
}

.map-program {
  grid-template-columns: 1fr;
}

.map-program small {
  margin-top: 8px;
  color: var(--brand-red);
  font-weight: 800;
}

.map-empty-region {
  padding: 22px;
  background: var(--snow);
  border-left: 3px solid var(--brand-blue);
}

.map-empty-region p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.home-map-preview {
  position: relative;
  height: min(56vw, 620px);
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 44%, rgba(255,255,255,0.98), rgba(224,242,250,0.92) 66%, rgba(197,225,238,0.92)),
    linear-gradient(180deg, #eff8fc, #d8edf7);
  border: 1px solid #b9d9e8;
  box-shadow: 0 28px 80px rgba(15, 75, 106, 0.1);
}

.home-map-preview__continents {
  position: absolute;
  inset: 4% 4% 10%;
  width: 92%;
  height: 86%;
  filter: drop-shadow(0 16px 22px rgba(10, 77, 112, 0.14));
}

.home-map-preview__continents path {
  fill: #0c6f9f;
  stroke: #064b70;
  stroke-width: 2;
  opacity: 0.9;
}

.home-map-pin {
  position: absolute;
  left: var(--map-x);
  top: var(--map-y);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 7px;
  color: var(--brand-blue-dark);
  background: rgba(255,255,255,0.96);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(9, 58, 83, 0.2);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease, color 200ms ease, background 200ms ease;
}

.home-map-pin i,
.home-map-preview__legend i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--brand-red);
}

.home-map-pin:hover,
.home-map-pin:focus-visible {
  z-index: 3;
  color: #fff;
  background: var(--brand-blue-dark);
  transform: translate(-50%, -50%) scale(1.08);
}

.home-map-preview__legend {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  color: var(--muted);
  background: rgba(255,255,255,0.93);
  border: 1px solid rgba(170, 208, 226, 0.8);
  backdrop-filter: blur(12px);
}

.home-map-preview__legend span {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.home-map-preview__legend strong {
  color: var(--brand-blue-dark);
  text-align: right;
}

.guide-profile-hero,
.stories-hero,
.about-hero {
  padding: 58px 0 88px;
  background: var(--snow);
}

.guide-profile-hero__grid,
.stories-hero__grid,
.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 94px);
  align-items: center;
}

.guide-profile-hero__portrait,
.stories-hero__media,
.about-hero__media {
  position: relative;
  min-height: 660px;
  margin: 0;
  overflow: hidden;
  background: var(--ice);
}

.guide-profile-hero__portrait img,
.stories-hero__media img,
.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-profile-hero__portrait figcaption,
.stories-hero__media figcaption,
.about-hero__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(6, 75, 112, 0.83);
  font-size: 0.75rem;
}

.guide-profile-hero__copy h1,
.stories-hero__copy h1,
.about-hero__copy h1 {
  margin: 14px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.guide-profile-hero__copy > p:not(.eyebrow),
.stories-hero__copy > p:not(.eyebrow),
.about-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
}

.guide-profile-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.guide-profile-quote {
  margin: 34px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--brand-blue-dark);
  font-size: 1.3rem;
  font-weight: 800;
}

.guide-profile-quote cite {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
}

.guide-trip-list {
  border-top: 1px solid var(--line);
}

.guide-trip-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 140px 130px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.guide-trip-row > span {
  color: var(--brand-red);
  font-size: 1.25rem;
  font-weight: 900;
}

.guide-trip-row small,
.guide-trip-row strong {
  display: block;
}

.guide-trip-row small {
  margin-bottom: 5px;
  color: var(--muted);
}

.guide-trip-row i {
  color: var(--brand-blue);
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.guide-evidence-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.guide-evidence-grid > div {
  padding-right: 48px;
}

.guide-evidence-card {
  margin: 0;
  background: var(--snow);
  border: 1px solid var(--line);
}

.guide-evidence-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.guide-evidence-card small,
.guide-evidence-card h3 {
  display: block;
  margin-inline: 20px;
}

.guide-evidence-card small {
  margin-top: 18px;
  color: var(--brand-red);
  font-weight: 800;
}

.guide-evidence-card h3 {
  margin-top: 8px;
  margin-bottom: 24px;
}

.guide-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-directory article {
  background: #fff;
  border: 1px solid var(--line);
}

.guide-directory img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.guide-directory h3,
.guide-directory p {
  margin-inline: 22px;
}

.guide-directory h3 {
  margin-top: 18px;
  margin-bottom: 6px;
}

.guide-directory p {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--muted);
}

.stories-hero__grid,
.about-hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.stories-hero__media,
.about-hero__media {
  min-height: 590px;
}

.story-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.story-filter-bar button {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid #a9cddd;
  background: #fff;
  color: var(--brand-blue-dark);
  font-weight: 800;
  cursor: pointer;
}

.story-filter-bar button.is-active {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.story-filter-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.story-search-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 44px;
  padding: 22px;
  background: var(--snow);
  border: 1px solid var(--line);
}

.story-search-row label span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  font-weight: 800;
}

.story-search-row select {
  width: 100%;
  min-height: 46px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.media-card {
  grid-column: span 4;
  background: var(--snow);
  border: 1px solid var(--line);
}

.media-card--feature {
  grid-column: span 8;
}

.media-card--wide {
  grid-column: span 8;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-card > div {
  padding: 24px;
}

.media-card small {
  color: var(--brand-red);
  font-weight: 800;
}

.media-card h2,
.media-card h3 {
  margin: 9px 0 12px;
}

.media-card h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
}

.media-card p {
  color: var(--muted);
}

.media-card a,
.media-links a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.archive-bridge {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
  padding: 54px;
  color: #fff;
  background: var(--brand-blue-dark);
}

.archive-bridge h2 {
  margin: 9px 0 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.archive-bridge > div:last-child {
  display: grid;
  gap: 9px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
}

.archive-bridge > div:last-child strong {
  color: var(--brand-red);
  font-size: 1.2rem;
}

.about-motto {
  margin-top: 34px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.about-motto span,
.about-motto strong {
  display: block;
}

.about-motto span {
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-motto strong {
  margin-top: 7px;
  color: var(--brand-blue-dark);
  font-size: 1.7rem;
}

.about-facts {
  padding: 0 0 80px;
  background: var(--snow);
}

.about-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts article {
  padding: 32px 26px;
  border-right: 1px solid var(--line);
}

.about-facts article:last-child {
  border-right: 0;
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: 3.5rem;
}

.about-facts span {
  margin-top: 5px;
  color: var(--muted);
}

.about-facts > .container > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.service-directory {
  border-top: 1px solid var(--line);
}

.service-directory > a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 27px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.service-directory > a > span {
  color: var(--brand-red);
  font-weight: 900;
}

.service-directory h3,
.service-directory p {
  margin: 0;
}

.service-directory p {
  margin-top: 5px;
  color: var(--muted);
}

.service-directory b {
  color: var(--brand-blue);
  white-space: nowrap;
}

.about-people {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-people__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-people__photos img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 560px;
  background: var(--brand-blue-dark);
}

.contact-layout__main,
.contact-form {
  padding: clamp(32px, 5vw, 72px);
}

.contact-layout__main {
  color: #fff;
}

.contact-layout__main h2 {
  margin: 12px 0 34px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.95;
}

.contact-layout__main a,
.contact-layout__main span {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
}

.contact-form {
  display: grid;
  align-content: center;
  gap: 18px;
  background: #fff;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px;
  border: 1px solid var(--line);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form small {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 16px;
  }

  .header-phone {
    display: none;
  }

  .trip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trip-grid .trip-card:last-child {
    display: none;
  }

  .catalog-results {
    grid-template-columns: 1fr;
  }

  .catalog-results .trip-card:last-child {
    display: block;
  }

  .detail-body {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 38px;
  }
}

@media (max-width: 959px) {
  :root {
    --header-height: 68px;
  }

  .guide-profile-hero__grid,
  .stories-hero__grid,
  .about-hero__grid,
  .about-people,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .guide-profile-hero__portrait,
  .stories-hero__media,
  .about-hero__media {
    min-height: 520px;
  }

  .guide-evidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-evidence-grid > div {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .guide-trip-row {
    grid-template-columns: 110px minmax(0, 1fr) 130px;
  }

  .guide-trip-row i {
    grid-column: 2 / -1;
    text-align: left;
  }

  .story-search-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-card,
  .media-card--feature,
  .media-card--wide {
    grid-column: span 6;
  }

  .archive-bridge {
    grid-template-columns: 1fr;
  }

  .about-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-facts article:nth-child(2) {
    border-right: 0;
  }

  .about-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .calendar-layout,
  .map-explorer {
    grid-template-columns: 1fr;
  }

  .departure-row {
    grid-template-columns: 90px minmax(0, 1fr) 150px;
  }

  .departure-row .btn {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .world-map {
    height: 450px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .desktop-nav,
  .header-actions .btn,
  .header-phone {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  .site-logo {
    width: 114px;
  }

  .home-hero__grid,
  .detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    padding: 62px 0;
  }

  .home-hero__media {
    min-height: 560px;
    order: -1;
  }

  .quick-paths {
    margin-top: 0;
  }

  .quick-paths__grid {
    grid-template-columns: 1fr;
  }

  .quick-path {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .finder-step {
    grid-template-columns: 180px 1fr;
  }

  .finder-footer {
    margin-left: 208px;
  }

  .live-feature,
  .guide-feature,
  .story-grid,
  .consultation,
  .catalog-hero__top,
  .detail-body {
    grid-template-columns: 1fr;
  }

  .live-feature__content,
  .guide-feature__content {
    padding: 46px;
  }

  .path-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .path-steps::before {
    display: none;
  }

  .story-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    min-height: 300px;
  }

  .consultation {
    padding: 48px;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .filter-panel {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: none;
    padding: 20px;
    overflow-y: auto;
  }

  .filter-panel.is-open {
    display: block;
  }

  .filter-close,
  .filter-mobile-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .filter-panel__footer {
    position: sticky;
    bottom: -20px;
    padding: 14px 0 20px;
    background: var(--snow);
  }

  .catalog-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero__media {
    min-height: 520px;
  }

  .detail-hero__content {
    padding-bottom: 10px;
  }

  .detail-body {
    padding-bottom: 130px;
  }

  .booking-aside {
    display: none;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 18px;
    color: #fff;
    background: var(--blue-dark);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  }

  .mobile-booking-bar span {
    display: grid;
  }

  .mobile-booking-bar small {
    color: #98a4a7;
    font-size: 9px;
  }

  .mobile-booking-bar strong {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .mode-view {
    padding: 26px 0 68px;
  }

  .calendar-shell,
  .map-stage,
  .map-destinations {
    padding: 20px;
  }

  .calendar-toolbar,
  .map-stage__head,
  .departure-agenda__head {
    display: block;
  }

  .calendar-months {
    margin-top: 20px;
  }

  .calendar-month {
    flex: 1;
  }

  .month-calendar {
    padding: 10px;
  }

  .calendar-day {
    min-height: 54px;
    padding: 6px;
  }

  .calendar-day span {
    display: none;
  }

  .departure-agenda__head small {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .departure-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }

  .departure-row__price,
  .departure-row .btn {
    grid-column: 2;
    text-align: left;
  }

  .world-map {
    height: 390px;
  }

  .home-map-preview {
    min-height: 380px;
  }

  .home-map-pin span {
    display: none;
  }

  .home-map-pin:hover span,
  .home-map-pin:focus-visible span {
    display: inline;
  }

  .home-map-preview__legend {
    display: block;
  }

  .home-map-preview__legend strong {
    display: block;
    margin-top: 10px;
    text-align: left;
  }

  .map-stage__head .map-back {
    margin-top: 18px;
  }

  .map-marker__label {
    display: none;
  }

  .map-marker.is-active .map-marker__label,
  .map-marker:focus-visible .map-marker__label {
    display: inline;
  }

  .map-marker {
    padding-right: 5px;
  }

  .guide-profile-hero,
  .stories-hero,
  .about-hero {
    padding: 28px 0 64px;
  }

  .guide-profile-hero__portrait,
  .stories-hero__media,
  .about-hero__media {
    min-height: 420px;
  }

  .guide-profile-actions,
  .media-links {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .guide-trip-row i,
  .guide-trip-row b {
    grid-column: 1;
    text-align: left;
  }

  .guide-evidence-grid,
  .guide-directory,
  .story-search-row,
  .about-facts__grid,
  .about-people__photos {
    grid-template-columns: 1fr;
  }

  .media-card,
  .media-card--feature,
  .media-card--wide {
    grid-column: 1 / -1;
  }

  .archive-bridge {
    padding: 28px;
  }

  .about-facts article,
  .about-facts article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-directory > a {
    grid-template-columns: 42px 1fr;
  }

  .service-directory b {
    grid-column: 2;
    white-space: normal;
  }

  .concept-bar__inner {
    min-height: 38px;
  }

  .concept-bar__inner span:last-child {
    display: none;
  }

  .mobile-menu {
    inset-top: calc(var(--header-height) + 38px);
  }

  .section,
  .section--tight {
    padding: 64px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 32px;
  }

  .section-head .text-link,
  .section-head .btn {
    margin-top: 12px;
  }

  .display-title {
    font-size: clamp(48px, 15vw, 68px);
  }

  .page-title,
  .detail-title {
    font-size: clamp(43px, 13vw, 59px);
  }

  .section-title {
    font-size: clamp(38px, 11vw, 50px);
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__grid {
    width: 100%;
  }

  .home-hero__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .home-hero__copy {
    width: calc(100% - 32px);
    margin-inline: auto;
    padding: 42px 0 54px;
  }

  .hero-route-marker {
    top: auto;
    bottom: -23px;
    left: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    margin-top: 34px;
  }

  .image-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: none;
  }

  .quick-paths .container {
    width: 100%;
  }

  .finder {
    margin-inline: -16px;
    padding: 28px 20px;
    border-inline: 0;
  }

  .finder::before {
    left: 24px;
  }

  .finder-step {
    grid-template-columns: 1fr;
    padding-left: 28px;
    gap: 14px;
  }

  .finder-step__heading::before {
    left: -25px;
  }

  .choice-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .choice {
    border-radius: var(--radius);
    text-align: left;
  }

  .finder-footer {
    display: grid;
    margin-left: 28px;
  }

  .finder-footer .btn {
    width: 100%;
  }

  .trip-grid,
  .catalog-results {
    grid-template-columns: 1fr;
  }

  .trip-grid .trip-card:last-child {
    display: block;
  }

  .trip-card__title {
    min-height: 0;
  }

  .live-feature__media {
    min-height: 440px;
  }

  .live-feature__content,
  .guide-feature__content {
    padding: 34px 24px;
  }

  .expedition-progress {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .expedition-progress span {
    padding: 0 0 0 22px;
  }

  .expedition-progress span::before {
    top: 0;
    bottom: -18px;
    left: 4px;
    width: 2px;
    height: auto;
  }

  .path-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 20px;
  }

  .path-steps::before {
    top: 20px;
    bottom: 30px;
    left: 5px;
    display: block;
    width: 2px;
    height: auto;
  }

  .path-step {
    padding: 12px 0 28px 28px;
  }

  .path-step::before {
    top: 14px;
    left: -25px;
    width: 16px;
    height: 16px;
    border-width: 4px;
  }

  .guide-feature {
    margin-inline: -16px;
  }

  .guide-feature__portrait {
    min-height: 440px;
  }

  .guide-feature__initials {
    font-size: 120px;
  }

  .guide-quote {
    font-size: 24px;
  }

  .safety-grid,
  .fit-grid,
  .included-grid,
  .prep-grid,
  .archive-cards {
    grid-template-columns: 1fr;
  }

  .safety-card__number {
    margin-bottom: 24px;
  }

  .story-main {
    min-height: 540px;
  }

  .story-side {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-content {
    padding: 24px;
  }

  .consultation {
    margin-inline: -16px;
    padding: 42px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom,
  .catalog-summary__inner,
  .results-toolbar,
  .catalog-help {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-bottom {
    display: grid;
  }

  .catalog-hero {
    padding-top: 48px;
  }

  .catalog-modes {
    margin-inline: -16px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
    overscroll-behavior-x: contain;
  }

  .catalog-summary__inner {
    display: grid;
  }

  .results-toolbar {
    position: sticky;
    z-index: 45;
    top: var(--header-height);
    display: flex;
    margin-inline: -16px;
    padding: 10px 16px;
    align-items: center;
    background: var(--paper);
    border-block: 1px solid var(--line);
  }

  .results-toolbar h2 {
    font-size: 22px;
  }

  .results-tools select {
    display: none;
  }

  .detail-hero {
    padding-top: 0;
  }

  .detail-hero .container {
    width: 100%;
  }

  .detail-hero__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .detail-hero__content {
    padding: 32px 16px 18px;
  }

  .detail-facts {
    grid-template-columns: 1fr 1fr;
  }

  .local-nav__inner {
    width: 100%;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
    overscroll-behavior-x: contain;
  }

  .detail-body {
    padding-top: 52px;
  }

  .detail-section {
    padding: 56px 0;
  }

  .date-option {
    grid-template-columns: 1fr 28px;
  }

  .date-option__meta {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .date-option__check {
    grid-column: 2;
    grid-row: 1;
  }

  .route-day {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .route-day--summit::before {
    left: -32px;
  }

  .photo-pair {
    grid-template-columns: 1fr;
    height: auto;
  }

  .photo-pair img {
    aspect-ratio: 4 / 3;
  }

  .safety-process,
  .program-guide {
    grid-template-columns: 1fr;
  }

  .program-guide__portrait {
    min-height: 340px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .dialog-head,
  .dialog-body {
    padding-inline: 20px;
  }

  .mobile-booking-bar .btn {
    min-height: 44px;
    padding: 9px 13px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    gap: 10px;
  }

  .detail-facts {
    grid-template-columns: 1fr;
  }

  .mobile-booking-bar small {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Feedback pass 0.5 */
.home-hero__grid {
  width: min(calc(100% - 48px), 1360px);
  max-width: 1360px;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 49, 74, 0.84) 0%, rgba(3, 49, 74, 0.67) 27%, rgba(3, 49, 74, 0.3) 49%, rgba(3, 49, 74, 0.03) 73%),
    linear-gradient(0deg, rgba(3, 49, 74, 0.34), transparent 44%);
}

.home-hero__copy {
  width: min(720px, 58%);
  color: #fff;
}

.home-hero__copy .display-title {
  color: #fff;
}

.home-hero__copy .eyebrow {
  color: #ff5a4a;
}

.home-hero__copy .lead {
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__copy .hero-trust {
  color: rgba(255, 255, 255, 0.88);
}

.home-hero__copy .btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.home-hero__media img {
  object-position: 52% 53%;
  filter: contrast(1.04) saturate(1.04);
  transform: none;
}

.quick-paths {
  margin-top: 0;
}

.home-hero .image-caption {
  bottom: 18px;
}

.map-explorer {
  grid-template-columns: 1fr;
  gap: 20px;
}

.map-stage {
  padding: 0;
}

.map-destinations {
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.map-destination-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.world-map {
  height: min(720px, 70vw);
  min-height: 610px;
}

.home-map-preview {
  height: min(62vw, 720px);
  min-height: 560px;
}

.region-map__object {
  inset: 1% 0 7%;
  width: 100%;
  height: 92%;
}

.home-map-preview__plane,
.world-map__plane {
  transform-origin: 0 0;
  transition: transform 680ms cubic-bezier(0.18, 0.74, 0.16, 1), filter 520ms ease, opacity 420ms ease;
}

.region-map::after {
  position: absolute;
  z-index: 6;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0) 0 20%, rgba(233,246,252,0.16) 43%, rgba(255,255,255,0.82) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.is-flying .region-map::after,
.region-map.is-flying::after {
  opacity: 1;
}

.region-map__flight {
  display: none;
}

.is-flying [data-map-plane] {
  filter: saturate(1.1) contrast(1.04) brightness(1.04);
  opacity: 1;
  transform: translate(var(--map-flight-x, 0), var(--map-flight-y, 0)) scale(var(--map-flight-scale, 2.5));
}

.is-region-open [data-map-plane] {
  filter: blur(2px) brightness(1.08);
  opacity: 0;
  transform: translate(var(--map-flight-x, 0), var(--map-flight-y, 0)) scale(var(--map-flight-scale, 2.5));
}

.is-returning [data-map-plane] {
  filter: none;
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.region-map__status,
.home-map-preview__legend {
  transition: opacity 180ms ease;
}

.is-flying .region-map__status,
.is-flying .home-map-preview__legend,
.is-region-open .region-map__status,
.is-region-open .home-map-preview__legend {
  opacity: 0;
}

.map-explorer:is(.is-flying, .is-region-open, .is-returning) .map-stage {
  padding: 0;
}

.map-explorer:is(.is-flying, .is-region-open, .is-returning) .world-map {
  height: min(720px, 78svh);
}

.guide-profile-hero__portrait {
  min-height: 500px;
  max-height: 560px;
}

.guide-profile-hero__portrait img {
  object-position: center 22%;
}

.guide-directory img {
  height: 320px;
  aspect-ratio: auto;
  object-position: center 22%;
}

.guide-directory article {
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(25, 66, 87, 0.08);
}

.story-filter-bar {
  gap: 10px;
}

.story-filter-bar button {
  min-width: 86px;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid #78afca;
  box-shadow: 0 5px 14px rgba(8, 82, 119, 0.08);
  opacity: 1;
}

.story-filter-bar button:hover,
.story-filter-bar button:focus-visible {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.story-filter-bar button.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 107, 166, 0.22);
}

.media-grid.is-filtered {
  grid-template-columns: minmax(0, 820px);
}

.media-grid.is-filtered .media-card:not([hidden]) {
  grid-column: 1;
}

.calendar-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(24px, 3vw, 42px);
}

.calendar-day {
  min-height: 82px;
}

.calendar-day span {
  max-width: 100%;
  margin-top: 7px;
  color: var(--blue-deep);
  font-size: 0.62rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-transform: none;
  white-space: nowrap;
}

.calendar-day--departure {
  border-top: 3px solid var(--blue);
}

@media (max-width: 959px) {
  .home-hero__grid {
    width: calc(100% - 32px);
  }

  .map-destination-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .world-map {
    height: min(680px, 76vw);
    min-height: 500px;
  }

  .calendar-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-hero__copy {
    width: 100%;
  }

  .map-destination-list {
    grid-template-columns: 1fr;
  }

  .world-map,
  .map-explorer:is(.is-flying, .is-region-open, .is-returning) .world-map {
    height: 600px;
    min-height: 600px;
  }

  .home-map-preview {
    min-height: 540px;
  }

  .guide-directory img {
    height: 280px;
  }

  .story-filter-bar button {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .calendar-day {
    min-height: 54px;
  }
}

@media print {
  .concept-bar,
  .site-header,
  .local-nav,
  .mobile-booking-bar,
  .btn,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .detail-body {
    display: block;
    padding-top: 20px;
  }

  .detail-section {
    break-inside: avoid;
  }
}

/* Full-screen editorial hero and region-first map */
.home-hero {
  min-height: min(900px, calc(100svh - 104px));
  background: #eaf4f8;
  isolation: isolate;
}

.home-hero::before {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 30%, rgba(246, 251, 253, 0.54) 56%, rgba(246, 251, 253, 0.08) 78%),
    linear-gradient(0deg, rgba(3, 49, 74, 0.34), transparent 42%);
  transform: none;
}

.home-hero__grid {
  position: relative;
  display: block;
  min-height: inherit;
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  width: min(760px, 63%);
  min-height: inherit;
  padding: clamp(72px, 9vh, 118px) 0 78px;
}

.home-hero__copy .display-title {
  max-width: 760px;
  font-size: clamp(62px, 6.7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.home-hero__copy .lead {
  max-width: 590px;
  color: #263f4c;
  font-size: clamp(17px, 1.35vw, 21px);
}

.home-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 50%;
  width: 100vw;
  min-height: 0;
  margin: 0 0 0 -50vw;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 54%;
  transform: scale(1.012);
}

.home-hero .hero-route-marker {
  display: none;
}

.home-hero .image-caption {
  z-index: 3;
  right: 28px;
  bottom: 26px;
  color: #173b4d;
  background: #fff;
  border: 1px solid rgba(12, 111, 159, 0.18);
  backdrop-filter: none;
}

.home-hero .hero-trust {
  color: #285164;
  font-weight: 700;
}

.region-map {
  --map-focus-x: 50%;
  --map-focus-y: 50%;
  position: relative;
}

.home-map-preview__plane,
.world-map__plane {
  position: absolute;
  inset: 0;
  transform-origin: var(--map-focus-x) var(--map-focus-y);
  transition: transform 560ms cubic-bezier(0.2, 0.72, 0.14, 1), filter 440ms ease, opacity 360ms ease;
  will-change: transform, filter;
}

.region-map__object {
  position: absolute;
  inset: 4% 3% 8%;
  width: 94%;
  height: 88%;
  border: 0;
  filter: drop-shadow(0 16px 22px rgba(10, 77, 112, 0.14));
}

.region-map__status {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 20px;
  min-width: 184px;
  padding: 10px 14px;
  color: var(--brand-blue-dark);
  background: #fff;
  border: 1px solid #a8cee0;
  box-shadow: 0 10px 28px rgba(8, 62, 91, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  pointer-events: none;
}

.region-map__flight {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: -20%;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff 58%, var(--brand-red));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.92);
  opacity: 0;
  pointer-events: none;
}

.is-flying [data-map-plane] {
  filter: blur(3px) saturate(1.18) brightness(1.2);
  opacity: 0.82;
  transform: scale(3.25);
}

.is-flying .region-map__flight {
  animation: region-flight 560ms cubic-bezier(0.24, 0.64, 0.2, 1) both;
}

.is-region-open [data-map-plane] {
  filter: blur(7px) brightness(1.25);
  opacity: 0;
  transform: scale(3.55);
}

.is-returning [data-map-plane] {
  transform: scale(1);
}

@keyframes region-flight {
  0% { left: -20%; opacity: 0; transform: translateY(-40px) rotate(-6deg); }
  34% { opacity: 1; }
  100% { left: 92%; opacity: 0; transform: translateY(18px) rotate(3deg); }
}

.region-scene {
  position: absolute;
  z-index: 8;
  inset: 0;
  overflow: hidden auto;
  color: #fff;
  background: #073652;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 460ms ease, transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-region-open .region-scene {
  opacity: 1;
  transform: scale(1);
}

.region-scene__image,
.region-scene__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.region-scene__image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: region-scene-image 8s ease-out both;
}

.region-scene__shade {
  background:
    linear-gradient(90deg, rgba(3, 34, 51, 0.92) 0%, rgba(3, 34, 51, 0.72) 46%, rgba(3, 34, 51, 0.2) 82%),
    linear-gradient(0deg, rgba(3, 34, 51, 0.94), transparent 66%);
}

@keyframes region-scene-image {
  from { transform: scale(1.13); }
  to { transform: scale(1.02); }
}

.region-scene__close {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  min-height: 42px;
  padding: 10px 15px;
  color: #fff;
  background: #075f8e;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font: 900 0.8rem/1 var(--font-body);
  cursor: pointer;
}

.region-scene__close:hover,
.region-scene__close:focus-visible {
  background: var(--brand-red);
}

.region-scene__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  max-width: 1120px;
  padding: 100px clamp(24px, 5vw, 74px) clamp(34px, 6vw, 72px);
}

.region-scene__content h3 {
  max-width: 820px;
  margin: 0 0 14px;
  color: #fff;
  font: 800 clamp(48px, 7vw, 96px)/0.94 var(--font-display);
  letter-spacing: -0.045em;
}

.region-scene__content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.5vw, 20px);
}

.region-scene__programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 930px;
  margin-top: 30px;
  gap: 12px;
}

.region-program,
.region-scene__empty {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
  color: #0c3850;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0, 24, 37, 0.22);
}

.region-program span {
  color: var(--brand-blue);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.region-program strong {
  color: var(--ink);
  font-size: 1rem;
}

.region-program small {
  margin-top: 5px;
  color: var(--brand-red);
  font-weight: 900;
}

.region-program:hover,
.region-program:focus-visible {
  background: #eaf7fc;
  border-color: #78b7d5;
  transform: translateY(-2px);
}

.region-scene__empty {
  grid-column: 1 / -1;
  max-width: 560px;
}

.region-scene__empty p {
  margin: 0;
  color: var(--muted);
}

.map-explorer:is(.is-flying, .is-region-open, .is-returning) {
  grid-template-columns: 1fr;
}

.map-explorer:is(.is-flying, .is-region-open, .is-returning) .map-destinations,
.map-explorer:is(.is-flying, .is-region-open, .is-returning) .map-stage__head,
.map-explorer:is(.is-flying, .is-region-open, .is-returning) .map-instruction {
  display: none;
}

.map-explorer:is(.is-flying, .is-region-open, .is-returning) .map-stage {
  padding: 0;
}

.map-explorer:is(.is-flying, .is-region-open, .is-returning) .world-map {
  height: min(760px, 78svh);
}

.home-map-preview__legend {
  z-index: 4;
}

@media (max-width: 959px) {
  .home-hero {
    min-height: max(680px, calc(100svh - 72px));
  }

  .home-hero__grid {
    width: min(100% - 32px, var(--container));
  }

  .home-hero__copy {
    width: min(680px, 92%);
    min-height: inherit;
    padding: 90px 0 62px;
  }

  .home-hero__media {
    position: absolute;
    min-height: 0;
    aspect-ratio: auto;
    order: initial;
  }

  .home-hero__copy .display-title {
    font-size: clamp(52px, 10.4vw, 82px);
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.72) 62%, rgba(255,255,255,0.18)),
      linear-gradient(0deg, rgba(4,48,70,0.42), transparent 52%);
  }

  .world-map {
    height: 520px;
  }

  .region-scene__programs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-hero {
    min-height: 710px;
  }

  .home-hero__grid {
    width: calc(100% - 32px);
  }

  .home-hero__copy {
    width: 100%;
    padding: 78px 0 38px;
    justify-content: flex-end;
  }

  .home-hero__copy .display-title {
    max-width: 520px;
    font-size: clamp(47px, 14vw, 64px);
  }

  .home-hero__copy .lead {
    font-size: 16px;
  }

  .home-hero::before {
    background:
      linear-gradient(0deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.91) 45%, rgba(255,255,255,0.18) 78%),
      linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
  }

  .home-hero__media img {
    object-position: 58% 28%;
  }

  .home-hero .image-caption {
    display: none;
  }

  .hero-trust {
    margin-top: 26px;
  }

  .home-map-preview {
    min-height: 520px;
  }

  .home-map-preview__legend {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px 14px;
    font-size: 0.75rem;
  }

  .region-map__object {
    inset: 9% -12% 16%;
    width: 124%;
    height: 75%;
  }

  .region-map__status {
    top: 14px;
    left: 14px;
    min-width: 0;
  }

  .region-scene__content {
    justify-content: flex-end;
    padding: 90px 18px 24px;
  }

  .region-scene__content h3 {
    font-size: clamp(44px, 15vw, 62px);
  }

  .region-scene__close {
    top: 14px;
    left: 14px;
  }

  .region-program,
  .region-scene__empty {
    padding: 14px 15px;
  }

  .world-map,
  .map-explorer:is(.is-flying, .is-region-open, .is-returning) .world-map {
    height: 650px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-map-preview__plane,
  .world-map__plane,
  .region-scene {
    transition: none !important;
  }

  .region-scene__image,
  .region-map__flight {
    animation: none !important;
  }
}

/* Keep feedback overrides last in the cascade. */
.home-hero__grid {
  width: min(calc(100% - 48px), 1360px);
  max-width: 1360px;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 49, 74, 0.84) 0%, rgba(3, 49, 74, 0.67) 27%, rgba(3, 49, 74, 0.3) 49%, rgba(3, 49, 74, 0.03) 73%),
    linear-gradient(0deg, rgba(3, 49, 74, 0.34), transparent 44%);
}

.home-hero__copy {
  width: min(720px, 58%);
  color: #fff;
}

.home-hero__copy .display-title {
  color: #fff;
}

.home-hero__copy .eyebrow {
  color: #ff5a4a;
}

.home-hero__copy .lead {
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__copy .hero-trust {
  color: rgba(255, 255, 255, 0.88);
}

.home-hero__copy .btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.home-hero__media img {
  object-position: 52% 53%;
  filter: contrast(1.04) saturate(1.04);
  transform: none;
}

.home-map-preview__plane,
.world-map__plane {
  transform-origin: 0 0;
  transition: transform 680ms cubic-bezier(0.18, 0.74, 0.16, 1), filter 520ms ease, opacity 420ms ease;
}

.is-flying [data-map-plane] {
  filter: saturate(1.08) contrast(1.035) brightness(1.03);
  opacity: 1;
  transform: translate(var(--map-flight-x, 0), var(--map-flight-y, 0)) scale(var(--map-flight-scale, 2.5));
}

.is-region-open [data-map-plane] {
  filter: blur(1px) brightness(1.06);
  opacity: 0;
  transform: translate(var(--map-flight-x, 0), var(--map-flight-y, 0)) scale(var(--map-flight-scale, 2.5));
}

.is-returning [data-map-plane] {
  filter: none;
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (max-width: 959px) {
  .home-hero__grid {
    width: calc(100% - 32px);
  }
}

@media (max-width: 620px) {
  .home-hero__copy {
    width: 100%;
  }

  .home-hero::before {
    background:
      linear-gradient(0deg, rgba(3, 49, 74, 0.92) 0%, rgba(3, 49, 74, 0.72) 54%, rgba(3, 49, 74, 0.08) 88%),
      linear-gradient(90deg, rgba(3, 49, 74, 0.42), rgba(3, 49, 74, 0.04));
  }

  .home-hero__media img {
    object-position: 48% 52%;
  }
}

/* 3D destination globe */
.globe-map {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.88), rgba(232, 241, 245, 0.7) 48%, rgba(213, 229, 236, 0.92) 100%),
    #e4eff3;
}

.globe-map::before {
  display: none;
}

.globe-map__stage {
  z-index: 1;
  overflow: hidden;
  transform-origin: 50% 50%;
}

.globe-map__canvas,
.globe-map__fallback {
  position: absolute;
  inset: 0;
}

.globe-map__canvas {
  z-index: 2;
  opacity: 0;
  cursor: grab;
  touch-action: pan-y;
  transition: opacity 420ms ease;
}

.globe-map__canvas:active {
  cursor: grabbing;
}

.globe-map__canvas > div,
.globe-map__canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.globe-map__canvas canvas {
  filter: none;
}

.globe-map__fallback {
  z-index: 1;
  opacity: 1;
  transition: opacity 320ms ease;
}

.globe-map.is-globe-ready .globe-map__canvas {
  opacity: 1;
}

.globe-map.is-globe-ready .globe-map__fallback {
  opacity: 0;
  pointer-events: none;
}

.globe-map__hint {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #315d72;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(123, 181, 207, 0.7);
  box-shadow: 0 10px 28px rgba(8, 62, 91, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  pointer-events: none;
}

.globe-map__hint span {
  color: var(--brand-red);
  font-size: 1rem;
}

.scene-tooltip,
.float-tooltip-kap {
  z-index: 9999 !important;
  pointer-events: none !important;
}

.float-tooltip-kap {
  padding: 0 !important;
  color: inherit !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.globe-map.is-globe-dragging .float-tooltip-kap {
  opacity: 0 !important;
}

.globe-tooltip {
  display: grid;
  min-width: 190px;
  gap: 4px;
  padding: 13px 15px;
  color: #fff;
  background: rgba(4, 55, 82, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 38px rgba(3, 41, 61, 0.28);
  font-family: var(--font-body);
  backdrop-filter: blur(10px);
}

.globe-tooltip span,
.globe-tooltip small {
  font-size: 0.68rem;
}

.globe-tooltip span {
  color: #bde8fb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.globe-tooltip strong {
  font-size: 0.96rem;
}

.globe-tooltip small {
  color: rgba(255, 255, 255, 0.76);
}

.globe-tooltip--country {
  min-width: 0;
  padding: 9px 12px;
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 28px rgba(3, 41, 61, 0.2);
}

.globe-tooltip--country strong {
  font-size: 0.82rem;
  white-space: nowrap;
}

.globe-tooltip--point {
  border-color: rgba(239, 76, 63, 0.75);
}

.globe-html-label {
  margin: 0;
  padding: 0;
  opacity: 0;
  color: var(--brand-blue-dark);
  background: none;
  border: 0;
  font: 800 11px/1 var(--font-body);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 140ms ease;
}

.globe-html-label.is-visible {
  opacity: 1;
}

.globe-html-label__content {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.globe-html-label__content b {
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(94, 159, 190, 0.58);
  box-shadow: 0 6px 18px rgba(4, 66, 98, 0.14);
  backdrop-filter: blur(7px);
}

.globe-html-label__content i {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--brand-red);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--brand-red);
}

.globe-html-label--destination {
  cursor: pointer;
  pointer-events: auto;
}

.globe-html-label--destination .globe-html-label__content {
  transform: translate(11px, -50%);
}

.globe-html-label--destination:hover .globe-html-label__content b,
.globe-html-label--destination:focus-visible .globe-html-label__content b {
  color: #fff;
  background: var(--brand-blue-dark);
  border-color: #fff;
}

.globe-html-label--destination:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 4px;
}

.globe-html-label--pole .globe-html-label__content {
  color: var(--brand-blue-dark);
  transform: translate(-50%, -130%);
}

.globe-html-label--pole .globe-html-label__content b {
  padding: 5px 7px;
  background: rgba(239, 249, 253, 0.92);
}

.globe-html-label--pole .globe-html-label__content i {
  width: 6px;
  height: 6px;
  background: var(--brand-blue-dark);
  box-shadow: 0 0 0 2px var(--brand-blue-dark);
}

.has-globe:is(.is-flying, .is-region-open) .globe-html-label,
.globe-map.has-globe:is(.is-flying, .is-region-open) .globe-html-label {
  opacity: 0 !important;
  pointer-events: none;
}

.has-globe.is-flying [data-map-plane],
.globe-map.has-globe.is-flying [data-map-plane] {
  filter: saturate(1.1) brightness(1.04);
  opacity: 1;
  transform: scale(1.09);
}

.has-globe.is-region-open [data-map-plane],
.globe-map.has-globe.is-region-open [data-map-plane] {
  filter: blur(1px) brightness(1.05);
  opacity: 0;
  transform: scale(1.13);
}

.has-globe.is-returning [data-map-plane],
.globe-map.has-globe.is-returning [data-map-plane] {
  filter: none;
  opacity: 1;
  transform: scale(1);
}

.has-globe:is(.is-flying, .is-region-open) .globe-map__hint,
.globe-map.has-globe:is(.is-flying, .is-region-open) .globe-map__hint {
  opacity: 0;
}

@media (max-width: 620px) {
  .globe-map::before {
    inset: 15% -18% 18%;
  }

  .globe-map__hint {
    top: auto;
    right: 14px;
    bottom: 76px;
    padding: 8px 10px;
    font-size: 0.69rem;
  }

  .home-map-preview__legend {
    gap: 8px;
  }

  .home-map-preview__legend span {
    white-space: normal;
  }

  .globe-map__canvas canvas {
    filter: none;
  }

  .globe-html-label {
    font-size: 9px;
  }

  .globe-html-label__content {
    gap: 5px;
  }

  .globe-html-label__content b {
    padding: 5px 6px;
  }

  .globe-html-label--pole .globe-html-label__content {
    transform: translate(-50%, 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .globe-map__canvas,
  .globe-map__fallback {
    transition: none;
  }
}

/* Catalog modes are separate scenarios, not duplicate result lists. */
.mode-showcase {
  display: grid;
  gap: 34px;
}

.mode-showcase__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.mode-showcase__head h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.mode-showcase__head p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.guide-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.guide-mode-card {
  display: grid;
  grid-template-rows: 330px 1fr;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(25, 66, 87, 0.08);
}

.guide-mode-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.guide-mode-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.guide-mode-card .eyebrow {
  margin-bottom: 10px;
  font-size: 10px;
}

.guide-mode-card h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.guide-mode-card p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
}

.guide-mode-card .text-link {
  margin-top: auto;
}

.project-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-mode-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.project-mode-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 35, 53, 0.92), rgba(2, 35, 53, 0.08) 72%);
}

.project-mode-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-mode-card:hover img,
.project-mode-card:focus-visible img {
  transform: scale(1.035);
}

.project-mode-card span {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  gap: 5px;
}

.project-mode-card small {
  color: #b9e8ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-mode-card strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
}

.project-mode-card em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
}

.archive-bridge .eyebrow {
  color: #b9e8ff;
}

@media (max-width: 959px) {
  .guide-mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-mode-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .mode-showcase__head {
    display: grid;
    align-items: start;
  }

  .guide-mode-grid,
  .project-mode-grid {
    grid-template-columns: 1fr;
  }

  .guide-mode-card,
  .guide-mode-card:last-child {
    grid-column: auto;
    grid-template-rows: 280px 1fr;
  }

  .project-mode-card {
    min-height: 290px;
  }

  .departure-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 20px 0;
  }

  .departure-row__date {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .departure-row__date small {
    margin-top: 0;
  }

  .departure-row__program h3 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .departure-row__price,
  .departure-row .btn {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .departure-row__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
  }

  .departure-row__price small {
    margin-top: 0;
  }

  .archive-bridge h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
    line-height: 1;
  }
}
