﻿:root {
  --primary-600: #0b5fff;
  --primary-700: #0647c9;
  --secondary-600: #0f766e;
  --accent-600: #c2410c;
  --success-700: #15803d;
  --warning-700: #b45309;
  --danger-600: #dc2626;
  --text-900: #111827;
  --text-700: #374151;
  --text-500: #6b7280;
  --display-font: Inter, system-ui, "Segoe UI", Roboto, Arial, sans-serif;
  --surface: #ffffff;
  --background: #f9fafb;
  --border: #e5e7eb;
  --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 24px 52px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 36px 76px rgba(15, 23, 42, 0.14);
  --shadow-xl: 0 44px 96px rgba(15, 23, 42, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --max-width: 1240px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, system-ui, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-900);
  background:
    radial-gradient(circle at top left, rgba(11, 95, 255, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 24%),
    var(--background);
}

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

body.modal-open .site-topbar,
body.modal-open .site-header {
  visibility: hidden;
  pointer-events: none;
}

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

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

body.modal-open .mobile-contact-fab,
body.menu-open .mobile-contact-fab {
  opacity: 0;
  pointer-events: none;
}

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 var(--space-4);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 140px;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(11, 95, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(11, 95, 255, 0.12);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: rgba(220, 38, 38, 0.6);
}

main {
  display: block;
}

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

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

.section {
  padding: var(--space-8) 0;
}

.section--tight {
  padding: var(--space-7) 0;
}

.section--dark {
  color: var(--surface);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.55)),
    linear-gradient(135deg, #0d1b2a 0%, #102a43 50%, #0b5fff 100%);
}

@supports (content-visibility: auto) {
  main > .section,
  main > .trust-row,
  main > .cta-band,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 960px;
  }
}

.surface-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 95, 255, 0.1);
  color: var(--primary-700);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.section-head__content {
  max-width: 760px;
  display: grid;
  gap: 12px;
}

.section-head h1,
.section-head h2,
.section-head h3,
.hero__content h1,
.page-hero__content h1 {
  margin: 0;
  letter-spacing: -0.03em;
}

.section-head h2,
.section-head h3 {
  font-family: var(--display-font);
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--text-700);
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-700);
}

.meta-text,
.small {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-500);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--surface);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  box-shadow: 0 14px 32px rgba(11, 95, 255, 0.24);
}

.button--primary:hover {
  box-shadow: 0 20px 36px rgba(11, 95, 255, 0.3);
}

.button--secondary {
  color: var(--surface);
  background: linear-gradient(135deg, var(--secondary-600), #0b4f4a);
}

.button--ghost {
  color: var(--text-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.button--outline {
  color: var(--primary-700);
  background: var(--surface);
  border: 1px solid rgba(11, 95, 255, 0.2);
}

.button--chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
}

.site-topbar {
  position: relative;
  z-index: 20;
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.94);
}

.site-topbar__inner,
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-topbar__links,
.site-topbar__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  color: var(--text-500);
  font-size: 14px;
}

.site-topbar__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--text-700);
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.social-chip:hover {
  transform: translateY(-1px);
  color: var(--primary-700);
  border-color: rgba(11, 95, 255, 0.28);
  background: rgba(11, 95, 255, 0.06);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.social-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.social-chip__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.social-chip--instagram:hover {
  color: #c13584;
  border-color: rgba(193, 53, 132, 0.25);
  background: rgba(193, 53, 132, 0.08);
}

.social-chip--telegram:hover {
  color: #229ed9;
  border-color: rgba(34, 158, 217, 0.24);
  background: rgba(34, 158, 217, 0.08);
}

.social-chip--tiktok:hover {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.18);
  background: rgba(17, 24, 39, 0.06);
}

.social-chip--viber:hover {
  color: #7360f2;
  border-color: rgba(115, 96, 242, 0.24);
  background: rgba(115, 96, 242, 0.08);
}

.site-topbar__utility {
  color: var(--text-700);
  font-weight: 600;
}

.site-topbar__utility:hover {
  color: var(--primary-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  isolation: isolate;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(249, 250, 251, 0.84);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.94);
}

.site-header__inner {
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 72px;
  height: 56px;
  padding: 6px 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.88));
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.brand__mark {
  width: auto;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(14, 165, 233, 0.18));
}

.brand__text {
  display: grid;
  gap: 4px;
  min-width: 0;
  line-height: 1;
}

.brand__title {
  margin: 0;
  color: var(--text-900);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.brand__title em {
  font-style: normal;
  color: #0694d3;
}

.brand__text span {
  display: block;
  color: var(--text-500);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand:hover .brand__plate {
  border-color: rgba(11, 95, 255, 0.28);
  box-shadow:
    0 24px 40px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.footer .brand {
  align-items: center;
}

.footer .brand__plate {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.footer .brand__text {
  align-self: center;
}

.footer .brand__title {
  color: var(--surface);
}

.footer .brand__text span {
  color: rgba(255, 255, 255, 0.64);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text-700);
  font-weight: 600;
}

.nav-link:hover,
.nav-item > button:hover,
.nav-item.is-open > button {
  background: rgba(11, 95, 255, 0.08);
  color: var(--primary-700);
}

.mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  width: min(980px, calc(100vw - 32px));
  max-width: 980px;
  padding: var(--space-5);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-5);
}

.mega-menu__grid > * {
  min-width: 0;
}

.mega-menu__feature {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: var(--space-5);
  border-radius: 24px;
  color: var(--surface);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.14), rgba(17, 24, 39, 0.64)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.mega-menu__feature h3 {
  font-family: var(--display-font);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.mega-menu__feature p,
.mega-menu__feature .small {
  color: rgba(255, 255, 255, 0.88);
}

.mega-menu__feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.mega-menu__links {
  display: grid;
  gap: 14px;
  min-width: 0;
  grid-auto-rows: 1fr;
  align-content: start;
}

.mega-menu__links a {
  padding: var(--space-3);
  border-radius: 16px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mega-menu__links a:hover {
  background: rgba(11, 95, 255, 0.08);
  transform: translateX(3px);
}

.mega-menu__tile {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.96));
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mega-menu__thumb {
  width: 100%;
  height: 100%;
  min-height: 88px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.mega-menu__label {
  display: grid;
  gap: 4px;
  min-width: 0;
  align-content: center;
}

.mega-menu__label strong {
  color: var(--text-900);
}

.mega-menu__label .small {
  color: var(--text-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  background: var(--surface);
}

.mobile-menu {
  display: none;
}

.mobile-menu__backdrop {
  display: none;
}

.immersive-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 211, 238, 0.18), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(59, 130, 246, 0.22), transparent 20%),
    linear-gradient(180deg, #07101f 0%, #0d2038 36%, #134e68 72%, #88d6e0 100%);
}

.immersive-hero::before,
.immersive-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.immersive-hero::before {
  top: 8%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.26), rgba(125, 211, 252, 0));
  filter: blur(10px);
}

.immersive-hero::after {
  bottom: -8%;
  left: -8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18), rgba(14, 165, 233, 0));
  filter: blur(12px);
}

.immersive-hero__scene-wrap {
  position: absolute;
  inset: 0;
}

.immersive-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 100svh;
  padding: calc(var(--header-height) + 40px) 0 32px;
}

.immersive-hero__copy,
.immersive-hero__hint {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.38), rgba(17, 24, 39, 0.14));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.immersive-hero__copy {
  display: grid;
  gap: var(--space-5);
  max-width: 640px;
  padding: 32px;
  border-radius: 32px;
}

.immersive-hero__copy h1 {
  margin: 0;
  color: var(--surface);
  letter-spacing: -0.04em;
}

.immersive-hero__copy p,
.immersive-hero__copy .lead,
.immersive-hero__hint p,
.immersive-hero__hint .small {
  color: rgba(255, 255, 255, 0.82);
}

.immersive-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.immersive-hero__hint {
  max-width: 360px;
  padding: 20px 22px;
  border-radius: 24px;
  color: var(--surface);
}

.immersive-hero__hint strong {
  display: block;
  margin-bottom: 8px;
}

.island-stage {
  position: absolute;
  inset: 0;
  cursor: grab;
  touch-action: none;
}

.island-stage.is-dragging {
  cursor: grabbing;
}

.island-stage:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: -12px;
}

.island-scene {
  --scene-rotate-x: -20deg;
  --scene-rotate-y: 18deg;
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(1500px, 118vw);
  height: min(980px, 100vh);
  transform: translate(-50%, -50%) rotateX(var(--scene-rotate-x)) rotateY(var(--scene-rotate-y));
  transform-style: preserve-3d;
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.island-stage.is-dragging .island-scene {
  transition: none;
}

.island-scene__sun {
  position: absolute;
  top: 10%;
  right: 16%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.94) 0%, rgba(254, 240, 138, 0.92) 26%, rgba(251, 146, 60, 0.36) 58%, rgba(251, 146, 60, 0) 72%);
  transform: translateZ(-240px);
}

.island-scene__ocean {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(1040px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(180, 250, 255, 0.96) 0%, rgba(91, 218, 236, 0.9) 18%, rgba(25, 123, 170, 0.94) 52%, rgba(9, 30, 54, 0) 68%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 62%);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.04),
    0 40px 120px rgba(5, 12, 24, 0.34);
  transform: translate3d(-50%, -50%, -140px) rotateX(82deg);
}

.scene-cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  filter: blur(1px);
  box-shadow:
    42px 14px 0 8px rgba(255, 255, 255, 0.62),
    -28px 10px 0 4px rgba(255, 255, 255, 0.58);
  animation: cloudDrift linear infinite;
}

.scene-cloud--1 {
  --cloud-z: 180px;
  top: 22%;
  left: 14%;
  width: 122px;
  height: 34px;
  transform: translateZ(var(--cloud-z));
  animation-duration: 28s;
}

.scene-cloud--2 {
  --cloud-z: 120px;
  top: 18%;
  right: 26%;
  width: 96px;
  height: 28px;
  transform: translateZ(var(--cloud-z));
  animation-duration: 22s;
}

.scene-cloud--3 {
  --cloud-z: 150px;
  bottom: 30%;
  left: 22%;
  width: 108px;
  height: 30px;
  transform: translateZ(var(--cloud-z));
  animation-duration: 26s;
}

.island {
  --size: 300px;
  --shape: 48% 52% 46% 54% / 44% 37% 63% 56%;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--size);
  height: calc(var(--size) * 0.72);
  transform: translate3d(var(--tx), var(--ty), var(--tz)) rotateX(74deg);
  transform-style: preserve-3d;
}

.island::before,
.island::after {
  content: "";
  position: absolute;
}

.island::before {
  inset: 10% 8% 2%;
  border-radius: var(--shape);
  background: linear-gradient(180deg, #8d6b46 0%, #684423 58%, #422a16 100%);
  box-shadow: inset 0 -14px 22px rgba(15, 23, 42, 0.16);
  transform: translateZ(-44px);
}

.island::after {
  left: 14%;
  right: 14%;
  bottom: -18%;
  height: 26%;
  border-radius: 50%;
  background: rgba(7, 16, 31, 0.32);
  filter: blur(22px);
  transform: translateZ(-120px) rotateX(90deg);
}

.island__top {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--shape);
  background:
    radial-gradient(circle at 34% 28%, rgba(220, 252, 231, 0.82), rgba(220, 252, 231, 0) 20%),
    radial-gradient(circle at 68% 34%, rgba(253, 224, 71, 0.16), rgba(253, 224, 71, 0) 16%),
    linear-gradient(145deg, #8bf0c7 0%, #2ab57f 28%, #15735f 72%, #0b4f46 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    inset 0 -28px 44px rgba(11, 79, 70, 0.34);
  transform: translateZ(10px);
}

.island__shore {
  position: absolute;
  inset: 8% 9% 10%;
  border-radius: var(--shape);
  background: radial-gradient(circle at 56% 48%, transparent 0 34%, rgba(246, 219, 155, 0.94) 38%, rgba(214, 168, 88, 0.92) 46%, transparent 54%);
  opacity: 0.96;
}

.island__lagoon {
  position: absolute;
  top: 28%;
  left: 54%;
  width: 28%;
  aspect-ratio: 1.08;
  border-radius: 58% 42% 60% 40% / 38% 58% 42% 62%;
  background: radial-gradient(circle at 36% 34%, #ecfeff 0%, #9bf6ff 22%, #0ea5b7 72%, #115e73 100%);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.12),
    0 10px 18px rgba(8, 47, 73, 0.14);
}

.island__villa {
  position: absolute;
  width: 54px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7ed, #dbeafe);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
}

.island__villa::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: -10px;
  height: 14px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.island__villa--a {
  left: 24%;
  top: 36%;
}

.island__villa--b {
  left: 44%;
  top: 52%;
}

.island__villa--solo {
  left: 34%;
  top: 44%;
}

.island__palm {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #dcfce7 0%, #4ade80 24%, #166534 72%);
  box-shadow:
    -12px 6px 0 1px rgba(22, 101, 52, 0.88),
    10px -4px 0 0 rgba(34, 197, 94, 0.9),
    4px 12px 0 0 rgba(21, 128, 61, 0.84);
}

.island__palm::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 14px;
  width: 3px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c4a1d, #4b2d15);
}

.island__palm--a {
  left: 18%;
  top: 28%;
}

.island__palm--b {
  right: 24%;
  top: 18%;
}

.island__palm--c {
  left: 56%;
  bottom: 18%;
}

.island__palm--d {
  right: 18%;
  bottom: 22%;
}

.island--main {
  --tx: -80px;
  --ty: 74px;
  --tz: 110px;
  --size: 430px;
  --shape: 48% 52% 46% 54% / 44% 37% 63% 56%;
}

.island--emerald {
  --tx: -380px;
  --ty: -10px;
  --tz: -10px;
  --size: 290px;
  --shape: 42% 58% 53% 47% / 40% 36% 64% 60%;
}

.island--emerald .island__top {
  background:
    radial-gradient(circle at 32% 28%, rgba(220, 252, 231, 0.8), rgba(220, 252, 231, 0) 18%),
    linear-gradient(145deg, #9bf7b4 0%, #34d399 30%, #15803d 72%, #14532d 100%);
}

.island--emerald .island__lagoon {
  width: 22%;
  left: 58%;
  top: 36%;
}

.island--sunset {
  --tx: 270px;
  --ty: -48px;
  --tz: -30px;
  --size: 310px;
  --shape: 54% 46% 49% 51% / 45% 53% 47% 55%;
}

.island--sunset .island__top {
  background:
    radial-gradient(circle at 24% 24%, rgba(254, 240, 138, 0.28), rgba(254, 240, 138, 0) 16%),
    linear-gradient(145deg, #fde68a 0%, #fbbf24 18%, #34d399 42%, #0f766e 78%, #134e4a 100%);
}

.island--sunset .island__lagoon {
  width: 24%;
  left: 30%;
  top: 48%;
}

.island--lagoon {
  --tx: 320px;
  --ty: 166px;
  --tz: 72px;
  --size: 240px;
  --shape: 45% 55% 51% 49% / 42% 44% 56% 58%;
}

.island--lagoon .island__top {
  background:
    radial-gradient(circle at 68% 28%, rgba(191, 219, 254, 0.28), rgba(191, 219, 254, 0) 18%),
    linear-gradient(145deg, #a7f3d0 0%, #22c55e 22%, #0f766e 62%, #164e63 100%);
}

.island--lagoon .island__lagoon {
  width: 32%;
  left: 46%;
  top: 24%;
}

@keyframes cloudDrift {
  0% {
    transform: translate3d(0, 0, var(--cloud-z));
  }

  50% {
    transform: translate3d(24px, -8px, var(--cloud-z));
  }

  100% {
    transform: translate3d(0, 0, var(--cloud-z));
  }
}

.immersive-hero--globe {
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(59, 130, 246, 0.2), transparent 20%),
    linear-gradient(180deg, #040d1c 0%, #081629 34%, #0c2544 68%, #12385d 100%);
}

.globe-hero__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.globe-hero__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 72%, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.18) 54%, rgba(17, 24, 39, 0.34) 100%),
    linear-gradient(180deg, rgba(4, 13, 28, 0.16), rgba(4, 13, 28, 0) 22%, rgba(4, 13, 28, 0) 72%, rgba(4, 13, 28, 0.38) 100%);
  pointer-events: none;
}

.globe-hero__canvas {
  position: absolute;
  inset: 0;
}

.globe-hero__overlay {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: calc(var(--header-height) + 24px) 0 24px;
  pointer-events: none;
}

.globe-hero__dock {
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.globe-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.globe-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.globe-search input {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--surface);
  background: rgba(15, 23, 42, 0.34);
}

.globe-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.globe-search.is-loading button {
  opacity: 0.72;
}

.globe-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.globe-chip {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--surface);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.globe-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.14);
}

.globe-hero__status {
  margin-top: 10px;
  margin-left: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--surface);
  background: rgba(15, 23, 42, 0.44);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.globe-hero__canvas,
.globe-hero__canvas .cesium-viewer,
.globe-hero__canvas .cesium-viewer-cesiumWidget,
.globe-hero__canvas .cesium-widget,
.globe-hero__canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.globe-hero__canvas .cesium-viewer-toolbar,
.globe-hero__canvas .cesium-viewer-animationContainer,
.globe-hero__canvas .cesium-viewer-timelineContainer,
.globe-hero__canvas .cesium-viewer-bottom .cesium-credit-expand-link {
  display: none !important;
}

.globe-hero__canvas .cesium-viewer-bottom {
  left: auto;
  right: 16px;
  bottom: 12px;
}

.globe-hero__canvas .cesium-widget-credits {
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.48);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 40px 0 72px;
  background: #0c1523;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0) 26%),
    linear-gradient(92deg, rgba(12, 21, 35, 0.78) 0%, rgba(12, 21, 35, 0.5) 46%, rgba(12, 21, 35, 0.2) 100%);
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.03) contrast(1.02);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 480px);
  gap: var(--space-6);
  align-items: end;
  min-height: 640px;
}

.hero__grid--home {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 430px);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: 640px;
}

#home-flow.hero {
  padding-top: 18px;
}

#home-flow .hero__grid--home {
  min-height: auto;
  align-items: start;
}

#home-flow .hero__aside {
  min-height: auto;
  padding-top: 0;
}

#home-flow .hero__float-card {
  position: static;
  width: 100%;
  margin-bottom: 16px;
}

.hero__content {
  display: grid;
  gap: 20px;
  max-width: 620px;
  padding: 60px 0 20px;
  color: var(--surface);
}

.hero__content p,
.hero__content .meta-text {
  color: rgba(255, 255, 255, 0.85);
}

.hero__content .small {
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow--hero {
  align-self: start;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.07);
  opacity: 0;
  transform: translateY(16px);
  animation: heroContentReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

.hero__headline {
  display: grid;
  gap: 14px;
}

.hero__title {
  font-family: var(--display-font);
  max-width: 540px;
  font-size: clamp(36px, 4.9vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(18px);
  animation: heroContentReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.hero__title-accent {
  display: block;
  margin-top: 6px;
  color: #bff3ff;
  text-shadow: 0 10px 24px rgba(34, 211, 238, 0.18);
}

.hero__subtitle {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.65vw, 18px);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(18px);
  animation: heroContentReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

.hero__summary-card {
  display: grid;
  gap: 10px;
  max-width: 560px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.22));
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  animation: heroContentReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}

.hero__summary-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(191, 243, 255, 0.18);
  color: #d7f7ff;
  background: rgba(191, 243, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__summary-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.58;
}

.hero__journey {
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.hero__journey-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.26), rgba(15, 23, 42, 0.18));
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(18px);
  animation: heroContentReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__journey-item:nth-child(1) {
  animation-delay: 0.38s;
}

.hero__journey-item:nth-child(2) {
  animation-delay: 0.48s;
}

.hero__journey-item:nth-child(3) {
  animation-delay: 0.58s;
}

.hero__journey-item strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  line-height: 1.4;
}

.hero__journey-item .small {
  color: rgba(255, 255, 255, 0.76);
}

.hero__journey-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.92), rgba(15, 118, 110, 0.82));
  box-shadow: 0 16px 28px rgba(11, 95, 255, 0.24);
  color: var(--surface);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__actions .button {
  min-width: 186px;
}

.hero__focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__focus-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(14px);
  animation: heroContentReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__focus-list li:nth-child(1) {
  animation-delay: 0.42s;
}

.hero__focus-list li:nth-child(2) {
  animation-delay: 0.5s;
}

.hero__focus-list li:nth-child(3) {
  animation-delay: 0.58s;
}

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

.hero__proof-item {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.18);
}

.hero__proof-label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__proof-value {
  color: rgba(255, 255, 255, 0.98);
  font-size: 15px;
  line-height: 1.4;
  text-wrap: balance;
}

.hero__aside {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: auto;
  perspective: 1800px;
}

.hero__aside::before,
.hero__aside::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero__aside::before {
  top: 10%;
  right: -2%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.34), rgba(34, 211, 238, 0));
}

.hero__aside::after {
  bottom: 4%;
  left: -4%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.26), rgba(11, 95, 255, 0));
}

.hero__float-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-3);
  width: min(264px, 68%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: var(--surface);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.34));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  will-change: transform;
}

.hero__float-card--primary {
  top: 2%;
  right: -4%;
  animation: heroFloat 6.8s ease-in-out infinite;
}

.hero__float-card--secondary {
  bottom: 2%;
  left: -6%;
  animation: heroFloat 8.2s ease-in-out infinite reverse;
}

.hero__float-card p,
.hero__float-card .small {
  color: rgba(255, 255, 255, 0.8);
}

.hero__float-card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--surface);
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.92), rgba(15, 118, 110, 0.82));
  box-shadow: 0 18px 32px rgba(11, 95, 255, 0.26);
}

.hero__aside-note {
  display: grid;
  gap: 8px;
  max-width: 420px;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.hero__aside-note strong {
  color: var(--text-900);
}

.hero__story-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  color: var(--surface);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.4));
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
}

.hero__story-card h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero__story-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.hero__story-eyebrow {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__story-list {
  display: grid;
  gap: 10px;
}

.hero__story-step {
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.hero__story-step strong {
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  line-height: 1.4;
}

.hero__story-step .small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.hero__story-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__story-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.hero-search {
  position: relative;
  overflow: hidden;
  padding: var(--space-5);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-xl);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.hero-search::before {
  content: "";
  position: absolute;
  inset: auto auto calc(100% - 1px) 24px;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-600), var(--secondary-600));
}

.hero-search::after {
  content: "";
  position: absolute;
  inset: 12px 18px auto auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0));
  pointer-events: none;
}

.hero-search--compact {
  padding: 18px 22px;
  border-radius: 24px;
}

.hero-search--compact .widget-shell {
  gap: var(--space-3);
}

.hero-search--compact .widget-shell__header {
  align-items: center;
}

.hero-search--compact .widget-shell__header p {
  max-width: 760px;
}

.hero-search--compact .search-form {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.hero-search--compact .search-form__grid--wide {
  grid-template-columns: minmax(220px, 1.45fr) repeat(2, minmax(150px, 0.9fr)) minmax(180px, 1fr);
  gap: 12px;
}

.hero-search--compact .field {
  gap: 8px;
}

.hero-search--compact input,
.hero-search--compact select,
.hero-search--compact .travelers__trigger {
  min-height: 46px;
}

.hero-search--compact .widget-shell__note {
  padding: 10px 14px;
}

.hero-search--compact .tourvisor-widget-shell {
  margin-top: 4px;
}

.widget-shell {
  display: grid;
  gap: var(--space-4);
}

.widget-shell__header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: start;
}

.widget-shell__note {
  padding: 14px 16px;
  border: 1px dashed rgba(15, 118, 110, 0.18);
  border-radius: 16px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--secondary-600);
  font-size: 14px;
}

.tourvisor-widget-shell {
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.98));
  overflow: hidden;
}

.tourvisor-widget-shell--large {
  min-height: 420px;
  padding: 18px;
}

.cruise-widget-shell {
  min-height: 520px;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(11, 95, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.88), rgba(255, 255, 255, 0.98));
}

.cruise-widget-shell--fullpage {
  min-height: calc(100svh - var(--header-height) - 220px);
}

.cruise-search-page {
  padding: 24px 0 56px;
}

.cruise-search-page__shell {
  display: grid;
  gap: var(--space-5);
  padding: clamp(20px, 2.6vw, 32px);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(11, 95, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: var(--shadow-sm);
}

.cruise-search-page__intro {
  display: grid;
  gap: 12px;
  max-width: 780px;
}

.cruise-search-page__intro h1 {
  margin: 0;
}

.search-form {
  display: grid;
  gap: var(--space-4);
}

.search-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.search-form__grid--wide {
  grid-template-columns: 1.3fr repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
}

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

.field label {
  font-size: 14px;
  color: var(--text-500);
  font-weight: 600;
}

.input-with-icon {
  position: relative;
}

.input-with-icon input,
.input-with-icon select {
  padding-left: 44px;
}

.input-with-icon__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-500);
}

.autocomplete {
  position: relative;
}

.autocomplete__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 10;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.autocomplete__option {
  min-height: 44px;
  padding: 0 14px;
  text-align: left;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.autocomplete__option:hover {
  background: rgba(11, 95, 255, 0.08);
}

.travelers {
  position: relative;
}

.travelers__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 var(--space-4);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.travelers__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.travelers__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.counter button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.trust-row {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-6);
  padding: clamp(22px, 2.6vw, 34px);
}

.trust-panel__intro {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 430px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-4);
  padding: var(--space-5);
}

.trust-badges--premium {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
}

.trust-badge {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-3);
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.96));
}

.trust-badge__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--primary-700);
  background: rgba(11, 95, 255, 0.08);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

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

.cards-grid--destinations-home {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.78fr) minmax(0, 1.14fr);
  gap: 18px;
  grid-template-rows: 176px 138px 154px 176px;
  align-items: stretch;
}

.destination-mosaic-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.destination-mosaic-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.destination-mosaic-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.destination-mosaic-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / span 3;
}

.destination-mosaic-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2 / span 2;
}

.destination-mosaic-card:nth-child(5) {
  grid-column: 1;
  grid-row: 3 / span 2;
}

.destination-mosaic-card:nth-child(6) {
  grid-column: 2;
  grid-row: 4;
}

.destination-mosaic-card:nth-child(7) {
  grid-column: 3;
  grid-row: 4;
}

.destination-mosaic-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  color: var(--surface);
  isolation: isolate;
}

.destination-mosaic-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.18) 34%, rgba(15, 23, 42, 0.82) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.destination-mosaic-card__link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.destination-mosaic-card:nth-child(1) img {
  object-position: 50% 54%;
}

.destination-mosaic-card:nth-child(2) img {
  object-position: 50% 44%;
}

.destination-mosaic-card:nth-child(3) img {
  object-position: 52% 50%;
}

.destination-mosaic-card:nth-child(4) img {
  object-position: 50% 48%;
}

.destination-mosaic-card:nth-child(5) img {
  object-position: 50% 52%;
}

.destination-mosaic-card:nth-child(6) img {
  object-position: 50% 46%;
}

.destination-mosaic-card:nth-child(7) img {
  object-position: 50% 50%;
}

.destination-mosaic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 95, 255, 0.22);
  box-shadow: var(--shadow-lg);
}

.destination-mosaic-card:hover .destination-mosaic-card__link img {
  transform: scale(1.05);
  filter: saturate(1.04);
}

.destination-mosaic-card__eyebrow,
.destination-mosaic-card__action,
.destination-mosaic-card__content {
  position: absolute;
  z-index: 2;
}

.destination-mosaic-card__eyebrow {
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.destination-mosaic-card__action {
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.destination-mosaic-card__content {
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
}

.destination-mosaic-card__content strong,
.destination-mosaic-card__content span {
  display: block;
}

.destination-mosaic-card__content strong {
  font-size: clamp(19px, 1.7vw, 28px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.destination-mosaic-card__content span {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.destination-mosaic-card:nth-child(2) .destination-mosaic-card__content strong,
.destination-mosaic-card:nth-child(6) .destination-mosaic-card__content strong,
.destination-mosaic-card:nth-child(7) .destination-mosaic-card__content strong {
  font-size: clamp(17px, 1.35vw, 21px);
}

.destination-mosaic-card:nth-child(2) .destination-mosaic-card__content span,
.destination-mosaic-card:nth-child(6) .destination-mosaic-card__content span,
.destination-mosaic-card:nth-child(7) .destination-mosaic-card__content span {
  -webkit-line-clamp: 1;
  max-width: 24ch;
}

.destination-mosaic-card:nth-child(3) .destination-mosaic-card__content {
  bottom: 20px;
  gap: 8px;
}

.destination-mosaic-card:nth-child(3) .destination-mosaic-card__content strong {
  font-size: clamp(22px, 2vw, 30px);
}

.destination-mosaic-card:nth-child(3) .destination-mosaic-card__content span {
  max-width: 32ch;
}

.cards-grid--destinations-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 88px;
  grid-auto-flow: dense;
  gap: 18px;
}

.cards-grid--destinations-directory .destination-mosaic-card {
  min-height: 184px;
  border-radius: 22px;
}

.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 1) {
  grid-column: span 2;
  grid-row: span 3;
}

.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 2),
.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 3),
.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 6) {
  grid-column: span 1;
  grid-row: span 2;
}

.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 4),
.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 8) {
  grid-column: span 2;
  grid-row: span 2;
}

.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 5),
.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 7) {
  grid-column: span 1;
  grid-row: span 3;
}

.cards-grid--destinations-directory .destination-mosaic-card__eyebrow,
.cards-grid--destinations-directory .destination-mosaic-card__action {
  top: 14px;
  min-height: 28px;
  padding: 0 10px;
  font-size: 11px;
}

.cards-grid--destinations-directory .destination-mosaic-card__eyebrow {
  left: 14px;
}

.cards-grid--destinations-directory .destination-mosaic-card__action {
  right: 14px;
}

.cards-grid--destinations-directory .destination-mosaic-card__content {
  left: 16px;
  right: 16px;
  bottom: 16px;
  gap: 5px;
}

.cards-grid--destinations-directory .destination-mosaic-card__content strong {
  font-size: clamp(18px, 1.45vw, 22px);
}

.cards-grid--destinations-directory .destination-mosaic-card__content span {
  max-width: 24ch;
  font-size: 12px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
}

.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 2) .destination-mosaic-card__content strong,
.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 3) .destination-mosaic-card__content strong,
.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 6) .destination-mosaic-card__content strong {
  font-size: clamp(16px, 1.2vw, 18px);
}

.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 2) .destination-mosaic-card__content span,
.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 3) .destination-mosaic-card__content span,
.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 6) .destination-mosaic-card__content span {
  -webkit-line-clamp: 1;
  max-width: 20ch;
}

.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 1) .destination-mosaic-card__content strong,
.cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 7) .destination-mosaic-card__content strong {
  font-size: clamp(20px, 1.8vw, 26px);
}

.tour-card,
.destination-card,
.article-card,
.testimonial-card,
.reason-card,
.offer-snippet,
.review-card,
.faq-summary-card {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tour-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.tour-card__media,
.destination-card__media,
.article-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.tour-card__media img,
.destination-card__media img,
.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card__media img,
.destination-card:hover .destination-card__media img,
.article-card:hover .article-card__media img {
  transform: scale(1.05);
}

.tour-card__media::after,
.destination-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.08) 35%, rgba(17, 24, 39, 0.7) 100%);
  pointer-events: none;
}

.card-media-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: var(--surface);
  pointer-events: none;
}

.card-media-label strong {
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.card-media-label span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.tour-card__badge,
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--surface);
  background: linear-gradient(135deg, var(--accent-600), #ea580c);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(194, 65, 12, 0.28);
}

.tour-card__body,
.destination-card__body,
.article-card__body,
.testimonial-card,
.reason-card,
.review-card {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-5);
}

.tour-card__meta,
.destination-card__meta,
.article-card__meta {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
  font-size: 14px;
  color: var(--text-500);
}

.destination-card__price {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary-700);
  background: rgba(11, 95, 255, 0.08);
  border: 1px solid rgba(11, 95, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.tour-card__facts,
.chip-list,
.list-clean {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-card__facts li,
.chip-list li,
.tag,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 14px;
  color: var(--text-700);
}

.tour-card__footer,
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-4);
}

.tour-card__old-price {
  font-size: 14px;
  color: var(--text-500);
  text-decoration: line-through;
}

.tour-card__price,
.price-highlight {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.destination-card__body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
}

.destination-card__footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
}

.article-card__footer {
  flex-wrap: nowrap;
  align-items: center;
}

.button.button--article {
  flex: 0 0 136px;
  width: 136px;
  min-width: 136px;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 18px;
  font-size: 12px;
  line-height: 1.15;
  text-align: left;
  white-space: normal;
  overflow: hidden;
  text-overflow: initial;
  word-break: normal;
  overflow-wrap: anywhere;
  box-shadow: 0 14px 28px rgba(16, 40, 71, 0.08);
}

.button.button--article:hover {
  box-shadow: 0 18px 34px rgba(16, 40, 71, 0.14);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.reason-card__icon,
.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  color: var(--primary-700);
  background: rgba(11, 95, 255, 0.1);
}

.reason-card {
  background: rgba(255, 255, 255, 0.96);
}

.reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(11, 95, 255, 0.2), rgba(15, 118, 110, 0.18));
}

.testimonial-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.reviews-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding: 18px 20px;
}

.reviews-proof__item {
  display: grid;
  gap: 6px;
}

.reviews-proof__item strong {
  color: var(--text-900);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.reviews-proof__item span {
  color: var(--text-500);
  font-size: 14px;
  line-height: 1.45;
}

.testimonial-card {
  padding: var(--space-5);
}

.testimonial-card,
.review-card {
  background: rgba(255, 255, 255, 0.96);
}

.testimonial-card__header,
.review-card__header {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.testimonial-card::before,
.review-card::before {
  content: none;
}

.testimonial-card__header .avatar,
.review-card__header .avatar {
  display: none;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
}

.testimonial-card::before,
.review-card::before {
  content: none !important;
  display: none !important;
}

.mobile-contact-fab {
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 1400;
  display: none;
  align-items: end;
  flex-direction: column;
  gap: 10px;
}

.mobile-contact-fab__panel {
  width: min(calc(100vw - 28px), 292px);
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-contact-fab.is-open .mobile-contact-fab__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-contact-fab__panel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-500);
}

.mobile-contact-fab__actions {
  display: grid;
  gap: 8px;
}

.mobile-contact-fab__action,
.mobile-contact-fab__callback {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(248, 250, 252, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.mobile-contact-fab__action:active,
.mobile-contact-fab__callback:active {
  transform: translateY(1px);
}

.mobile-contact-fab__action:focus-visible,
.mobile-contact-fab__callback:focus-visible,
.mobile-contact-fab__trigger:focus-visible {
  outline: 2px solid rgba(11, 95, 255, 0.28);
  outline-offset: 2px;
}

.mobile-contact-fab__action-icon,
.mobile-contact-fab__callback-icon,
.mobile-contact-fab__trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.mobile-contact-fab__action-icon svg,
.mobile-contact-fab__callback-icon svg,
.mobile-contact-fab__trigger-icon svg {
  width: 15px;
  height: 15px;
}

.mobile-contact-fab__action-icon {
  color: var(--text-700);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.mobile-contact-fab__action-label,
.mobile-contact-fab__callback-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-900);
}

.mobile-contact-fab__action--instagram .mobile-contact-fab__action-icon {
  color: #c13584;
}

.mobile-contact-fab__action--telegram .mobile-contact-fab__action-icon {
  color: #229ed9;
}

.mobile-contact-fab__action--tiktok .mobile-contact-fab__action-icon {
  color: #111827;
}

.mobile-contact-fab__action--viber .mobile-contact-fab__action-icon {
  color: #7360f2;
}

.mobile-contact-fab__callback {
  background: linear-gradient(180deg, rgba(11, 95, 255, 0.1), rgba(11, 95, 255, 0.04));
  border-color: rgba(11, 95, 255, 0.14);
}

.mobile-contact-fab__callback-icon,
.mobile-contact-fab__trigger-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  box-shadow: 0 10px 18px rgba(11, 95, 255, 0.2);
}

.mobile-contact-fab__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-900);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(16px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mobile-contact-fab__trigger:active {
  transform: translateY(1px);
}

.mobile-contact-fab.is-open .mobile-contact-fab__trigger {
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.mobile-contact-fab__trigger-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.12em;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: var(--space-6);
  align-items: start;
}

.content-card {
  padding: var(--space-6);
}

.form-panel {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-6);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field--trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-700);
}

.form-label__required {
  color: var(--danger-600);
}

.form-help,
[data-error] {
  font-size: 13px;
  color: var(--text-500);
}

[data-error] {
  min-height: 18px;
  color: var(--danger-600);
}

.checkbox {
  display: flex;
  align-items: start;
  gap: 12px;
}

.checkbox input {
  width: 20px;
  height: 20px;
  min-height: auto;
  margin-top: 2px;
}

.form-success {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(21, 128, 61, 0.08);
  color: var(--success-700);
}

.form-error {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--danger-600);
}

.footer {
  padding: var(--space-8) 0 var(--space-6);
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at top right, rgba(11, 95, 255, 0.22), transparent 28%),
    linear-gradient(160deg, #0f172a 0%, #08101f 100%);
}

.footer-shell {
  display: grid;
  gap: var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.8fr) minmax(220px, 0.9fr);
  gap: var(--space-7);
}

.footer h3,
.footer h4,
.footer p,
.footer a {
  color: inherit;
}

.footer-brand,
.footer-nav,
.footer-legal,
.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-brand {
  max-width: 480px;
}

.footer-contact-list {
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.footer a.button--ghost {
  justify-self: start;
  min-height: 50px;
  padding: 0 18px;
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  box-shadow: 0 16px 30px rgba(11, 95, 255, 0.22);
}

.footer a.button--ghost:hover {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  box-shadow: 0 20px 34px rgba(11, 95, 255, 0.28);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.breadcrumbs {
  padding: 18px 0 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-500);
  font-size: 14px;
}

.breadcrumbs__list li::after {
  content: "/";
  margin-left: 10px;
  color: rgba(107, 114, 128, 0.6);
}

.breadcrumbs__list li:last-child::after {
  display: none;
}

.page-hero {
  padding: 28px 0 56px;
}

.page-hero__shell {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  color: var(--surface);
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.76), rgba(17, 24, 39, 0.42)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}

.page-hero__content {
  display: grid;
  gap: var(--space-5);
  max-width: 760px;
  padding: var(--space-8);
}

.page-hero__content p,
.page-hero__content .lead,
.page-hero__content .small {
  color: rgba(255, 255, 255, 0.9);
}

.summary-bar {
  position: sticky;
  top: calc(var(--header-height) + 10px);
  z-index: 18;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.summary-bar__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(11, 95, 255, 0.08);
  color: var(--primary-700);
  font-size: 14px;
  font-weight: 600;
}

.results-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.filters-panel,
.results-panel,
.map-card,
.offer-panel,
.sticky-booking,
.info-card {
  padding: var(--space-5);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.filters-panel {
  position: sticky;
  top: calc(var(--header-height) + 104px);
  display: grid;
  gap: var(--space-4);
}

.filters-form {
  display: grid;
  gap: var(--space-4);
}

.filter-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
  gap: 12px;
}

.results-toolbar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-5);
}

.results-toolbar__mobile {
  display: none;
  gap: 12px;
}

.results-list {
  display: grid;
  gap: var(--space-5);
}

.map-card {
  margin-top: var(--space-5);
  overflow: hidden;
}

.map-placeholder {
  position: relative;
  min-height: 240px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.48)),
    url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1400&q=80")
      center/cover;
}

.map-placeholder__content {
  position: absolute;
  inset: auto 18px 18px;
  padding: var(--space-4);
  border-radius: 18px;
  color: var(--surface);
  background: rgba(17, 24, 39, 0.48);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-items: end;
  padding: 16px;
  background: rgba(15, 23, 42, 0.4);
}

.drawer__panel {
  max-height: 86vh;
  overflow: auto;
  padding: var(--space-5);
  border-radius: 24px 24px 0 0;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--space-6);
  align-items: start;
}

.gallery {
  display: grid;
  gap: var(--space-4);
}

.gallery__main {
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  overflow: hidden;
}

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

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

.gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border-color: var(--primary-600);
}

.offer-header {
  display: grid;
  gap: var(--space-4);
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.offer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.offer-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 18px;
}

.offer-list li {
  color: var(--text-700);
}

.sticky-booking {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: var(--space-4);
}

.price-card {
  padding: var(--space-4);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.08), rgba(15, 118, 110, 0.08));
}

.stepper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stepper__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--text-500);
  font-size: 14px;
  font-weight: 600;
}

.stepper__item.is-active {
  color: var(--primary-700);
  background: rgba(11, 95, 255, 0.1);
}

.step-panel {
  display: grid;
  gap: var(--space-4);
}

.step-panel.has-error {
  padding: var(--space-4);
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 18px;
  background: rgba(220, 38, 38, 0.03);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: var(--space-4);
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.faq-item__trigger {
  width: 100%;
  min-height: 64px;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  border: 0;
  text-align: left;
  background: transparent;
  font-weight: 700;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-5);
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-item.is-open .faq-item__content {
  max-height: 240px;
  padding-bottom: var(--space-5);
}

.mini-review {
  padding: var(--space-4);
  border-radius: 20px;
  background: rgba(249, 250, 251, 0.92);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-6);
  border-radius: 32px;
  color: var(--surface);
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.82), rgba(11, 95, 255, 0.72)),
    url("https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=1400&q=80")
      center/cover;
}

.cta-band p,
.cta-band .small {
  color: rgba(255, 255, 255, 0.88);
}

.hero__content .eyebrow,
.page-hero__content .eyebrow,
.mega-menu__feature .eyebrow,
.cta-band .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tour-card__meta-note {
  display: grid;
  gap: 4px;
}

.tour-card__meta-note strong {
  font-size: 16px;
  color: var(--text-900);
}

.motion-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes heroContentReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .tour-card:hover,
  .destination-card:hover,
  .article-card:hover,
  .testimonial-card:hover,
  .reason-card:hover,
  .review-card:hover,
  .faq-summary-card:hover,
  .sticky-booking:hover,
  .content-card:hover,
  .info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 95, 255, 0.18);
    box-shadow: var(--shadow-md);
  }

  .hero-search:hover {
    box-shadow: 0 36px 84px rgba(15, 23, 42, 0.22);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .motion-reveal {
    opacity: 1;
    transform: none;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.stat-card {
  padding: var(--space-5);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.timeline {
  display: grid;
  gap: var(--space-4);
}

.timeline__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
}

.timeline__point {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--surface);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.contact-card {
  padding: var(--space-5);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.table-like {
  width: 100%;
  border-collapse: collapse;
}

.table-like th,
.table-like td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.legal-content {
  display: grid;
  gap: var(--space-5);
}

.empty-state {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-6);
  text-align: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--surface);
  background: rgba(17, 24, 39, 0.92);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(4px);
}

.modal[hidden] {
  display: none !important;
}

.modal__dialog {
  width: min(100%, 540px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: var(--space-6);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.modal__dialog .form-panel {
  padding: 0;
  box-shadow: none;
  border: 0;
  background: transparent;
}

.modal__close {
  margin-left: auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.mobile-sticky-cta {
  display: none;
}

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

@media (max-width: 1100px) {
  .globe-hero__overlay {
    padding-top: calc(var(--header-height) + 20px);
  }

  .globe-hero__dock {
    width: min(860px, 100%);
  }

  .immersive-hero__content {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: var(--space-4);
  }

  .immersive-hero__copy,
  .immersive-hero__hint {
    max-width: none;
  }

  .island-scene {
    width: 136vw;
    top: 50%;
  }

  .hero__grid,
  .content-split,
  .offer-layout,
  .results-layout,
  .footer-grid,
  .contact-cards,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .page-hero__content {
    max-width: none;
  }

  .hero__aside {
    min-height: auto;
    padding-top: 24px;
  }

  .hero__actions .button {
    min-width: 0;
  }

  .hero__float-card {
    position: static;
    width: 100%;
    margin-bottom: 16px;
  }

  .filters-panel {
    position: static;
  }

  .sticky-booking {
    position: static;
  }

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

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .cards-grid--destinations-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
    grid-template-rows: none;
    gap: var(--space-5);
  }

  .cards-grid--destinations-home .destination-mosaic-card:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .cards-grid--destinations-home .destination-mosaic-card:nth-child(2),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(3),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(4),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(5),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(6),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .cards-grid--destinations-home .destination-mosaic-card {
    min-height: 220px;
  }

  .cards-grid--destinations-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 96px;
  }

  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(6n + 1) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(6n + 4) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(6n + 6) {
    grid-column: span 1;
    grid-row: span 3;
  }

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

  .mega-menu {
    width: min(860px, calc(100vw - 24px));
  }

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

  .mega-menu__feature {
    grid-column: 1 / -1;
  }

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

@media (max-width: 980px) {
  .mega-menu {
    width: min(720px, calc(100vw - 24px));
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .site-topbar {
    display: none;
  }

  .hero::before {
    background:
      radial-gradient(circle at 84% 12%, rgba(34, 211, 238, 0.13), rgba(34, 211, 238, 0) 22%),
      linear-gradient(180deg, rgba(12, 21, 35, 0.7) 0%, rgba(12, 21, 35, 0.46) 42%, rgba(12, 21, 35, 0.24) 100%);
  }

  .hero__media img {
    object-position: center 52%;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .nav {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--mobile-header-offset, var(--header-height)) 0 0;
    z-index: 140;
    padding: 12px 16px 24px;
    overflow: hidden;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    border: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.18);
  }

  .mobile-menu__panel {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    max-width: 640px;
    margin: 0 auto;
    max-height: calc(100svh - var(--mobile-header-offset, var(--header-height)) - 24px);
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .mobile-menu__socials {
    display: grid;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  }

  .mobile-menu__socials-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-500);
  }

  .mobile-menu__social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mobile-menu__social-list .social-chip {
    min-height: 34px;
    padding-inline: 10px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.98);
    box-shadow: none;
  }

  .mobile-menu__social-list .social-chip__label {
    font-size: 12px;
  }

  .mobile-menu__panel > a,
  .mobile-menu__panel > button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.04);
  }

  .mobile-menu__panel > .button {
    justify-content: center;
  }

  .mobile-menu__panel > .button.button--primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: #fff;
    box-shadow: 0 18px 32px rgba(11, 95, 255, 0.22);
  }

  .brand__text span {
    display: none;
  }

  .brand__title {
    font-size: 20px;
  }

  .cruise-widget-shell--fullpage {
    min-height: 70svh;
  }

  .hero {
    padding-top: 16px;
  }

  .hero__lead-card,
  .hero__story-card,
  .surface-card,
  .destination-mosaic-card__eyebrow,
  .destination-mosaic-card__action {
    backdrop-filter: none;
  }

  .globe-hero__overlay {
    padding-bottom: 18px;
  }

  .globe-hero__actions,
  .globe-search {
    grid-template-columns: 1fr;
  }

  .globe-hero__actions {
    display: grid;
  }

  .globe-hero__dock {
    padding: 16px;
    border-radius: 22px;
  }

  .mobile-contact-fab {
    display: flex;
  }

  .immersive-hero__content {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 20px;
  }

  .immersive-hero__copy {
    padding: 24px;
    border-radius: 28px;
  }

  .immersive-hero__hint {
    padding: 18px 20px;
  }

  .immersive-hero__actions {
    display: grid;
  }

  .island-scene {
    width: 168vw;
    height: 90vh;
    top: 44%;
  }

  .island-scene__sun {
    top: 14%;
    right: 8%;
    width: 128px;
    height: 128px;
  }

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

  .hero::before {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }

  .hero__media {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }

  .hero-search--compact .widget-shell__header {
    flex-direction: column;
    align-items: start;
  }

  .hero__aside {
    gap: var(--space-4);
  }

  .hero__grid,
  .cards-grid,
  .reason-grid,
  .testimonial-grid,
  .review-grid,
  .reviews-proof,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .trust-badges,
  .trust-badges--premium,
  .offer-columns,
  .gallery__thumbs,
  .form-grid,
  .search-form__grid,
  .search-form__grid--wide {
    grid-template-columns: 1fr;
  }

  .cards-grid--destinations-home {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-template-rows: none;
  }

  .cards-grid--destinations-home .destination-mosaic-card:nth-child(1),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(2),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(3),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(4),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(5),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(6),
  .cards-grid--destinations-home .destination-mosaic-card:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .cards-grid--destinations-home .destination-mosaic-card {
    min-height: 236px;
  }

  .cards-grid--destinations-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 168px;
    gap: 16px;
  }

  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 168px;
  }

  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(5n + 1) {
    grid-column: 1 / -1;
    grid-row: span 2;
    min-height: 352px;
  }

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

  .hero__proof-bar {
    grid-template-columns: 1fr;
  }

  .hero__story-card {
    padding: 22px 20px;
  }

  .destination-mosaic-card__content strong {
    font-size: clamp(18px, 5.4vw, 24px);
  }

  .destination-mosaic-card__content span,
  .destination-mosaic-card:nth-child(2) .destination-mosaic-card__content span,
  .destination-mosaic-card:nth-child(6) .destination-mosaic-card__content span,
  .destination-mosaic-card:nth-child(7) .destination-mosaic-card__content span {
    -webkit-line-clamp: 2;
    max-width: 28ch;
  }

  .cards-grid--destinations-directory .destination-mosaic-card__content span,
  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 2) .destination-mosaic-card__content span,
  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 3) .destination-mosaic-card__content span,
  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(8n + 6) .destination-mosaic-card__content span {
    -webkit-line-clamp: 2;
    max-width: 26ch;
  }

  .section,
  .page-hero,
  .hero {
    padding-bottom: var(--space-7);
  }

  .trust-row {
    margin-top: -22px;
  }

  .trust-badges {
    padding: var(--space-4);
  }

  .trust-panel {
    padding: var(--space-4);
  }

  .summary-bar {
    top: calc(var(--header-height) + 8px);
  }

  .results-toolbar {
    display: grid;
    gap: var(--space-4);
  }

  .results-toolbar__mobile {
    display: flex;
  }

  .filters-panel {
    display: none;
  }

  .footer-bottom,
  .section-head,
  .cta-band,
  .card-footer,
  .tour-card__footer {
    flex-direction: column;
    align-items: start;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
  }
}

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

  .page-hero__content,
  .hero-search,
  .content-card,
  .form-panel,
  .filters-panel,
  .results-panel,
  .offer-panel,
  .sticky-booking {
    padding: var(--space-5);
  }

  .hero__content {
    padding-top: 32px;
  }

  .hero__headline {
    gap: 14px;
  }

  .hero__title {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.02;
  }

  .hero__title-accent {
    margin-top: 4px;
  }

  .hero__subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero__lead-card {
    padding: 16px 16px 18px;
    border-radius: 20px;
  }

  .hero__lead-card .lead {
    font-size: 16px;
  }

  .hero__journey-item {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px;
  }

  .hero__journey-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 12px;
  }

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

  .hero__story-card {
    padding: 20px 18px;
    border-radius: 24px;
  }

  .hero__story-step {
    padding: 12px 14px;
  }

  .hero__summary-card {
    padding: 16px 18px;
  }

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

  .hero__proof-item {
    min-height: auto;
    padding: 14px 15px;
  }

  .hero__focus-list li {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .globe-hero__overlay {
    padding-bottom: 14px;
  }

  .globe-hero__dock {
    padding: 14px;
    border-radius: 18px;
  }

  .globe-chip {
    min-height: 40px;
    padding: 0 12px;
  }

  .immersive-hero__copy,
  .immersive-hero__hint {
    padding: 20px;
    border-radius: 24px;
  }

  .island-scene {
    width: 220vw;
    top: 40%;
  }

  .hero__float-card {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .hero__float-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand__plate {
    min-width: 62px;
    height: 50px;
    padding: 6px 8px;
    border-radius: 18px;
  }

  .brand__mark {
    height: 44px;
  }

  .brand__title {
    font-size: 19px;
  }

  .brand__text span {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .article-card__footer {
    align-items: center;
  }

  .button.button--article {
    flex-basis: 124px;
    width: 124px;
    min-width: 124px;
    min-height: 64px;
    padding: 10px;
    border-radius: 16px;
    font-size: 12px;
  }

  .button {
    width: 100%;
  }

  .cards-grid--destinations-directory {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .cards-grid--destinations-directory .destination-mosaic-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 228px;
  }

  .header-actions .button {
    display: none;
  }

  .cruise-search-page {
    padding-top: 16px;
  }

  .cruise-search-page__shell {
    padding: 16px;
    border-radius: 24px;
  }

  .cruise-widget-shell--fullpage {
    min-height: 62svh;
    padding: 12px;
  }

  .summary-bar {
    padding: 14px;
  }

  .summary-bar__items {
    width: 100%;
  }

  .stats-grid,
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .mobile-contact-fab {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-contact-fab__panel {
    width: min(calc(100vw - 20px), 280px);
    padding: 12px;
  }

  .mobile-contact-fab__action,
  .mobile-contact-fab__callback {
    min-height: 42px;
    padding-inline: 12px;
  }

  .mobile-contact-fab__trigger {
    min-height: 44px;
    padding: 0 12px 0 9px;
  }

  .mobile-contact-fab__action-label,
  .mobile-contact-fab__callback-label,
  .mobile-contact-fab__trigger-label {
    font-size: 11px;
  }
}

