/* ============================================================
   MAKSSA — Travel & Aviation Services
   Unconventional, fluid, travel-inspired single page
   ============================================================ */

:root {
  --navy: #0d1b2a;
  --navy-2: #112436;
  --navy-3: #16304a;
  --aqua: #5eaab8;
  --aqua-soft: #8fc7d0;
  --aqua-dark: #2c6c78;
  --silver: #c5cdd6;
  --silver-2: #9ba6b3;
  --cream: #f4ede1;
  --cream-2: #faf3e7;
  --gold: #e7c98a;
  --ink: #0a141f;
  --rule: rgba(245, 237, 225, 0.16);

  --f-serif: "Fraunces", Georgia, serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Atmospheric noise + gradient base */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 12% 8%, rgba(94, 170, 184, 0.18), transparent 60%),
    radial-gradient(700px 700px at 95% 30%, rgba(231, 201, 138, 0.06), transparent 65%),
    radial-gradient(1200px 800px at 50% 100%, rgba(94, 170, 184, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.93  0 0 0 0 0.88  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

::selection { background: var(--aqua); color: var(--navy); }

/* ---- Decorative SVG route lines ---- */
.route-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}
.route-line {
  fill: none;
  stroke: url(#routeGrad);
  stroke-width: 1.2;
  stroke-dasharray: 4 8;
  stroke-linecap: round;
  animation: dash 22s linear infinite;
}
.route-line.r2 { animation-duration: 30s; animation-direction: reverse; }
.route-line.r3 { animation-duration: 26s; }
.route-line.r4 { animation-duration: 34s; animation-direction: reverse; }
.route-line.r5 { animation-duration: 28s; }
@keyframes dash {
  to { stroke-dashoffset: -480; }
}

/* ---- Floating passport stamps ---- */
.stamps {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.stamp {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  text-transform: uppercase;
  opacity: 0;
  transform: rotate(-12deg);
}
.s1 { color: var(--aqua); top: 22%; left: 4%; transform: rotate(-14deg); }
.s2 { color: var(--gold); top: 48%; right: 3%; transform: rotate(8deg); }
.s3 { color: var(--cream); top: 72%; left: 6%; transform: rotate(-6deg); }
.s4 { color: var(--aqua-soft); top: 12%; right: 8%; transform: rotate(12deg); }

@media (min-width: 900px) {
  .stamp { opacity: 0.22; }
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px 38px;
  background: rgba(13, 27, 42, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.4s ease, background 0.4s ease;
}

.site-header.scrolled {
  padding: 12px 38px;
  background: rgba(10, 20, 31, 0.85);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--aqua-soft);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.brand-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-2);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  justify-self: center;
  gap: 26px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.site-nav a {
  color: var(--silver);
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s ease;
}
.site-nav a:hover { color: var(--cream); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--aqua);
  transition: width 0.35s ease, left 0.35s ease;
}
.site-nav a:hover::after { width: 100%; left: 0; }
.site-nav .nav-privacy {
  color: var(--aqua-soft);
  font-style: italic;
  font-family: var(--f-serif);
  letter-spacing: 0.02em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px 11px 20px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, background 0.3s ease;
}
.header-cta svg { width: 16px; height: 16px; }
.header-cta:hover {
  background: var(--aqua-soft);
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  z-index: 5;
  padding: 168px 38px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}

.hero-left { position: relative; max-width: 640px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-soft);
  padding: 8px 16px 8px 14px;
  border: 1px solid rgba(94, 170, 184, 0.35);
  border-radius: 999px;
  margin-bottom: 36px;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(94, 170, 184, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(94, 170, 184, 0.25); }
  50% { box-shadow: 0 0 0 9px rgba(94, 170, 184, 0); }
}

.hero-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(50px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
}
.hero-title .line-1,
.hero-title .line-2,
.hero-title .line-3 {
  display: block;
}
.hero-title .line-2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--aqua-soft);
  position: relative;
  padding-left: 0.18em;
}
.hero-title .line-2 em::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -4%;
  top: 56%;
  height: 6px;
  background: var(--aqua);
  opacity: 0.18;
  transform: skewX(-12deg);
  border-radius: 2px;
}
.hero-title .line-3 {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--silver);
  margin-top: 6px;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--silver);
  max-width: 520px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--aqua);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 40px -12px rgba(94, 170, 184, 0.55);
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -14px rgba(94, 170, 184, 0.65);
}
.btn-primary .btn-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.btn-primary:hover .btn-arrow { transform: translate(3px, -3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.btn-ghost .dash {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: var(--silver);
  transition: width 0.35s ease, background 0.35s ease;
}
.btn-ghost:hover .dash { width: 60px; background: var(--aqua); }

.hero-stats {
  list-style: none;
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stats strong {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 36px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero-stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--silver-2);
}

/* --- Hero right composition --- */
.hero-right {
  position: relative;
  height: 620px;
}

.boarding-card {
  position: absolute;
  top: 60px;
  left: 12%;
  width: 340px;
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(231, 201, 138, 0.18);
  border-radius: 18px;
  padding: 22px 24px 18px;
  z-index: 4;
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: rotate(-4deg);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.boarding-card:hover { transform: rotate(-1deg) translateY(-4px); }
.bp-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(231, 201, 138, 0.3);
}
.bp-class { color: var(--silver-2); }

.bp-route {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}
.bp-port {
  display: flex; flex-direction: column;
  gap: 4px;
  text-align: center;
}
.bp-port:last-child { text-align: center; }
.iata {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 38px;
  color: var(--cream);
  line-height: 1;
}
.city {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver-2);
}
.bp-plane svg { width: 100%; height: 30px; }

.bp-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px dashed rgba(231, 201, 138, 0.3);
  border-bottom: 1px dashed rgba(231, 201, 138, 0.3);
}
.bp-meta div { display: flex; flex-direction: column; gap: 4px; }
.bp-meta span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver-2);
}
.bp-meta strong {
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
}

.bp-barcode {
  display: flex;
  gap: 3px;
  height: 28px;
  margin-top: 14px;
  align-items: stretch;
}
.bp-barcode span {
  flex: 1;
  background: var(--cream);
  border-radius: 1px;
}
.bp-barcode span:nth-child(2n) { background: var(--aqua-soft); flex: 0.4; }
.bp-barcode span:nth-child(3n) { background: var(--silver-2); flex: 0.7; }
.bp-barcode span:nth-child(5n) { flex: 1.3; }

.bp-watermark {
  position: absolute;
  right: -10px;
  bottom: -22px;
  font-family: var(--f-serif);
  font-size: 90px;
  font-weight: 700;
  color: rgba(244, 237, 225, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.float-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.float-img figcaption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
  background: rgba(13, 27, 42, 0.55);
  padding: 6px 10px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}
.float-img.f1 {
  top: 0;
  right: 0;
  width: 240px;
  height: 320px;
  transform: rotate(5deg);
  z-index: 3;
  border: 4px solid var(--cream);
}
.float-img.f1:hover { transform: rotate(2deg) translateY(-6px); }
.float-img.f2 {
  bottom: 30px;
  right: 8%;
  width: 220px;
  height: 280px;
  transform: rotate(-7deg);
  z-index: 5;
  border: 4px solid var(--cream-2);
}
.float-img.f2:hover { transform: rotate(-4deg) translateY(-6px); }

.compass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(94, 170, 184, 0.35);
  display: grid;
  place-items: center;
  z-index: 2;
  animation: spin 60s linear infinite;
}
.compass .ring {
  position: absolute;
  border: 1px dashed rgba(231, 201, 138, 0.3);
  border-radius: 50%;
}
.compass .r-out { inset: -12px; }
.compass .r-mid { inset: 14px; border-style: solid; border-color: rgba(94, 170, 184, 0.25); }
.compass .needle {
  width: 2px;
  height: 80%;
  background: linear-gradient(180deg, var(--aqua) 0%, var(--aqua) 50%, var(--gold) 50%, var(--gold) 100%);
  border-radius: 2px;
}
.compass span {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--silver-2);
  letter-spacing: 0.1em;
}
.compass .n { top: 4px; }
.compass .s { bottom: 4px; }
.compass .e { right: 6px; }
.compass .w { left: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Hero marquee --- */
.hero-marquee {
  margin-top: 50px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--silver);
}
.marquee-track span:nth-child(odd) { color: var(--cream); }
.marquee-track span:nth-child(even):not(:contains(·)) { color: var(--aqua-soft); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-num {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-soft);
  padding: 6px 0;
  border-top: 1px solid var(--aqua);
  margin-bottom: 24px;
}

/* ============================================================
   SERVICES — diagonal layered stack
   ============================================================ */

.services {
  position: relative;
  z-index: 5;
  padding: 140px 38px 160px;
}

.services-head {
  max-width: 760px;
  margin-bottom: 90px;
}
.services-head h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
}
.services-head h2 em {
  font-style: italic;
  color: var(--aqua-soft);
}
.services-head p {
  font-size: 17px;
  color: var(--silver);
  max-width: 540px;
}

.service-stack {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.svc {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr 420px;
  gap: 40px;
  align-items: center;
  padding: 38px 44px;
  border: 1px solid var(--rule);
  border-radius: 24px;
  background: rgba(17, 36, 54, 0.7);
  backdrop-filter: blur(14px);
  margin-bottom: -28px;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), background 0.5s ease, border-color 0.4s ease;
  overflow: hidden;
}
.svc:hover {
  background: rgba(22, 48, 74, 0.85);
  border-color: rgba(94, 170, 184, 0.4);
  transform: translateY(-6px);
  z-index: 10;
}
.svc:nth-child(odd) { transform: translateX(-2%) rotate(-0.6deg); }
.svc:nth-child(even) { transform: translateX(2%) rotate(0.6deg); }
.svc:nth-child(odd):hover { transform: translateX(-2%) rotate(-0.6deg) translateY(-6px); }
.svc:nth-child(even):hover { transform: translateX(2%) rotate(0.6deg) translateY(-6px); }

.svc-index {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.svc h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 12px;
}
.svc p {
  color: var(--silver);
  font-size: 15.5px;
  max-width: 480px;
}
.svc-img {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.55);
  transition: transform 0.6s ease;
}
.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 42, 0.45));
}
.svc:hover .svc-img { transform: scale(1.05); }

/* ============================================================
   FLIGHTS
   ============================================================ */

.flights {
  position: relative;
  z-index: 5;
  padding: 160px 38px;
}

.flights-frame {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.flights-copy { padding-top: 20px; max-width: 540px; }
.flights-copy h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
}
.flights-copy h2 em { font-style: italic; color: var(--aqua-soft); }
.flights-copy p {
  font-size: 17px;
  color: var(--silver);
  margin-bottom: 40px;
}

.airline-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--silver);
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.airline-strip i {
  width: 4px; height: 4px;
  background: var(--aqua);
  border-radius: 50%;
  display: inline-block;
}

.fare-card {
  background: var(--cream);
  color: var(--navy);
  border-radius: 28px;
  padding: 28px 28px 24px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  z-index: 3;
  transform: rotate(1.2deg);
  transition: transform 0.5s ease;
}
.fare-card:hover { transform: rotate(0deg) translateY(-4px); }

.fare-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 96px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--navy) 0 4px, transparent 4px 10px);
  opacity: 0.18;
}
.fare-card::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 90px;
  width: 20px; height: 20px;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: calc(100% + 20px) 0 var(--navy);
}

.fare-tabs {
  display: flex;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-2);
  margin-bottom: 22px;
  padding-bottom: 4px;
}
.fare-tabs .active {
  color: var(--navy);
  border-bottom: 1.5px solid var(--aqua-dark);
  padding-bottom: 6px;
}

.fare-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr 1fr;
  align-items: end;
  gap: 8px;
  padding: 14px 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(13, 27, 42, 0.1);
}
.fare-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fare-fields span {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-2);
}
.ff { display: flex; flex-direction: column; padding-right: 8px; border-right: 1px dashed rgba(13, 27, 42, 0.12); }
.fare-fields label:last-child .ff { border-right: none; }
.ff strong {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--navy);
}
.ff em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--silver-2);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.swap {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-size: 14px;
  display: grid; place-items: center;
  margin-bottom: 4px;
}

.fare-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.fare-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 1.2fr;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(13, 27, 42, 0.04);
  transition: background 0.3s ease, transform 0.3s ease;
}
.fare-row:hover { background: rgba(13, 27, 42, 0.08); transform: translateX(2px); }
.fare-row.featured {
  background: var(--navy);
  color: var(--cream);
}
.fare-row.featured .fr-meta { color: var(--silver); }
.fr-air {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
}
.fr-air span {
  display: inline-block;
  background: var(--aqua-dark);
  color: var(--cream);
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10px;
  padding: 4px 7px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.fare-row.featured .fr-air span { background: var(--aqua); color: var(--navy); }
.fr-time strong {
  display: block;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
}
.fr-time em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--silver-2);
}
.fare-row.featured .fr-time em { color: var(--aqua-soft); }
.fr-price {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 500;
}
.fr-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--silver-2);
}

.fare-cta {
  display: inline-block;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
  border-bottom: 1px solid var(--aqua-dark);
  padding-bottom: 4px;
  transition: padding-left 0.3s ease;
}
.fare-cta:hover { padding-left: 8px; }

.curve-photo {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 360px;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 200px 200px 24px 24px;
  z-index: 0;
  opacity: 0.7;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  border: 6px solid var(--navy);
}

/* ============================================================
   DESTINATIONS — scattered cards
   ============================================================ */

.destinations {
  position: relative;
  z-index: 5;
  padding: 140px 38px 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(22, 48, 74, 0.35) 50%, transparent 100%);
}

.dest-head {
  max-width: 620px;
  margin-bottom: 60px;
}
.dest-head h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}
.dest-head h2 em { font-style: italic; color: var(--aqua-soft); }
.dest-lede { color: var(--silver); font-size: 17px; max-width: 480px; }

.dest-scatter {
  position: relative;
  min-height: 780px;
  max-width: 1320px;
  margin: 0 auto;
}

.dest-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.dest-routes path {
  fill: none;
  stroke: var(--aqua-soft);
  stroke-width: 1.2;
  stroke-dasharray: 3 7;
  opacity: 0.5;
  animation: dash 24s linear infinite;
}

.dest {
  position: absolute;
  width: 320px;
  background: var(--navy-2);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 18px 20px 22px;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s ease;
  cursor: pointer;
  z-index: 2;
}
.dest:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.65);
  z-index: 20;
}
.dest-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.dest-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 27, 42, 0.55));
}
.dest-tape {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.dest h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.dest-meta {
  display: flex;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--silver-2);
  letter-spacing: 0.04em;
}

/* Scattered positioning */
.dest-a { top: 0; left: 0; transform: rotate(-3deg); }
.dest-b { top: 40px; left: 28%; transform: rotate(2deg); width: 280px; }
.dest-c { top: 100px; right: 4%; transform: rotate(-2deg); }
.dest-d { top: 380px; left: 8%; transform: rotate(1.5deg); width: 300px; }
.dest-e { top: 440px; left: 38%; transform: rotate(-1deg); }
.dest-f { top: 380px; right: 0; transform: rotate(3deg); width: 290px; }

/* ============================================================
   VISA — passport spread
   ============================================================ */

.visa {
  position: relative;
  z-index: 5;
  padding: 140px 38px 160px;
}

.passport-frame {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto 100px;
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.7);
  border-radius: 24px;
  overflow: hidden;
  transform: perspective(1800px) rotateY(-2deg);
  transition: transform 0.6s ease;
}
.passport-frame:hover { transform: perspective(1800px) rotateY(0); }

.passport-cover {
  background: linear-gradient(135deg, #0b1929 0%, #1a3a52 100%);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-right: 1px dashed rgba(231, 201, 138, 0.25);
  color: var(--gold);
  text-align: center;
  position: relative;
}
.passport-cover::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(231, 201, 138, 0.3);
  border-radius: 4px;
  pointer-events: none;
}
.pc-emblem {
  width: 80px; height: 80px;
}
.pc-emblem svg { width: 100%; height: 100%; }
.pc-top {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pc-mid {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.pc-bot {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--silver);
}

.passport-page {
  background: var(--cream-2);
  color: var(--navy);
  padding: 60px 60px 50px;
  position: relative;
  background-image:
    repeating-linear-gradient(180deg, transparent 0 38px, rgba(13, 27, 42, 0.04) 38px 39px);
}
.passport-page .section-num {
  color: var(--aqua-dark);
  border-top-color: var(--aqua-dark);
}
.passport-page h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.passport-page h2 em { font-style: italic; color: var(--aqua-dark); }
.passport-page > p {
  font-size: 16px;
  color: rgba(13, 27, 42, 0.75);
  max-width: 520px;
  margin-bottom: 32px;
}

.visa-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(13, 27, 42, 0.12);
}
.visa-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  position: relative;
}
.visa-list li:nth-child(odd) { padding-right: 24px; border-right: 1px dashed rgba(13, 27, 42, 0.12); }
.visa-list li:nth-child(even) { padding-left: 24px; }
.visa-list b {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--navy);
}
.visa-list span {
  font-size: 13px;
  color: rgba(13, 27, 42, 0.65);
}
.visa-list i {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua-dark);
}

.visa-stamps {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.vstamp {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--aqua-dark);
  border: 1.5px solid var(--aqua-dark);
  padding: 6px 12px;
  border-radius: 4px;
  transform: rotate(-6deg);
  opacity: 0.7;
}
.vstamp.r { transform: rotate(7deg); color: #b85948; border-color: #b85948; opacity: 0.65; }

.visa-photo {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.visa-photo figcaption {
  position: absolute;
  bottom: 24px;
  left: 32px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cream);
  background: rgba(13, 27, 42, 0.5);
  padding: 8px 16px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}

/* ============================================================
   CORPORATE
   ============================================================ */

.corporate {
  position: relative;
  z-index: 5;
  padding: 140px 38px 160px;
}

.corp-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.corp-text h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
}
.corp-text h2 em { font-style: italic; color: var(--aqua-soft); }
.corp-text > p {
  font-size: 17px;
  color: var(--silver);
  margin-bottom: 50px;
  max-width: 540px;
}

.corp-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cp {
  border-left: 1px solid var(--aqua);
  padding: 14px 20px 14px 24px;
  position: relative;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
.cp:hover { border-color: var(--gold); padding-left: 30px; }
.cp-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--aqua-soft);
  display: block;
  margin-bottom: 8px;
}
.cp h4 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.cp p {
  font-size: 14.5px;
  color: var(--silver);
  line-height: 1.55;
}

.corp-stack {
  position: relative;
  height: 620px;
}

.cs {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 30px 70px -22px rgba(0, 0, 0, 0.65);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.cs-back {
  top: 0; right: 0;
  width: 76%;
  height: 320px;
  transform: rotate(3deg);
}
.cs-mid {
  top: 220px; left: 0;
  width: 60%;
  height: 280px;
  border: 5px solid var(--cream);
  transform: rotate(-4deg);
  z-index: 2;
}
.cs-front {
  bottom: 0; right: 8%;
  width: 65%;
  height: 280px;
  transform: rotate(2deg);
  z-index: 3;
}
.corp-stack:hover .cs-back { transform: rotate(1deg) translateY(-4px); }
.corp-stack:hover .cs-mid { transform: rotate(-2deg) translateY(-4px); }
.corp-stack:hover .cs-front { transform: rotate(0deg) translateY(-4px); }

.corp-ticker {
  position: absolute;
  bottom: -32px;
  left: -20px;
  right: -20px;
  background: var(--navy);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--silver);
  z-index: 5;
}
.corp-ticker > span:first-child {
  color: var(--aqua);
  font-weight: 500;
  flex-shrink: 0;
}
.corp-ticker i {
  width: 3px; height: 3px;
  background: var(--aqua-soft);
  border-radius: 50%;
  flex-shrink: 0;
}
.corp-ticker > span:not(:first-child) {
  flex-shrink: 0;
  animation: tickerSlide 18s linear infinite;
}

@keyframes tickerSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-40%); }
}

/* ============================================================
   VOICES — ticket stubs
   ============================================================ */

.voices {
  position: relative;
  z-index: 5;
  padding: 140px 38px 160px;
  overflow: hidden;
}

.voices-head {
  max-width: 700px;
  margin-bottom: 70px;
}
.voices-head h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.voices-head h2 em { font-style: italic; color: var(--aqua-soft); }

.voice-stubs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.vstub {
  position: relative;
  background: var(--cream);
  color: var(--navy);
  padding: 36px 40px 36px 60px;
  border-radius: 12px;
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.vstub::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0; bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--navy) 0 4px, transparent 4px 10px);
  opacity: 0.18;
}
.vstub::after {
  content: "";
  position: absolute;
  left: 32px;
  top: -10px;
  width: 14px; height: 14px;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 calc(100% + 18px) 0 var(--navy);
}

.vstub p {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 24px;
  font-style: italic;
}
.vstub footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px dashed rgba(13, 27, 42, 0.18);
}
.vstub footer strong {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  font-style: normal;
}
.vstub footer span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--aqua-dark);
}
.stub-side {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--aqua-dark);
  background: var(--cream);
  padding: 4px 8px;
}

.vstub.v1 { transform: rotate(-1.2deg); }
.vstub.v2 { transform: rotate(0.8deg) translateY(28px); }
.vstub.v3 { transform: rotate(0.6deg); }
.vstub.v4 { transform: rotate(-1deg) translateY(28px); }

.vstub:hover {
  transform: rotate(0deg) translateY(-8px) !important;
}

.voices-photo {
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 480px;
  height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 1;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  position: relative;
  z-index: 5;
  padding: 140px 38px 100px;
}

.contact-frame {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.contact-left h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
}
.contact-left h2 em { font-style: italic; color: var(--aqua-soft); }
.contact-left > p {
  font-size: 17px;
  color: var(--silver);
  margin-bottom: 48px;
  max-width: 480px;
}

.contact-channel {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.contact-channel:last-of-type { border-bottom: 1px solid var(--rule); }

.cc-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-soft);
  padding-top: 6px;
}
.cc-value {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition: color 0.3s ease;
}
a.cc-value:hover { color: var(--aqua-soft); }
.cc-value.addr { font-size: 19px; line-height: 1.5; }
.cc-value.sm { font-size: 15px; font-family: var(--f-sans); color: var(--silver); line-height: 1.6; }

/* --- Contact form: dossier folder --- */
.contact-form {
  background: var(--cream);
  color: var(--navy);
  border-radius: 18px;
  padding: 36px 38px;
  position: relative;
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.6);
  transform: rotate(-1deg);
  transition: transform 0.5s ease;
}
.contact-form:hover { transform: rotate(0deg); }
.contact-form::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 60px;
  width: 120px;
  height: 30px;
  background: var(--cream);
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 6px 0 rgba(13, 27, 42, 0.08);
}

.cf-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(13, 27, 42, 0.2);
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--silver-2);
  text-transform: uppercase;
}
.cf-head strong { color: var(--navy); font-size: 14px; }
.cf-date { margin-left: auto; font-style: italic; text-transform: none; letter-spacing: 0.04em; }

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.contact-form label span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua-dark);
}
.contact-form input,
.contact-form textarea {
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(13, 27, 42, 0.18);
  padding: 8px 0 10px;
  font-family: var(--f-serif);
  font-size: 18px;
  color: var(--navy);
  resize: none;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--aqua-dark);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(13, 27, 42, 0.35);
  font-style: italic;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-top: 14px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cf-submit:hover {
  background: var(--aqua-dark);
  transform: translateY(-2px);
}
.cf-submit .arr {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.cf-submit:hover .arr { transform: translateX(4px); }

.cf-sent {
  display: none;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--aqua-dark);
  letter-spacing: 0.04em;
}
.cf-sent.show { display: block; }
.cf-fineprint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--silver-2);
}
.cf-fineprint a {
  color: var(--aqua-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  position: relative;
  z-index: 5;
  background: var(--ink);
  padding: 80px 38px 28px;
  border-top: 1px solid var(--rule);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 80px;
  max-width: 1320px;
  margin: 0 auto 50px;
}

.ft-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ft-mark {
  width: 64px; height: 64px;
  background: var(--cream);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 36px;
  border-radius: 50%;
}
.ft-brand strong {
  display: block;
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.ft-brand em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-2);
}

.ft-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.ft-cols h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-soft);
  margin-bottom: 16px;
  font-weight: 500;
}
.ft-cols p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.75;
}
.ft-cols a {
  color: var(--silver);
  transition: color 0.3s ease;
}
.ft-cols a:hover { color: var(--cream); }

.footer-band {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  margin-bottom: 24px;
  overflow: hidden;
}
.fb-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--silver-2);
  animation: marquee 50s linear infinite;
}
.fb-track span { color: var(--cream); }
.fb-track i { color: var(--aqua); font-style: normal; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--silver-2);
  max-width: 1320px;
  margin: 0 auto;
}
.footer-bottom a {
  color: var(--aqua-soft);
  transition: color 0.3s ease;
}
.footer-bottom a:hover { color: var(--cream); }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.privacy-page {
  padding: 160px 38px 100px;
  position: relative;
  z-index: 5;
}
.privacy-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(17, 36, 54, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 70px 80px;
}
.privacy-wrap .section-num { margin-bottom: 18px; }
.privacy-wrap h1 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 18px;
}
.privacy-wrap .lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--silver);
  margin-bottom: 12px;
}
.privacy-wrap .updated {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-soft);
  margin-bottom: 38px;
}
.privacy-wrap h2 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--cream);
  margin: 38px 0 14px;
  letter-spacing: -0.01em;
}
.privacy-wrap h2::before {
  content: "§ ";
  color: var(--aqua-soft);
  font-family: var(--f-mono);
  font-weight: 400;
}
.privacy-wrap p,
.privacy-wrap li {
  font-size: 15.5px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 12px;
}
.privacy-wrap ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.privacy-wrap li::marker { color: var(--aqua); }
.privacy-wrap a {
  color: var(--aqua-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-soft);
  transition: color 0.3s ease;
}
.back-home:hover { color: var(--cream); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .hero-right { height: 580px; }
  .flights-frame { grid-template-columns: 1fr; gap: 60px; }
  .corp-grid { grid-template-columns: 1fr; gap: 60px; }
  .corp-stack { height: 540px; max-width: 600px; margin: 0 auto; }
  .contact-frame { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .ft-cols { grid-template-columns: 1fr 1fr; }
  .svc { grid-template-columns: 60px 1fr 320px; gap: 28px; padding: 32px; }
  .passport-frame { grid-template-columns: 1fr; transform: none; }
  .passport-frame:hover { transform: none; }
  .passport-cover { padding: 50px 30px; }
  .passport-page { padding: 50px 40px; }
  .dest-scatter { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .dest { position: relative; width: 100%; top: auto; left: auto; right: auto; transform: rotate(0) !important; }
  .dest-routes { display: none; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 18px; gap: 12px; }
  .header-cta { display: none; }
  .brand-tag { display: none; }

  .hero { padding: 130px 20px 40px; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .hero-stats strong { font-size: 28px; }
  .hero-right { height: 520px; }
  .boarding-card { width: 280px; left: 0; }
  .float-img.f1 { width: 180px; height: 240px; }
  .float-img.f2 { width: 160px; height: 200px; }
  .compass { width: 90px; height: 90px; bottom: -10px; left: -10px; }

  .marquee-track { font-size: 18px; }

  .services { padding: 80px 20px 100px; }
  .svc { grid-template-columns: 1fr; gap: 20px; padding: 26px; margin-bottom: 18px; }
  .svc:nth-child(odd), .svc:nth-child(even) { transform: rotate(0); }
  .svc-img { aspect-ratio: 4 / 3; }

  .flights { padding: 80px 20px; }
  .fare-card { padding: 22px; transform: rotate(0); }
  .fare-fields { grid-template-columns: 1fr 1fr; }
  .swap { display: none; }
  .fare-row { grid-template-columns: 1fr 1fr; row-gap: 8px; }
  .fr-meta { grid-column: 1 / -1; }
  .curve-photo { display: none; }

  .destinations { padding: 80px 20px 100px; }
  .dest-scatter { grid-template-columns: 1fr; }

  .visa { padding: 80px 20px; }
  .passport-page { padding: 40px 26px; }
  .visa-list { grid-template-columns: 1fr; }
  .visa-list li:nth-child(odd) { padding-right: 8px; border-right: none; }
  .visa-list li:nth-child(even) { padding-left: 8px; }
  .visa-photo { height: 240px; }

  .corporate { padding: 80px 20px; }
  .corp-pillars { grid-template-columns: 1fr; }
  .corp-stack { height: 420px; }
  .cs-back { width: 90%; height: 220px; }
  .cs-mid { width: 75%; height: 200px; top: 160px; }
  .cs-front { width: 80%; height: 200px; }

  .voices { padding: 80px 20px; }
  .voice-stubs { grid-template-columns: 1fr; gap: 36px; }
  .vstub { transform: rotate(0) !important; padding: 26px 26px 26px 50px; }
  .stub-side { font-size: 9px; }

  .contact { padding: 80px 20px; }
  .contact-channel { grid-template-columns: 1fr; gap: 6px; }
  .cc-label { padding-top: 0; }
  .cc-value { font-size: 22px; }
  .contact-form { padding: 28px 24px; transform: rotate(0); }
  .cf-row { grid-template-columns: 1fr; gap: 0; }

  .site-footer { padding: 60px 20px 20px; }
  .ft-cols { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .privacy-wrap { padding: 50px 30px; }
}

/* Animations on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

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