:root {
  --petrol: #062f3b;
  --petrol-2: #0b4652;
  --sand: #d8b879;
  --sand-soft: #efe4cf;
  --paper: #fbf7ef;
  --paper-2: #f3eadc;
  --aqua: #96d4cf;
  --ink: #132629;
  --muted: #667679;
  --line: rgba(6, 47, 59, 0.14);
  --white: #ffffff;
  --shadow-soft: 0 26px 70px rgba(8, 43, 50, 0.14);
  --shadow-card: 0 18px 42px rgba(7, 41, 48, 0.16);
  --radius: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(150, 212, 207, .9);
  outline-offset: 4px;
}

.noscript-warning {
  position: relative;
  z-index: 100;
  padding: 12px 20px;
  background: var(--petrol);
  color: var(--white);
  font-size: 14px;
  text-align: center;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--sand), var(--aqua));
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  transform: translateX(-50%);
  padding: 13px 15px 13px 18px;
  color: var(--petrol);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), top .3s var(--ease), border-color .3s var(--ease);
  border: 1px solid transparent;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(251, 247, 239, .86);
  border-color: rgba(6, 47, 59, .08);
  box-shadow: 0 15px 50px rgba(6, 47, 59, .09);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--petrol);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(6, 47, 59, .18);
}

.brand-copy {
  display: grid;
  line-height: 1.04;
}

.brand-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  letter-spacing: .02em;
}

.brand-copy small {
  margin-top: 2px;
  color: rgba(6, 47, 59, .66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: rgba(6, 47, 59, .72);
  font-size: 13px;
  font-weight: 700;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .28s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta {
  padding: 11px 17px;
  color: var(--white);
  background: var(--petrol);
  border: 1px solid rgba(6, 47, 59, .16);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 15px 34px rgba(6, 47, 59, .16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--petrol);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 95;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 88px 28px 28px;
  background: rgba(251, 247, 239, .96);
  backdrop-filter: blur(16px);
  transform: translateY(-100%);
  transition: transform .32s var(--ease);
}

.mobile-menu a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--petrol);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 10vw, 54px);
}

body.menu-open .mobile-menu {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px 24px 76px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 82% 17%, rgba(150, 212, 207, .32), transparent 26%),
    radial-gradient(circle at 14% 75%, rgba(216, 184, 121, .34), transparent 30%),
    linear-gradient(135deg, #fbf7ef 0%, #f4ebdc 100%);
}

.map-texture {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(110deg, transparent 0 43%, rgba(6,47,59,.06) 43.2% 43.5%, transparent 43.7% 100%),
    linear-gradient(70deg, transparent 0 50%, rgba(6,47,59,.05) 50.2% 50.5%, transparent 50.7% 100%),
    repeating-radial-gradient(circle at 78% 38%, transparent 0 18px, rgba(6,47,59,.05) 19px 20px, transparent 21px 42px);
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--petrol-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1030px;
  margin: 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--petrol);
  font-size: clamp(48px, 8vw, 104px);
  line-height: .94;
  letter-spacing: -.055em;
}

.hero-subtitle {
  max-width: 690px;
  margin: 28px auto 0;
  color: rgba(19, 38, 41, .76);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.hero-actions,
.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 850;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--petrol);
  box-shadow: 0 20px 38px rgba(6, 47, 59, .2);
}

.btn-primary:hover {
  background: #041f28;
  box-shadow: 0 26px 52px rgba(6, 47, 59, .25);
}

.btn-ghost {
  color: var(--petrol);
  background: rgba(255, 255, 255, .42);
  border-color: rgba(6, 47, 59, .18);
}

.btn-light {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}

.demo-note {
  margin: 18px auto 0;
  color: rgba(19, 38, 41, .52);
  font-size: 12px;
  font-weight: 650;
}

.route-stage {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(950px, 105vw);
  height: min(560px, 72vw);
  transform: translate(-50%, -44%);
  pointer-events: none;
  perspective: 1100px;
}

.route-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 34px rgba(6,47,59,.08));
}

.route-path {
  fill: none;
  stroke: rgba(6, 47, 59, .34);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 14;
  stroke-dashoffset: 620;
  animation: drawRoute 4.2s var(--ease) .4s forwards, routePulse 7s linear 4.6s infinite;
}

.route-dot {
  fill: var(--sand);
  opacity: .9;
}

.route-dot-b {
  fill: var(--aqua);
}

@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

@keyframes routePulse {
  to { stroke-dashoffset: -180; }
}

.depth-item {
  transform-style: preserve-3d;
  will-change: transform;
}

.plane-3d {
  position: absolute;
  top: 18%;
  right: 4%;
  width: 166px;
  height: 112px;
  transform: rotate(-18deg) rotateX(14deg) rotateY(-12deg);
  animation: planeFloat 6.8s var(--ease) infinite;
  filter: drop-shadow(0 26px 28px rgba(6, 47, 59, .18));
}

.plane-3d::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -18px;
  width: 104px;
  height: 18px;
  background: rgba(6, 47, 59, .16);
  border-radius: 50%;
  filter: blur(12px);
  transform: rotate(15deg);
}

.plane-body {
  position: absolute;
  top: 48px;
  left: 15px;
  width: 136px;
  height: 18px;
  background: linear-gradient(90deg, #ffffff 0%, #e6dccb 52%, #b58c47 100%);
  border-radius: 60% 22% 22% 60%;
  transform: translateZ(38px);
  box-shadow: inset 0 -5px 10px rgba(6,47,59,.08);
}

.plane-nose {
  position: absolute;
  top: 49px;
  right: 6px;
  width: 26px;
  height: 16px;
  background: var(--petrol);
  border-radius: 50% 60% 60% 50%;
  transform: translateZ(44px);
}

.plane-wing {
  position: absolute;
  left: 64px;
  width: 72px;
  height: 17px;
  background: linear-gradient(90deg, #fefbf5, #d8b879);
  border-radius: 70% 10% 40% 20%;
  transform-origin: left center;
  box-shadow: inset 0 -4px 9px rgba(6,47,59,.12);
}

.wing-left {
  top: 33px;
  transform: translateZ(32px) rotate(-35deg) skewX(-12deg);
}

.wing-right {
  top: 61px;
  transform: translateZ(26px) rotate(35deg) skewX(12deg);
  opacity: .82;
}

.plane-tail {
  position: absolute;
  left: 18px;
  width: 38px;
  height: 11px;
  background: var(--petrol-2);
  border-radius: 60% 15% 15% 60%;
  transform-origin: right center;
}

.tail-left {
  top: 39px;
  transform: translateZ(22px) rotate(-42deg);
}

.tail-right {
  top: 65px;
  transform: translateZ(18px) rotate(42deg);
  opacity: .72;
}

@keyframes planeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

.travel-object {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--petrol);
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(6,47,59,.13);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.boarding-pass {
  right: 18%;
  bottom: 10%;
  width: 154px;
  height: 72px;
  padding: 15px;
  align-content: center;
  justify-items: start;
  border-radius: 14px;
  transform: rotate(10deg) translateZ(25px);
}

.boarding-pass small {
  color: rgba(6,47,59,.55);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.boarding-pass strong {
  margin-top: 4px;
  font-size: 15px;
  letter-spacing: .08em;
}

.boarding-pass span {
  position: absolute;
  right: 20px;
  width: 1px;
  height: 48px;
  background: repeating-linear-gradient(to bottom, rgba(6,47,59,.28) 0 4px, transparent 4px 8px);
}

.luggage-tag {
  top: 20%;
  left: 5%;
  width: 74px;
  height: 108px;
  border-radius: 16px 16px 22px 22px;
  transform: rotate(-14deg) translateZ(22px);
}

.luggage-tag small {
  margin-top: 24px;
  color: rgba(6,47,59,.7);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.tag-hole {
  position: absolute;
  top: 13px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(6,47,59,.3);
  border-radius: 50%;
}

.compass {
  left: 23%;
  bottom: 15%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  transform: rotate(18deg) translateZ(20px);
}

.compass::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(6,47,59,.22);
  border-radius: 50%;
}

.compass::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 31px solid var(--sand);
  transform: translateY(-8px) rotate(26deg);
}

.compass span {
  position: absolute;
  top: 10px;
  font-size: 9px;
  font-weight: 900;
}

.map-pin {
  right: 7%;
  top: 53%;
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 6px;
  background: rgba(6,47,59,.9);
  transform: rotate(-45deg) translateZ(31px);
}

.map-pin span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--paper);
  transform: rotate(45deg);
}

.section {
  padding: 108px 24px;
}

.quick-strip {
  width: min(1120px, calc(100% - 48px));
  margin: -42px auto 0;
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  color: var(--white);
  background: var(--petrol);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 80px rgba(6,47,59,.2);
}

.quick-strip p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.quick-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-strip li {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.quick-strip li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
}

.section-heading,
.split-heading {
  width: min(1120px, 100%);
  margin: 0 auto 50px;
}

.section-heading {
  text-align: center;
}

.section-heading.narrow {
  width: min(760px, 100%);
}

.section-heading h2,
.split-heading h2,
.trust-panel h2,
.final-cta h2 {
  margin: 0;
  color: var(--petrol);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.section-heading p:not(.section-kicker),
.split-heading > p,
.final-cta p:not(.section-kicker) {
  max-width: 710px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .45fr);
  gap: 60px;
  align-items: end;
}

.split-heading > p {
  margin: 0;
}

.decision-section {
  background: linear-gradient(180deg, var(--paper) 0%, #fffaf1 100%);
}

.decision-map {
  width: min(1060px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.decision-row {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 116px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .28s var(--ease), background .28s var(--ease);
}

.decision-row:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(216,184,121,.12), transparent 70%);
}

.decision-index {
  color: rgba(6,47,59,.28);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.decision-row h3 {
  margin: 0 0 8px;
  color: var(--petrol);
  font-size: 24px;
  letter-spacing: -.03em;
}

.decision-row p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.decision-row a {
  justify-self: end;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  color: var(--petrol-2);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.destinations-section {
  background: #f8f1e7;
}

.destination-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 1000px;
}

.destination-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6,47,59,.08);
  box-shadow: 0 18px 44px rgba(6,47,59,.08);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
  transform-style: preserve-3d;
}

.destination-card:nth-child(even) {
  margin-top: 54px;
}

.destination-card:hover {
  transform: rotateX(2deg) rotateY(-3deg) translateY(-10px);
  box-shadow: var(--shadow-card);
}

.destination-card figure {
  height: 100%;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.destination-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.02);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 23, 29, .82) 100%);
}

.card-copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
}

.card-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 9px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card-copy h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
}

.card-copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.5;
}

.process-section {
  background: var(--petrol);
  color: var(--white);
}

.process-section .section-kicker,
.process-section .section-heading h2 {
  color: var(--white);
}

.process-section .section-heading p {
  color: rgba(255,255,255,.68);
}

.journey-list {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.journey-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.journey-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.journey-list span {
  color: var(--sand);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  line-height: .9;
}

.journey-list h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 25px;
  letter-spacing: -.03em;
}

.journey-list p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.65;
}

.trust-section {
  position: relative;
  background: linear-gradient(180deg, #f8f1e7, var(--paper));
}

.trust-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6,47,59,.94), rgba(10,70,82,.94)),
    radial-gradient(circle at top right, rgba(216,184,121,.35), transparent 36%);
  box-shadow: var(--shadow-soft);
}

.trust-panel .section-kicker,
.trust-panel h2 {
  color: var(--white);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: rgba(255,255,255,.14);
}

.trust-list p {
  margin: 0;
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.gallery-section {
  background: var(--paper);
}

.broken-gallery {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr .72fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--petrol);
  box-shadow: 0 20px 48px rgba(6,47,59,.1);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3,23,29,.72));
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
}

.faq-section {
  background: #f8f1e7;
}

.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 25px 0;
  color: var(--petrol);
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  min-width: 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--petrol);
  font-size: 20px;
  transition: transform .24s var(--ease), background .24s var(--ease);
}

details[open] summary::after {
  content: "−";
  background: rgba(6,47,59,.06);
}

details p {
  max-width: 690px;
  margin: -8px 0 25px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: clamp(34px, 6vw, 64px);
  color: var(--white);
  background: var(--petrol);
  box-shadow: var(--shadow-soft);
}

.final-cta .section-kicker,
.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.section-kicker) {
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
}

.final-actions {
  justify-content: flex-end;
  min-width: 250px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 24px 100px;
  color: rgba(19,38,41,.58);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.mobile-whatsapp {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
  justify-content: center;
  padding: 15px 18px;
  color: var(--white);
  background: var(--petrol);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(6,47,59,.24);
  font-size: 14px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .route-stage {
    opacity: .7;
    transform: translate(-50%, -38%) scale(.88);
  }

  .quick-strip {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

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

  .split-heading,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .destination-card:nth-child(even) {
    margin-top: 0;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 22px);
    padding: 10px 10px 10px 12px;
    background: rgba(251, 247, 239, .86);
    border-color: rgba(6,47,59,.08);
    backdrop-filter: blur(16px);
  }

  .brand {
    min-width: auto;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 8px;
  }

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

  .hero {
    min-height: 100svh;
    padding: 100px 18px 56px;
    align-items: start;
  }

  .hero-content {
    margin-top: 76px;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 64px);
    line-height: .96;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .demo-note {
    margin-left: 0;
  }

  .route-stage {
    top: 52%;
    left: 70%;
    width: 450px;
    height: 280px;
    opacity: .34;
    transform: translate(-50%, -50%) scale(.78);
  }

  .plane-3d {
    width: 126px;
    height: 88px;
    right: 18%;
    top: 4%;
  }

  .travel-object {
    display: none;
  }

  .quick-strip {
    width: calc(100% - 28px);
    padding: 18px;
  }

  .quick-strip ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading,
  .split-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .section-heading h2,
  .split-heading h2,
  .trust-panel h2,
  .final-cta h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .section-heading p:not(.section-kicker),
  .split-heading > p,
  .final-cta p:not(.section-kicker) {
    margin-left: 0;
  }

  .decision-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }

  .decision-row:hover {
    padding-left: 0;
    background: transparent;
  }

  .decision-index {
    font-size: 34px;
  }

  .decision-row a {
    justify-self: start;
  }

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

  .destination-card,
  .destination-card figure {
    min-height: 380px;
  }

  .journey-list li {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 27px 0;
  }

  .journey-list span {
    font-size: 42px;
  }

  .trust-panel {
    padding: 30px 20px;
  }

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

  .trust-list p {
    min-height: auto;
    padding: 18px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .broken-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  summary {
    align-items: flex-start;
    font-size: 16px;
  }

  .final-cta {
    width: calc(100% - 28px);
    margin-bottom: 82px;
    padding: 30px 20px;
  }

  .final-actions {
    min-width: 0;
  }

  .site-footer {
    display: grid;
    padding-bottom: 94px;
  }

  .mobile-whatsapp {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

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