:root {
  --ink: #071b3a;
  --ink-soft: #2f4261;
  --navy: #061c3f;
  --navy-2: #082b63;
  --blue: #1261d8;
  --blue-2: #06469e;
  --sky: #edf6ff;
  --sky-2: #f7fbff;
  --teal: #18a999;
  --gold: #f1a51f;
  --violet: #8f63e8;
  --line: #d9e3f1;
  --panel: #ffffff;
  --soft: #f5f8fc;
  --success: #087f5b;
  --danger: #b42318;
  --shadow: 0 18px 42px rgba(7, 27, 58, 0.16);
  --shadow-soft: 0 12px 26px rgba(7, 27, 58, 0.1);
  --radius: 8px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

[data-icon-sprite] {
  position: absolute !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(18, 97, 216, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.booking-container {
  width: min(100% - 48px, 1540px);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 227, 241, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  height: 100%;
  width: min(100% - 48px, 1540px);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 248px;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: none;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 48px;
  height: auto;
}

.brand-text {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #0b1d3d;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--blue-2);
}

.primary-nav a.is-active::after {
  background: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-width: 360px;
}

.header-actions .button {
  flex: 0 0 auto;
  min-width: 174px;
  white-space: nowrap;
  text-wrap: nowrap;
  line-height: 1;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.support-link small {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button,
.button-secondary,
.button-light,
.button-ghost,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button {
  color: #ffffff;
  background: var(--navy-2);
  box-shadow: 0 10px 22px rgba(8, 43, 99, 0.22);
}

.button:hover,
.button:focus-visible {
  background: var(--blue-2);
  transform: translateY(-1px);
}

.button-secondary {
  color: #ffffff;
  background: var(--blue);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--blue-2);
  transform: translateY(-1px);
}

.button-light {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: #ffffff;
  transform: translateY(-1px);
}

.button-ghost {
  color: var(--navy-2);
  background: transparent;
  border-color: rgba(8, 43, 99, 0.35);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(18, 97, 216, 0.08);
  border-color: var(--blue);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  flex: 0 0 48px;
}

.nav-toggle .icon {
  width: 30px;
  height: 30px;
  stroke-width: 2.25;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-open .nav-toggle .icon-menu {
  display: none;
}

.nav-open .nav-toggle .icon-close {
  display: block;
}

.hero {
  position: relative;
  min-height: 670px;
  color: #ffffff;
  background: #061c3f;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 14, 32, 0.72), rgba(5, 23, 50, 0.34) 48%, rgba(2, 14, 32, 0.04));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

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

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 104px;
}

.script-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 27px;
  font-weight: 700;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

.script-label .icon {
  width: 32px;
  height: 32px;
}

.hero h1 {
  max-width: 900px;
  margin: 18px 0 18px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 900;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 650px;
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 14px;
  font-weight: 800;
}

.hero-proof span:last-child {
  border-right: 0;
}

.booking-wrap {
  position: relative;
  z-index: 4;
  margin-top: -244px;
  margin-bottom: 24px;
}

.booking-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(217, 227, 241, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-tabs {
  display: flex;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 0 24px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(217, 227, 241, 0.7);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.booking-tab.is-active {
  color: var(--blue-2);
  background: var(--sky);
}

.booking-content {
  padding: 16px 24px 18px;
}

.lead-contact-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(240px, 1fr) minmax(240px, 1fr);
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(217, 227, 241, 0.72);
}

.trip-options {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.radio-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.radio-line input {
  width: 14px;
  height: 14px;
  accent-color: var(--blue);
}

.search-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(220px, 1.1fr) minmax(190px, 0.9fr) minmax(190px, 0.9fr) minmax(300px, 1.35fr) minmax(190px, auto);
  gap: 16px;
  align-items: end;
}

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

.field label,
.form-field label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
}

.control input,
.control select,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
}

.control select {
  min-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.control input[type="date"],
.control input[type="month"] {
  color-scheme: light;
}

.control input[type="date"]::-webkit-calendar-picker-indicator,
.control input[type="month"]::-webkit-calendar-picker-indicator {
  display: none;
}

.field-travelers {
  min-width: 300px;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 50px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}

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

.swap-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  color: var(--blue-2);
  background: var(--sky);
  border-radius: 999px;
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.booking-wrap + .section {
  padding-top: 8px;
}

.section-soft {
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.section-dark {
  color: #ffffff;
  background: var(--navy);
}

.section-dark .eyebrow {
  color: #f6c85f;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 18px;
  font-weight: 700;
}

.section-heading h2,
.page-heading h1,
.split-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.18;
  font-weight: 900;
}

.section-heading p,
.page-heading p,
.split-content p,
.section-intro {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 0 18px;
}

.feature {
  min-height: 190px;
  padding: 20px 34px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
}

.feature:nth-child(2) .feature-icon {
  color: var(--teal);
  background: #eafaf7;
}

.feature:nth-child(3) .feature-icon {
  color: var(--gold);
  background: #fff6e7;
}

.feature:nth-child(4) .feature-icon {
  color: var(--violet);
  background: #f3efff;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.feature p {
  max-width: 230px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.destination-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.destination-card,
.image-card {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 248px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.destination-card img,
.image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease;
}

.destination-card::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 28, 63, 0.04), rgba(6, 28, 63, 0.78));
}

.destination-card:hover img,
.image-card:hover img {
  transform: scale(1.04);
}

.card-overlay {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  color: #ffffff;
}

.card-overlay h3 {
  margin: 0;
  font-size: 18px;
}

.card-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 650;
}

.round-arrow {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 50%;
}

.promo {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  margin-top: 40px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(5, 31, 75, 0.96), rgba(10, 69, 148, 0.78) 47%, rgba(5, 31, 75, 0.08)),
    url("../images/santorini.jpg");
  background-position: center;
  background-size: cover;
}

.promo-content {
  width: min(100%, 560px);
  padding: 34px 28px;
}

.promo .script-label {
  font-size: 18px;
}

.promo h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.1;
}

.promo p {
  margin: 5px 0 22px;
  font-size: 18px;
}

.plain-card,
.package-card,
.article-card,
.quote-card,
.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 27, 58, 0.06);
}

.package-card,
.article-card {
  overflow: hidden;
}

.package-card img,
.article-card img {
  width: 100%;
  height: 220px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  color: var(--blue-2);
  background: var(--sky);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 800;
}

.price {
  color: var(--navy-2);
  font-size: 24px;
  font-weight: 900;
}

.muted {
  color: var(--ink-soft);
}

.stack {
  display: grid;
  gap: 18px;
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

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

.four-column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.page-hero {
  padding: 78px 0 72px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 28, 63, 0.9), rgba(6, 28, 63, 0.45)),
    image-set(
      url("../images/hero-moraine-lake-1920.webp") type("image/webp"),
      url("../images/hero-moraine-lake.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
}

.page-hero h1 {
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 900;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumb a {
  color: #ffffff;
}

.search-surface,
.form-surface {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.status-message {
  min-height: 24px;
  color: var(--success);
  font-size: 14px;
  font-weight: 750;
}

.list-check {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-check .icon {
  color: var(--teal);
  margin-top: 2px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.stat {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.1;
}

.stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.quote-card {
  padding: 24px;
}

.quote-card p {
  margin-top: 0;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 850;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item .faq-question .icon {
  transition: transform 160ms ease;
}

.faq-item.is-open .faq-question .icon {
  transform: rotate(90deg);
}

.legal-card {
  padding: 30px;
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 24px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card ul,
.legal-card ol {
  padding-left: 22px;
}

.auth-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: calc(100vh - var(--header-height));
}

.auth-art {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(6, 28, 63, 0.84), rgba(6, 28, 63, 0.72)),
    url("../images/maldives.jpg");
  background-position: center;
  background-size: cover;
  padding: 72px 54px;
}

.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 28px;
  background: var(--sky-2);
}

.auth-box {
  width: min(100%, 500px);
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  color: rgba(255, 255, 255, 0.86);
  background: #041936;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1.45fr;
  gap: 38px;
  padding: 44px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.footer-brand img {
  width: 58px;
  height: 54px;
  object-fit: cover;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 16px;
}

.footer-col ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

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

.newsletter-form input {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
}

.footer-bottom {
  padding: 16px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 13px;
}

.map-panel {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 169, 153, 0.18), rgba(18, 97, 216, 0.18)),
    #f7fbff;
  border: 1px solid var(--line);
  position: relative;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 2px dashed rgba(18, 97, 216, 0.22);
  border-radius: 8px;
}

.map-marker {
  position: absolute;
  top: 44%;
  left: 52%;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--navy-2);
  font-weight: 900;
}

.map-marker .icon {
  width: 44px;
  height: 44px;
  color: var(--blue);
  fill: rgba(18, 97, 216, 0.12);
}

@media (max-width: 1480px) {
  .search-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .search-grid .button {
    width: 100%;
  }

  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 18px;
  }

  .header-actions {
    min-width: auto;
  }

  .support-link {
    display: none;
  }
}

@media (max-width: 1350px) {
  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 18px;
  }

  .header-actions {
    min-width: auto;
  }
}

@media (max-width: 1120px) {
  .brand {
    min-width: 216px;
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 43px;
  }

  .brand-text {
    font-size: 16px;
  }

  .header-actions .button {
    min-width: 154px;
    padding-inline: 18px;
  }

  .support-link {
    display: none;
  }

  .primary-nav {
    gap: 16px;
  }

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

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

@media (max-width: 1080px) {
  :root {
    --header-height: 72px;
  }

  .container,
  .header-inner {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 43px;
  }

  .brand-text {
    font-size: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    border-bottom: 1px solid rgba(217, 227, 241, 0.75);
  }

  .primary-nav a::after {
    display: none;
  }

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

  .hero {
    min-height: 700px;
  }

  .hero .container {
    padding-top: 92px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p,
  .page-hero p {
    font-size: 18px;
  }

  .booking-wrap {
    margin-top: -72px;
    margin-bottom: 44px;
  }

  .search-grid,
  .lead-contact-row,
  .form-grid,
  .two-column,
  .three-column,
  .four-column,
  .feature-row,
  .stats-band,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

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

  .section-heading {
    display: grid;
    align-items: start;
  }

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

  .auth-art {
    min-height: 300px;
    padding: 46px 28px;
  }

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

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .container,
  .header-inner,
  .booking-container {
    width: min(100% - 28px, 362px);
    margin-left: 14px;
    margin-right: auto;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark img {
    width: 39px;
  }

  .brand-text {
    font-size: 15px;
  }

  .hero {
    min-height: 680px;
  }

  .script-label {
    font-size: 22px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 32px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-proof {
    gap: 10px;
  }

  .hero-proof span {
    width: 100%;
    border-right: 0;
    padding-right: 0;
  }

  .booking-content {
    padding: 18px 16px 20px;
  }

  .booking-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
  }

  .booking-tab {
    width: 100%;
    justify-content: center;
    padding: 0 10px;
    border-bottom: 1px solid rgba(217, 227, 241, 0.8);
  }

  .trip-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .destination-grid,
  .card-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .destination-card,
  .image-card {
    min-height: 260px;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading h2,
  .split-content h2 {
    font-size: 30px;
  }

  .page-hero h1 {
    font-size: 33px;
  }

  .page-hero {
    padding: 58px 0;
  }

  .promo h2 {
    font-size: 27px;
  }

  .legal-card,
  .auth-box,
  .search-surface,
  .form-surface {
    padding: 20px;
  }
}
