:root {
  color-scheme: light;
  --ink: #15221f;
  --muted: #63716d;
  --line: #dbe4df;
  --paper: #f7f8f3;
  --white: #ffffff;
  --forest: #143c35;
  --moss: #7b8b52;
  --water: #1e6d78;
  --coral: #e45f3f;
  --sun: #f3b33f;
  --blue: #0968ff;
  --gold: #d8ad68;
  --shadow: 0 18px 60px rgba(22, 38, 34, 0.16);
}

html {
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 8px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.home-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(3, 22, 39, 0.86), rgba(3, 22, 39, 0.42));
  border-bottom: 0;
  color: white;
  backdrop-filter: blur(16px);
}

.home-header .brand {
  color: white;
}

.home-header .brand img {
  width: 164px;
  height: 62px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.home-header .nav-item > a,
.home-header .nav-trigger,
.home-header .header-contacts > a:first-child {
  color: rgba(255, 255, 255, 0.92);
}

.home-header .nav-item:hover > a,
.home-header .nav-item:hover > .nav-trigger,
.home-header .nav-item.is-open > .nav-trigger {
  background: rgba(255, 255, 255, 0.12);
}

.home-header .primary-link {
  background: var(--blue);
  color: white;
}

.home-header .messenger-link {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.2);
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-item {
  position: relative;
  padding: 8px 0;
}

.nav-item > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 6px;
  color: #283936;
  font-size: 14px;
  font-weight: 750;
}

.nav-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav-item:hover > a,
.nav-item:hover > .nav-trigger,
.nav-item.is-open > .nav-trigger {
  background: #eef4ef;
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 30;
  width: 292px;
  display: none;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-header .nav-dropdown {
  background: rgba(10, 31, 28, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
}

.home-header .nav-dropdown a {
  color: rgba(255, 255, 255, 0.9);
}

.home-header .nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-item:hover .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  display: grid;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #31433f;
  font-size: 14px;
}

.nav-dropdown a:hover {
  background: #f0f5f0;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.messenger-link {
  width: 42px;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.messenger-link svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.messenger-link:hover {
  transform: translateY(-1px);
  border-color: rgba(9, 104, 255, 0.42);
  background: rgba(9, 104, 255, 0.12);
}

.messenger-link--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.55);
  background: rgba(37, 211, 102, 0.16);
  color: #25d366;
}

.messenger-link--telegram:hover {
  border-color: rgba(34, 158, 217, 0.55);
  background: rgba(34, 158, 217, 0.16);
  color: #229ed9;
}

.messenger-link--vk:hover {
  border-color: rgba(0, 119, 255, 0.55);
  background: rgba(0, 119, 255, 0.16);
  color: #0077ff;
}

.phone-link:hover {
  border-color: rgba(9, 104, 255, 0.55);
  background: rgba(9, 104, 255, 0.16);
  color: var(--blue);
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(96px, 10vw, 138px) clamp(22px, 5vw, 72px) clamp(28px, 4vw, 54px);
  overflow: hidden;
  color: white;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 22, 39, 0.78), rgba(3, 22, 39, 0.06) 35%, rgba(3, 22, 39, 0.88)),
    linear-gradient(90deg, rgba(2, 18, 34, 0.92), rgba(2, 18, 34, 0.62) 34%, rgba(2, 18, 34, 0.08) 70%);
}

.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.home-hero h1 {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7.1vw, 108px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.home-hero .hero-lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-cta,
.hero-video {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  border-radius: 8px;
  font-weight: 850;
}

.hero-cta {
  gap: 18px;
  padding: 0 18px 0 28px;
  background: var(--blue);
  color: white;
}

.hero-cta b,
.hero-video b {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: white;
  font-style: normal;
  font-size: 28px;
}

.hero-video {
  gap: 12px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: white;
}

.hero-video b {
  background: transparent;
  border: 0;
  color: white;
  font-size: 28px;
}

.hero-video span {
  color: white;
  font-size: 16px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 950px;
  margin-top: clamp(24px, 4vw, 48px);
}

.hero-benefits span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.25;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-filter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0;
  width: 100%;
  margin-top: clamp(24px, 4vw, 42px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 14px;
  background: rgba(14, 29, 39, 0.66);
  backdrop-filter: blur(20px);
}

.hero-filter label {
  display: grid;
  gap: 6px;
  padding: 7px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-filter span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.hero-filter select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 17px;
  appearance: none;
}

.hero-filter option {
  color: #10211f;
}

.hero-filter button {
  min-height: 56px;
  align-self: center;
  padding: 0 34px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.hero-search label {
  display: grid;
  gap: 4px;
}

.hero-search span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.hero-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
}

.hero-search a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  background: #123e38;
  color: white;
  border-radius: 6px;
  font-weight: 850;
}


.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 800;
}

.compact-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-title {
  max-width: 860px;
  margin-bottom: 24px;
}

.section-grid {
  display: grid;
  gap: 14px;
}

.section-grid--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.collection-grid,
.guide-grid {
  display: grid;
  gap: 14px;
}

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

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

.section-card {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.section-card strong {
  font-size: 18px;
  line-height: 1.15;
}

.section-card span {
  color: var(--muted);
  font-size: 14px;
}

.collection-card,
.guide-link-card {
  min-height: 178px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: inherit;
}

.collection-card {
  background: var(--forest);
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
}

.collection-card strong,
.guide-link-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.collection-card span {
  color: rgba(255, 255, 255, 0.75);
}

.guide-link-card span {
  color: var(--water);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-link-card p {
  margin: 0;
  color: var(--muted);
}

.collection-card:hover,
.guide-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.muted-section {
  background: #edf3ee;
}

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

.tour-card {
  display: grid;
  grid-template-rows: 210px auto;
  overflow: hidden;
  min-height: 438px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
}

.tour-card:hover,
.section-card:hover,
.island-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.tour-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.tour-card > div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.card-type {
  color: var(--water);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-card strong {
  font-size: 21px;
  line-height: 1.14;
}

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

.tour-grid--small .tour-card {
  grid-template-rows: 150px auto;
  min-height: 360px;
}

.tour-grid--small .tour-card img {
  height: 150px;
}

.islands-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.island-card {
  min-height: 340px;
  display: grid;
  grid-template-rows: 190px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: inherit;
}

.island-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.island-card div {
  padding: 18px;
}

.island-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.island-card span {
  color: var(--muted);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  background: var(--forest);
  color: white;
}

.trust-section .eyebrow {
  color: #bddbd5;
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  align-self: end;
  color: var(--water);
  font-weight: 850;
}

.popular-tours-section {
  --popular-card-width: clamp(210px, 18vw, 270px);
  --popular-gap: 36px;
  --popular-bg: url("./assets/popular/mayaki-sakhalina.jpg");
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(118px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 58px);
  background: #0b1516;
  color: white;
  box-shadow: 0 -86px 120px 58px rgba(7, 18, 23, 0.72);
}

.popular-tours-section::before,
.popular-tours-section::after {
  content: "";
  position: absolute;
  inset: 0;
}

.popular-tours-section::before {
  background-image: var(--popular-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: background-image 0.35s ease;
}

.popular-tours-section::after {
  background:
    linear-gradient(180deg, rgba(7, 18, 23, 0.98), rgba(7, 18, 23, 0.7) 8%, rgba(8, 18, 21, 0.12) 36%, rgba(8, 18, 21, 0.86)),
    linear-gradient(90deg, rgba(8, 18, 21, 0.92), rgba(8, 18, 21, 0.62) 42%, rgba(8, 18, 21, 0.22) 76%);
}

.popular-feature {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 6vw, 110px);
  align-items: end;
}

.popular-copy {
  max-width: 640px;
  padding-bottom: 76px;
  min-width: 0;
}

.popular-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 22px;
  padding: 0 16px;
  border: 1px solid rgba(9, 104, 255, 0.5);
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.22);
  color: white;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(9, 104, 255, 0.14);
}

.popular-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  width: auto;
  height: 3px;
  max-width: 112px;
  margin: 0 auto;
  border-radius: 3px;
  background: var(--blue);
}

.popular-copy h2 {
  max-width: 520px;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.popular-copy > p:not(.popular-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.35;
}

.popular-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.popular-feature-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 850;
}

.popular-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.popular-discover,
.popular-request-main {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.popular-discover {
  padding: 0 24px;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: white;
}

.popular-request-main {
  width: 50px;
  padding: 0;
  overflow: hidden;
  background: var(--blue);
  color: white;
  font-size: 28px;
  line-height: 1;
}

.popular-carousel {
  min-width: 0;
  overflow: hidden;
  padding: 0 0 4px;
  isolation: isolate;
}

.popular-track {
  display: flex;
  gap: var(--popular-gap);
  touch-action: pan-y;
  transition: transform 0.35s ease;
  will-change: transform;
}

.popular-card {
  flex: 0 0 var(--popular-card-width);
  position: relative;
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.popular-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.popular-card:hover img,
.popular-card.is-active img {
  transform: scale(1.05);
}

.popular-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 12, 14, 0.02), rgba(6, 12, 14, 0.2) 46%, rgba(6, 12, 14, 0.82));
}

.popular-card__text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
}

.popular-card__text small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.popular-card__text strong {
  display: -webkit-box;
  overflow: hidden;
  color: white;
  font-size: clamp(18px, 1.22vw, 24px);
  line-height: 1.08;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.popular-controls {
  display: grid;
  grid-template-columns: 56px 56px minmax(120px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.popular-arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.popular-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 26px;
  height: 26px;
  background: currentColor;
  mask: var(--popular-arrow-icon) center / contain no-repeat;
  -webkit-mask: var(--popular-arrow-icon) center / contain no-repeat;
  transform: translate(calc(-50% + var(--popular-arrow-x, 0px)), calc(-50% + 0.5px));
}

.popular-arrow--prev::before {
  --popular-arrow-x: -0.5px;
  --popular-arrow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18 9 12 15 6'/%3E%3C/svg%3E");
}

.popular-arrow--next::before {
  --popular-arrow-x: 0.5px;
  --popular-arrow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18 15 12 9 6'/%3E%3C/svg%3E");
}

.popular-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.popular-progress {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.popular-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 0.35s ease;
}

.popular-controls strong {
  min-width: 34px;
  font-size: 28px;
  line-height: 1;
}

.popular-all-tours {
  width: fit-content;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 16px;
  font-weight: 900;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.popular-all-tours:hover {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-1px);
}

.direction-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #061113 0%, rgba(6, 17, 19, 0.7) 11%, rgba(6, 17, 19, 0.1) 28%),
    url("./assets/generated/directions-bg.png") center top / cover no-repeat;
  color: white;
}

.direction-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 19, 0.92), rgba(6, 17, 19, 0.34) 28%, rgba(6, 17, 19, 0.18) 62%, rgba(6, 17, 19, 0.78)),
    radial-gradient(circle at 20% 12%, rgba(9, 104, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.direction-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 140px;
  background: linear-gradient(180deg, #061113, rgba(6, 17, 19, 0));
  pointer-events: none;
}

.direction-head {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.direction-head .eyebrow {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(9, 104, 255, 0.42);
  background: rgba(9, 104, 255, 0.24);
  color: white;
}

.direction-head h2 {
  max-width: 800px;
  font-size: clamp(34px, 4vw, 58px);
  color: white;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.direction-grid {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.direction-card {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  overflow: visible;
  border: 1px solid rgba(9, 104, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.12)),
    var(--direction-image) center / cover;
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(13, 50, 70, 0.14);
  isolation: isolate;
  opacity: 0;
  filter: blur(12px) saturate(0.82);
  transform: translate3d(var(--direction-enter-x), var(--direction-enter-y), 0) rotate(var(--direction-enter-rotate)) scale(0.72);
  transform-origin: 50% 88%;
  transition:
    opacity 0.78s ease,
    filter 0.9s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  transition-delay: calc(var(--direction-order) * 95ms);
}

.direction-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--direction-image) center / cover;
  filter: blur(22px) saturate(1.16);
  transform: scale(1.08);
  opacity: 0.62;
  z-index: -2;
}

.direction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1) 52%, rgba(9, 104, 255, 0.12));
  z-index: -1;
}

.direction-card__panel {
  position: relative;
  z-index: 1;
  width: calc(100% - 28px);
  min-height: 350px;
  margin: 14px 14px 22px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 14px;
  background: #0a1719;
  color: white;
  box-shadow: 0 24px 46px rgba(10, 33, 44, 0.22);
}

.direction-card__panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.direction-card__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 14, 0.02), rgba(4, 12, 14, 0.18) 42%, rgba(4, 12, 14, 0.82));
}

.direction-card__count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  min-width: 42px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.86);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.direction-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.direction-card__body strong {
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
}

.direction-card__body span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.direction-card:hover .direction-card__panel img {
  transform: scale(1.06);
}

.direction-card:hover {
  border-color: rgba(9, 104, 255, 0.34);
  transform: translateY(-3px);
}

.direction-section.is-visible .direction-head,
.direction-section.is-visible .direction-card {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.direction-section.is-visible .direction-card:hover {
  transform: translateY(-3px);
}

.direction-price {
  position: relative;
  z-index: 2;
  width: calc(100% - 48px);
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label icon"
    "old icon"
    "price icon";
  align-items: center;
  gap: 0 12px;
  margin: -10px auto 20px;
  padding: 10px 10px 10px 18px;
  border: 1px solid rgba(9, 104, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(12, 43, 62, 0.16);
  backdrop-filter: blur(16px);
}

.direction-price span {
  grid-area: label;
  color: #ff3344;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.direction-price del {
  grid-area: old;
  width: fit-content;
  color: rgba(16, 31, 35, 0.48);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.05;
  text-decoration-color: #ff3344;
  text-decoration-thickness: 2px;
}

.direction-price strong {
  grid-area: price;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 950;
}

.direction-price b {
  grid-area: icon;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-style: normal;
  font-size: 23px;
  line-height: 1;
}

.corporate-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 94px);
  background:
    linear-gradient(180deg, #061113 0%, #071925 34%, #06131d 100%);
  color: white;
}

.corporate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(9, 104, 255, 0.22), transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(30, 109, 120, 0.28), transparent 36%);
  pointer-events: none;
}

.corporate-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 130px;
  background: linear-gradient(180deg, #061113, rgba(6, 17, 19, 0));
  pointer-events: none;
}

.corporate-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.16fr);
  gap: clamp(34px, 5.6vw, 92px);
  align-items: center;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(9, 104, 255, 0.2);
  border-radius: 22px;
  background: rgba(4, 18, 30, 0.62);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.corporate-copy {
  min-width: 0;
}

.corporate-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 30px;
  padding: 0 18px;
  border: 1px solid rgba(9, 104, 255, 0.72);
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.1);
  color: #69a7ff;
  font-size: 15px;
  font-weight: 850;
}

.corporate-kicker-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: var(--corporate-icon) center / contain no-repeat;
  -webkit-mask: var(--corporate-icon) center / contain no-repeat;
  --corporate-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='23' cy='22' r='8'/%3E%3Cpath d='M8 50c2-10 8-15 15-15s13 5 15 15'/%3E%3Ccircle cx='44' cy='25' r='6'/%3E%3Cpath d='M39 37c6 1 11 5 13 13'/%3E%3C/svg%3E");
}

.corporate-copy h2 {
  max-width: 560px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.corporate-copy > p {
  max-width: 590px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.45;
}

.corporate-list {
  display: grid;
  border-top: 1px solid rgba(105, 167, 255, 0.24);
}

.corporate-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(105, 167, 255, 0.24);
}

.corporate-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.corporate-list p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.32;
}

.corporate-icon {
  display: inline-block;
  width: 46px;
  height: 46px;
  background: #69a7ff;
  mask: var(--corporate-icon) center / contain no-repeat;
  -webkit-mask: var(--corporate-icon) center / contain no-repeat;
}

.corporate-icon--island {
  --corporate-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 50c8-5 15-5 23 0s15 5 23 0'/%3E%3Cpath d='M17 38c7-5 21-5 28 0'/%3E%3Cpath d='M30 37c-1-10 1-18 9-25'/%3E%3Cpath d='M30 19c-6-5-11-5-16 0 6 0 10 2 16 8'/%3E%3Cpath d='M35 16c7-2 12 0 16 6-7-2-12-1-18 4'/%3E%3C/svg%3E");
}

.corporate-icon--route {
  --corporate-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 19c0 6-8 12-8 12S1 25 1 19a8 8 0 0 1 16 0Z'/%3E%3Cpath d='M55 15c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Cpath d='M25 49c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Cpath d='M17 31h16c8 0 8 12 0 12h-8'/%3E%3Cpath d='M47 27v8'/%3E%3C/svg%3E");
}

.corporate-icon--group {
  --corporate-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='3.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='23' cy='20' r='9'/%3E%3Cpath d='M7 52c2-12 9-18 16-18s14 6 16 18'/%3E%3Ccircle cx='45' cy='25' r='7'/%3E%3Cpath d='M40 38c7 1 12 6 14 14'/%3E%3C/svg%3E");
}

.corporate-icon--check {
  --corporate-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='24'/%3E%3Cpath d='m21 32 8 8 15-17'/%3E%3C/svg%3E");
}

.corporate-cta {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-size: 16px;
  font-weight: 850;
  box-shadow: 0 16px 38px rgba(9, 104, 255, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.corporate-cta:hover {
  background: #2178ff;
  transform: translateY(-1px);
}

.corporate-cta span {
  font-size: 24px;
  line-height: 1;
}

.corporate-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(147, 198, 255, 0.44);
  border-radius: 22px;
  background: #0b1d28;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.corporate-media--mobile {
  display: none;
}

.corporate-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.corporate-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(5, 18, 27, 0.42));
  pointer-events: none;
}

.corporate-media-badges {
  position: absolute;
  left: clamp(20px, 3vw, 36px);
  right: clamp(20px, 3vw, 36px);
  bottom: 28px;
  z-index: 1;
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(17, 43, 59, 0.72);
  color: white;
  backdrop-filter: blur(16px);
}

.corporate-media-badges span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 17px;
  line-height: 1.2;
}

.corporate-media-badges span:last-child {
  border-right: 0;
}

.corporate-media-badges .corporate-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: white;
}

.corporate-media-badges em {
  font-style: normal;
}

.corporate-badge-short {
  display: none;
}

.excursion-showcase-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #06131d 0%, rgba(6, 19, 29, 0.92) 18%, #071925 100%);
  color: white;
}

.excursion-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 6%, rgba(9, 104, 255, 0.18), transparent 32%),
    radial-gradient(circle at 10% 70%, rgba(30, 109, 120, 0.2), transparent 36%);
  pointer-events: none;
}

.excursion-showcase-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 120px;
  background: linear-gradient(180deg, #06131d, rgba(6, 19, 29, 0));
  pointer-events: none;
}

.excursion-showcase-head {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.excursion-kicker {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(9, 104, 255, 0.55);
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.16);
  color: #88b8ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.excursion-showcase-head h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.3vw, 62px);
  color: white;
  line-height: 1.02;
}

.excursion-showcase-head p:not(.excursion-kicker) {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.42;
}

.excursion-all-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-weight: 900;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.excursion-all-link:hover {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-1px);
}

.excursion-showcase-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.excursion-card {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(147, 198, 255, 0.2);
  border-radius: 18px;
  background: #0b1d28;
  color: white;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.22);
  isolation: isolate;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.excursion-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.excursion-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 16, 0.04), rgba(4, 12, 16, 0.2) 38%, rgba(4, 12, 16, 0.9)),
    linear-gradient(90deg, rgba(4, 12, 16, 0.58), transparent 54%);
}

.excursion-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.excursion-card small {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
}

.excursion-card strong {
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.excursion-card em {
  display: -webkit-box;
  overflow: hidden;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  font-size: 14px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.excursion-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}

.excursion-card__meta b {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.18);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.excursion-card__meta i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-style: normal;
  font-size: 25px;
  line-height: 1;
}

.excursion-card:hover {
  border-color: rgba(9, 104, 255, 0.5);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.excursion-card:hover img {
  transform: scale(1.05);
}

.advantages-section {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 5.8vw, 82px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #071925 0%, #06131d 100%);
  color: white;
}

.advantages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(9, 104, 255, 0.22), transparent 34%),
    radial-gradient(circle at 84% 72%, rgba(30, 109, 120, 0.2), transparent 36%);
  pointer-events: none;
}

.advantages-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 110px;
  background: linear-gradient(180deg, #071925, rgba(7, 25, 37, 0));
  pointer-events: none;
}

.advantages-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.advantages-intro {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  column-gap: clamp(22px, 3vw, 48px);
  row-gap: 12px;
  align-items: center;
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid rgba(9, 104, 255, 0.22);
  border-radius: 22px;
  background: rgba(4, 18, 30, 0.58);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.advantages-kicker {
  grid-column: 1;
  grid-row: 1;
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 0 14px;
  border: 1px solid rgba(9, 104, 255, 0.55);
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.15);
  color: #88b8ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.advantages-intro h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 520px;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.02;
  color: white;
}

.advantages-intro > p {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.45;
}

.advantages-stats {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.advantages-stats span {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.advantages-stats strong {
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1;
  color: white;
}

.advantages-stats em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-size: 13px;
  line-height: 1.2;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.advantages-grid article {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(147, 198, 255, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.advantages-grid article:hover {
  border-color: rgba(9, 104, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(9, 104, 255, 0.16), rgba(255, 255, 255, 0.045));
  transform: translateY(-3px);
}

.advantage-icon {
  width: 34px;
  height: 34px;
  display: inline-block;
  background: #69a7ff;
  mask: var(--advantage-icon) center / contain no-repeat;
  -webkit-mask: var(--advantage-icon) center / contain no-repeat;
}

.advantage-icon--route {
  --advantage-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 48c10-8 16-8 24 0s12 8 18 0'/%3E%3Cpath d='M14 22h12c8 0 8 12 0 12h-4'/%3E%3Cpath d='M42 16c0 7-9 14-9 14s-9-7-9-14a9 9 0 0 1 18 0Z'/%3E%3Ccircle cx='33' cy='16' r='2'/%3E%3C/svg%3E");
}

.advantage-icon--guide {
  --advantage-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='20' r='9'/%3E%3Cpath d='M16 56c2-14 9-22 16-22s14 8 16 22'/%3E%3Cpath d='M20 17c5-7 19-7 24 0'/%3E%3Cpath d='M12 38 7 56'/%3E%3Cpath d='M52 38l5 18'/%3E%3C/svg%3E");
}

.advantage-icon--shield {
  --advantage-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 6 52 14v15c0 14-8 24-20 29C20 53 12 43 12 29V14l20-8Z'/%3E%3Cpath d='m22 31 7 7 14-16'/%3E%3C/svg%3E");
}

.advantage-icon--doc {
  --advantage-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6h20l12 12v40H18V6Z'/%3E%3Cpath d='M38 6v14h12'/%3E%3Cpath d='M26 32h16'/%3E%3Cpath d='M26 42h16'/%3E%3Cpath d='M26 22h6'/%3E%3C/svg%3E");
}

.advantages-grid strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.14;
}

.advantages-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.34;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6vw, 88px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #06131d 0%, #071925 48%, #06131d 100%);
  color: white;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(9, 104, 255, 0.18), transparent 30%),
    radial-gradient(circle at 86% 42%, rgba(99, 170, 190, 0.16), transparent 34%);
  pointer-events: none;
}

.reviews-head,
.reviews-layout {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: 0 auto;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: clamp(18px, 4vw, 70px);
  align-items: end;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.reviews-kicker {
  grid-column: 1 / -1;
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 -4px;
  padding: 0 14px;
  border: 1px solid rgba(9, 104, 255, 0.55);
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.15);
  color: #88b8ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-head h1,
.reviews-head h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 0.98;
  color: white;
}

.reviews-head p:not(.reviews-kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.45;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.reviews-summary {
  display: grid;
  gap: 12px;
}

.reviews-summary div,
.reviews-summary a {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(147, 198, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.reviews-summary strong {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.reviews-summary span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.25;
}

.reviews-summary a {
  min-height: 58px;
  place-items: center;
  border-color: rgba(9, 104, 255, 0.58);
  background: var(--blue);
  font-weight: 900;
}

.reviews-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.reviews-strip img {
  width: 100%;
  height: clamp(360px, 36vw, 560px);
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(147, 198, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.reviews-section--page {
  min-height: calc(100vh - 86px);
  padding-top: clamp(90px, 9vw, 150px);
}

.reviews-layout--page {
  align-items: start;
}

.reviews-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.review-card {
  min-width: 0;
}

.review-card img {
  width: 100%;
  height: auto;
  max-height: 860px;
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgba(147, 198, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

@media (max-width: 760px) {
  .reviews-gallery {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(38px, 5vw, 68px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(147, 198, 255, 0.18);
  background: #04111b;
  color: white;
}

.site-footer__brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.site-footer__brand img {
  width: 138px;
  height: auto;
}

.site-footer__brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.site-footer__cols div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  color: white;
  font-size: 15px;
  line-height: 1.2;
}

.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.24;
}

.site-footer a:hover {
  color: white;
}

@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 16px;
  }

  .site-footer__brand img {
    width: 118px;
  }

  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#popularTours,
#directions,
#corporate,
#excursions,
#advantages,
#reviews,
#contacts {
  scroll-margin-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(247, 248, 243, 0.9);
  border-bottom: 1px solid rgba(20, 60, 53, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  line-height: 1;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.main-nav,
.top-actions,
.hero-actions,
.filters,
.region-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.main-nav {
  justify-content: center;
  color: #34433f;
  font-size: 14px;
}

.main-nav a,
.ghost-link,
.primary-link,
.button,
.filters button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.main-nav a {
  padding: 0 10px;
}

.main-nav a:hover {
  background: #e9eee7;
}

.ghost-link {
  padding: 0 12px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.primary-link,
.button-primary,
.request-form button {
  background: var(--coral);
  color: white;
  font-weight: 800;
}

.primary-link {
  padding: 0 16px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 32px;
  padding: clamp(26px, 5vw, 72px);
  overflow: hidden;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 25, 0.85), rgba(10, 28, 25, 0.42) 54%, rgba(10, 28, 25, 0.16));
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 880px;
  padding-bottom: 4vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--water);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8f1ef;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(44px, 7vw, 92px);
}

h2 {
  font-size: clamp(30px, 4vw, 56px);
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  min-width: 168px;
  padding: 0 20px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-weight: 800;
}

.hero-panel {
  align-self: end;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 64px;
  line-height: 1;
}

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

.metrics,
.section-head,
.split-section,
.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.metric-grid,
.feature-grid,
.catalog-grid {
  display: grid;
  gap: 14px;
}

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

.metric-card,
.catalog-card,
.feature-grid article,
.guide-card,
.request-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(20, 60, 53, 0.04);
}

.metric-card {
  min-height: 132px;
  padding: 18px;
}

.metric-card strong {
  display: block;
  font-size: 34px;
}

.metric-card span,
.catalog-card p,
.feature-grid p,
.guide-card p,
.request-section p,
.footer {
  color: var(--muted);
}

.search-section {
  background: #ffffff;
}

.section-head {
  align-items: end;
  padding-bottom: 24px;
}

.search-box {
  display: grid;
  gap: 8px;
}

.search-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-box input,
.request-form input,
.request-form select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.filters {
  margin-bottom: 18px;
}

.subfilters {
  margin-top: -6px;
}

.filters button {
  border: 1px solid var(--line);
  background: #f5f7f2;
  color: #30413d;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 800;
}

.subfilters button {
  min-height: 34px;
  background: transparent;
  font-size: 13px;
}

.filters button.is-active {
  background: var(--forest);
  color: white;
}

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

.catalog-card {
  min-height: 220px;
  display: grid;
  grid-template-rows: 120px auto;
  overflow: hidden;
  color: inherit;
}

.catalog-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #dce8df;
}

.catalog-card div {
  padding: 16px;
}

.catalog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.catalog-card strong {
  display: block;
  line-height: 1.2;
}

.catalog-card p {
  margin: 8px 0 14px;
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span,
.region-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 6px;
  background: #edf3ed;
  color: #314540;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.map-panel {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split-section p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.region-list {
  margin-top: 22px;
}

.feature-band {
  background: var(--forest);
  color: white;
}

.feature-band .eyebrow {
  color: #bfe2dc;
}

.feature-band h2 {
  max-width: 980px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  padding: 22px;
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
}

.guide-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.guide-card div {
  padding: clamp(24px, 5vw, 56px);
}

.request-section {
  background: #eaf0ea;
}

.request-form {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.request-form button {
  height: 50px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 13, 22, 0.72);
  backdrop-filter: blur(14px);
}

.booking-modal__panel {
  position: relative;
  width: min(520px, 100%);
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(9, 104, 255, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 8%, rgba(9, 104, 255, 0.24), transparent 42%),
    linear-gradient(145deg, rgba(8, 31, 46, 0.98), rgba(7, 20, 31, 0.98));
  color: white;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.booking-modal__panel > img {
  width: 74px;
  height: auto;
}

.booking-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
}

.booking-modal h2 {
  color: white;
  font-size: clamp(30px, 5vw, 48px);
}

.booking-modal__lead {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.booking-modal__source {
  padding: 12px 14px;
  border: 1px solid rgba(9, 104, 255, 0.34);
  border-radius: 12px;
  background: rgba(9, 104, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.booking-modal label {
  display: grid;
  gap: 7px;
}

.booking-modal label > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-modal input[type="text"],
.booking-modal input[type="tel"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 14px;
  font: inherit;
  font-weight: 800;
}

.booking-modal input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.booking-modal__policy {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.booking-modal__policy input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.booking-modal__policy span {
  text-transform: none !important;
  font-size: 14px !important;
  line-height: 1.35;
}

.booking-modal__policy a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-modal .button-primary {
  min-height: 56px;
  width: 100%;
  border: 0;
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
}

.booking-modal__status {
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.booking-modal-open {
  overflow: hidden;
}

.lead-success-toast {
  position: fixed;
  top: clamp(18px, 4vw, 40px);
  left: 50%;
  z-index: 260;
  width: min(620px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(74, 226, 155, 0.7);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 10%, rgba(42, 217, 135, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(8, 36, 40, 0.98), rgba(7, 22, 31, 0.98));
  color: white;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(42, 217, 135, 0.08) inset;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18px) scale(0.97);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.lead-success-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.lead-success-toast__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2ad987;
  color: #042218;
  font-size: 30px;
  font-weight: 1000;
  box-shadow: 0 10px 30px rgba(42, 217, 135, 0.28);
}

.lead-success-toast strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.1;
}

.lead-success-toast p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.4;
}

.lead-success-toast button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

@media (max-width: 560px) {
  .lead-success-toast {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 48px 16px 16px;
  }

  .lead-success-toast__icon {
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .lead-success-toast button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    min-height: 34px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .lead-success-toast button::before {
    content: "×";
    font-size: 22px;
  }
}

.cookie-notice {
  position: fixed;
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 32px);
  z-index: 120;
  width: min(560px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(147, 198, 255, 0.28);
  border-radius: 18px;
  background: rgba(6, 19, 29, 0.94);
  color: white;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.cookie-notice a {
  color: #8dbbff;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.cookie-notice button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 640px) {
  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  .cookie-notice a,
  .cookie-notice button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.service-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 18%, rgba(9, 104, 255, 0.16), transparent 34vw),
    linear-gradient(180deg, #061827 0%, #07121c 56%, #07121c 100%);
  color: white;
}

.service-body {
  overflow-x: hidden;
}

.service-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: clamp(118px, 12vw, 168px) clamp(18px, 5vw, 72px) clamp(74px, 8vw, 116px);
  background:
    linear-gradient(180deg, rgba(2, 18, 29, 0.2), #061827 100%),
    linear-gradient(90deg, rgba(2, 18, 29, 0.95), rgba(6, 34, 47, 0.72), rgba(6, 34, 47, 0.2)),
    url("/assets/hero-sakhalin-coast.png") center / cover;
}

.service-hero > div,
.service-tabs,
.service-layout {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
}

.service-hero h1 {
  max-width: 920px;
  color: white;
  font-size: clamp(42px, 6vw, 86px);
}

.service-hero p:not(.vip-pill) {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.52;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-page .button-primary {
  background: var(--blue);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 clamp(18px, 4vw, 34px);
  transform: translateY(-28px);
}

.service-tabs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  padding: 0 16px;
  font-weight: 900;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  padding-top: 0;
}

.service-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  align-self: start;
}

.service-aside article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(9, 104, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.service-aside span,
.service-block .vip-pill {
  color: #8bb9ff;
}

.service-aside strong {
  color: white;
  line-height: 1.18;
}

.service-content {
  display: grid;
  gap: 18px;
}

.service-block {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(9, 104, 255, 0.22);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8, 31, 46, 0.98), rgba(7, 20, 31, 0.96));
  color: white;
  box-shadow: 0 22px 70px rgba(3, 19, 30, 0.18);
}

.service-block h2 {
  max-width: 880px;
  color: white;
  font-size: clamp(30px, 4vw, 54px);
}

.service-block p,
.service-block li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.58;
}

.service-block ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-card-grid div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.service-card-grid strong {
  color: white;
  font-size: 20px;
}

.agency-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.agency-form label {
  display: grid;
  gap: 7px;
}

.agency-form span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.agency-form input,
.agency-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 14px;
  font: inherit;
  font-weight: 800;
}

.agency-form textarea {
  min-height: 120px;
  padding-top: 13px;
  resize: vertical;
}

.agency-form__wide {
  grid-column: 1 / -1;
}

.agency-form__policy {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
}

.agency-form__policy input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  accent-color: var(--blue);
}

.agency-form__policy span {
  text-transform: none;
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.tour-picker-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 22%, rgba(9, 104, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #061827 0%, #07121c 48%, #07121c 100%);
  color: white;
}

.tour-picker-page .button-primary {
  background: var(--blue);
}

.tour-picker-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: clamp(118px, 12vw, 168px) clamp(18px, 5vw, 72px) clamp(92px, 10vw, 132px);
  background:
    linear-gradient(180deg, rgba(2, 18, 29, 0.18), #061827 100%),
    linear-gradient(90deg, rgba(2, 18, 29, 0.94), rgba(6, 34, 47, 0.68), rgba(6, 34, 47, 0.16)),
    url("/assets/hero-sakhalin-coast.png") center / cover;
  color: white;
}

.tour-picker-hero > div,
.tour-picker-section {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.tour-picker-hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 6vw, 76px);
}

.tour-picker-hero p:not(.eyebrow) {
  max-width: 740px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.tour-picker-section {
  padding: 0 clamp(18px, 4vw, 34px) clamp(72px, 9vw, 118px);
}

.tour-picker-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 1px;
  overflow: hidden;
  margin-top: -76px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(11, 31, 42, 0.86);
  box-shadow: 0 28px 70px rgba(5, 25, 30, 0.18);
  backdrop-filter: blur(18px);
}

.tour-picker-form label {
  display: grid;
  gap: 9px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-picker-form span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 900;
}

.tour-picker-form select {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
}

.tour-picker-form option {
  color: #10201f;
}

.tour-picker-form button {
  min-width: 166px;
  margin: 16px;
  border: 0;
  border-radius: 7px;
  background: #1671f5;
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
}

.tour-picker-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: clamp(34px, 5vw, 64px) 0 22px;
}

.tour-picker-summary h2 {
  color: white;
  font-size: clamp(30px, 4vw, 48px);
}

.tour-picker-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.tour-picker-chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 850;
}

.tour-picker-grid {
  display: grid;
  gap: 14px;
}

.tour-picker-card[hidden] {
  display: none;
}

.tour-picker-card .season-price--text {
  font-size: clamp(30px, 2.8vw, 46px);
}

.tour-picker-empty {
  display: grid;
  gap: 12px;
  max-width: 620px;
  padding: 26px;
  border: 1px solid rgba(9, 104, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.tour-picker-empty[hidden] {
  display: none;
}

.tour-picker-empty strong {
  font-size: 22px;
}

.tour-picker-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.route-page {
  background: var(--paper);
}

.route-nav {
  justify-content: center;
}

.route-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 6px;
  font-weight: 800;
}

.route-cover {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: clamp(40px, 7vw, 88px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  color: white;
}

.route-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 29, 26, 0.86), rgba(10, 29, 26, 0.48), rgba(10, 29, 26, 0.16));
}

.route-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-cover > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.route-cover h1 {
  font-size: clamp(40px, 6vw, 82px);
}

.route-cover p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.route-content {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.booking-card {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-card strong {
  font-size: 22px;
  line-height: 1.15;
}

.booking-card p {
  margin: 0;
  color: var(--muted);
}

.route-main-content {
  display: grid;
  gap: 18px;
}

.content-block {
  padding: clamp(22px, 4vw, 38px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-block h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.content-block p {
  color: var(--muted);
  font-size: 18px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.included-grid span {
  min-height: 72px;
  display: grid;
  align-items: center;
  padding: 14px;
  background: #f1f6f1;
  border-radius: 8px;
  color: #253936;
  font-weight: 850;
}

.route-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 8vw, 104px) clamp(18px, 4vw, 48px);
}

.route-hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 78px);
}

.route-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.route-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.route-facts article {
  min-height: 86px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-facts span,
.related-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.route-facts strong {
  display: block;
  margin-top: 6px;
  line-height: 1.2;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding-top: 0;
}

.route-main,
.route-aside {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 38px);
}

.route-main p,
.route-aside p {
  color: var(--muted);
}

.route-aside {
  position: sticky;
  top: 96px;
  align-self: start;
}

.related-block {
  margin-top: 34px;
}

.related-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-list a {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf5;
}

.related-list strong {
  display: block;
  line-height: 1.25;
  margin-bottom: 10px;
}

.feature-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.compact article {
  background: #f7faf5;
  border-color: var(--line);
  color: var(--ink);
}

.feature-grid.compact p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.season-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 16%, rgba(9, 104, 255, 0.18), transparent 32vw),
    linear-gradient(180deg, #061b2a 0%, #061827 44%, #07131f 100%);
  color: white;
}

.season-page .button-primary {
  background: var(--blue);
}

.season-cover {
  position: relative;
  min-height: min(760px, 92svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding: clamp(116px, 14vw, 180px) clamp(18px, 5vw, 76px) clamp(46px, 6vw, 82px);
  overflow: hidden;
  color: white;
}

.season-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 19, 30, 0.91) 0%, rgba(3, 19, 30, 0.66) 42%, rgba(3, 19, 30, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 19, 30, 0.72), rgba(3, 19, 30, 0.1) 54%);
}

.season-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season-cover__content,
.season-cover__panel {
  position: relative;
  z-index: 1;
}

.page-pill {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 16px;
  border: 1px solid rgba(9, 104, 255, 0.8);
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.14);
  color: #6aa8ff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.season-cover h1 {
  max-width: 850px;
  margin: 0;
  color: white;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.season-cover__content > p:not(.page-pill) {
  max-width: 780px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  text-wrap: pretty;
}

.season-cover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
}

.season-cover__panel {
  display: grid;
  gap: 10px;
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(6, 28, 38, 0.52);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.season-cover__panel span {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.season-cover__panel span:last-child {
  border-bottom: 0;
}

.season-cover__panel strong {
  color: white;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.season-cover__panel em {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-weight: 800;
}

.season-promo {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding-top: clamp(44px, 6vw, 82px);
  padding-bottom: 26px;
}

.season-promo__card,
.season-promo__grid a,
.season-tour-card {
  border: 1px solid rgba(9, 104, 255, 0.22);
  background: linear-gradient(145deg, rgba(8, 31, 46, 0.98), rgba(7, 20, 31, 0.96));
  color: white;
  box-shadow: 0 22px 70px rgba(3, 19, 30, 0.18);
}

.season-promo__card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 22px;
}

.season-promo__card h2,
.season-catalog__head h2 {
  margin: 0;
  color: white;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
  text-wrap: balance;
}

.season-promo__card p:not(.page-pill) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.season-promo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.season-promo__grid a {
  min-height: 166px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border-radius: 18px;
}

.season-promo__grid strong {
  color: white;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.season-promo__grid span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.season-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.season-nav button {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.season-nav button:hover,
.season-nav button.is-active {
  border-color: rgba(9, 104, 255, 0.85);
  background: rgba(9, 104, 255, 0.2);
  transform: translateY(-2px);
}

.season-nav strong {
  font-size: 22px;
  line-height: 1;
}

.season-nav span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 850;
}

.season-catalog {
  padding-top: clamp(38px, 6vw, 72px);
}

.season-catalog__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.season-catalog__head p:not(.page-pill) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.55;
  text-wrap: pretty;
}

.season-catalog__head p:not(.page-pill) strong {
  color: white;
}

.season-sort {
  width: max-content;
  max-width: 100%;
  justify-self: end;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(9, 104, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.season-sort button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.season-sort button:hover,
.season-sort button.is-active {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 28px rgba(9, 104, 255, 0.28);
}

.season-tour-list {
  display: grid;
  gap: 14px;
}

.season-tour-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) minmax(320px, 420px);
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
}

.season-tour-card[hidden] {
  display: none;
}

.season-tour-card__image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.season-tour-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 18, 27, 0), rgba(2, 18, 27, 0.32));
}

.season-tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.season-tour-card:hover .season-tour-card__image img {
  transform: scale(1.04);
}

.season-tour-card__image span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.season-tour-card__body,
.season-tour-card__aside {
  padding: clamp(18px, 2.4vw, 28px);
}

.season-tour-card__body {
  display: grid;
  align-content: center;
  gap: 16px;
}

.season-tour-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.season-tour-card__top span {
  color: var(--blue);
  font-weight: 950;
}

.season-tour-card__top em {
  color: rgba(255, 255, 255, 0.56);
  font-style: normal;
  font-weight: 850;
  text-wrap: balance;
}

.season-tour-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 0.95;
  text-wrap: balance;
}

.season-tour-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.45;
  text-wrap: pretty;
}

.season-tour-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.season-tour-card__facts span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.season-tour-card__dates {
  display: grid;
  gap: 6px;
  padding-top: 4px;
}

.season-tour-card__dates small,
.season-price-panel small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.season-tour-card__dates strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.season-tour-card__dates div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.season-date {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.season-date:hover {
  border-color: rgba(9, 104, 255, 0.9);
  background: rgba(9, 104, 255, 0.22);
  transform: translateY(-1px);
}

.season-tour-card__aside {
  display: grid;
  align-content: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 30% 18%, rgba(9, 104, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.season-tour-card__actions {
  display: grid;
  gap: 10px;
}

.season-tour-card__actions .button {
  width: 100%;
  justify-content: center;
  min-height: 56px;
}

.season-tour-card__actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.season-price-panel {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(9, 104, 255, 0.34);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9, 104, 255, 0.18), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 16px 38px rgba(9, 104, 255, 0.1);
}

.season-price-stack {
  display: grid;
  gap: 4px;
}

.season-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: white;
  font-size: clamp(36px, 3.4vw, 54px);
  line-height: 1;
  white-space: nowrap;
}

.season-price span,
.season-price em {
  font-size: 0.58em;
  font-style: normal;
}

.season-price b {
  font: inherit;
  letter-spacing: 0;
}

.season-price--text {
  display: block;
  white-space: normal;
}

.season-tariffs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.season-tariffs span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.schedule-calendar-page {
  min-height: 100vh;
  background: #031923;
  color: white;
}

.schedule-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: 150px clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
}

.schedule-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 27, 0.94), rgba(3, 18, 27, 0.52) 54%, rgba(3, 18, 27, 0.86)),
    linear-gradient(180deg, rgba(3, 18, 27, 0.32), #031923 96%);
  pointer-events: none;
}

.schedule-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-hero__content,
.schedule-picker {
  position: relative;
  z-index: 1;
}

.schedule-hero h1 {
  max-width: 920px;
  margin: 18px 0 0;
  color: white;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.9;
  text-wrap: balance;
}

.schedule-hero__content > p:not(.page-pill) {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.schedule-picker {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(6, 27, 39, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.schedule-picker label {
  display: grid;
  gap: 8px;
}

.schedule-picker span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-picker select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font: inherit;
  font-weight: 850;
}

.schedule-board {
  padding-top: clamp(42px, 6vw, 82px);
  padding-bottom: clamp(52px, 7vw, 96px);
}

.schedule-board__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.schedule-board__head h2 {
  margin: 0;
  color: white;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 0.95;
  text-wrap: balance;
}

.schedule-board__head > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.5;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 18px;
  align-items: start;
}

.schedule-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.schedule-month {
  padding: 18px;
  border: 1px solid rgba(9, 104, 255, 0.24);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8, 31, 46, 0.98), rgba(7, 20, 31, 0.96));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.schedule-month h3 {
  margin: 0 0 14px;
  color: white;
  font-size: 26px;
}

.schedule-weekdays,
.schedule-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.schedule-weekdays {
  margin-bottom: 8px;
}

.schedule-weekdays span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.schedule-day {
  min-height: 46px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.46);
  font: inherit;
  font-weight: 900;
}

.schedule-day.has-events {
  border-color: rgba(9, 104, 255, 0.5);
  background: rgba(9, 104, 255, 0.14);
  color: white;
  cursor: pointer;
}

.schedule-day.has-events strong {
  min-width: 18px;
  min-height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #ff3b30;
  color: white;
  font-size: 10px;
  line-height: 1;
}

.schedule-day.has-events:hover,
.schedule-day.has-events.is-active {
  border-color: rgba(255, 255, 255, 0.62);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(9, 104, 255, 0.26);
}

.schedule-day.is-filtered-out {
  opacity: 0.22;
  cursor: default;
}

.schedule-day--empty {
  visibility: hidden;
}

.schedule-preview {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(9, 104, 255, 0.28);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8, 31, 46, 0.98), rgba(7, 20, 31, 0.96));
}

.schedule-preview__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.schedule-preview__head span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-preview__head strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3b30, #e01841);
  color: white;
  font-size: 12px;
  font-weight: 950;
}

.schedule-preview__list {
  display: grid;
  gap: 12px;
}

.schedule-preview-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.schedule-preview-card[hidden] {
  display: none;
}

.schedule-preview-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 12px;
  object-fit: cover;
}

.schedule-preview-card div {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 8px;
}

.schedule-preview-card span,
.schedule-preview-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 850;
}

.schedule-preview-card h3 {
  margin: 0;
  color: white;
  font-size: 22px;
  line-height: 1.05;
}

.schedule-preview-card p {
  margin: 0;
  line-height: 1.3;
}

.schedule-preview-card strong {
  color: white;
  font-size: 22px;
  line-height: 1;
}

.schedule-preview-card .button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
}

.schedule-empty {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.68);
}

.vip-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 173, 104, 0.18), transparent 30vw),
    linear-gradient(180deg, #071816 0%, #0b1f1c 46%, #f7f8f3 46%, #f7f8f3 100%);
  color: white;
}

.vip-hero {
  position: relative;
  min-height: min(780px, 94svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(120px, 15vw, 190px) clamp(18px, 5vw, 76px) clamp(46px, 6vw, 84px);
  overflow: hidden;
  color: white;
}

.vip-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 19, 18, 0.94) 0%, rgba(5, 19, 18, 0.72) 44%, rgba(5, 19, 18, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 19, 18, 0.72), rgba(5, 19, 18, 0.08) 58%);
}

.vip-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vip-hero__content,
.vip-hero__panel {
  position: relative;
  z-index: 1;
}

.vip-pill {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 15px;
  border: 1px solid rgba(216, 173, 104, 0.72);
  border-radius: 999px;
  background: rgba(216, 173, 104, 0.12);
  color: #f3d39a;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.vip-hero h1 {
  max-width: 980px;
  margin: 0;
  color: white;
  font-size: clamp(44px, 7vw, 106px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.vip-hero__content > p:not(.vip-pill) {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
  text-wrap: pretty;
}

.vip-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.vip-page .button-primary {
  background: linear-gradient(135deg, #d8ad68, #b9853d);
  color: #071816;
  box-shadow: 0 14px 34px rgba(216, 173, 104, 0.24);
}

.vip-hero__panel {
  display: grid;
  gap: 10px;
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(216, 173, 104, 0.3);
  border-radius: 18px;
  background: rgba(8, 24, 22, 0.58);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.vip-hero__panel span,
.vip-price-grid span {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(216, 173, 104, 0.18);
}

.vip-hero__panel span:last-child,
.vip-price-grid span:last-child {
  border-bottom: 0;
}

.vip-hero__panel strong {
  color: white;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1;
}

.vip-hero__panel em,
.vip-price-grid em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-weight: 850;
}

.vip-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding-top: clamp(54px, 7vw, 96px);
  color: var(--ink);
}

.vip-intro .vip-pill,
.vip-program .vip-pill,
.vip-stay .vip-pill,
.vip-request .vip-pill {
  background: rgba(216, 173, 104, 0.14);
  color: #9a6728;
}

.vip-intro h2,
.vip-program h2,
.vip-stay h2,
.vip-request h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
  text-wrap: balance;
}

.vip-intro p:not(.vip-pill),
.vip-program p,
.vip-stay p,
.vip-request p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
  text-wrap: pretty;
}

.vip-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 26px;
}

.vip-services article {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(20, 60, 53, 0.12);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  box-shadow: 0 18px 52px rgba(22, 38, 34, 0.08);
}

.vip-services span,
.vip-gallery span,
.vip-program__list span {
  color: #b9853d;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.vip-services h3,
.vip-gallery h3,
.vip-program__list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1;
}

.vip-services p,
.vip-gallery p,
.vip-program__list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.vip-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 12px;
  padding-top: 28px;
}

.vip-gallery article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  background: #081816;
  color: white;
}

.vip-gallery__large {
  grid-row: span 2;
  min-height: 732px;
}

.vip-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.vip-gallery article:hover img {
  opacity: 0.94;
  transform: scale(1.04);
}

.vip-gallery article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 19, 18, 0.05), rgba(5, 19, 18, 0.82));
}

.vip-gallery article > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px);
}

.vip-gallery h3,
.vip-gallery p {
  color: white;
}

.vip-gallery p {
  color: rgba(255, 255, 255, 0.74);
}

.vip-program {
  padding-top: clamp(54px, 7vw, 92px);
}

.vip-program__head {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin-bottom: 24px;
}

.vip-program__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: stretch;
}

.vip-program__image {
  overflow: hidden;
  min-height: 560px;
  border-radius: 18px;
}

.vip-program__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vip-program__list {
  display: grid;
  gap: 12px;
}

.vip-program__list article {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(20, 60, 53, 0.12);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 52px rgba(22, 38, 34, 0.08);
}

.vip-stay {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  padding-top: clamp(56px, 7vw, 96px);
}

.vip-stay__media {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
}

.vip-stay__media img {
  width: 100%;
  height: clamp(360px, 38vw, 620px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(22, 38, 34, 0.12);
}

.vip-stay__media img:first-child {
  margin-top: 58px;
}

.vip-stay__copy {
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

.vip-price-grid {
  display: grid;
  gap: 0;
  padding: 8px 22px;
  border: 1px solid rgba(216, 173, 104, 0.34);
  border-radius: 18px;
  background: linear-gradient(145deg, #143c35, #0b1f1c);
  box-shadow: 0 18px 52px rgba(22, 38, 34, 0.16);
}

.vip-price-grid strong {
  color: white;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.vip-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.vip-request > div:first-child {
  display: grid;
  gap: 18px;
}

.vip-request__actions {
  display: grid;
  gap: 10px;
}

.vip-request .button-ghost {
  border-color: rgba(20, 60, 53, 0.2);
  background: white;
  color: var(--ink);
}

@media (max-width: 980px) {
  .season-cover,
  .season-promo,
  .season-catalog__head,
  .season-tour-card,
  .vip-hero,
  .vip-intro,
  .vip-program__grid,
  .vip-stay,
  .vip-request {
    grid-template-columns: 1fr;
  }

  .season-cover {
    min-height: auto;
    padding-top: 112px;
  }

  .vip-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .season-cover__panel {
    max-width: 520px;
  }

  .vip-hero__panel {
    max-width: 520px;
  }

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

  .vip-gallery__large {
    grid-row: span 1;
    min-height: 360px;
  }

  .vip-program__image {
    min-height: 380px;
  }

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

  .season-tour-card__image {
    min-height: 280px;
    aspect-ratio: 16 / 9;
  }

  .season-tour-card__aside {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .season-sort {
    justify-self: start;
  }

  .schedule-hero,
  .schedule-board__head,
  .schedule-layout {
    grid-template-columns: 1fr;
  }

  .schedule-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .schedule-months {
    grid-template-columns: 1fr;
  }

  .schedule-preview {
    position: static;
  }

  .tour-picker-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -54px;
  }

  .tour-picker-form label:nth-child(2) {
    border-right: 0;
  }

  .tour-picker-form button {
    min-height: 56px;
    grid-column: 1 / -1;
  }

  .tour-picker-summary {
    align-items: start;
    flex-direction: column;
  }

  .service-layout,
  .service-card-grid,
  .agency-form {
    grid-template-columns: 1fr;
  }

  .service-aside {
    position: static;
  }

  .tour-picker-chips {
    justify-content: flex-start;
  }

  .popular-tours-section {
    --popular-card-width: min(38vw, 270px);
    min-height: 920px;
    padding-top: 120px;
  }

  .popular-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .popular-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .popular-copy h2 {
    max-width: 720px;
    font-size: clamp(31px, 6vw, 48px);
  }

  .direction-card {
    --direction-enter-x: 0px !important;
    --direction-enter-y: 34px !important;
    --direction-enter-rotate: 0deg !important;
    filter: none;
    transform: translate3d(0, 34px, 0) scale(0.96);
    transition:
      opacity 0.55s ease,
      transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .corporate-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .corporate-copy h2 {
    max-width: 720px;
  }

  .corporate-media--desktop {
    display: none;
  }

  .corporate-media--mobile {
    display: block;
    margin: 22px 0 0;
  }

  .corporate-copy > p {
    max-width: 720px;
  }

  .corporate-media {
    min-height: 520px;
  }

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

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px 14px;
  }

  .home-header {
    position: fixed;
  }

  .desktop-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(5, 21, 29, 0.94);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .desktop-nav a,
  .desktop-nav .nav-trigger {
    color: rgba(255, 255, 255, 0.92);
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .menu-open .desktop-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
  }

  .nav-item {
    padding: 2px 0;
  }

  .nav-item > a,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
  }

  .nav-item:hover > a,
  .nav-item:hover > .nav-trigger {
    background: transparent;
  }

  .home-header .nav-item:hover > a,
  .home-header .nav-item:hover > .nav-trigger {
    background: transparent;
  }

  .nav-item:hover .nav-dropdown {
    display: none;
  }

  .nav-item.is-open > .nav-trigger,
  .home-header .nav-item.is-open > .nav-trigger {
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-item.is-open .nav-dropdown {
    display: grid;
  }

  .home-header .brand img {
    width: 112px;
    height: 46px;
  }

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

  .hero-filter button {
    grid-column: 1 / -1;
  }

  .header-contacts {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 6px;
  }

  .header-contacts > a:not(.messenger-link):not(.phone-link) {
    display: none;
  }

  .messenger-link {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .messenger-link svg {
    width: 18px;
    height: 18px;
  }

  .section-grid--six,
  .collection-grid,
  .guide-grid,
  .tour-grid,
  .direction-grid,
  .islands-grid,
  .trust-section,
  .route-content,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar,
  .hero,
  .metrics,
  .section-head,
  .split-section,
  .request-section,
  .route-hero,
  .route-layout,
  .guide-card {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    order: 3;
    grid-column: 1 / -1;
  }

  .top-actions {
    justify-content: end;
  }

  .catalog-grid,
  .feature-grid,
  .metric-grid,
  .route-facts,
  .feature-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) {
  .advantages-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .advantages-kicker,
  .advantages-intro h2,
  .advantages-stats {
    grid-column: 1;
  }

  .advantages-kicker {
    grid-row: 1;
  }

  .advantages-intro h2 {
    grid-row: 2;
  }

  .advantages-stats {
    grid-row: 3;
    margin-top: 22px;
  }

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

@media (max-width: 640px) {
  .tour-picker-hero {
    min-height: 340px;
    padding: 104px 16px 34px;
  }

  .tour-picker-hero h1 {
    font-size: 38px;
  }

  .tour-picker-section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .tour-picker-form {
    margin-top: -36px;
    border-radius: 8px;
  }

  .tour-picker-form label {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 17px;
  }

  .tour-picker-form select {
    font-size: 17px;
  }

  .tour-picker-form button {
    min-height: 58px;
    margin: 12px;
  }

  .season-cover {
    padding: 96px 16px 28px;
  }

  .season-cover h1 {
    font-size: 42px;
    line-height: 0.94;
  }

  .season-cover__content > p:not(.page-pill) {
    margin-top: 18px;
    font-size: 15px;
  }

  .season-cover__actions,
  .season-cover__actions .button {
    width: 100%;
  }

  .season-cover__actions .button {
    justify-content: center;
  }

  .season-cover__panel {
    padding: 14px;
    border-radius: 14px;
  }

  .season-cover__panel span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .season-cover__panel strong {
    font-size: 24px;
  }

  .season-promo,
  .season-catalog {
    padding-left: 16px;
    padding-right: 16px;
  }

  .season-promo__grid,
  .season-nav {
    grid-template-columns: 1fr;
  }

  .season-promo__grid a,
  .season-nav button {
    min-height: 92px;
  }

  .season-promo__card h2,
  .season-catalog__head h2 {
    font-size: 34px;
    line-height: 1;
  }

  .season-catalog__head p:not(.page-pill) {
    font-size: 15px;
  }

  .season-sort {
    width: 100%;
    border-radius: 16px;
  }

  .season-sort button {
    flex: 1;
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .season-tour-card {
    border-radius: 16px;
  }

  .season-tour-card__image {
    min-height: 0;
  }

  .season-tour-card__body,
  .season-tour-card__aside {
    padding: 18px;
  }

  .season-tour-card h3 {
    font-size: 28px;
    line-height: 1;
  }

  .season-tour-card p {
    font-size: 15px;
  }

  .season-tour-card__facts span {
    border-radius: 12px;
  }

  .schedule-hero {
    padding: 98px 16px 34px;
  }

  .schedule-hero h1 {
    font-size: 42px;
    line-height: 0.95;
  }

  .schedule-hero__content > p:not(.page-pill) {
    margin-top: 18px;
    font-size: 15px;
  }

  .schedule-picker {
    padding: 12px;
    border-radius: 16px;
  }

  .schedule-picker select {
    min-height: 46px;
  }

  .schedule-board {
    padding-left: 16px;
    padding-right: 16px;
  }

  .schedule-board__head h2 {
    font-size: 34px;
  }

  .schedule-board__head > p {
    font-size: 15px;
  }

  .schedule-month {
    padding: 12px;
    border-radius: 16px;
  }

  .schedule-day {
    min-height: 40px;
    border-radius: 10px;
    font-size: 13px;
  }

  .schedule-preview {
    position: static;
    padding: 12px;
    border-radius: 16px;
  }

  .schedule-month > .schedule-preview {
    margin-top: 14px;
  }

  .schedule-preview-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    border-radius: 14px;
  }

  .schedule-preview-card img {
    min-height: 140px;
  }

  .schedule-preview-card h3 {
    font-size: 19px;
  }

  .schedule-preview-card strong {
    font-size: 20px;
  }

  .popular-tours-section {
    --popular-card-width: 72vw;
    --popular-gap: 18px;
    min-height: 900px;
    padding-top: 96px;
  }

  .popular-card {
    aspect-ratio: 0.78;
  }

  .popular-copy h2 {
    font-size: 29px;
    line-height: 1.04;
  }

  .popular-kicker {
    min-height: 34px;
    padding: 0 12px;
    font-size: 14px;
  }

  .popular-copy > p:not(.popular-kicker) {
    font-size: 16px;
  }

  .popular-feature-actions {
    gap: 10px;
  }

  .popular-discover {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
  }

  .popular-request-main {
    width: 46px;
    min-height: 46px;
  }

  .popular-arrow {
    width: 48px;
    height: 48px;
  }

  .popular-arrow::before {
    width: 24px;
    height: 24px;
  }

  .popular-controls {
    grid-template-columns: 48px 48px minmax(70px, 1fr) auto;
    gap: 10px;
  }

  .popular-controls strong {
    font-size: 22px;
  }

  .popular-all-tours {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .popular-card__text {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .popular-card__text strong {
    font-size: 22px;
  }

  .direction-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .direction-head h2 {
    font-size: 32px;
  }

  .direction-card {
    min-height: 430px;
  }

  .direction-card__panel {
    width: calc(100% - 28px);
    min-height: 320px;
  }

  .direction-price {
    width: calc(100% - 40px);
    margin-top: -8px;
    margin-bottom: 18px;
  }

  .corporate-section {
    padding: 44px 16px 58px;
  }

  .corporate-shell {
    padding: 20px;
    border-radius: 18px;
  }

  .corporate-kicker {
    min-height: 34px;
    margin-bottom: 22px;
    padding: 0 13px;
    font-size: 13px;
  }

  .corporate-copy h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .corporate-media--mobile {
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: 16px;
  }

  .corporate-media--mobile img {
    min-height: 0;
    object-position: center;
  }

  .corporate-copy > p {
    margin: 18px 0 22px;
    font-size: 15px;
  }

  .corporate-list article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .corporate-icon {
    width: 34px;
    height: 34px;
  }

  .corporate-list strong {
    font-size: 16px;
  }

  .corporate-list p {
    font-size: 14px;
  }

  .corporate-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
    padding: 0 18px;
    font-size: 15px;
  }

  .corporate-media {
    min-height: 430px;
    border-radius: 16px;
  }

  .corporate-media--mobile {
    min-height: 0;
  }

  .corporate-media img {
    object-position: center;
  }

  .corporate-media-badges {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
    overflow: hidden;
    border-radius: 12px;
  }

  .corporate-media-badges span {
    min-height: 44px;
    min-width: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 2px;
    padding: 0 7px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
    font-size: 10px;
    line-height: 1.12;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .corporate-badge-full {
    display: none;
  }

  .corporate-badge-short {
    display: inline;
  }

  .corporate-media-badges span:last-child {
    border-right: 0;
  }

  .corporate-media-badges .corporate-icon {
    width: 18px;
    height: 18px;
  }

  .excursion-showcase-section {
    padding: 54px 16px 62px;
  }

  .excursion-showcase-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }

  .excursion-showcase-head h2 {
    font-size: 33px;
  }

  .excursion-showcase-head p:not(.excursion-kicker) {
    font-size: 15px;
  }

  .excursion-all-link {
    width: 100%;
    min-height: 46px;
  }

  .excursion-showcase-grid {
    width: auto;
    margin: 0 -16px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 16px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .excursion-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .excursion-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 390px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .excursion-card__content {
    padding: 18px;
  }

  .excursion-card strong {
    font-size: 27px;
  }

  .excursion-card em {
    font-size: 13px;
  }

  .advantages-section {
    padding: 44px 16px 50px;
  }

  .advantages-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .advantages-intro {
    padding: 18px;
    border-radius: 18px;
  }

  .advantages-kicker {
    min-height: 32px;
    margin-bottom: 8px;
    padding: 0 12px;
    font-size: 12px;
  }

  .advantages-intro h2 {
    font-size: 31px;
  }

  .advantages-intro > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .advantages-stats {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .advantages-stats span {
    min-height: 66px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    align-content: center;
    padding: 14px 16px;
  }

  .advantages-stats strong {
    font-size: 28px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .advantages-grid article {
    min-height: 0;
    gap: 10px;
    padding: 17px;
    border-radius: 16px;
  }

  .advantage-icon {
    width: 36px;
    height: 36px;
  }

  .advantages-grid strong {
    font-size: 19px;
  }

  .advantages-grid p {
    font-size: 14px;
  }

  .reviews-section {
    padding: 46px 16px 52px;
  }

  .reviews-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 22px;
  }

  .reviews-kicker {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .reviews-head h2 {
    font-size: 33px;
  }

  .reviews-head p:not(.reviews-kicker) {
    font-size: 15px;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .reviews-summary div,
  .reviews-summary a {
    min-height: 88px;
    padding: 14px;
    border-radius: 16px;
  }

  .reviews-summary strong {
    font-size: 34px;
  }

  .reviews-summary span {
    font-size: 12px;
  }

  .reviews-summary a {
    grid-column: 1 / -1;
    min-height: 48px;
  }

  .reviews-strip {
    width: auto;
    margin: 0 -16px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-strip::-webkit-scrollbar {
    display: none;
  }

  .reviews-strip img {
    flex: 0 0 min(76vw, 310px);
    height: 430px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 16px;
  }

  .site-footer__brand img {
    width: 118px;
  }

  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: 22px 16px;
  }

  .home-hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 108px 20px 24px;
  }

  .home-hero h1 {
    max-width: 360px;
    font-size: 42px;
    line-height: 0.95;
  }

  .home-hero .hero-lead {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.34;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-cta,
  .hero-video {
    min-height: 52px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero-cta b,
  .hero-video b {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .hero-benefits {
    display: none;
  }

  .hero-benefits,
  .hero-filter {
    grid-template-columns: 1fr;
  }

  .hero-benefits span,
  .hero-filter label {
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero-filter label {
    padding: 0;
  }

  .hero-filter {
    gap: 8px;
    margin-top: 18px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(7, 22, 30, 0.76);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  }

  .hero-filter span {
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .hero-filter select {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .hero-filter button {
    min-height: 50px;
    margin-top: 2px;
    border-radius: 10px;
    font-size: 16px;
  }

  .section-grid--six,
  .collection-grid,
  .guide-grid,
  .tour-grid,
  .direction-grid,
  .islands-grid,
  .trust-section,
  .route-content,
  .included-grid,
  .vip-services,
  .vip-gallery,
  .vip-stay__media {
    grid-template-columns: 1fr;
  }

  .vip-hero h1 {
    font-size: 40px;
    line-height: 0.95;
  }

  .vip-hero__content > p:not(.vip-pill),
  .vip-intro p:not(.vip-pill),
  .vip-program p,
  .vip-stay p,
  .vip-request p {
    font-size: 16px;
  }

  .vip-gallery article,
  .vip-gallery__large {
    min-height: 330px;
  }

  .vip-stay__media img,
  .vip-stay__media img:first-child {
    height: 320px;
    margin-top: 0;
  }

  .topbar {
    gap: 12px;
  }

  .top-actions {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  h1 {
    font-size: 42px;
  }

  .catalog-grid,
  .feature-grid,
  .metric-grid,
  .route-facts,
  .related-list,
  .feature-grid.compact {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

/* VIP page follows the home page visual language: readable hero, compact cards, visible media. */
.vip-page {
  background: var(--paper);
  color: var(--ink);
}

.vip-hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-content: center;
  align-items: center;
  padding: clamp(96px, 10vw, 138px) clamp(22px, 5vw, 72px) clamp(28px, 4vw, 54px);
}

.vip-hero::after {
  background:
    linear-gradient(180deg, rgba(3, 22, 39, 0.78), rgba(3, 22, 39, 0.08) 36%, rgba(3, 22, 39, 0.88)),
    linear-gradient(90deg, rgba(2, 18, 34, 0.92), rgba(2, 18, 34, 0.62) 36%, rgba(2, 18, 34, 0.08) 72%);
}

.vip-hero > img {
  object-position: center center;
}

.vip-hero__content {
  max-width: 780px;
}

.vip-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 14px;
}

.vip-hero h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7.1vw, 108px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: none;
}

.vip-hero__content > p:not(.vip-pill) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.42;
}

.vip-page .button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 38px rgba(9, 104, 255, 0.24);
}

.vip-hero .button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.46);
}

.vip-hero__panel {
  width: min(100%, 950px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-self: auto;
  margin-top: clamp(10px, 1.4vw, 18px);
  padding: 0;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(14, 29, 39, 0.66);
}

.vip-hero__panel span {
  min-height: 76px;
  padding: 14px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
}

.vip-hero__panel span:last-child {
  border-right: 0;
}

.vip-hero__panel strong {
  font-size: clamp(26px, 3vw, 42px);
}

.vip-intro {
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: 24px;
}

.vip-intro .vip-pill,
.vip-program .vip-pill,
.vip-stay .vip-pill,
.vip-request .vip-pill {
  border-color: rgba(9, 104, 255, 0.28);
  background: rgba(9, 104, 255, 0.08);
  color: var(--blue);
}

.vip-intro h2,
.vip-program h2,
.vip-stay h2,
.vip-request h2 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
}

.vip-services {
  padding-top: 22px;
  padding-bottom: 44px;
}

.vip-services article {
  min-height: 220px;
  border-radius: 8px;
}

.vip-services span,
.vip-gallery span,
.vip-program__list span {
  color: var(--blue);
}

.vip-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
  padding-bottom: clamp(54px, 7vw, 86px);
}

.vip-gallery article,
.vip-gallery__large {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(190px, auto);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  box-shadow: 0 16px 48px rgba(22, 38, 34, 0.08);
}

.vip-gallery article::after {
  display: none;
}

.vip-gallery img {
  height: auto;
  aspect-ratio: 4 / 3;
  opacity: 1;
}

.vip-gallery article:hover img {
  opacity: 1;
}

.vip-gallery article > div {
  position: static;
  align-content: start;
  padding: 20px;
}

.vip-gallery h3 {
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 30px);
}

.vip-gallery p {
  color: var(--muted);
}

.vip-program {
  padding-top: clamp(52px, 7vw, 86px);
  padding-bottom: clamp(52px, 7vw, 86px);
  background: white;
}

.vip-program__grid {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.vip-program__image {
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
}

.vip-program__list article {
  border-radius: 8px;
  box-shadow: none;
}

.vip-stay {
  padding-top: clamp(54px, 7vw, 90px);
  padding-bottom: clamp(54px, 7vw, 90px);
}

.vip-stay__media img {
  height: clamp(300px, 34vw, 520px);
  border-radius: 8px;
}

.vip-price-grid {
  border-radius: 8px;
  background: linear-gradient(145deg, #143c35, #0b1f1c);
}

.vip-request {
  margin: 0 clamp(18px, 4vw, 48px) clamp(54px, 7vw, 90px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(9, 104, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(9, 104, 255, 0.08), rgba(30, 109, 120, 0.08)),
    white;
  box-shadow: 0 18px 52px rgba(22, 38, 34, 0.08);
}

.vip-request .button-ghost {
  border-color: rgba(20, 60, 53, 0.2);
  background: white;
  color: var(--ink);
}

@media (max-width: 980px) {
  .vip-services-showcase__head,
  .vip-services-showcase__layout {
    grid-template-columns: 1fr;
  }

  .vip-services-showcase__media {
    min-height: 520px;
  }

  .vip-services-story__sticky {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stage"
      "rail";
  }

  .vip-services-stage {
    min-height: 390px;
  }

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

  .vip-service-steps {
    display: none;
  }

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

  .vip-gallery article,
  .vip-gallery__large {
    grid-template-rows: auto auto;
  }
}

@media (max-width: 640px) {
  .vip-services-showcase {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .vip-services-showcase__head {
    gap: 16px;
    margin-bottom: 22px;
  }

  .vip-services-showcase__head h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .vip-services-showcase__head p:not(.vip-pill) {
    font-size: 16px;
  }

  .vip-services-showcase__media {
    min-height: 420px;
  }

  .vip-services-showcase__media img:nth-child(2) {
    width: 42%;
    right: 14px;
    bottom: 14px;
  }

  .vip-services-showcase__media span {
    left: 18px;
    bottom: 18px;
    max-width: 190px;
    font-size: 30px;
  }

  .vip-services-showcase__cards {
    grid-template-columns: 1fr;
  }

  .vip-services-showcase__cards article {
    min-height: 230px;
  }

  .vip-services-story {
    padding-top: 46px;
    padding-bottom: 46px;
    overflow: hidden;
  }

  .vip-services-story__sticky {
    display: block;
  }

  .vip-services-story__copy h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .vip-services-story__copy p:not(.vip-pill) {
    max-width: 100%;
    margin-top: 16px;
    font-size: 16px;
  }

  .vip-services-stage {
    margin-top: 24px;
    min-height: 360px;
    padding: 24px 20px;
  }

  .vip-services-stage h3 {
    font-size: 31px;
  }

  .vip-services-rail {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .vip-services-rail button {
    min-height: 74px;
  }

  .vip-hero {
    min-height: 100svh;
    padding: 108px 20px 24px;
  }

  .vip-hero h1 {
    max-width: 360px;
    font-size: 42px;
    line-height: 0.95;
  }

  .vip-hero__content > p:not(.vip-pill) {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.34;
  }

  .vip-hero__panel,
  .vip-gallery,
  .vip-services,
  .vip-program__grid,
  .vip-stay,
  .vip-stay__media,
  .vip-request {
    grid-template-columns: 1fr;
  }

  .vip-hero__panel span {
    min-height: 0;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .vip-hero__panel span:last-child {
    border-bottom: 0;
  }

  .vip-gallery img {
    aspect-ratio: 16 / 10;
  }

  .vip-program__image {
    aspect-ratio: 16 / 10;
  }

  .vip-stay__media img,
  .vip-stay__media img:first-child {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .vip-request {
    margin-inline: 16px;
  }
}

/* Keep VIP in the same dark visual system as the rest of the site. */
.vip-page {
  background:
    radial-gradient(circle at 82% 14%, rgba(9, 104, 255, 0.16), transparent 34vw),
    radial-gradient(circle at 16% 68%, rgba(30, 109, 120, 0.18), transparent 32vw),
    linear-gradient(180deg, #061113 0%, #071925 38%, #06131d 100%);
  color: white;
}

.vip-body {
  background: #061113;
  color: white;
}

.vip-intro,
.vip-services,
.vip-gallery,
.vip-program,
.vip-stay,
.vip-request {
  color: white;
}

.vip-intro {
  background: linear-gradient(180deg, rgba(6, 17, 19, 0.98), rgba(7, 25, 37, 0.96));
}

.vip-services,
.vip-gallery,
.vip-stay {
  background: transparent;
}

.vip-program {
  background:
    linear-gradient(180deg, rgba(7, 25, 37, 0.98), rgba(6, 19, 29, 0.98));
}

.vip-intro .vip-pill,
.vip-program .vip-pill,
.vip-stay .vip-pill,
.vip-request .vip-pill {
  border-color: rgba(105, 167, 255, 0.72);
  background: rgba(9, 104, 255, 0.12);
  color: #69a7ff;
}

.vip-intro h2,
.vip-program h2,
.vip-stay h2,
.vip-request h2,
.vip-services h3,
.vip-gallery h3,
.vip-program__list h3 {
  color: white;
}

.vip-intro p:not(.vip-pill),
.vip-program p,
.vip-stay p,
.vip-request p,
.vip-services p,
.vip-gallery p,
.vip-program__list p {
  color: rgba(255, 255, 255, 0.72);
}

.vip-services article,
.vip-gallery article,
.vip-program__list article {
  border-color: rgba(105, 167, 255, 0.18);
  background: linear-gradient(145deg, rgba(8, 31, 46, 0.96), rgba(7, 20, 31, 0.94));
  color: white;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.vip-gallery article {
  background: rgba(8, 31, 46, 0.96);
}

.vip-gallery img {
  background: #071925;
}

.vip-program__image,
.vip-stay__media img {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.vip-request {
  border-color: rgba(105, 167, 255, 0.22);
  background:
    radial-gradient(circle at 86% 18%, rgba(9, 104, 255, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(8, 31, 46, 0.98), rgba(7, 20, 31, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.vip-request .button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.vip-route-map {
  position: relative;
  overflow: clip;
  padding-top: clamp(58px, 7vw, 98px);
  padding-bottom: clamp(34px, 5vw, 76px);
  background:
    radial-gradient(circle at 82% 12%, rgba(9, 104, 255, 0.18), transparent 34vw),
    linear-gradient(180deg, rgba(6, 17, 19, 0.98), rgba(7, 25, 37, 0.96));
  color: white;
}

.vip-route-map__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 48px);
}

.vip-route-map__head .vip-pill {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.vip-route-map__head h2 {
  max-width: 940px;
  margin: 0;
  color: white;
  font-size: clamp(42px, 5.1vw, 84px);
  line-height: 0.98;
  text-wrap: balance;
}

.vip-route-map__head p:not(.vip-pill) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
}

.vip-route-map__scene {
  position: relative;
  height: clamp(1440px, 260vh, 2320px);
}

.vip-route-map__visual {
  position: sticky;
  top: 88px;
  height: min(760px, calc(100svh - 112px));
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(105, 167, 255, 0.28);
  border-radius: 18px;
  background: #06131d;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.vip-route-map__canvas {
  position: absolute;
  inset: 0;
}

.vip-route-map__canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 40%, rgba(9, 104, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(2, 13, 20, 0.28), rgba(2, 13, 20, 0.1) 52%, rgba(2, 13, 20, 0.48)),
    linear-gradient(180deg, rgba(2, 13, 20, 0.04), rgba(2, 13, 20, 0.42));
  pointer-events: none;
}

.vip-route-map__canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.vip-route-map__canvas svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.vip-route-map__path-base,
.vip-route-map__path-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vip-route-map__path-base {
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 8;
}

.vip-route-map__path-progress {
  stroke: #69a7ff;
  stroke-width: 9;
  filter: drop-shadow(0 0 14px rgba(9, 104, 255, 0.7));
  transition: stroke-dashoffset 0.08s linear;
}

.vip-route-map__pins {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.vip-route-map__pins span {
  position: absolute;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(5, 18, 28, 0.78);
  color: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0.68;
  transition: transform 0.24s ease, opacity 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.vip-route-map__pins span:nth-child(1) {
  left: 32.5%;
  top: 72.4%;
}

.vip-route-map__pins span:nth-child(2) {
  left: 41.5%;
  top: 56.6%;
}

.vip-route-map__pins span:nth-child(3) {
  left: 46.1%;
  top: 73.5%;
}

.vip-route-map__pins span:nth-child(4) {
  left: 54%;
  top: 56.8%;
}

.vip-route-map__pins span:nth-child(5) {
  left: 34.6%;
  top: 82.1%;
}

.vip-route-map__pins span:nth-child(6) {
  left: 57.5%;
  top: 49.7%;
}

.vip-route-map__pins span:nth-child(7) {
  left: 63.3%;
  top: 42.9%;
}

.vip-route-map__pins span:nth-child(8) {
  left: 70.5%;
  top: 31.5%;
}

.vip-route-map__pins b {
  font-size: 14px;
}

.vip-route-map__pins span.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(9, 104, 255, 0.94);
  box-shadow: 0 0 0 11px rgba(9, 104, 255, 0.17), 0 18px 44px rgba(0, 0, 0, 0.38);
}

.vip-route-map__cards article {
  position: absolute;
  z-index: 5;
  left: var(--card-x);
  top: var(--card-y);
  width: min(420px, 34vw);
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(105, 167, 255, 0.36);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(8, 31, 46, 0.9), rgba(7, 20, 31, 0.78)),
    radial-gradient(circle at 90% 10%, rgba(9, 104, 255, 0.24), transparent 38%);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.vip-route-map__cards article:nth-child(1) {
  --card-x: 44%;
  --card-y: 20%;
}

.vip-route-map__cards article:nth-child(2) {
  --card-x: 48%;
  --card-y: 18%;
}

.vip-route-map__cards article:nth-child(3) {
  --card-x: 44%;
  --card-y: 16%;
}

.vip-route-map__cards article:nth-child(4) {
  --card-x: 51%;
  --card-y: 18%;
}

.vip-route-map__cards article:nth-child(5) {
  --card-x: 43%;
  --card-y: 24%;
}

.vip-route-map__cards article:nth-child(6) {
  --card-x: 53%;
  --card-y: 16%;
}

.vip-route-map__cards article:nth-child(7) {
  --card-x: 56%;
  --card-y: 14%;
}

.vip-route-map__cards article:nth-child(8) {
  --card-x: 58%;
  --card-y: 16%;
}

.vip-route-map__cards article.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.vip-route-map__cards span {
  color: #8bbcff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vip-route-map__cards h3 {
  max-width: 400px;
  margin: 0;
  color: white;
  font-size: clamp(31px, 3vw, 50px);
  line-height: 0.98;
}

.vip-route-map__cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.42;
}

.vip-route-map__cards em {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  line-height: 1.42;
}

.vip-route-map__cards .button {
  width: fit-content;
  margin-top: 8px;
  min-height: 54px;
  padding-inline: 24px;
}

.vip-program {
  position: relative;
  overflow: clip;
}

.vip-program__head {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.vip-program__grid {
  align-items: start;
}

.vip-program__image {
  position: sticky;
  top: 92px;
  min-height: min(720px, calc(100svh - 124px));
  border: 1px solid rgba(105, 167, 255, 0.24);
  background: #06131d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.vip-program__image img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.42s ease;
}

.vip-program__image img.is-active {
  opacity: 1;
}

.vip-program__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 22, 39, 0.02), rgba(3, 22, 39, 0.46)),
    linear-gradient(90deg, rgba(3, 22, 39, 0.46), rgba(3, 22, 39, 0));
  pointer-events: none;
}

.vip-program__list {
  position: relative;
  gap: 16px;
  padding-left: clamp(18px, 2vw, 28px);
}

.vip-program__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, rgba(105, 167, 255, 0), rgba(105, 167, 255, 0.58), rgba(105, 167, 255, 0));
}

.vip-program__list article {
  position: relative;
  min-height: clamp(190px, 27vh, 280px);
  align-content: center;
  border-color: rgba(105, 167, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(8, 31, 46, 0.68), rgba(7, 20, 31, 0.84)),
    radial-gradient(circle at 90% 12%, rgba(9, 104, 255, 0.08), transparent 34%);
  opacity: 0.58;
  transform: translateX(18px) scale(0.985);
  transition: opacity 0.32s ease, transform 0.32s ease, border-color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}

.vip-program__list article::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(18px, 2vw, 28px) - 5px);
  top: 50%;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(105, 167, 255, 0.7);
  border-radius: 50%;
  background: #06131d;
  transform: translateY(-50%);
  transition: transform 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}

.vip-program__list article.is-active {
  border-color: rgba(105, 167, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(10, 42, 62, 0.96), rgba(7, 20, 31, 0.96)),
    radial-gradient(circle at 90% 12%, rgba(9, 104, 255, 0.24), transparent 36%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  opacity: 1;
  transform: translateX(0) scale(1);
}

.vip-program__list article.is-active::before {
  background: #0968ff;
  box-shadow: 0 0 0 8px rgba(9, 104, 255, 0.16), 0 0 24px rgba(9, 104, 255, 0.44);
  transform: translateY(-50%) scale(1.25);
}

.vip-program__list span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.vip-program__list span b {
  color: #8bbcff;
  font: inherit;
}

.vip-stay__media {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(12px, 1.6vw, 20px);
}

.vip-stay__media article {
  position: relative;
  min-height: clamp(360px, 29vw, 540px);
  overflow: hidden;
  border: 1px solid rgba(105, 167, 255, 0.2);
  border-radius: 8px;
  background: #06131d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.vip-stay__media article:nth-child(2) {
  margin-top: 0;
}

.vip-stay__media article:nth-child(3) {
  margin-top: 0;
}

.vip-stay__media article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 13, 20, 0.04), rgba(2, 13, 20, 0.78));
  pointer-events: none;
}

.vip-stay__media article img,
.vip-stay__media article:first-child img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.vip-stay__media article div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.vip-stay__media article span {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(105, 167, 255, 0.46);
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.16);
  color: #8bbcff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vip-stay__media article h3,
.vip-stay__media article p {
  margin: 0;
}

.vip-stay__media article h3 {
  color: white;
  font-size: clamp(22px, 1.7vw, 32px);
  line-height: 1.06;
}

.vip-stay__media article p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.vip-stay__note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(105, 167, 255, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(8, 31, 46, 0.82), rgba(7, 20, 31, 0.9)),
    radial-gradient(circle at 92% 10%, rgba(9, 104, 255, 0.16), transparent 34%);
}

.vip-stay__note span {
  color: #8bbcff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.vip-stay__note strong {
  color: white;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.28;
}

.vip-services-showcase {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background:
    radial-gradient(circle at 88% 18%, rgba(9, 104, 255, 0.2), transparent 34vw),
    linear-gradient(180deg, rgba(6, 17, 19, 0.98), rgba(7, 25, 37, 0.96));
  color: white;
}

.vip-services-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.vip-services-showcase__head .vip-pill {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.vip-services-showcase__head h2 {
  max-width: 860px;
  margin: 0;
  color: white;
  font-size: clamp(42px, 5.2vw, 88px);
  line-height: 0.98;
  text-wrap: balance;
}

.vip-services-showcase__head p:not(.vip-pill) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
}

.vip-services-showcase__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(16px, 2.8vw, 36px);
  align-items: stretch;
}

.vip-services-showcase__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(105, 167, 255, 0.24);
  border-radius: 14px;
  background: #071925;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.vip-services-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 22, 39, 0.02), rgba(3, 22, 39, 0.46)),
    linear-gradient(90deg, rgba(3, 22, 39, 0.54), rgba(3, 22, 39, 0));
  pointer-events: none;
}

.vip-services-showcase__media img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vip-services-showcase__media img:nth-child(2) {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  width: min(46%, 260px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.35);
}

.vip-services-showcase__media span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 280px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.98;
}

.vip-services-showcase__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vip-services-showcase__cards article {
  min-height: 304px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(105, 167, 255, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(8, 31, 46, 0.94), rgba(7, 20, 31, 0.96)),
    radial-gradient(circle at 86% 14%, rgba(9, 104, 255, 0.14), transparent 36%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.vip-services-showcase__cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 104, 255, 0.7);
  background:
    linear-gradient(145deg, rgba(10, 42, 62, 0.96), rgba(7, 20, 31, 0.96)),
    radial-gradient(circle at 86% 14%, rgba(9, 104, 255, 0.26), transparent 38%);
}

.vip-services-showcase__cards span {
  color: #69a7ff;
  font-size: 13px;
  font-weight: 950;
}

.vip-services-showcase__cards h3 {
  max-width: 420px;
  margin: 0;
  color: white;
  font-size: clamp(27px, 2.4vw, 42px);
  line-height: 1;
}

.vip-services-showcase__cards p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.45;
}

.vip-services-story {
  position: relative;
  padding-top: clamp(56px, 7vw, 94px);
  padding-bottom: clamp(56px, 7vw, 94px);
  background:
    radial-gradient(circle at 84% 24%, rgba(9, 104, 255, 0.18), transparent 34vw),
    linear-gradient(180deg, rgba(6, 17, 19, 0.98), rgba(7, 25, 37, 0.96));
  color: white;
}

.vip-services-story__sticky {
  position: sticky;
  top: 92px;
  min-height: calc(100svh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  grid-template-areas:
    "copy stage"
    "rail stage";
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
}

.vip-services-story__copy {
  grid-area: copy;
}

.vip-services-story__copy h2 {
  max-width: 920px;
  margin: 0;
  color: white;
  font-size: clamp(42px, 5.4vw, 92px);
  line-height: 0.98;
  text-wrap: balance;
}

.vip-services-story__copy p:not(.vip-pill) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.5;
}

.vip-services-stage {
  grid-area: stage;
  position: relative;
  min-height: 470px;
  display: grid;
  align-content: end;
  gap: 18px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(105, 167, 255, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(8, 31, 46, 0.92), rgba(7, 20, 31, 0.96)),
    radial-gradient(circle at 80% 0%, rgba(105, 167, 255, 0.22), transparent 38%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.vip-services-stage::before {
  content: "";
  position: absolute;
  left: -18%;
  top: -22%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(105, 167, 255, 0.18);
}

.vip-services-stage::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 26px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(9, 104, 255, 0.16);
  box-shadow: 0 0 80px rgba(9, 104, 255, 0.24);
}

.vip-services-stage span,
.vip-services-stage h3,
.vip-services-stage p,
.vip-services-stage em {
  position: relative;
  z-index: 1;
}

.vip-services-stage span {
  color: #69a7ff;
  font-size: 15px;
  font-weight: 950;
}

.vip-services-stage h3 {
  max-width: 560px;
  margin: 0;
  color: white;
  font-size: clamp(38px, 4.2vw, 72px);
  line-height: 0.96;
}

.vip-services-stage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.42;
}

.vip-services-stage em {
  display: block;
  max-width: 640px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  line-height: 1.5;
}

.vip-services-stage.is-changing span,
.vip-services-stage.is-changing h3,
.vip-services-stage.is-changing p,
.vip-services-stage.is-changing em {
  animation: vipStageIn 0.48s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.vip-services-stage.is-changing h3 {
  animation-delay: 0.04s;
}

.vip-services-stage.is-changing p {
  animation-delay: 0.08s;
}

.vip-services-stage.is-changing em {
  animation-delay: 0.12s;
}

@keyframes vipStageIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.vip-services-rail {
  grid-area: rail;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.vip-services-rail button {
  min-height: 104px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(105, 167, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 31, 46, 0.62);
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.vip-services-rail button:hover,
.vip-services-rail button.is-active {
  transform: translateY(-2px);
  border-color: rgba(9, 104, 255, 0.85);
  background: rgba(9, 104, 255, 0.18);
  color: white;
}

.vip-services-rail span {
  color: #69a7ff;
  font-size: 13px;
  font-weight: 950;
}

.vip-services-rail strong {
  font-size: 17px;
  line-height: 1.1;
}

.vip-service-steps {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  pointer-events: none;
}

.vip-service-steps article {
  min-height: 82svh;
  opacity: 0;
}

@media (max-width: 980px) {
  .vip-route-map__head {
    grid-template-columns: 1fr;
  }

  .vip-program__image {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .vip-program__list {
    padding-left: 20px;
  }

  .vip-program__list article {
    min-height: auto;
  }

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

  .vip-stay__media article,
  .vip-stay__media article:nth-child(2),
  .vip-stay__media article:nth-child(3),
  .vip-stay__media article:nth-child(4) {
    min-height: 320px;
    margin-top: 0;
  }

  .vip-route-map__scene {
    height: 220vh;
  }

  .vip-route-map__visual {
    min-height: 560px;
  }

  .vip-route-map__cards article {
    width: min(360px, 48vw);
  }

  .vip-services-story__sticky {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stage"
      "rail";
  }

  .vip-services-stage {
    min-height: 390px;
  }

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

  .vip-service-steps {
    display: none;
  }
}

@media (max-width: 640px) {
  .vip-program__image {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
  }

  .vip-program__list {
    gap: 10px;
    padding-left: 16px;
  }

  .vip-program__list article {
    padding: 20px;
    transform: translateX(10px);
  }

  .vip-program__list h3 {
    font-size: 26px;
    line-height: 1.05;
  }

  .vip-stay__media {
    grid-template-columns: 1fr;
  }

  .vip-stay__media article,
  .vip-stay__media article:nth-child(2),
  .vip-stay__media article:nth-child(3),
  .vip-stay__media article:nth-child(4) {
    min-height: 280px;
  }

  .vip-stay__media article div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .vip-route-map {
    padding-top: 46px;
    padding-bottom: 54px;
    overflow: visible;
  }

  .vip-route-map__head h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .vip-route-map__head p:not(.vip-pill) {
    max-width: 100%;
    font-size: 16px;
  }

  .vip-route-map__scene {
    height: clamp(1160px, 245vh, 1900px);
  }

  .vip-route-map__visual {
    position: sticky;
    top: 76px;
    min-height: calc(100svh - 96px);
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .vip-route-map__canvas {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(105, 167, 255, 0.28);
    border-radius: 12px;
    background: #06131d;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  }

  .vip-route-map__canvas img {
    object-fit: contain;
  }

  .vip-route-map__pins span {
    width: 28px;
    height: 28px;
  }

  .vip-route-map__pins b {
    font-size: 10px;
  }

  .vip-route-map__pins span.is-active {
    box-shadow: 0 0 0 7px rgba(9, 104, 255, 0.15), 0 14px 30px rgba(0, 0, 0, 0.36);
  }

  .vip-route-map__path-base {
    stroke-width: 6;
  }

  .vip-route-map__path-progress {
    stroke-width: 7;
  }

  .vip-route-map__cards {
    position: relative;
    min-height: 0;
    margin-top: 12px;
  }

  .vip-route-map__cards article {
    position: absolute;
    inset: 0;
    width: auto;
    padding: 20px;
    border-radius: 12px;
    background:
      linear-gradient(145deg, rgba(8, 31, 46, 0.98), rgba(7, 20, 31, 0.96)),
      radial-gradient(circle at 90% 10%, rgba(9, 104, 255, 0.2), transparent 38%);
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
  }

  .vip-route-map__cards article.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .vip-route-map__cards h3 {
    font-size: 28px;
    line-height: 1;
  }

  .vip-services-story {
    padding-top: 46px;
    padding-bottom: 46px;
    overflow: hidden;
  }

  .vip-services-story__sticky {
    display: block;
  }

  .vip-services-story__copy h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .vip-services-story__copy p:not(.vip-pill) {
    max-width: 100%;
    margin-top: 16px;
    font-size: 16px;
  }

  .vip-services-stage {
    margin-top: 24px;
    min-height: 360px;
    padding: 24px 20px;
  }

  .vip-services-stage h3 {
    font-size: 31px;
  }

  .vip-services-rail {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .vip-services-rail button {
    min-height: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .direction-head,
  .direction-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .vip-route-map__path-progress,
  .vip-route-map__pins span,
  .vip-route-map__cards article,
  .vip-pricing__cards article,
  .vip-pricing__cards article::before {
    animation: none;
    transition: none;
  }

  .vip-pricing__cards article {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .vip-services-showcase__head,
  .vip-services-showcase__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vip-services-showcase {
    overflow: hidden;
  }

  .vip-services-showcase__head,
  .vip-services-showcase__layout,
  .vip-services-showcase__cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .vip-services-showcase__head h2,
  .vip-services-showcase__head p:not(.vip-pill) {
    max-width: 100%;
  }

  .vip-services-showcase__head h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .vip-services-showcase__media {
    min-width: 0;
    min-height: 420px;
  }
}

.vip-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  padding-top: clamp(52px, 7vw, 90px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.vip-gallery__head {
  display: grid;
  gap: 16px;
  max-width: 1120px;
}

.vip-gallery .vip-pill {
  width: fit-content;
  margin: 0;
  border-color: rgba(105, 167, 255, 0.72);
  background: rgba(9, 104, 255, 0.12);
  color: #69a7ff;
}

.vip-gallery__head h2 {
  max-width: 980px;
  margin: 0;
  color: white;
  font-size: clamp(36px, 5.4vw, 86px);
  line-height: 0.96;
  text-wrap: balance;
}

.vip-gallery__head p:not(.vip-pill) {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.48;
}

.vip-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.vip-gallery__grid article,
.vip-gallery__grid .vip-gallery__large {
  position: relative;
  min-height: clamp(420px, 32vw, 560px);
  display: block;
  overflow: hidden;
  border: 1px solid rgba(105, 167, 255, 0.22);
  border-radius: 8px;
  background: #06131d;
  color: white;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.vip-gallery__grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(180deg, rgba(2, 13, 20, 0.08), rgba(2, 13, 20, 0.86)),
    linear-gradient(90deg, rgba(2, 13, 20, 0.28), transparent 52%);
  pointer-events: none;
}

.vip-gallery__grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.vip-gallery__grid article:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.vip-gallery__grid article > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 34px);
}

.vip-gallery__grid span {
  color: #2c87ff;
}

.vip-gallery__grid h3 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 2.8vw, 46px);
  line-height: 0.98;
}

.vip-gallery__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.42;
}

@media (max-width: 1100px) {
  .vip-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vip-gallery {
    padding-top: 46px;
  }

  .vip-gallery__head h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .vip-gallery__head p:not(.vip-pill) {
    font-size: 17px;
  }

  .vip-gallery__grid {
    grid-template-columns: 1fr;
  }

  .vip-gallery__grid article,
  .vip-gallery__grid .vip-gallery__large {
    min-height: 360px;
  }
}

.vip-pricing {
  position: relative;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
  overflow: hidden;
}

.vip-pricing::before {
  content: "";
  position: absolute;
  inset: 8% -12% auto auto;
  width: 42vw;
  height: 42vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 104, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.vip-pricing__head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 1040px;
}

.vip-pricing .vip-pill {
  width: fit-content;
  margin: 0;
  border-color: rgba(105, 167, 255, 0.72);
  background: rgba(9, 104, 255, 0.12);
  color: #69a7ff;
}

.vip-pricing__head h2 {
  max-width: 980px;
  margin: 0;
  color: white;
  font-size: clamp(36px, 5.2vw, 82px);
  line-height: 0.96;
  text-wrap: balance;
}

.vip-pricing__head p:not(.vip-pill) {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
}

.vip-pricing__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.vip-pricing__cards article {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto;
  align-content: stretch;
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(105, 167, 255, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(7, 29, 43, 0.98), rgba(5, 18, 28, 0.98)),
    radial-gradient(circle at 92% 8%, rgba(9, 104, 255, 0.2), transparent 34%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  transition-delay: calc(var(--price-index) * 90ms);
}

.vip-pricing.is-visible .vip-pricing__cards article {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.vip-pricing__cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: vipPriceShine 5.8s ease-in-out infinite;
  animation-delay: calc(var(--price-index) * 0.7s + 1.2s);
  pointer-events: none;
}

.vip-pricing__cards article::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(105, 167, 255, 0.86), transparent);
}

.vip-pricing__cards article:hover {
  border-color: rgba(105, 167, 255, 0.62);
  box-shadow: 0 34px 110px rgba(9, 104, 255, 0.18), 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px) scale(1.01);
}

.vip-pricing.is-visible .vip-pricing__cards article:hover {
  transform: translateY(-6px) scale(1.01);
}

.vip-pricing__cards article.is-featured {
  border-color: rgba(105, 167, 255, 0.7);
  background:
    linear-gradient(145deg, rgba(9, 50, 74, 0.98), rgba(5, 22, 34, 0.98)),
    radial-gradient(circle at 88% 8%, rgba(9, 104, 255, 0.34), transparent 36%);
}

.vip-pricing__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vip-pricing__top span {
  color: #69a7ff;
  font-size: 14px;
  font-weight: 950;
}

.vip-pricing__top b {
  padding: 7px 10px;
  border: 1px solid rgba(105, 167, 255, 0.46);
  border-radius: 999px;
  background: rgba(9, 104, 255, 0.16);
  color: #9ec8ff;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.vip-pricing__cards h3 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
}

.vip-pricing__cards strong {
  display: block;
  margin-top: 10px;
  color: white;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.vip-pricing__cards em {
  margin-top: -6px;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-size: 15px;
  font-weight: 850;
}

.vip-pricing__cards p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.42;
}

.vip-pricing__cards ul {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.vip-pricing__cards li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.35;
}

.vip-pricing__cards li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2c87ff;
  box-shadow: 0 0 18px rgba(44, 135, 255, 0.8);
}

.vip-pricing__cards .button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 58px;
  margin-top: 12px;
  justify-content: center;
  font-size: 17px;
}

.vip-pricing__action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.vip-pricing__action span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

@keyframes vipPriceShine {
  0%,
  58% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 980px) {
  .vip-pricing__cards {
    grid-template-columns: 1fr;
  }

  .vip-pricing__cards article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .vip-pricing {
    padding-top: 48px;
  }

  .vip-pricing__head h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .vip-pricing__head p:not(.vip-pill) {
    font-size: 17px;
  }

  .vip-pricing__cards article {
    padding: 24px 20px;
  }

  .vip-pricing__cards strong {
    font-size: 52px;
  }
}

.vip-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.vip-faq__head {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.vip-faq .vip-pill {
  width: fit-content;
  margin: 0;
  border-color: rgba(105, 167, 255, 0.72);
  background: rgba(9, 104, 255, 0.12);
  color: #69a7ff;
}

.vip-faq h2 {
  margin: 0;
  color: white;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.96;
  text-wrap: balance;
}

.vip-faq__head p:not(.vip-pill) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
}

.vip-faq__list {
  display: grid;
  gap: 12px;
}

.vip-faq details {
  border: 1px solid rgba(105, 167, 255, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(8, 31, 46, 0.88), rgba(7, 20, 31, 0.82)),
    radial-gradient(circle at 96% 8%, rgba(9, 104, 255, 0.15), transparent 34%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.vip-faq details[open] {
  border-color: rgba(105, 167, 255, 0.52);
}

.vip-faq summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 2.4vw, 30px);
  color: white;
  cursor: pointer;
  list-style: none;
}

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

.vip-faq summary span {
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 850;
  line-height: 1.08;
  text-wrap: balance;
}

.vip-faq summary b {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(105, 167, 255, 0.45);
  border-radius: 50%;
  background: rgba(9, 104, 255, 0.12);
}

.vip-faq summary b::before,
.vip-faq summary b::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #d8e8ff;
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.vip-faq summary b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.vip-faq details[open] summary b {
  background: rgba(9, 104, 255, 0.9);
  box-shadow: 0 0 0 9px rgba(9, 104, 255, 0.13);
}

.vip-faq details[open] summary b::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.vip-faq details > p {
  margin: 0;
  padding: 0 clamp(20px, 2.4vw, 30px) clamp(22px, 2.6vw, 34px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.56;
}

@media (max-width: 980px) {
  .vip-faq {
    grid-template-columns: 1fr;
  }

  .vip-faq__head {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .vip-faq {
    padding-top: 48px;
  }

  .vip-faq h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .vip-faq summary {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 40px;
    padding: 20px;
  }

  .vip-faq summary span {
    font-size: 22px;
  }

  .vip-faq summary b {
    width: 40px;
    height: 40px;
  }
}

.vip-request {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(26px, 4vw, 46px);
  overflow: hidden;
}

.vip-request::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 22%, rgba(9, 104, 255, 0.24), transparent 34%),
    linear-gradient(120deg, rgba(8, 31, 46, 0.96), rgba(5, 17, 27, 0.96));
}

.vip-request::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -34%;
  z-index: -1;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(105, 167, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(9, 104, 255, 0.08);
}

.vip-request__copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.vip-request__copy h2 {
  max-width: 960px;
  font-size: clamp(38px, 5.4vw, 86px);
}

.vip-request__copy > p:not(.vip-pill) {
  max-width: 860px;
  font-size: clamp(18px, 1.6vw, 24px);
}

.vip-request__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(12px, 2vw, 24px);
}

.vip-request__steps span {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(105, 167, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.vip-request__steps b {
  color: #69a7ff;
  font-size: 13px;
}

.vip-request__actions {
  align-self: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(105, 167, 255, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(7, 28, 42, 0.92), rgba(7, 19, 30, 0.88)),
    radial-gradient(circle at 88% 12%, rgba(9, 104, 255, 0.28), transparent 38%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.vip-request__actions > span {
  color: #8bbcff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.vip-request__actions strong {
  margin: 0 0 10px;
  color: white;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.05;
}

.vip-request__actions .button {
  width: 100%;
  justify-content: center;
}

.vip-request__actions > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (max-width: 980px) {
  .vip-request {
    grid-template-columns: 1fr;
  }

  .vip-request__actions {
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .vip-request__copy h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .vip-request__steps {
    grid-template-columns: 1fr;
  }

  .vip-request__steps span {
    min-height: 0;
  }
}

.tour-detail-body {
  background: #061113;
  color: white;
}

.tour-detail-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(9, 104, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #06131d 0%, #061113 48%, #050d10 100%);
}

.tour-detail-hero {
  position: relative;
  min-height: min(760px, 92svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  overflow: hidden;
  padding: clamp(116px, 14vw, 180px) clamp(18px, 5vw, 76px) clamp(46px, 6vw, 82px);
}

.tour-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 20, 0.86), rgba(2, 13, 20, 0.42) 52%, rgba(2, 13, 20, 0.78)),
    linear-gradient(180deg, rgba(2, 13, 20, 0.22), rgba(2, 13, 20, 0.86));
}

.tour-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.tour-detail-hero__content,
.tour-detail-hero__panel {
  position: relative;
  z-index: 1;
}

.tour-detail-hero__content {
  max-width: 860px;
}

.tour-detail-hero h1 {
  max-width: 820px;
  margin: 0;
  color: white;
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.tour-detail-hero__content > p:not(.page-pill) {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
}

.tour-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.tour-detail-hero .button-ghost,
.tour-detail-request .button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.tour-detail-hero__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-self: end;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(5, 18, 28, 0.58);
  backdrop-filter: blur(14px);
}

.tour-detail-hero__panel span {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 8px;
  min-height: auto;
  align-items: baseline;
  padding: 16px 18px;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.tour-detail-hero__panel span:last-child {
  border-bottom: 0;
}

.tour-detail-hero__panel strong {
  color: white;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.tour-detail-hero__panel em {
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  font-weight: 850;
}

.tour-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  padding-top: clamp(62px, 8vw, 110px);
}

.tour-detail-intro h2,
.tour-detail-section-head h2,
.tour-detail-request h2 {
  margin: 0;
  color: white;
  font-size: clamp(38px, 5.4vw, 84px);
  line-height: 0.96;
  text-wrap: balance;
}

.tour-detail-intro p:not(.page-pill),
.tour-detail-section-head p,
.tour-detail-request p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
}

.tour-detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 34px;
}

.tour-detail-facts article,
.tour-detail-price-grid article {
  border: 1px solid rgba(105, 167, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 31, 46, 0.94), rgba(7, 20, 31, 0.9)),
    radial-gradient(circle at 92% 10%, rgba(9, 104, 255, 0.16), transparent 34%);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
}

.tour-detail-facts article {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
}

.tour-detail-facts span,
.tour-detail-price-grid span,
.tour-detail-program__list span {
  color: #69a7ff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-detail-facts strong {
  color: white;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.15;
}

.tour-detail-prices,
.tour-detail-program,
.tour-detail-highlights,
.tour-detail-route,
.tour-detail-fit,
.tour-detail-included,
.tour-detail-season,
.tour-detail-rhythm,
.tour-detail-trust,
.tour-detail-faq {
  padding-top: clamp(62px, 8vw, 110px);
}

.tour-detail-section-head {
  display: grid;
  gap: 16px;
  max-width: 1040px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.tour-detail-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tour-detail-price-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 360px;
  padding: clamp(22px, 2.4vw, 30px);
}

.tour-detail-price-grid article.is-featured {
  border-color: rgba(105, 167, 255, 0.62);
  background:
    radial-gradient(circle at 84% 10%, rgba(9, 104, 255, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(11, 45, 68, 0.98), rgba(7, 20, 31, 0.94));
}

.tour-detail-price-grid b {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #0968ff;
  color: white;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-detail-price-grid strong {
  color: white;
  font-size: clamp(42px, 4vw, 66px);
  line-height: 0.96;
}

.tour-detail-price-grid p,
.tour-detail-price-grid em,
.tour-detail-price-grid small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.42;
}

.tour-detail-price-grid small {
  color: rgba(255, 255, 255, 0.52);
}

.tour-detail-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tour-detail-highlight-grid article {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(105, 167, 255, 0.2);
  border-radius: 10px;
  background: #071421;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.tour-detail-highlight-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.tour-detail-highlight-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 13, 20, 0.08), rgba(3, 13, 20, 0.84));
}

.tour-detail-highlight-grid article > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.tour-detail-highlight-grid span,
.tour-detail-fit-grid span,
.tour-detail-included-grid span,
.tour-detail-rhythm-grid span,
.tour-detail-trust-grid span,
.tour-detail-months span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(105, 167, 255, 0.14);
  color: #8fbdff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-detail-highlight-grid h3 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1;
}

.tour-detail-highlight-grid p,
.tour-detail-highlight-grid small {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.42;
}

.tour-detail-highlight-grid small {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 850;
  text-transform: uppercase;
}

.tour-detail-route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(105, 167, 255, 0.24);
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 24%, rgba(9, 104, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(8, 31, 46, 0.96), rgba(7, 20, 31, 0.94));
}

.tour-detail-route-map::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(105, 167, 255, 0.08), rgba(105, 167, 255, 0.78), rgba(105, 167, 255, 0.08));
}

.tour-detail-route-map span {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 150px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(4, 17, 27, 0.82);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.tour-detail-route-map strong {
  color: #69a7ff;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.tour-detail-fit-grid,
.tour-detail-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tour-detail-fit-grid article,
.tour-detail-included-grid article,
.tour-detail-rhythm-grid article,
.tour-detail-trust-grid article,
.tour-detail-months article,
.tour-detail-faq-list details {
  border: 1px solid rgba(105, 167, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(8, 31, 46, 0.94), rgba(7, 20, 31, 0.9));
}

.tour-detail-fit-grid article,
.tour-detail-included-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.tour-detail-fit-grid ul,
.tour-detail-included-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-detail-fit-grid li,
.tour-detail-included-grid li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.tour-detail-fit-grid li::before,
.tour-detail-included-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #69a7ff;
}

.tour-detail-months,
.tour-detail-rhythm-grid,
.tour-detail-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tour-detail-months {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tour-detail-months article,
.tour-detail-rhythm-grid article,
.tour-detail-trust-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 180px;
  padding: 22px;
}

.tour-detail-months p,
.tour-detail-rhythm-grid p,
.tour-detail-trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.tour-detail-date-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tour-detail-date-strip a {
  padding: 12px 14px;
  border: 1px solid rgba(105, 167, 255, 0.28);
  border-radius: 999px;
  background: rgba(105, 167, 255, 0.1);
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.tour-detail-program__list {
  display: grid;
  gap: 14px;
}

.tour-detail-program__list details {
  overflow: hidden;
  border: 1px solid rgba(105, 167, 255, 0.18);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(8, 31, 46, 0.94), rgba(7, 20, 31, 0.9));
}

.tour-detail-program__list summary {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px clamp(20px, 3vw, 34px);
  color: white;
  cursor: pointer;
}

.tour-detail-program__list summary::-webkit-details-marker {
  display: none;
}

.tour-detail-program__list summary strong {
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.08;
}

.tour-detail-program__list article {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  border-top: 1px solid rgba(105, 167, 255, 0.18);
}

.tour-detail-program__list img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.tour-detail-program__list article > div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 48px);
}

.tour-detail-program__list h3 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1;
}

.tour-detail-program__list p {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.54;
}

.tour-detail-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
  padding-top: clamp(52px, 7vw, 90px);
}

.tour-detail-gallery figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

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

.tour-detail-gallery figure:first-child {
  grid-row: span 2;
}

.tour-detail-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(3, 13, 20, 0.86));
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.tour-detail-faq-list {
  display: grid;
  gap: 10px;
}

.tour-detail-faq-list details {
  padding: 0;
}

.tour-detail-faq-list summary {
  padding: 22px 24px;
  color: white;
  cursor: pointer;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 950;
  line-height: 1.12;
}

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

.tour-detail-faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.tour-detail-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(48px, 7vw, 96px);
  margin-bottom: clamp(54px, 7vw, 90px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(105, 167, 255, 0.24);
  border-radius: 10px;
  background:
    radial-gradient(circle at 86% 18%, rgba(9, 104, 255, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(8, 31, 46, 0.98), rgba(7, 20, 31, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.tour-detail-request__actions {
  display: grid;
  gap: 10px;
}

.tour-detail-request__actions .button {
  width: 100%;
  justify-content: center;
}

.tour-detail-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(420px, calc(100vw - 28px));
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(105, 167, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 18, 28, 0.9);
  color: white;
  text-decoration: none;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34);
}

.tour-detail-sticky-cta strong {
  display: grid;
  gap: 2px;
  font-size: 16px;
  line-height: 1;
}

.tour-detail-sticky-cta strong del {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-decoration-color: #ef3340;
  text-decoration-thickness: 2px;
}

.tour-detail-sticky-cta strong b {
  color: white;
  font: inherit;
}

.tour-detail-sticky-cta span {
  padding: 10px 12px;
  border-radius: 999px;
  background: #0968ff;
  font-size: 13px;
  font-weight: 950;
}

.tour-landing-page {
  background: var(--paper);
  color: var(--ink);
}

.tour-landing-hero > img {
  object-position: center center;
}

.tour-landing-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.tour-landing-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-content: end;
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding-bottom: clamp(34px, 5vw, 74px);
}

.tour-landing-hero::after {
  background:
    linear-gradient(180deg, rgba(2, 15, 25, 0.72), rgba(2, 15, 25, 0.14) 40%, rgba(2, 15, 25, 0.86)),
    linear-gradient(90deg, rgba(2, 15, 25, 0.9), rgba(2, 15, 25, 0.58) 44%, rgba(2, 15, 25, 0.28) 100%);
}

.tour-landing-hero .vip-hero__content {
  width: 100%;
  max-width: 820px;
  min-width: 0;
}

.tour-landing-hero .vip-hero h1,
.tour-landing-hero h1 {
  max-width: 100%;
  font-size: clamp(54px, 5.8vw, 92px);
  line-height: 0.88;
  overflow-wrap: anywhere;
}

.tour-landing-offer {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 340px);
  display: grid;
  gap: 12px;
  align-self: end;
  margin: 0 0 8px;
  padding: clamp(18px, 1.8vw, 24px);
  border: 1px solid rgba(9, 104, 255, 0.62);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 35%, rgba(239, 51, 64, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(25, 62, 110, 0.9), rgba(13, 42, 53, 0.88));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(9, 104, 255, 0.16);
  backdrop-filter: blur(18px);
}

.tour-landing-offer__eyebrow {
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  border: 2px solid rgba(255, 130, 142, 0.8);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3c3f, #e72160);
  color: white;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(231, 33, 96, 0.28);
}

.tour-landing-offer h2 {
  margin: 0;
  color: white;
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.tour-landing-offer__price {
  display: grid;
  gap: 6px;
  padding: 0;
  border: 0;
}

.tour-landing-offer__price span,
.tour-landing-offer__price em {
  color: rgba(226, 233, 238, 0.68);
  font-size: clamp(13px, 1vw, 15px);
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-landing-offer__price del {
  width: fit-content;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 950;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: #ef3340;
  text-decoration-thickness: 4px;
}

.tour-landing-offer__price strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: white;
  font-size: clamp(38px, 3.3vw, 48px);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.tour-landing-offer__price strong small {
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1;
}

.tour-landing-offer .button {
  justify-content: center;
  width: 100%;
  min-height: 46px;
  font-size: clamp(14px, 1vw, 16px);
}

.tour-landing-offer__link {
  justify-self: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 900;
  text-decoration: none;
}

.tour-landing-route .vip-route-map__head .vip-pill,
.tour-landing-program .vip-pill,
.tour-landing-care .vip-pill,
.tour-landing-calendar .vip-pill,
.tour-landing-gallery .vip-pill,
.tour-landing-pricing .vip-pill,
.tour-landing-faq .vip-pill,
.tour-landing-request .vip-pill {
  border-color: rgba(9, 104, 255, 0.28);
  background: rgba(9, 104, 255, 0.08);
  color: var(--blue);
}

.tour-landing-route .vip-route-map__canvas img {
  object-position: center center;
  filter: saturate(1.08) contrast(1.08);
}

.tour-landing-route .vip-route-map__cards article {
  width: min(560px, 43vw);
}

.tour-landing-route .vip-route-map__cards h3 {
  max-width: 520px;
}

.tour-landing-calendar {
  box-sizing: border-box;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding-block: clamp(58px, 7vw, 100px);
  color: white;
  background:
    radial-gradient(circle at 78% 8%, rgba(9, 104, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #071927, #06121d 72%, #07111a);
}

.tour-landing-calendar__head {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 980px;
  min-width: 0;
}

.tour-landing-calendar__head h2 {
  min-width: 0;
  margin: 0;
  color: white;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.96;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.tour-landing-calendar__head p:not(.vip-pill) {
  min-width: 0;
  max-width: 820px;
  margin: 0;
  color: rgba(226, 233, 238, 0.72);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
}

.tour-landing-calendar__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.tour-landing-calendar__grid article {
  display: grid;
  gap: 18px;
  min-height: 300px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(105, 167, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 31, 46, 0.78), rgba(5, 18, 29, 0.9)),
    radial-gradient(circle at 94% 10%, rgba(9, 104, 255, 0.14), transparent 34%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.tour-landing-calendar__grid article.is-featured {
  border-color: rgba(105, 167, 255, 0.48);
}

.tour-landing-calendar__month {
  display: grid;
  gap: 8px;
}

.tour-landing-calendar__month span,
.tour-landing-calendar__month em {
  color: #8bbcff;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-landing-calendar__month h3 {
  margin: 0;
  color: white;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.tour-landing-calendar__dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-content: end;
}

.tour-landing-calendar__dates a {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(105, 167, 255, 0.18);
  border-radius: 8px;
  background: rgba(2, 14, 24, 0.58);
  color: white;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.tour-landing-calendar__dates a:hover {
  transform: translateY(-2px);
  border-color: rgba(105, 167, 255, 0.72);
  background: rgba(9, 104, 255, 0.16);
  box-shadow: 0 14px 34px rgba(9, 104, 255, 0.14);
}

.tour-landing-calendar__dates small {
  color: rgba(226, 233, 238, 0.56);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-route-3d {
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 18%, rgba(244, 223, 170, 0.22), transparent 32%),
    linear-gradient(135deg, #111811, #06151a 42%, #07100f);
}

.tour-route-3d__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.tour-route-3d__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 11, 8, 0.22), rgba(6, 11, 8, 0.02) 48%, rgba(6, 11, 8, 0.34)),
    linear-gradient(180deg, rgba(6, 11, 8, 0.12), rgba(6, 11, 8, 0.42));
  pointer-events: none;
}

.tour-route-3d__title {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 4vw, 64px);
  top: clamp(22px, 3vw, 48px);
  display: grid;
  gap: 8px;
  max-width: 520px;
  pointer-events: none;
}

.tour-route-3d__title span {
  color: #d8c18e;
  font-size: clamp(13px, 1.3vw, 20px);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tour-route-3d__title strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.1vw, 52px);
  font-weight: 700;
  line-height: 1.02;
}

.tour-route-3d__pins {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.tour-route-3d__pins button {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(24, 30, 27, 0.48);
  color: rgba(255, 255, 255, 0.82);
  font: 900 15px/1 var(--font, inherit);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  pointer-events: auto;
  transition: width 0.24s ease, height 0.24s ease, color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.tour-route-3d__pins button.is-active {
  width: 70px;
  height: 70px;
  background: rgba(244, 223, 170, 0.92);
  color: #172019;
  box-shadow: 0 0 0 12px rgba(244, 223, 170, 0.12), 0 24px 70px rgba(0, 0, 0, 0.36);
}

.tour-route-3d__cards {
  position: absolute;
  z-index: 5;
  inset: clamp(80px, 10vw, 132px) clamp(28px, 4vw, 74px) auto auto;
  width: min(560px, 42vw);
}

.tour-route-3d__cards article {
  display: none;
  gap: 18px;
  padding: clamp(24px, 2.7vw, 42px);
  border: 1px solid rgba(244, 223, 170, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(63, 70, 52, 0.72), rgba(28, 37, 30, 0.66)),
    radial-gradient(circle at 84% 12%, rgba(244, 223, 170, 0.18), transparent 38%);
  color: white;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}

.tour-route-3d__cards article.is-active {
  display: grid;
  animation: routeCardIn 0.34s ease both;
}

@keyframes routeCardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tour-route-3d__cards span {
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(244, 223, 170, 0.13);
  color: #f4dfaa;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-route-3d__cards h3 {
  max-width: 520px;
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 700;
  line-height: 1.04;
}

.tour-route-3d__cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.52;
}

.tour-route-3d__cards em {
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.tour-route-3d__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.tour-route-3d__thumbs img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border: 1px solid rgba(244, 223, 170, 0.22);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

@media (max-width: 980px) {
  .tour-route-3d__cards {
    inset: auto 18px 18px;
    width: auto;
  }

  .tour-route-3d__cards article {
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
  }

  .tour-route-3d__cards h3 {
    font-size: 30px;
  }

  .tour-route-3d__cards p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .tour-route-3d__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tour-landing-route {
  padding: clamp(26px, 4vw, 54px) clamp(12px, 1.4vw, 28px) clamp(34px, 5vw, 76px);
}

.tour-landing-route .vip-route-map__scene {
  height: clamp(2600px, 420vh, 3600px);
}

.tour-route-cinematic {
  --route-active-x: 36.5%;
  --route-active-y: 14%;
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 auto;
  height: min(820px, calc(100svh - 104px));
  min-height: min(660px, calc(100svh - 104px));
  background: #07130f;
  border: 0;
}

.tour-route-cinematic__video,
.tour-route-cinematic__shade,
.tour-route-cinematic__overlay {
  position: absolute;
  inset: 0;
}

.tour-route-cinematic__video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  filter: saturate(1.05) contrast(1.04);
}

.tour-route-cinematic__shade {
  z-index: 1;
  background:
    radial-gradient(circle at 34% 46%, rgba(244, 223, 170, 0.07), transparent 24%),
    linear-gradient(90deg, rgba(3, 14, 18, 0.02), rgba(3, 14, 18, 0.04) 50%, rgba(3, 14, 18, 0.44) 78%, rgba(3, 14, 18, 0.66)),
    linear-gradient(180deg, rgba(3, 14, 18, 0.2), rgba(3, 14, 18, 0.05) 46%, rgba(3, 14, 18, 0.38));
  pointer-events: none;
}

.tour-route-cinematic__overlay {
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tour-route-cinematic__route-shadow,
.tour-route-cinematic__route-line,
.tour-route-cinematic__route-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-route-cinematic__route-shadow {
  stroke: rgba(0, 0, 0, 0.42);
  stroke-width: 8;
  filter: blur(3px);
}

.tour-route-cinematic__route-line,
.tour-route-cinematic__route-progress {
  stroke: rgba(245, 226, 186, 0.82);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 5px rgba(244, 223, 170, 0.24));
}

.tour-route-cinematic__route-progress {
  stroke: rgba(255, 230, 170, 0.96);
  stroke-width: 3;
  filter: drop-shadow(0 0 14px rgba(255, 212, 125, 0.58));
}

.tour-route-cinematic__overlay g {
  opacity: 0.72;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.tour-route-cinematic__overlay g.is-active {
  opacity: 1;
}

.tour-route-cinematic__overlay circle {
  fill: rgba(12, 32, 30, 0.56);
  stroke: rgba(245, 226, 186, 0.88);
  stroke-width: 2.4;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.38));
}

.tour-route-cinematic__overlay g.is-active circle {
  fill: rgba(244, 223, 170, 0.94);
  stroke: white;
}

.tour-route-cinematic__overlay text {
  fill: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.52);
  paint-order: stroke;
  stroke: rgba(3, 14, 18, 0.54);
  stroke-width: 2.6px;
  text-transform: uppercase;
}

.tour-route-cinematic__moving-point {
  position: absolute;
  z-index: 4;
  left: var(--route-active-x);
  top: var(--route-active-y);
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 999px;
  background: #f4dfaa;
  box-shadow:
    0 0 0 12px rgba(244, 223, 170, 0.2),
    0 0 30px rgba(244, 223, 170, 0.58),
    0 18px 40px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.tour-route-cinematic__moving-point::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: #0f211b;
}

.tour-route-cinematic__cards {
  position: absolute;
  z-index: 5;
  right: clamp(28px, 3.6vw, 58px);
  top: 50%;
  width: min(490px, 31vw);
  max-height: calc(100% - 96px);
  transform: translateY(-50%);
}

.tour-route-cinematic__cards article {
  display: none;
  gap: clamp(9px, 0.8vw, 12px);
  max-height: 100%;
  overflow: hidden;
  padding: clamp(18px, 1.65vw, 26px);
  border: 1px solid rgba(244, 223, 170, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(31, 45, 37, 0.88), rgba(8, 29, 31, 0.82)),
    radial-gradient(circle at 70% 10%, rgba(244, 223, 170, 0.14), transparent 42%);
  color: white;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px);
}

.tour-route-cinematic__cards article.is-active {
  display: grid;
  animation: cinematicCardIn 0.42s ease both;
}

.tour-route-cinematic.is-flying .tour-route-cinematic__cards article.is-active {
  animation: cinematicCardIn 0.42s ease both;
}

@keyframes cinematicCardIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tour-route-cinematic__cards span {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(244, 223, 170, 0.42);
  border-radius: 999px;
  color: #f4dfaa;
  font-size: clamp(12px, 0.85vw, 13px);
  font-weight: 900;
  text-transform: uppercase;
}

.tour-route-cinematic__cards h3 {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.1vw, 38px);
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
}

.tour-route-cinematic__cards p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 0.86vw, 15px);
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.tour-route-cinematic__cards em {
  display: block;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(244, 223, 170, 0.84);
  font-size: clamp(13px, 0.9vw, 15px);
  font-style: normal;
}

.tour-route-cinematic__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tour-route-cinematic__thumbs img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border: 1px solid rgba(244, 223, 170, 0.24);
  border-radius: 8px;
}

.tour-route-cinematic__steps {
  display: none;
}

.tour-route-cinematic__steps button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 223, 170, 0.34);
  border-radius: 999px;
  background: rgba(9, 18, 16, 0.34);
  color: rgba(244, 223, 170, 0.7);
  font: 900 12px/1 var(--font, inherit);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.tour-route-cinematic__steps button.is-active {
  transform: scale(1.18);
  background: rgba(244, 223, 170, 0.94);
  color: #172019;
  box-shadow: 0 0 0 9px rgba(244, 223, 170, 0.12), 0 18px 50px rgba(0, 0, 0, 0.28);
}

.tour-route-cinematic__nav {
  position: absolute;
  right: clamp(18px, 2.8vw, 42px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 4;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
}

.tour-route-cinematic__nav button {
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(244, 223, 170, 0.22);
  border-radius: 999px;
  background: rgba(9, 18, 16, 0.42);
  color: rgba(244, 223, 170, 0.7);
  font: 850 13px/1 var(--font, inherit);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.tour-route-cinematic__nav button.is-active {
  border-color: rgba(244, 223, 170, 0.54);
  color: #f4dfaa;
  background: rgba(244, 223, 170, 0.1);
}

@media (max-width: 640px) {
  .tour-landing-route .vip-route-map__scene {
    height: clamp(1900px, 360vh, 2700px);
  }

  .tour-route-cinematic {
    --mobile-route-map-width: min(calc(100vw - 24px), 520px);
    --mobile-route-map-height: calc(var(--mobile-route-map-width) * 9 / 16);
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    padding-top: var(--mobile-route-map-height);
    padding-bottom: 116px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .tour-route-cinematic__video,
  .tour-route-cinematic__shade,
  .tour-route-cinematic__overlay {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: var(--mobile-route-map-height);
    border-radius: 16px;
  }

  .tour-route-cinematic__video {
    object-position: 42% center;
  }

  .tour-route-cinematic__shade {
    background:
      linear-gradient(180deg, rgba(3, 14, 18, 0.02), rgba(3, 14, 18, 0.06) 44%, rgba(3, 14, 18, 0.58)),
      linear-gradient(90deg, rgba(3, 14, 18, 0.08), rgba(3, 14, 18, 0.12) 48%, rgba(3, 14, 18, 0.32));
  }

  .tour-route-cinematic__overlay {
    inset: 0;
    transform: translateX(-3%) scale(1.06);
    transform-origin: left center;
  }

  .tour-route-cinematic__overlay text {
    font-size: 8px;
  }

  .tour-route-cinematic__moving-point {
    top: var(--route-active-y-mobile, var(--route-active-y));
    width: 22px;
    height: 22px;
  }

  .tour-route-cinematic__cards {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-height: none;
    margin-top: 16px;
    transform: none;
  }

  .tour-route-cinematic__cards article {
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    max-height: none;
  }

  .tour-route-cinematic__cards h3 {
    font-size: 24px;
    line-height: 1.04;
  }

  .tour-route-cinematic__cards p {
    -webkit-line-clamp: 3;
  }

  .tour-route-cinematic__cards em {
    padding-top: 8px;
    font-size: 13px;
  }

  .tour-route-cinematic__thumbs {
    gap: 6px;
  }

  .tour-route-cinematic__thumbs img {
    aspect-ratio: 1.6 / 1;
    border-radius: 6px;
  }

  .tour-route-cinematic__steps {
    left: 16px;
    right: 16px;
    bottom: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .tour-route-cinematic__steps button {
    width: 32px;
    height: 32px;
  }

  .tour-route-cinematic__nav {
    left: 14px;
    right: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .tour-route-cinematic__nav button {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }

  .tour-landing-calendar {
    padding-block: 42px;
  }

  .tour-landing-calendar__head,
  .tour-landing-calendar__grid {
    box-sizing: border-box;
    max-width: 100%;
  }

  .tour-landing-calendar__head h2 {
    font-size: 40px;
  }

  .tour-landing-calendar__head p:not(.vip-pill) {
    font-size: 16px;
  }

  .tour-landing-calendar__grid {
    grid-template-columns: 1fr;
  }

  .tour-landing-calendar__grid article {
    min-height: 0;
    padding: 18px;
  }

  .tour-landing-calendar__dates {
    grid-template-columns: 1fr;
  }

  .tour-landing-calendar__dates a {
    min-height: 58px;
  }
}

.tour-landing-care__cards,
.tour-landing-included {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tour-landing-care__cards article,
.tour-landing-included article {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 48px rgba(22, 38, 34, 0.08);
}

.tour-landing-care__cards span,
.tour-landing-included span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tour-landing-care__cards ul,
.tour-landing-included ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-landing-care__cards li,
.tour-landing-included li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.tour-landing-care__cards li::before,
.tour-landing-included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.tour-landing-gallery .vip-gallery__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-landing-pricing .vip-pricing__cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tour-landing-pricing {
  color: white;
  background:
    radial-gradient(circle at 82% 10%, rgba(9, 104, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #071927, #06121d 72%, #07111a);
}

.tour-landing-pricing .vip-pricing__cards article {
  grid-template-rows: auto auto auto 1fr auto;
  gap: 18px;
  min-height: 0;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(8, 31, 46, 0.9), rgba(5, 18, 29, 0.96)),
    radial-gradient(circle at 92% 0%, rgba(9, 104, 255, 0.16), transparent 34%);
  opacity: 1;
  transform: none;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.tour-landing-pricing .vip-pricing__cards article.is-featured {
  transform: translateY(-10px);
  border-color: rgba(105, 167, 255, 0.82);
  box-shadow: 0 30px 90px rgba(9, 104, 255, 0.18), 0 24px 70px rgba(0, 0, 0, 0.24);
}

.tour-landing-pricing .vip-pricing__cards article:hover {
  transform: translateY(-6px);
}

.tour-landing-pricing.is-visible .vip-pricing__cards article.is-featured {
  transform: translateY(-10px);
}

.tour-landing-pricing.is-visible .vip-pricing__cards article.is-featured:hover {
  transform: translateY(-16px) scale(1.01);
}

.tour-landing-pricing .vip-pricing__cards article.is-featured::after {
  background: linear-gradient(90deg, transparent, rgba(244, 223, 170, 0.9), transparent);
}

.tour-landing-pricing .vip-pricing__cards article > em {
  display: none;
}

.tour-landing-pricing .vip-pricing__price {
  display: grid;
  gap: 8px;
}

.tour-landing-pricing .vip-pricing__cards h3,
.tour-landing-pricing .vip-pricing__price strong,
.tour-landing-pricing .vip-pricing__price del,
.tour-landing-pricing .vip-pricing__price em {
  margin: 0;
}

.tour-landing-pricing .vip-pricing__cards h3 {
  font-size: clamp(24px, 1.9vw, 32px);
}

.tour-landing-pricing .vip-pricing__price strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-size: clamp(34px, 3.4vw, 50px);
}

.tour-landing-pricing .vip-pricing__price del {
  width: fit-content;
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 950;
  line-height: 1;
  text-decoration-color: #ef3340;
  text-decoration-thickness: 3px;
}

.tour-landing-pricing .vip-pricing__price small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1;
}

.tour-landing-pricing .vip-pricing__price em {
  color: rgba(226, 233, 238, 0.58);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-landing-pricing .vip-pricing__cards p {
  min-height: 64px;
  margin: 0;
  color: rgba(226, 233, 238, 0.72);
  font-size: 15px;
}

.tour-landing-pricing .vip-pricing__cards dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.tour-landing-pricing .vip-pricing__cards dl div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(105, 167, 255, 0.14);
  border-radius: 8px;
  background: rgba(2, 14, 24, 0.48);
}

.tour-landing-pricing .vip-pricing__cards dt {
  color: #8bbcff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-landing-pricing .vip-pricing__cards dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.32;
}

.tour-landing-pricing .vip-pricing__cards ul {
  display: none;
}

.tour-landing-pricing .vip-pricing__cards .button {
  min-height: 46px;
  margin-top: 0;
  font-size: 14px;
}

.tour-landing-faq .vip-faq__head {
  position: relative;
  top: auto;
  margin-bottom: 24px;
}

.tour-landing-faq {
  grid-template-columns: 1fr;
  gap: 22px;
  color: white;
  background:
    radial-gradient(circle at 18% 12%, rgba(9, 104, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #07111a, #06121d 62%, #071927);
}

.tour-landing-faq .vip-faq__head h2 {
  max-width: 980px;
}

.tour-landing-faq .vip-faq__head p:not(.vip-pill) {
  max-width: 780px;
}

.tour-landing-included {
  margin-bottom: 16px;
}

.tour-landing-included article {
  border-color: rgba(105, 167, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(8, 31, 46, 0.84), rgba(5, 18, 29, 0.92)),
    radial-gradient(circle at 94% 8%, rgba(9, 104, 255, 0.14), transparent 34%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.tour-landing-included span {
  color: #8bbcff;
}

.tour-landing-included li {
  color: rgba(226, 233, 238, 0.78);
}

.tour-landing-included li::before {
  background: #2c87ff;
  box-shadow: 0 0 18px rgba(44, 135, 255, 0.7);
}

.tour-landing-faq .vip-faq__list {
  gap: 10px;
}

.tour-landing-faq .vip-faq__list details {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 28, 42, 0.76), rgba(5, 18, 29, 0.88)),
    radial-gradient(circle at 96% 10%, rgba(9, 104, 255, 0.1), transparent 34%);
}

.tour-landing-faq .vip-faq__list summary {
  min-height: 76px;
}

.tour-landing-faq .vip-faq__list summary span {
  font-size: clamp(20px, 1.8vw, 30px);
}

.tour-landing-request .vip-request__actions > div {
  display: grid;
  gap: 10px;
}

.tour-landing-request {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  border-top: 1px solid rgba(105, 167, 255, 0.22);
  border-radius: 0;
  padding-right: max(clamp(18px, 4vw, 48px), calc((100vw - 1840px) / 2 + 48px));
  padding-left: max(clamp(18px, 4vw, 48px), calc((100vw - 1840px) / 2 + 48px));
}

.tour-landing-request .vip-request__steps span {
  background: rgba(2, 14, 24, 0.38);
}

.tour-landing-request .vip-request__actions {
  border-radius: 8px;
}

@media (max-width: 1180px) {
  .tour-landing-pricing .vip-pricing__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-landing-pricing .vip-pricing__cards p {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .tour-detail-hero__panel,
  .tour-detail-intro,
  .tour-detail-facts,
  .tour-detail-price-grid,
  .tour-detail-highlight-grid,
  .tour-detail-route-map,
  .tour-detail-fit-grid,
  .tour-detail-included-grid,
  .tour-detail-months,
  .tour-detail-rhythm-grid,
  .tour-detail-trust-grid,
  .tour-detail-program__list article,
  .tour-detail-request {
    grid-template-columns: 1fr;
  }

  .tour-landing-hero {
    grid-template-columns: 1fr;
    align-content: end;
    padding-bottom: 24px;
  }

  .tour-landing-hero h1 {
    max-width: 620px;
    font-size: clamp(48px, 12vw, 78px);
  }

  .tour-landing-offer {
    width: min(100%, 360px);
    margin-top: 8px;
  }

  .tour-landing-offer__eyebrow {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.06;
  }

  .tour-landing-offer__price del {
    font-size: 22px;
  }

  .tour-landing-offer__price strong {
    gap: 7px;
    font-size: 42px;
  }

  .tour-landing-offer__price strong small {
    font-size: 19px;
  }

  .tour-detail-hero__panel span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .tour-detail-hero__panel span:last-child {
    border-bottom: 0;
  }

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

  .tour-detail-route-map::before {
    top: 7%;
    bottom: 7%;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(105, 167, 255, 0.08), rgba(105, 167, 255, 0.78), rgba(105, 167, 255, 0.08));
  }

  .tour-landing-care__cards,
  .tour-landing-included,
  .tour-landing-gallery .vip-gallery__grid,
  .tour-landing-pricing .vip-pricing__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tour-landing-hero {
    padding-top: 104px;
  }

  .tour-landing-hero .vip-hero__content {
    width: 100%;
    max-width: 100%;
  }

  .tour-landing-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.4vw, 60px);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .tour-landing-offer {
    width: 100%;
    max-width: 360px;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
  }

  .tour-landing-offer__eyebrow {
    padding: 7px 12px;
    font-size: 12px;
  }

  .tour-landing-offer h2 {
    font-size: 29px;
    line-height: 1.04;
  }

  .tour-landing-offer__price {
    gap: 7px;
    padding: 0;
  }

  .tour-landing-offer__price span,
  .tour-landing-offer__price em {
    font-size: 13px;
  }

  .tour-landing-offer__price del {
    font-size: 23px;
  }

  .tour-landing-offer__price strong {
    gap: 8px;
    font-size: clamp(34px, 10vw, 40px);
  }

  .tour-landing-offer__price strong small {
    font-size: 20px;
  }

  .tour-landing-offer .button {
    min-height: 44px;
    font-size: 14px;
  }

  .tour-landing-offer__link {
    font-size: 14px;
  }

  .tour-landing-pricing .vip-pricing__cards article.is-featured,
  .tour-landing-pricing.is-visible .vip-pricing__cards article.is-featured,
  .tour-landing-pricing.is-visible .vip-pricing__cards article.is-featured:hover {
    transform: none;
  }

  .tour-landing-pricing .vip-pricing__price strong {
    font-size: 38px;
  }

  .tour-landing-faq {
    gap: 18px;
    padding-top: 42px;
  }

  .tour-landing-faq .vip-faq__list summary {
    min-height: 68px;
    padding: 18px;
  }

  .tour-landing-faq .vip-faq__list summary span {
    font-size: 20px;
  }

  .tour-landing-included article {
    padding: 18px;
  }

  .tour-landing-request {
    padding-top: 42px;
  }

  .tour-detail-hero {
    min-height: 92svh;
    padding: 96px 16px 28px;
  }

  .tour-detail-hero h1 {
    font-size: 42px;
    line-height: 0.94;
  }

  .tour-detail-hero__content > p:not(.page-pill) {
    margin-top: 18px;
    font-size: 15px;
  }

  .tour-detail-intro h2,
  .tour-detail-section-head h2,
  .tour-detail-request h2 {
    font-size: 38px;
    line-height: 1.02;
  }

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

  .tour-detail-gallery figure:first-child {
    grid-row: auto;
  }

  .tour-detail-hero__panel span {
    min-height: 112px;
  }

  .tour-detail-highlight-grid article {
    min-height: 360px;
  }

  .tour-detail-program__list summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tour-detail-sticky-cta {
    display: flex;
  }
}
