﻿:root {
  --primary: #f7921f;
  --primary-hover: #141414;
  --primary-100: rgba(247, 146, 31, 0.15);
  --secondary: #f7f5f2;
  --heading: #141414;
  --text: #535b5f;
  --text-two: #535b5f;
  --border: rgba(83, 91, 95, 0.3);
  --gray: #f7f5f2;
  --white: #ffffff;
  --dark: #222222;
  --warning: #f7921f;
  --gold: var(--primary);
  --gold-2: #ffc56a;
  --navy: var(--heading);
  --deep: #161920;
  --panel: #ffffff;
  --card: #ffffff;
  --cream: #161920;
  --muted: var(--text);
  --teal: var(--primary);
  --line: var(--border);
  --shadow: 0 18px 50px rgba(22, 25, 32, 0.08);
  --radius: 16px;
  --max: 1440px;
  --header-h: 84px;
  --transition: all 0.35s ease;
  --font: "Manrope", sans-serif;
  --script: "Montez", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; overflow-x: hidden; width: 100%; max-width: 100%; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.67;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button, input, textarea, select { font-family: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4, h5, h6, .display {
  font-family: var(--font);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.22;
  letter-spacing: -1px;
}
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); margin: 6px 0 14px; text-transform: capitalize; }
.lede { color: var(--text); max-width: 560px; }

.eyebrow, .kicker {
  display: inline-block;
  font-family: var(--script);
  letter-spacing: 0;
  text-transform: none;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: var(--primary);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow::before { display: none; }

.section { padding: 96px 0; position: relative; overflow: hidden; }
.section > .container { position: relative; z-index: 1; }
.about-story,
.offer,
.scene-europe,
.scene-destinations,
.scene-featured {
  padding-left: 50px;
  padding-right: 50px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head .lede { margin-top: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 12px 22px;
  min-height: 46px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold, .btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-gold:hover, .btn-primary:hover {
  background: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost, .btn-outline {
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--border);
}
.btn-ghost:hover, .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-100);
}
.btn-dark {
  background: var(--heading);
  color: var(--white);
}
.btn-dark:hover { background: var(--primary); }
.btn-white {
  background: var(--white);
  color: var(--heading);
}
.btn-white:hover { background: var(--primary); color: var(--white); }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cine-loader {
  background: #10243a;
  color: #fff;
}
.cine-loader-inner {
  width: min(420px, calc(100% - 48px));
  text-align: center;
}
.cine-loader-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.62;
  margin-bottom: 12px;
}
.cine-loader-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.cine-loader-track {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin-bottom: 14px;
}
.cine-loader-fill {
  display: block;
  height: 1px;
  width: 0%;
  background: #fff;
  transform-origin: left center;
}
.cine-loader-craft {
  position: absolute;
  top: -7px;
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  clip-path: polygon(0 45%, 70% 40%, 100% 50%, 70% 60%, 0 55%, 18% 50%);
}
.cine-loader-pct {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid var(--secondary);
  border-top-color: var(--primary);
  animation: spin 0.75s linear infinite;
}

.topbar {
  background: var(--heading);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 40px;
}
.topbar a:hover { color: var(--primary); }
.contact-pills { display: flex; gap: 18px; flex-wrap: wrap; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.is-sticky {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px rgba(22, 25, 32, 0.06);
}
body[data-page="home"] .header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
}
body[data-page="home"] .header.is-sticky,
body[data-page="home"] .header.is-over {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
}
body[data-page="home"] .header:not(.is-sticky) .nav-links a,
body[data-page="home"] .header:not(.is-sticky) .logo {
  color: var(--white);
}
body[data-page="home"] .header:not(.is-sticky) .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
body[data-page="home"] .topbar { display: none; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  min-height: var(--header-h);
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--heading);
}
.header .logo {
  position: relative;
  height: var(--header-h);
  width: 280px;
  flex: 0 0 auto;
  overflow: hidden;
}
.logo-img {
  display: block;
  height: 44px;
  width: auto;
}
.header .logo-img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 193px;
  width: auto;
  max-width: none;
  transform: translate(-50%, -50%);
}
.site-footer .logo-img {
  height: 193px;
  width: auto;
  max-width: none;
}
.logo-img--light { display: none; }
body[data-page="home"] .header:not(.is-sticky) .logo-img--dark { display: none; }
body[data-page="home"] .header:not(.is-sticky) .logo-img--light { display: block; }
.site-footer .logo-img--dark { display: none; }
.site-footer .logo-img--light { display: block; }
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  font-size: 18px;
  box-shadow: none;
  transform: none;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  position: relative;
}
.nav-links a.active, .nav-links a:hover { color: var(--primary); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--primary);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: inherit;
}

.cine-journey {
  position: relative;
}
.cine-hero {
  position: relative;
  height: 900vh;
  min-height: 900vh;
  overflow: visible;
  z-index: 8;
  --cine-veil: 0;
  background: transparent;
  color: #fff;
  isolation: isolate;
}
.cine-hero-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  z-index: 2;
  background:
    radial-gradient(ellipse 90% 70% at 70% 30%, #8ec4e6 0%, transparent 55%),
    linear-gradient(180deg, #1d4f88 0%, #6eafd8 48%, #d8eaf4 100%);
}
.cine-journey .hero.scene-hero {
  margin-top: 0;
  z-index: 5;
}
.cine-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.cine-hero-grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.42;
  background:
    radial-gradient(ellipse 70% 55% at 62% 42%, transparent 0%, rgba(12, 32, 58, 0.22) 100%),
    linear-gradient(180deg, rgba(14, 36, 68, 0.1) 0%, transparent 34%, rgba(210, 228, 238, 0.08) 100%);
}
.cine-hero-copy {
  position: absolute;
  left: clamp(28px, 8vw, 110px);
  bottom: clamp(88px, 16vh, 160px);
  z-index: 2;
  max-width: min(760px, 58vw);
  transform: perspective(1400px) rotateY(9deg) rotateX(3deg);
  transform-origin: left bottom;
  will-change: transform, opacity;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.cine-hero-copy.is-live {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cine-hero-copy:not(.is-live) .cine-hero-title,
.cine-hero-copy:not(.is-live) .cine-hero-lede {
  opacity: 0 !important;
  visibility: hidden !important;
}
.cine-hero-copy--land {
  left: clamp(28px, 6vw, 90px);
  bottom: clamp(70px, 13vh, 130px);
  max-width: min(820px, 70vw);
  transform: perspective(1400px) rotateY(-7deg) rotateX(9deg);
}
.cine-hero-copy--land .cine-hero-lede {
  max-width: 36ch;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 1.45;
}
.cine-hero-copy--feel,
.cine-hero-copy--travel,
.cine-hero-copy--story {
  pointer-events: none;
}
.cine-hero-copy--feel {
  left: auto;
  right: clamp(24px, 7vw, 90px);
  bottom: clamp(18vh, 28vh, 34vh);
  max-width: min(640px, 48vw);
  transform: perspective(1400px) rotateY(8deg) rotateX(4deg);
  transform-origin: right center;
}
.cine-hero-copy--travel {
  left: clamp(28px, 7vw, 100px);
  bottom: clamp(80px, 16vh, 140px);
  transform: perspective(1400px) rotateY(-5deg) rotateX(6deg);
}
.cine-hero-copy--story {
  left: 50%;
  right: auto;
  bottom: 38%;
  max-width: min(900px, 86vw);
  text-align: center;
  transform: translateX(-50%);
  transform-origin: center;
}
.cine-hero-copy--feel .cine-hero-lede,
.cine-hero-copy--travel .cine-hero-lede {
  max-width: 28ch;
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.cine-hero-cards {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 14%;
  z-index: 2;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cine-hero.is-cards .cine-hero-cards { pointer-events: auto; }
.cine-hero-card {
  flex: 1 1 0;
  max-width: 190px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  color: #fff;
  isolation: isolate;
  will-change: transform;
}
.cine-hero-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.92);
}
.cine-hero-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.cine-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,18,28,0.72) 100%);
}
.cine-hero-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(3.4rem, 8.6vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: 0.055em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 50px rgba(18, 38, 64, 0.28);
}
.cine-hero-title span {
  display: block;
}
.cine-hero-copy--open .cine-hero-title span,
.cine-hero-copy--open .cine-hero-lede,
.cine-hero-cta,
.cine-hero-scroll { opacity: 0; }
.cine-hero-scroll.is-away { opacity: 0 !important; visibility: hidden; }
.cine-hero-cards.is-live {
  opacity: 1;
  visibility: visible;
}
.cine-hero.is-static .cine-hero-copy,
.cine-hero.is-static .cine-hero-cards {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.cine-hero.is-static .cine-hero-copy--open,
.cine-hero.is-static .cine-hero-copy--open .cine-hero-title,
.cine-hero.is-static .cine-hero-copy--open .cine-hero-title span,
.cine-hero.is-static .cine-hero-copy--open .cine-hero-lede,
.cine-hero.is-static .cine-hero-cta,
.cine-hero.is-static .cine-hero-scroll {
  opacity: 1 !important;
  visibility: visible !important;
}
.cine-hero-lede {
  margin-top: 22px;
  max-width: 26ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.cine-hero-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 15px 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  will-change: transform, opacity;
}
.cine-hero-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  color: #fff;
}
.cine-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  will-change: transform, opacity;
}
.cine-hero-scroll span {
  display: inline-block;
  animation: cine-scroll-bob 1.8s ease-in-out infinite;
}
@keyframes cine-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
.cine-hero-veil {
  position: absolute;
  inset: -8%;
  z-index: 3;
  pointer-events: none;
  opacity: var(--cine-veil);
  background:
    radial-gradient(ellipse 90% 80% at 50% 48%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.12) 42%, transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(252,253,255,0.55) 100%);
}
.cine-hero-veil-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.35) 42%, transparent 70%);
  filter: blur(18px);
  transform: scale(calc(0.55 + var(--cine-veil) * 1.35));
}
.cine-hero-veil-puff--a { width: 78vw; height: 62vw; left: -18%; top: -20%; }
.cine-hero-veil-puff--b { width: 86vw; height: 70vw; right: -22%; bottom: -28%; }
.cine-hero-veil-puff--c { width: 70vw; height: 58vw; left: 18%; top: 22%; }
.cine-hero.is-through { pointer-events: none; }

.hero {
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  position: relative;
  overflow: visible;
  z-index: 5;
  color: #fff;
  background: #1a1a1a;
}
.cine-world {
  position: absolute;
  inset: 0;
  z-index: 21;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
}
.cine-site {
  position: relative;
  z-index: 1;
  perspective: 1600px;
}
.cine-run {
  position: relative;
  height: 360vh;
}
.cine-run .hero.scene-hero {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  transform-style: preserve-3d;
}
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform;
  transform: perspective(1400px) rotateY(var(--look-x, 0deg)) rotateX(var(--look-y, 0deg));
}
.hero-card {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
  transform: translateZ(40px);
}
.hero-card-content {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255,255,255,0.87);
  padding-left: 16px;
  pointer-events: none;
}
.hero-card-content .content-place {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
}
.hero-card-content .content-title-1,
.hero-card-content .content-title-2 {
  font-weight: 600;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}
.hero-card-content .content-start {
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background-color: rgba(255,255,255,0.87);
}
.hero-details {
  z-index: 22;
  position: absolute;
  top: 240px;
  left: 60px;
  color: rgba(255,255,255,0.9);
  pointer-events: auto;
}
.hero-details .place-box {
  height: 46px;
  overflow: hidden;
}
.hero-details .place-box .text {
  position: relative;
  padding-top: 16px;
  font-size: 20px;
}
.hero-details .place-box .text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background-color: #fff;
}
.hero-details .title-1,
.hero-details .title-2 {
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.hero-details .title-box-1,
.hero-details .title-box-2 {
  margin-top: 2px;
  height: 100px;
  overflow: hidden;
}
.hero-details > .desc {
  margin-top: 16px;
  width: min(500px, calc(100vw - 120px));
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.87);
}
.hero-details > .cta {
  width: 500px;
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.hero-details .bookmark {
  border: none;
  background-color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 99px;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.hero-details .bookmark.is-on { background: #141414; }
.hero-details .discover {
  border: 1px solid #fff;
  background: transparent;
  height: 36px;
  border-radius: 99px;
  color: #fff;
  padding: 4px 24px;
  font-size: 12px;
  margin-left: 16px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.06em;
}
.hero-details .discover:hover { background: #fff; color: #141414; }
.hero-indicator {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  z-index: 60;
  background-color: var(--primary);
}
.hero-pagination {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}
.hero-arrow {
  z-index: 60;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.33);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  padding: 0;
}
.hero-arrow + .hero-arrow { margin-left: 20px; }
.hero-arrow svg { width: 24px; height: 24px; stroke-width: 2; }
.hero-arrow:hover { border-color: #fff; color: #fff; }
.hero-progress {
  margin-left: 24px;
  z-index: 60;
  width: min(500px, 36vw);
  height: 50px;
  display: flex;
  align-items: center;
}
.hero-progress-track {
  width: 100%;
  height: 3px;
  background-color: rgba(255,255,255,0.2);
}
.hero-progress-fill {
  height: 3px;
  width: 0;
  background-color: var(--primary);
}
.hero-slide-numbers {
  width: 50px;
  height: 50px;
  overflow: hidden;
  z-index: 60;
  position: relative;
}
.hero-slide-numbers .item {
  width: 50px;
  height: 50px;
  position: absolute;
  color: white;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 700;
}
.hero-cover {
  position: absolute;
  inset: 0;
  z-index: 80;
  background: #1a1a1a;
  pointer-events: auto;
}
.hero::after,
.hero::before { display: none; }

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 30;
  width: min(1180px, calc(100% - 48px));
  transform: translate(-50%, 50%);
  padding: 22px 28px 20px;
  border-radius: 18px;
  background: rgba(28, 32, 40, 0.58);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  color: #fff;
  pointer-events: auto;
  animation: heroSearchIn 0.65s 0.9s both;
}
@keyframes heroSearchIn {
  from { opacity: 0; transform: translate(-50%, 62%); }
  to { opacity: 1; transform: translate(-50%, 50%); }
}
.hero-search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.hero-search-top h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
  text-transform: none;
}
.hero-search-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-search-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}
.hero-search-tabs button i { font-size: 18px; }
.hero-search-tabs button.is-on { background: rgba(20, 20, 20, 0.72); }
.hero-search-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr auto;
  gap: 0;
  align-items: center;
}
.hero-search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 22px;
  min-width: 0;
}
.hero-search-field:first-child { padding-left: 0; }
.hero-search-field + .hero-search-field {
  border-left: 1px solid rgba(255,255,255,0.16);
}
.hero-search-field > span {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.hero-search-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.hero-search-control i { font-size: 18px; opacity: 0.92; }
.hero-search-control .ti-chevron-down { margin-left: auto; font-size: 16px; opacity: 0.7; }
.hero-search-control select {
  flex: 1;
  min-width: 0;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}
.hero-search-control select option { color: #141414; }
.hero-search-submit {
  border: 0;
  min-width: 132px;
  height: 52px;
  margin-left: 18px;
  border-radius: 10px;
  background: #1a2744;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.hero-search-submit:hover { background: #141414; }

.globe-wrap {
  position: relative;
  height: 520px;
  perspective: 1200px;
}
#globe { width: 100%; height: 100%; border-radius: 28px; }
.orbit-card {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 250px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
  animation: floaty 5s ease-in-out infinite;
}
.orbit-card .eyebrow { font-size: 1.3rem; }
.orbit-card b { color: var(--primary); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.search-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--white);
  border: 0;
  box-shadow: 0 24px 60px rgba(22, 25, 32, 0.18);
  margin-top: 28px;
  align-items: center;
}
@media (min-width: 1200px) {
  .search-bar { border-radius: 999px; padding: 16px 22px 16px 28px; }
  .search-bar .btn { border-radius: 999px; padding-left: 28px; padding-right: 28px; }
}
.search-bar label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}
.search-bar input, .search-bar select {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--heading);
  outline: none;
  font-size: 15px;
  font-weight: 600;
}
.search-field {
  padding: 6px 12px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search-field:last-of-type { border-right: 0; }

.tour-category {
  margin-top: 0;
  position: relative;
  z-index: 1;
  padding: 120px 0 40px;
  background: var(--white);
}
.category-slider {
  position: relative;
  isolation: isolate;
}
.category-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}
.category-viewport.is-grabbing { cursor: grabbing; }
.category-track {
  display: flex;
  will-change: transform;
  user-select: none;
}
.category-track img { -webkit-user-drag: none; }
.category-slide { min-width: 0; }
.category-item { transition: var(--transition); }
.category-img { position: relative; }
.category-img .ani-img {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}
.category-img .ani-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50px;
}
.category-img .shape {
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 110px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.category-img .category-arrow {
  position: absolute;
  bottom: -5px;
  left: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-size: 19px;
  transform: translateX(-50%);
}
.category-img .category-arrow i {
  display: block;
  transform: rotate(-45deg);
  transition: transform 0.5s ease;
}
.category-img .category-arrow:hover i { transform: rotate(0); }
.category-content {
  margin-top: 18px;
  text-align: center;
}
.category-content h4 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.category-content h4 a {
  font-size: 20px;
  color: var(--heading);
}
.category-content h4 a:hover { color: var(--primary); }
.category-content span {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 15px;
}
.ani-img::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}
.category-item:hover .ani-img::after {
  height: 250%;
  background-color: transparent;
  transition: all 600ms linear;
}
.category-nav {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 40px;
  height: 40px;
  margin-top: -40px;
  border: 0;
  border-radius: 50px;
  background: var(--white);
  color: var(--primary);
  font-size: 22px;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background 0.35s ease, color 0.35s ease;
}
.category-nav:hover {
  background: var(--primary);
  color: var(--white);
}
.category-nav-prev { left: -15px; }
.category-nav-next { right: -15px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tours-grid .pkg-card { height: 100%; }
.tours-grid .pkg-folder-title { font-size: 1.05rem; white-space: normal; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }

.card-3d { transform-style: preserve-3d; perspective: 1000px; }
.holiday-card, .dest-card, .article-card, .review-card, .package-card, .deal-card {
  background: var(--white);
  border: 1px solid rgba(22, 25, 32, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: var(--heading);
}
.holiday-card:hover, .dest-card:hover, .article-card:hover, .package-card:hover, .deal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(22, 25, 32, 0.14);
}
.media { position: relative; overflow: hidden; height: 230px; }
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: 0.7s ease;
}
.holiday-card:hover .media img, .dest-card:hover .media img, .deal-card:hover .media img { transform: scale(1.12); }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  border: 0;
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.price-chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: var(--white);
  color: var(--heading);
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(22,25,32,0.15);
}
.price-chip s { color: var(--text); font-weight: 600; margin-right: 6px; }
.card-body { padding: 20px 22px 22px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 8px; letter-spacing: -0.4px; }
.card-body .lede { color: var(--text); }
.meta-row {
  display: flex;
  justify-content: space-between;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 10px;
  gap: 8px;
}
.stars { color: var(--warning); letter-spacing: 1px; }
.card-actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.dest-card { position: relative; min-height: 240px; height: 100%; }
.dest-card .media {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #d7cfc4;
}
.dest-card.wide { grid-column: span 2; grid-row: span 2; }
.dest-card.wide .media { height: 100%; min-height: 498px; }
.dest-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 14px;
  color: var(--heading);
}
.dest-overlay h3 { font-size: 1.45rem; margin: 2px 0 4px; }
.dest-overlay p { color: var(--text); font-size: 14px; }
.dest-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.dest-page { padding-top: 72px; }
.dest-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 28px;
}
.dest-pill {
  --notch: 38px;
  --img-h: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  min-height: 530px;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(22, 25, 32, 0.1);
  text-align: center;
  text-decoration: none;
  color: #111;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.dest-pill:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(22, 25, 32, 0.16);
  color: #111;
}
.dest-pill-media {
  position: relative;
  height: var(--img-h);
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle var(--notch) at 50% 100%, transparent calc(var(--notch) - 0.6px), #000 var(--notch));
  mask-image: radial-gradient(circle var(--notch) at 50% 100%, transparent calc(var(--notch) - 0.6px), #000 var(--notch));
}
.dest-pill-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.7s ease;
}
.dest-pill:hover .dest-pill-media img { transform: scale(1.1); }
.dest-pill-go {
  position: absolute;
  left: 50%;
  top: var(--img-h);
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 6px solid #fff;
  box-shadow: 0 8px 18px rgba(247, 146, 31, 0.28);
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, background 0.25s ease;
}
.dest-pill-go svg { width: 22px; height: 22px; display: block; }
.dest-pill:hover .dest-pill-go { transform: translate(-50%, -50%) rotate(18deg); }
.dest-pill-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  padding: 44px 28px 48px;
}
.dest-pill-body h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #111;
}
.dest-pill-body p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
}
.dest-pill-stars {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 3px;
  line-height: 1;
}

.why-choose {
  background: var(--white);
  padding: 100px 0 110px;
  overflow: hidden;
}
.why-choose .container {
  width: min(1600px, calc(100% - 32px));
}
.why-deco-flight {
  position: absolute;
  top: 4px;
  left: 0;
  width: 320px;
  height: 180px;
  color: var(--primary);
  pointer-events: none;
  z-index: 3;
}
.why-flight-map {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.why-flight-trail {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  opacity: 0.55;
  animation: whyTrailDash 16s linear infinite;
}
.why-flight-pin { opacity: 0.9; }
.why-flight-craft {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  color: var(--primary);
  will-change: transform, opacity;
  animation: whyFlightRide 6.8s linear infinite;
}
.why-flight-craft svg { width: 100%; height: auto; display: block; }
.why-deco-balloon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 92px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  transform-origin: 50% 80%;
  will-change: transform;
  filter: drop-shadow(0 12px 16px rgba(20, 20, 20, 0.12));
  animation: whyBalloonBob 5.4s ease-in-out infinite;
}
@keyframes whyTrailDash {
  to { stroke-dashoffset: -260; }
}
@keyframes whyFlightRide {
  0% { transform: translate(8px, 128px) rotate(-18deg); opacity: 0; }
  8% { opacity: 1; }
  20% { transform: translate(46px, 68px) rotate(-48deg); opacity: 1; }
  38% { transform: translate(94px, 96px) rotate(14deg); }
  58% { transform: translate(168px, 54px) rotate(-12deg); }
  82% { transform: translate(248px, 16px) rotate(-20deg); opacity: 1; }
  100% { transform: translate(302px, 4px) rotate(-6deg); opacity: 0; }
}
@keyframes whyBalloonBob {
  0%, 100% { transform: translate(0, 0) rotate(-5deg); }
  50% { transform: translate(10px, -24px) rotate(7deg); }
}
.why-deco-js {
  animation: none !important;
}
.scene-featured .why-deco-flight {
  top: -6px;
  left: 0;
}
.scene-featured .why-deco-balloon {
  top: -10px;
  right: 0;
}
.hover-mask > .why-deco-flight {
  top: 28px;
  left: 36px;
  z-index: 9;
  color: var(--primary);
}
.hover-mask > .why-deco-balloon {
  top: 56px;
  right: 72px;
  z-index: 9;
  width: 100px;
}
.tour-video > .why-deco-flight {
  top: 24px;
  left: 3%;
  z-index: 2;
  color: var(--primary);
}
.tour-video > .why-deco-balloon {
  top: 18px;
  right: 4%;
  z-index: 2;
  width: 88px;
}
.why-choose-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 760px;
}
.why-choose-head h2 {
  margin: 4px 0 0;
  letter-spacing: -0.04em;
}
.why-choose-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 640px) minmax(220px, 1fr);
  align-items: center;
  gap: 20px 8px;
}
.why-choose-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 72px;
  min-height: 430px;
}
.why-choose-col-left {
  align-items: flex-end;
  text-align: left;
}
.why-choose-col-right {
  align-items: flex-start;
  text-align: left;
}
.why-item {
  max-width: 270px;
}
.why-item-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gray);
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.why-choose-col-left .why-item-icon { margin-left: 0; }
.why-item h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}
.why-item p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}
.why-item:hover .why-item-icon {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-6px) rotate(-8deg);
  box-shadow: 0 14px 28px rgba(247, 146, 31, 0.32);
}
.why-item:hover h3 { color: var(--primary); }
.why-choose-visual {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.why-choose-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  height: auto;
  filter: drop-shadow(0 28px 40px rgba(247, 146, 31, 0.18));
  transform-origin: center center;
  will-change: transform;
}
.why-choose-ring {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(247, 146, 31, 0.35);
  z-index: 1;
  pointer-events: none;
}
.why-choose-visual::before {
  content: "";
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 146, 31, 0.16) 0%, rgba(247, 146, 31, 0) 70%);
  z-index: 0;
}
.why-plane {
  position: absolute;
  z-index: 3;
  color: var(--primary);
  pointer-events: none;
}
.why-plane svg { width: 100%; height: auto; display: block; }
.why-plane-a {
  top: 10%;
  right: 2%;
  width: 58px;
}
.why-plane-b {
  top: 28%;
  left: 4%;
  width: 36px;
  opacity: 0.75;
}
.why-choose.is-in .why-choose-ring { animation: whySpin 28s linear infinite; }
.why-choose.is-in .why-choose-visual::before { animation: whyPulse 4.5s ease-in-out infinite; }
.why-choose.is-in .why-plane-a { animation: whyFly 4.2s ease-in-out infinite; }
.why-choose.is-in .why-plane-b { animation: whyFlyReverse 5.4s ease-in-out infinite; }
@keyframes whySpin {
  to { transform: rotate(360deg); }
}
@keyframes whyPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}
@keyframes whyFly {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(-22px, -16px) rotate(8deg); }
}
@keyframes whyFlyReverse {
  0%, 100% { transform: translate(0, 0) rotate(12deg); }
  50% { transform: translate(18px, -12px) rotate(-6deg); }
}
@keyframes whyFloat {
  0% { transform: translate3d(0, 0, 0) rotate(-1deg) scale(1); }
  40% { transform: translate3d(6px, -18px, 0) rotate(1.2deg) scale(1.03); }
  70% { transform: translate3d(-4px, -8px, 0) rotate(-0.4deg) scale(1.015); }
  100% { transform: translate3d(0, 0, 0) rotate(-1deg) scale(1); }
}
.why-choose.is-in .why-choose-visual img {
  animation: whyFloat 4.6s ease-in-out infinite;
}

.about-story { background: var(--white); overflow: visible; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 560px;
  padding: 28px 8px 48px 72px;
}
.about-photo {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  aspect-ratio: 1;
  border-radius: 36px;
  overflow: hidden;
}
.about-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.about-photo-wrap .about-photo {
  max-width: none;
  margin-left: 0;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-years {
  position: absolute;
  left: 0;
  top: 16%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.about-years strong {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -2px;
  line-height: 1;
}
.about-years span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--heading);
}
.about-team {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #fde8d2;
  box-shadow: 0 16px 40px rgba(20,20,20,0.12);
  z-index: 4;
  background: var(--white);
}
.about-team img { width: 100%; height: 100%; object-fit: cover; }
.about-balloon {
  position: absolute;
  left: 42%;
  bottom: -22px;
  z-index: 5;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(247,146,31,0.35));
  animation: balloonFloat 3.6s ease-in-out infinite;
}
.about-copy .lede { max-width: none; margin: 0 0 22px; }
.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin: 10px 0 16px;
  text-transform: none;
  letter-spacing: -1.2px;
}
.about-copy h2 em {
  font-style: normal;
  color: var(--primary);
}
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--heading);
}
.about-label-icon { display: grid; place-items: center; }
.about-feature-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border-radius: 22px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 28px;
}
.about-feature-card img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 16px;
}
.about-feature-card ul { list-style: none; display: grid; gap: 8px; }
.about-feature-card li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.4;
}
.about-feature-card li::before {
  content: "»";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 8px 8px 26px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}
.btn-about:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-about-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.about-help {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-help-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.about-help small {
  display: block;
  font-size: 13px;
  color: var(--text);
}
.about-help a {
  font-weight: 800;
  font-size: 17px;
  color: var(--heading);
  letter-spacing: -0.3px;
}
.about-help a:hover { color: var(--primary); }

.offer { background: var(--white); overflow: visible; }
.offer-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px 48px;
  align-items: end;
  margin-bottom: 48px;
}
.offer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--heading);
  margin-bottom: 12px;
}
.offer-label i { color: var(--primary); font-size: 18px; }
.offer-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.offer-head h2 em {
  font-style: normal;
  color: var(--primary);
}
.offer-head-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.offer-head-side .lede { margin: 0; max-width: 42ch; }
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.88fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.offer-col { display: grid; gap: 22px; }
.offer-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 22px;
  padding: 28px 26px 24px;
  box-shadow: 0 16px 40px rgba(22, 25, 32, 0.07);
}
.offer-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(20, 20, 20, 0.08);
  pointer-events: none;
}
.offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(247, 146, 31, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.offer-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.offer-card p {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
}
.offer-more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14.5px;
}
.offer-more:hover { color: var(--heading); }
.offer-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  min-height: 100%;
}
.offer-photo img,
.offer-photo video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

@keyframes balloonFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.pkg-band { padding: 10px 0 0; background: var(--white); }
.pkg-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 22px;
  padding: 28px 12px;
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
  text-align: center;
  margin-bottom: -48px;
}
.pkg-stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.pkg-stats p {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}
.pkg-stats > div:not(:last-child) { border-right: 1px solid rgba(20,20,20,0.08); }
.pkg-band-body {
  background:
    linear-gradient(180deg, rgba(12, 16, 22, 0.72), rgba(12, 16, 22, 0.78)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80") center/cover;
  padding: 120px 0 88px;
}
.pkg-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.pkg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}
.pkg-head h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-transform: none;
  margin: 0 0 14px;
}
.pkg-head h2 em { font-style: normal; color: var(--primary); }
.pkg-head p { color: rgba(255,255,255,0.82); margin: 0 auto; max-width: 540px; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 12px;
  align-items: start;
  padding: 50px;
}
.pkg-card {
  --ink: #1e3a6e;
  --bar: #f5b942;
  --spring: cubic-bezier(.22,.86,.24,1);
  --speed: 400ms;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px 10px 14px;
  overflow: visible;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 12px 32px rgba(20, 20, 20, 0.08);
  border: 1px solid rgba(20, 20, 20, 0.06);
  transition: transform var(--speed) var(--spring), box-shadow var(--speed) var(--spring);
}
.pkg-visual {
  position: relative;
  height: 290px;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  flex: 0 0 auto;
}
.pkg-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform var(--speed) var(--spring);
}
.pkg-flag {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}
.pkg-fav {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.pkg-infobar {
  position: absolute;
  z-index: 3;
  left: 17px;
  right: 17px;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  width: auto;
  max-width: none;
  margin: 0;
  min-height: 38px;
  padding: 0 12px;
  box-sizing: border-box;
  background: var(--bar);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px 10px 14px 14px;
}
.pkg-infobar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pkg-infobar span:last-child {
  justify-content: flex-end;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,.55);
}
.pkg-infobar i { font-size: 15px; flex-shrink: 0; }
.pkg-folder {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 6px 2px;
  color: #141414;
}
.pkg-reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}
.pkg-stars {
  display: inline-flex;
  gap: 1px;
  color: #f5b942;
  font-size: 13px;
}
.pkg-stars .ti-star { color: #d1d5db; opacity: 1; }
.pkg-folder-title {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #141414;
}
.pkg-rule {
  height: 0;
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  margin: 2px 0;
}
.pkg-nights {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
}
.pkg-nights i { color: var(--ink); }
.pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pkg-tags span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  background: #e8eef8;
  color: var(--ink);
}
.pkg-folder-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}
.pkg-perday small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
}
.pkg-perday {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.15;
  color: #141414;
}
.pkg-booknow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 6px 6px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.pkg-booknow i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}
.pkg-card:is(:hover, :focus-visible, .is-open) {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
}
.pkg-card:is(:hover, :focus-visible, .is-open) .pkg-bg { transform: scale(1.05); }
.pkg-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }

.about-panel {
  background: var(--gray);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
}
.about-checks { display: grid; gap: 16px; margin-top: 28px; }
.about-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  padding: 16px;
  border-radius: 14px;
}
.about-check h3 { font-size: 1.05rem; margin-bottom: 2px; }

.stats {
  background:
    linear-gradient(180deg, rgba(22,25,32,0.72), rgba(22,25,32,0.82)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=70") center/cover fixed;
  text-align: center;
  color: rgba(255,255,255,0.8);
}
.stats h2, .stats .eyebrow { color: var(--white); }
.stats .eyebrow { color: var(--primary); }
.stat-num {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  letter-spacing: -2px;
}
.stats p { color: rgba(255,255,255,0.78); }
.trustpilot {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
}

.tour-video {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: #1c222c;
  color: var(--white);
  text-align: center;
  padding: 88px 0 0;
  margin-bottom: calc(min(1400px, 100vw - 40px) / 5.1 + 56px);
  z-index: 2;
}
.tour-video-grid {
  position: absolute;
  inset: -40% -20% 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 26px, rgba(255,255,255,0.045) 26px 27px),
    repeating-linear-gradient(-45deg, transparent 0 26px, rgba(255,255,255,0.045) 26px 27px);
  background-size: 76px 76px;
  animation: tourGridMove 32s linear infinite;
}
.tour-video-sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.tour-video .container { position: relative; z-index: 2; }
.tour-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: var(--white);
  color: var(--heading);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.tour-video-badge i {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
}
.tour-video h2 {
  color: var(--white);
  text-transform: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  max-width: 14em;
  margin: 0 auto;
  letter-spacing: -1.2px;
  line-height: 1.18;
}
.tour-video h2 em {
  font-family: var(--script);
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  letter-spacing: 0;
}
.tour-video-frame {
  display: block;
  position: relative;
  z-index: 3;
  width: min(1400px, calc(100% - 40px));
  aspect-ratio: 2.55 / 1;
  margin: -147px auto 0;
  padding: 0;
  border: 10px solid var(--white);
  border-radius: 999px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
  transform: translateY(50%);
}
.tour-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.tour-video-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease;
}
.tour-video-shot.is-on {
  opacity: 1;
  animation: tourKen 18s ease-in-out infinite alternate;
}
.tour-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 28px;
  z-index: 2;
  box-shadow: 0 0 0 14px rgba(247,146,31,0.22);
  animation: tourPlayPulse 2.2s ease-in-out infinite;
}
.tour-video-frame:hover .tour-video-play { transform: translate(-50%, -50%) scale(1.06); }
.tour-float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  will-change: transform;
}
.tour-float svg { display: block; width: 100%; height: 100%; }
.tour-float-plane { color: rgba(255,255,255,0.82); width: 108px; }
.tour-float-plane.a { top: 22%; left: -12%; animation: tourFlyAcross 16s linear infinite; }
.tour-float-plane.b { top: 58%; left: -18%; width: 84px; color: rgba(255,255,255,0.55); animation: tourFlyAcross 22s linear infinite 4s; }
.tour-float-plane.c { top: 36%; left: -10%; width: 72px; color: var(--primary); animation: tourFlyAcrossRev 19s linear infinite 2s; }
.tour-float-chute { color: var(--primary); width: 42px; }
.tour-float-chute.a { top: -8%; right: 12%; animation: tourChuteFall 9s linear infinite; }
.tour-float-chute.b { top: -12%; left: 10%; width: 34px; color: #5ec8ff; animation: tourChuteFall 12s linear infinite 2s; }
.tour-float-chute.c { top: -6%; left: 46%; width: 30px; color: #ffd24a; animation: tourChuteFall 10s linear infinite 1s; }
.tour-float-chute.d { top: -10%; right: 28%; width: 36px; color: #ff9f43; animation: tourChuteFall 14s linear infinite 5s; }
.tour-video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20,20,20,0.86);
}
.tour-video-modal.is-on { display: flex; }
.tour-video-modal-frame {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}
.tour-video-modal iframe { width: 100%; height: 100%; border: 0; }
.tour-video-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--heading);
  cursor: pointer;
  font-size: 22px;
}
@keyframes tourGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 76px 76px, -76px 76px; }
}
@keyframes tourKen {
  from { transform: scale(1.04); }
  to { transform: scale(1.14); }
}
@keyframes tourPlayPulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(247,146,31,0.2); }
  50% { box-shadow: 0 0 0 22px rgba(247,146,31,0.08); }
}
@keyframes tourFlyAcross {
  from { transform: translateX(0) translateY(0) rotate(-8deg); }
  to { transform: translateX(120vw) translateY(-24px) rotate(4deg); }
}
@keyframes tourFlyAcrossRev {
  from { transform: translateX(120vw) translateY(10px) rotate(8deg) scaleX(-1); }
  to { transform: translateX(-20vw) translateY(-16px) rotate(-4deg) scaleX(-1); }
}
@keyframes tourChuteFall {
  0% { transform: translateY(0) translateX(0) rotate(-8deg); opacity: 0; }
  8% { opacity: 1; }
  50% { transform: translateY(46vh) translateX(22px) rotate(10deg); opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateY(92vh) translateX(-10px) rotate(-6deg); opacity: 0; }
}

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { padding: 26px; min-height: 280px; display: flex; flex-direction: column; }
.quote { color: var(--text-two); flex: 1; margin: 12px 0 20px; }
.person { display: flex; gap: 12px; align-items: center; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--primary);
}

.feedback {
  background: var(--white);
  overflow: visible;
  padding-left: 50px;
  padding-right: 50px;
}
.feedback-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 48px 56px;
  align-items: center;
}
.feedback-intro h2 {
  margin: 4px 0 28px;
  letter-spacing: -0.04em;
}
.feedback-visual {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.feedback-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 146, 31, 0.22) 0%, rgba(247, 146, 31, 0) 70%);
  z-index: 0;
}
.feedback-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(247, 146, 31, 0.16));
}
.feedback-list {
  display: grid;
  gap: 22px;
}
.feedback-card {
  background: var(--white);
  border: 0;
  border-radius: 18px;
  padding: 28px 30px 24px;
  box-shadow: 0 16px 40px rgba(22, 25, 32, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feedback-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(247, 146, 31, 0.16);
}
.feedback-quote {
  color: var(--heading);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 22px;
}
.feedback-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.feedback-card .person strong {
  display: block;
  color: var(--heading);
  font-size: 0.98rem;
}
.feedback-card .person span {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  margin-top: 2px;
}
.feedback-card .stars {
  color: var(--primary);
  letter-spacing: 2px;
  font-size: 15px;
  flex: 0 0 auto;
}
.feedback.is-in .feedback-visual img {
  animation: feedbackFloat 4.4s ease-in-out infinite;
}
.feedback.is-in .feedback-glow {
  animation: whyPulse 4.5s ease-in-out infinite;
}
@keyframes feedbackFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.dream-cta {
  position: relative;
  z-index: 2;
  padding: 40px 50px 20px;
  background: var(--white);
  overflow: visible;
}
.dream-cta-frame {
  position: relative;
  overflow: visible;
  min-height: 340px;
  border-radius: 28px;
  color: var(--white);
  text-align: center;
  padding: 92px 180px 56px;
  background:
    linear-gradient(180deg, rgba(12, 16, 22, 0.52) 0%, rgba(12, 16, 22, 0.62) 100%),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=2000&q=80") center/cover;
  box-shadow: 0 24px 50px rgba(22, 25, 32, 0.16);
}
.dream-cta-people {
  position: absolute;
  bottom: 0;
  z-index: 2;
  height: 118%;
  width: auto;
  max-width: 34%;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}
.dream-cta-people-l { left: 18px; }
.dream-cta-people-r { right: 18px; }
.dream-cta-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
  margin: 0 auto;
}
.dream-cta-copy h2 {
  color: var(--white);
  text-transform: none;
  font-size: clamp(1.7rem, 3.4vw, 2.85rem);
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  line-height: 1.18;
}
.dream-cta-copy h2 em {
  font-style: normal;
  color: var(--primary);
}
.dream-cta-copy p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 28px;
  max-width: 520px;
  line-height: 1.7;
}
.dream-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.dream-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  font-weight: 700;
  font-size: 15px;
  min-height: 52px;
}
.dream-cta-btn span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.dream-cta-btn-solid {
  background: var(--primary);
  color: var(--white);
}
.dream-cta-btn-solid span {
  background: var(--white);
  color: var(--primary);
}
.dream-cta-btn-solid:hover {
  background: var(--heading);
  color: var(--white);
}
.dream-cta-btn-line {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--primary);
}
.dream-cta-btn-line span {
  background: var(--primary);
  color: var(--white);
}
.dream-cta-btn-line:hover {
  background: var(--primary);
  color: var(--white);
}

.gallery-band { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 48px 36px;
  align-items: center;
  padding: 50px;
}
.gallery-copy { max-width: 460px; }
.gallery-copy [data-copy] { opacity: 0; }
.gallery-copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  text-transform: none;
  letter-spacing: -1.2px;
  margin: 0 0 18px;
  line-height: 1.18;
}
.gallery-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.28em;
}
.gallery-word > span { display: inline-block; }
.gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 5px 18px 5px 5px;
  font-family: var(--script);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 18px;
}
.gallery-label-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
}
.gallery-copy .lede {
  max-width: none;
  margin: 0 0 28px;
}
.gallery-shots {
  display: flex;
  align-items: stretch;
  gap: 14px;
  height: 390px;
}
.gallery-shot {
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  display: block;
  flex-grow: 0.72;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 68px;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  color: inherit;
  border-radius: 999px;
  transition: flex-grow 0.55s var(--ease);
}
.gallery-shots:not(:has(.gallery-shot:hover, .gallery-shot:focus-visible, .gallery-shot.is-open)) .gallery-shot:first-child,
.gallery-shot:hover,
.gallery-shot:focus-visible,
.gallery-shot.is-open {
  flex-grow: 3.15;
  min-width: 210px;
}
.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.55s var(--ease);
}
.gallery-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.gallery-hover i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(247, 146, 31, 0.35);
  transform: scale(.82);
  transition: transform 0.35s var(--ease), background 0.35s ease;
}
.gallery-shot:hover img,
.gallery-shot:focus-visible img,
.gallery-shot.is-open img { transform: scale(1.08); }
.gallery-shot:hover .gallery-hover,
.gallery-shot:focus-visible .gallery-hover,
.gallery-shot.is-open .gallery-hover {
  opacity: 1;
  visibility: visible;
}
.gallery-shot:hover .gallery-hover i,
.gallery-shot:focus-visible .gallery-hover i,
.gallery-shot.is-open .gallery-hover i {
  transform: scale(1);
  background: var(--primary);
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(20, 20, 20, 0.82);
}
.gallery-lightbox.is-on { display: flex; }
.gallery-lightbox img {
  max-width: min(920px, 100%);
  max-height: 86vh;
  border-radius: 18px;
  object-fit: contain;
}
.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--heading);
  cursor: pointer;
  font-size: 22px;
}

.voyager-pro {
  background: linear-gradient(180deg, #f7f5f2 0%, #efe8dc 100%);
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}
.vp-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.vp-plane {
  position: absolute;
  color: rgba(247, 146, 31, 0.18);
  animation: vp-plane-float 6s ease-in-out infinite;
}
.vp-plane i { font-size: inherit; }
.vp-plane--left { left: 72px; top: 170px; font-size: 66px; }
.vp-plane--top { left: 54%; top: 24px; font-size: 72px; animation-delay: 0.8s; }
.vp-plane--right { right: 78px; top: 182px; font-size: 64px; animation-delay: 1.4s; }
.vp-craft {
  position: absolute;
  left: 18px;
  top: 118px;
  width: min(28vw, 240px);
  height: auto;
  z-index: 2;
  pointer-events: none;
  transform-origin: 45% 55%;
  will-change: transform;
  filter: drop-shadow(0 10px 16px rgba(20, 20, 20, 0.18));
  animation: vpCraftBob 2.8s ease-in-out infinite;
}
.vp-craft.vp-craft-js { animation: none; }
@keyframes vpCraftBob {
  0%, 100% { transform: translateY(18px); }
  50% { transform: translateY(-42px); }
}
.vp-curve {
  position: absolute;
  border-top: 2px dashed rgba(20, 20, 20, 0.14);
  border-radius: 999px;
}
.vp-curve--left { left: 28px; top: 190px; width: 230px; height: 75px; }
.vp-curve--right { right: 30px; top: 186px; width: 246px; height: 80px; }
@keyframes vp-plane-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.vp-balloon {
  position: absolute;
  height: auto;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 10px 14px rgba(20, 20, 20, 0.18));
}
.vp-balloon.a {
  top: 6%;
  right: 3%;
  width: 88px;
  animation: vpBalloonBob 3.8s ease-in-out infinite;
}
.vp-balloon.b {
  top: 52%;
  left: 1%;
  width: 66px;
  animation: vpBalloonBob 4.6s ease-in-out infinite reverse;
  animation-delay: -1.4s;
}
.vp-fly {
  position: absolute;
  z-index: 1;
  color: var(--primary);
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(20, 20, 20, 0.16));
}
.vp-fly svg { display: block; width: 100%; height: auto; }
.vp-fly.a {
  width: 56px;
  top: 16%;
  left: -10%;
  animation: vpFlyAcross 8s linear infinite;
}
.vp-fly.b {
  width: 40px;
  top: 68%;
  left: -12%;
  color: var(--heading);
  animation: vpFlyAcross 12s linear infinite;
  animation-delay: -4.5s;
}
.vp-fly.c {
  width: 48px;
  top: 38%;
  left: -10%;
  animation: vpFlyAcrossRev 10s linear infinite;
  animation-delay: -2.5s;
}
@keyframes vpBalloonBob {
  0%, 100% { transform: translateY(26px) rotate(-4deg); }
  50% { transform: translateY(-58px) rotate(5deg); }
}
@keyframes vpFlyAcross {
  0% { transform: translate(-8vw, 0) rotate(-8deg); opacity: 0; }
  8% { opacity: 1; }
  50% { transform: translate(54vw, -22px) rotate(7deg); }
  92% { opacity: 1; }
  100% { transform: translate(112vw, 10px) rotate(-4deg); opacity: 0; }
}
@keyframes vpFlyAcrossRev {
  0% { transform: translate(110vw, 0) rotate(170deg) scaleX(-1); opacity: 0; }
  8% { opacity: 1; }
  100% { transform: translate(-14vw, -20px) rotate(190deg) scaleX(-1); opacity: 0; }
}
.voyager-pro .container,
.vp-container { position: relative; z-index: 1; }
.vp-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.vp-head h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.04em;
  animation: vp-title-enter 0.9s ease-out both, vp-title-float 4s ease-in-out 1s infinite;
}
.vp-head h2 em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  animation: vp-em-sweep 2.8s ease-in-out 1.1s infinite;
}
.vp-head .lede {
  margin: 0 auto;
  max-width: 640px;
  animation: vp-text-reveal 1s ease-out 0.35s both;
}
.vp-container {
  display: flex;
  gap: 34px;
  align-items: center;
}
.vp-left { flex: 1; height: 520px; min-width: 0; }
.vp-left canvas {
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
}
.vp-right {
  flex: 1;
  min-width: 0;
  color: var(--heading);
  display: flex;
  align-items: center;
  min-height: 420px;
}
.vp-placeholder { opacity: 0.92; color: var(--text); }
.vp-placeholder h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
}
.vp-placeholder p { margin: 0; }
.vp-card {
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.1);
}
.voyager-pro .vp-hidden { display: none; }
#vp-map {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  margin-bottom: 15px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: #e8e4dc;
  z-index: 1;
}
.vp-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(20, 20, 20, 0.08);
}
.vp-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#vp-title {
  margin: 0 0 5px;
  color: var(--heading);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
#vp-desc {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
.vp-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vp-copy { min-width: 0; }
#vp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--heading);
  color: var(--white);
  border: 1px solid var(--heading);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
#vp-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
@keyframes vp-title-enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vp-title-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes vp-text-reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vp-em-sweep {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

.help-band {
  background:
    linear-gradient(90deg, rgba(20,20,20,0.82), rgba(247,146,31,0.55)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=70") center/cover;
  color: var(--white);
  border-radius: 0;
}
.help-band h2, .help-band .lede { color: var(--white); }
.help-form {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 12px;
}
.help-form input, .help-form select, .help-form textarea {
  background: var(--gray);
  border: 1px solid transparent;
  color: var(--heading);
}

.newsletter {
  background: var(--gray);
  border-radius: 28px;
  padding: 56px 44px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  border: 0;
}
.news-form { display: flex; gap: 10px; margin-top: 22px; }
.news-form input {
  flex: 1;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--heading);
  padding: 14px 18px;
  outline: none;
}

.booking { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
.book-panel, .form-panel {
  background: var(--white);
  border: 1px solid rgba(22, 25, 32, 0.06);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label.field { display: block; font-size: 13px; color: var(--text); margin-bottom: 6px; font-weight: 600; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
  width: 100%;
  background: var(--gray);
  border: 1px solid transparent;
  color: var(--heading);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: var(--transition);
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); background: var(--white); }
textarea { min-height: 110px; resize: vertical; }

.contact-desk {
  background: var(--white);
  overflow: visible;
  padding-top: 56px;
  padding-bottom: 24px;
}
.contact-desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px 56px;
  align-items: start;
}
.contact-desk-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 16px;
}
.contact-desk-copy h2 em {
  font-style: normal;
  color: var(--primary);
}
.contact-desk-copy .lede {
  max-width: 48ch;
  margin: 0 0 32px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-info-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px 20px 22px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(22, 25, 32, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  perspective: 600px;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(247, 146, 31, 0.14);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(247, 146, 31, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 22px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), background 0.35s ease;
}
.contact-info-card:hover .contact-info-icon {
  transform: rotateY(360deg);
  background: var(--primary);
  color: var(--white);
}
.contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  transition: color 0.35s ease, transform 0.35s ease;
}
.contact-info-card p,
.contact-info-card a {
  display: block;
  font-size: 14.5px;
  color: var(--heading);
  font-weight: 600;
  transition: color 0.35s ease, transform 0.35s ease;
}
.contact-info-card:hover h3 {
  color: var(--primary);
  transform: translateY(-3px);
}
.contact-info-card:hover p,
.contact-info-card:hover a {
  color: var(--primary);
  transform: translateY(-2px);
}
.contact-box {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: 0 18px 50px rgba(22, 25, 32, 0.08);
}
.contact-box h3 {
  text-align: center;
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.contact-box-rule {
  width: 56px;
  height: 2px;
  background: rgba(83, 91, 95, 0.18);
  margin: 0 auto 26px;
}
.contact-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-box-grid .full { grid-column: 1 / -1; }
.contact-box input,
.contact-box textarea {
  background: var(--white);
  border: 1px solid rgba(83, 91, 95, 0.22);
  border-radius: 12px;
  padding: 13px 16px;
}
.contact-box textarea { min-height: 150px; }
.contact-box-submit {
  display: block;
  width: 100%;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  padding: 16px 22px;
  cursor: pointer;
  transition: var(--transition);
}
.contact-box-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}
.contact-map {
  margin-top: 56px;
  height: 420px;
  background: #d8dde3;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.insta-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.insta-row a {
  display: block;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
}
.insta-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.insta-row a:hover img { transform: scale(1.1); }

.site-footer {
  --footer-ink: #141414;
  --footer-panel: #2a1c16;
  position: relative;
  z-index: 6;
  margin-top: 170px;
  padding: 0;
  color: rgba(255,255,255,0.76);
  background:
    linear-gradient(90deg, rgba(20,20,20,0.82), rgba(247,146,31,0.55)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=70") center/cover no-repeat;
  background-color: var(--footer-ink);
}
.site-footer > .container { position: relative; z-index: 1; }
.site-footer h2,
.site-footer h3 { color: var(--white); text-transform: none; letter-spacing: -0.03em; }
.site-footer h3 { font-size: 1.2rem; margin-bottom: 18px; }
.site-footer .logo { color: var(--white); margin-bottom: 16px; }
.site-footer .lede {
  color: rgba(255,255,255,0.68);
  max-width: none;
  font-size: 14.5px;
  line-height: 1.7;
}
.site-footer a { color: rgba(255,255,255,0.76); }
.site-footer a:hover { color: var(--primary); }

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: stretch;
  background: var(--footer-panel);
  border-radius: 18px;
  margin-top: -90px;
  margin-bottom: 56px;
  padding: 0 8px 0 40px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  overflow: visible;
}
.footer-cta-copy { padding: 38px 20px 34px 0; }
.footer-cta h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.25;
  margin: 0 0 12px;
  max-width: 18ch;
}
.footer-cta-copy > p {
  max-width: 46ch;
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
}
.footer-cta-contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.footer-cta-contacts > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}
.footer-cta-contacts strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.footer-cta-contacts a,
.footer-cta-contacts span {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.4;
}
.footer-cta-visual {
  position: relative;
  min-height: 220px;
}
.footer-cta-visual img {
  position: absolute;
  right: 18px;
  bottom: 0;
  height: calc(100% + 78px);
  width: auto;
  max-width: 270px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.35));
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.1fr;
  gap: 36px 28px;
  padding-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
}
.footer-social a:hover {
  background: var(--white);
  color: var(--primary);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.footer-links a i { color: var(--primary); font-size: 16px; }
.footer-links a:hover { color: var(--white); transform: translateX(3px); }

.footer-news {
  position: relative;
  margin-top: 18px;
}
.footer-news input[type="email"] {
  width: 100%;
  height: 52px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0 58px 0 22px;
}
.footer-news input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.footer-news input[type="email"]:focus {
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border-color: var(--primary);
}
.footer-news button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: var(--transition);
}
.footer-news button:hover {
  background: var(--white);
  color: var(--primary);
}

.footer-bottom {
  background: var(--footer-ink);
  text-align: center;
  padding: 16px 20px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  margin-top: 12px;
}
.legal { display: none; }

.world-tour {
  --wt-blue: #5ec8ff;
  --wt-yellow: #ffd24a;
  --wt-ink: #0b2344;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #2e2e2e;
  color: var(--white);
  padding: 88px 0 96px;
}
.world-tour-rip {
  position: absolute;
  left: -1px;
  right: -1px;
  height: 52px;
  z-index: 6;
  pointer-events: none;
  line-height: 0;
}
.world-tour-rip svg { width: 100%; height: 100%; display: block; }
.world-tour-rip-top { top: -1px; }
.world-tour-rip-bottom { bottom: -1px; transform: scaleY(-1); }
.world-tour-pyramids {
  position: absolute;
  inset: 18% 0 8% 42%;
  background:
    linear-gradient(90deg, rgba(46,46,46,0.55), rgba(46,46,46,0.12) 40%, transparent 70%),
    url("https://images.unsplash.com/photo-1503177119275-0aa32b3a9368?auto=format&fit=crop&w=1400&q=60") right center / cover no-repeat;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.world-tour-halftone {
  position: absolute;
  width: 320px;
  height: 240px;
  left: 2%;
  top: 10%;
  background-image: radial-gradient(rgba(0,0,0,0.42) 1.35px, transparent 1.5px);
  background-size: 11px 11px;
  mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 72%);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.world-tour-dash {
  position: absolute;
  width: 48%;
  right: -2%;
  bottom: 22%;
  border-top: 2px dashed rgba(94, 200, 255, 0.42);
  transform: rotate(-16deg);
  z-index: 1;
  pointer-events: none;
}
.world-tour-star,
.world-tour-plus,
.world-tour-x {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.world-tour-star {
  width: 10px;
  height: 10px;
  background: var(--wt-yellow);
  clip-path: polygon(50% 0, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0 50%, 39% 35%);
  animation: wtFloat 4.8s ease-in-out infinite;
}
.world-tour-star.s1 { top: 14%; left: 46%; }
.world-tour-star.s2 { top: 18%; right: 18%; animation-delay: -1.4s; }
.world-tour-star.s3 { bottom: 16%; left: 38%; width: 8px; height: 8px; animation-delay: -2.2s; }
.world-tour-plus,
.world-tour-x {
  width: 14px;
  height: 14px;
  animation: wtFloat 5.6s ease-in-out infinite;
}
.world-tour-plus::before,
.world-tour-plus::after,
.world-tour-x::before,
.world-tour-x::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.world-tour-plus::before { left: 5px; top: 0; width: 4px; height: 14px; }
.world-tour-plus::after { left: 0; top: 5px; width: 14px; height: 4px; }
.world-tour-x::before,
.world-tour-x::after {
  left: 6px;
  top: 0;
  width: 3px;
  height: 14px;
}
.world-tour-x::before { transform: rotate(45deg); }
.world-tour-x::after { transform: rotate(-45deg); }
.world-tour-plus.p1 { color: var(--wt-yellow); top: 28%; right: 10%; }
.world-tour-plus.p2 { color: var(--wt-blue); bottom: 28%; left: 8%; animation-delay: -1.8s; }
.world-tour-x.x1 { color: var(--wt-blue); top: 36%; left: 44%; animation-delay: -0.8s; }
.world-tour-x.x2 { color: var(--wt-yellow); bottom: 24%; right: 28%; animation-delay: -2.6s; }
.world-tour-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.7fr 0.75fr;
  align-items: center;
  gap: 28px 32px;
  position: relative;
  z-index: 2;
}
.world-tour-photo { position: relative; }
.world-tour-photo-frame {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 16 / 10;
  margin-left: -12px;
}
.world-tour-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  clip-path: polygon(
    3% 10%, 9% 4%, 18% 8%, 28% 3%, 40% 7%, 52% 2%, 64% 6%, 76% 3%, 88% 8%, 97% 5%,
    99% 16%, 96% 28%, 99% 42%, 96% 56%, 99% 70%, 95% 84%, 98% 94%,
    86% 97%, 74% 94%, 62% 98%, 50% 94%, 38% 98%, 26% 93%, 14% 97%, 4% 91%,
    1% 78%, 4% 64%, 1% 50%, 4% 36%, 1% 22%
  );
  filter:
    drop-shadow(3px 0 0 #fff)
    drop-shadow(-3px 0 0 #fff)
    drop-shadow(0 3px 0 #fff)
    drop-shadow(0 -3px 0 #fff)
    drop-shadow(10px 16px 18px rgba(0,0,0,0.35));
  transform-origin: center;
  will-change: transform;
}
.world-tour-copy { position: relative; z-index: 5; padding-top: 8px; max-width: 16ch; }
.world-tour-copy .eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
}
.world-tour-copy h2 {
  margin: 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -1.5px;
  text-transform: none;
  color: var(--white);
}
.world-tour-copy h2 a {
  color: inherit;
  text-decoration: none;
}
.world-tour-copy h2 a:hover { color: var(--white); }
.world-tour-copy h2 em {
  font-family: var(--script);
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  letter-spacing: 0;
}
.world-tour-illus {
  position: relative;
  width: min(100%, 360px);
  z-index: 4;
  justify-self: end;
  align-self: center;
  pointer-events: none;
}
.world-tour-illus-bob {
  width: 100%;
  will-change: transform;
  animation: wtFloat 5.2s ease-in-out infinite;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.42));
}
.world-tour-illus video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  background: transparent;
}
@keyframes wtFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}

.flight-moments {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 110vh;
  padding: 80px 0 48px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(6, 18, 36, 0.28) 0%, rgba(6, 18, 36, 0.08) 38%, rgba(6, 16, 32, 0.34) 100%),
    url("../img/moments/bg.png") center / cover no-repeat;
  background-color: #16324f;
}
.fm-sun {
  position: absolute;
  top: 6%;
  right: 12%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8dd 0%, #ffe9a8 35%, rgba(255, 233, 168, 0) 70%);
  box-shadow: 0 0 90px 40px rgba(255, 241, 190, 0.45);
  animation: fmSun 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.fm-sky {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.fm-doodles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  opacity: 0.55;
}
.fm-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  opacity: 0.8;
  animation: fmDash 18s linear infinite;
}
.fm-cloud {
  position: absolute;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(2px);
  animation: fmDrift linear infinite;
}
.fm-star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
  animation: fmStarTwinkle 2.4s ease-in-out infinite;
}
.fm-doodle {
  position: absolute;
  width: 42px;
  color: #fff;
  opacity: 0.85;
  animation: fmFloaty 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
  z-index: 1;
}
.fm-doodle svg { display: block; width: 100%; height: auto; }
.fm-doodle.paper { width: 46px; }
.fm-doodle.chute { width: 44px; color: var(--primary); }
.fm-doodle.balloon {
  width: 46px;
  animation: fmBalloonBob 4.2s ease-in-out infinite;
}
.fm-float-balloon {
  position: absolute;
  height: auto;
  will-change: transform;
  z-index: 2;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.22));
}
.fm-float-balloon.a {
  top: 12%;
  right: 3%;
  width: 88px;
  animation: fmBalloonBob 4s ease-in-out infinite;
}
.fm-float-balloon.b {
  top: 42%;
  left: 1%;
  width: 64px;
  animation: fmBalloonBob 4.8s ease-in-out infinite reverse;
  animation-delay: -1.6s;
}
.fm-craft {
  position: absolute;
  z-index: 2;
  color: #fff;
  line-height: 1;
  font-size: 28px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  animation: fmCraftA 9s linear infinite;
}
.fm-craft.c2 { font-size: 22px; animation-name: fmCraftB; animation-duration: 13s; animation-delay: 2s; }
.fm-craft.c3 { font-size: 24px; animation-name: fmCraftC; animation-duration: 16s; animation-delay: 5s; }
.fm-inner { position: relative; z-index: 3; width: 100%; }
.fm-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}
.fm-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-transform: none;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}
.fm-title em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0;
  display: inline-block;
}
.fm-title .fm-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.28em;
}
.fm-title .fm-word > span {
  display: inline-block;
  transform: translateY(110%);
}
.flight-moments.is-in .fm-title .fm-word > span {
  animation: fmWordUp 0.75s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}
.fm-sub {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(18px);
}
.fm-sub span {
  color: var(--primary);
  font-weight: 700;
}
.flight-moments.is-in .fm-sub {
  animation: fmSubIn 0.8s cubic-bezier(0.2, 0.8, 0.25, 1) 0.35s forwards;
}
.fm-windows {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.2vw;
  z-index: 3;
  flex-wrap: nowrap;
  min-height: 560px;
  margin-top: 12px;
}
.fm-window {
  position: relative;
  width: 20vw;
  height: 560px;
  max-width: 280px;
  max-height: none;
  min-width: 168px;
  min-height: 500px;
  flex: 0 0 auto;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) scale(0.85);
  overflow: visible;
}
.flight-moments.is-in .fm-window {
  animation: fmWinIn 0.9s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}
.flight-moments.is-in .fm-window:nth-child(1) { animation-delay: 0.15s; }
.flight-moments.is-in .fm-window:nth-child(2) { animation-delay: 0.4s; }
.flight-moments.is-in .fm-window:nth-child(3) { animation-delay: 0.65s; }
.flight-moments.is-in .fm-window:nth-child(4) { animation-delay: 0.9s; }
.fm-frame {
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 56%;
  bottom: auto;
  border-radius: 20% 20% 16% 16% / 15% 15% 12% 12%;
  background: linear-gradient(135deg, #fff 0%, #cfd1d5 18%, #a9acb2 45%, #eceded 60%, #9a9da3 100%);
  box-shadow: 0 18px 30px -12px rgba(0, 0, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  animation: fmBob 5s ease-in-out infinite;
}
.fm-window:nth-child(2) .fm-frame { animation-delay: 0.4s; }
.fm-window:nth-child(3) .fm-frame { animation-delay: 0.8s; }
.fm-window:nth-child(4) .fm-frame { animation-delay: 1.2s; }
.fm-traveler {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 6;
  height: 84%;
  width: auto;
  max-width: 128%;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(-50%);
  pointer-events: none;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.38));
  animation: fmTravelerBob 4.6s ease-in-out infinite;
}
.fm-window:nth-child(2) .fm-traveler { animation-delay: 0.5s; }
.fm-window:nth-child(3) .fm-traveler { animation-delay: 1s; }
.fm-window:nth-child(4) .fm-traveler { animation-delay: 1.5s; }
.fm-glass {
  position: absolute;
  top: 4.5%;
  left: 21%;
  right: 21%;
  height: 47%;
  bottom: auto;
  border-radius: 22% 22% 18% 18% / 17% 17% 13% 13%;
  overflow: hidden;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.55), inset 0 0 24px rgba(0, 0, 0, 0.35);
}
.fm-photo {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  animation: fmKen 12s ease-in-out infinite alternate;
}
.fm-sparkle {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0) 1.5%),
    radial-gradient(circle at 68% 22%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0) 1%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.6) 0, rgba(255, 255, 255, 0) 1%);
  mix-blend-mode: screen;
  animation: fmTwinkle 3s ease-in-out infinite;
  pointer-events: none;
}
.fm-glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 22%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 60%);
  transform: skewX(-12deg);
  pointer-events: none;
  z-index: 3;
}
.fm-shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  z-index: 4;
  background: linear-gradient(180deg, #fdfdfd 0%, #e6e7e9 55%, #d3d5d8 100%);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.08), 0 10px 16px -6px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transform-origin: top;
  transition: transform 2.4s cubic-bezier(0.45, 0, 0.2, 1), box-shadow 2.4s ease;
  pointer-events: none;
}
.fm-shade::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 26%;
  height: 4px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 3px;
  transform: translateX(-50%);
}
.fm-window:hover .fm-shade,
.fm-window:focus-visible .fm-shade,
.fm-window.is-open .fm-shade {
  transform: translateY(-100%);
  box-shadow: none;
  transition-duration: 1.05s;
}
@keyframes fmSun {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes fmBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fmTravelerBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes fmKen {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, -1.5%); }
}
@keyframes fmTwinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes fmStarTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.3); }
}
@keyframes fmWordUp {
  to { transform: translateY(0); }
}
@keyframes fmSubIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fmDrift {
  from { transform: translateX(-20vw); }
  to { transform: translateX(120vw); }
}
@keyframes fmDash {
  to { stroke-dashoffset: -280; }
}
@keyframes fmCraftA {
  0% { left: 71%; top: 4%; opacity: 0; transform: rotate(18deg); }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 100%; top: 27%; opacity: 0; transform: rotate(38deg); }
}
@keyframes fmCraftB {
  0% { left: -3%; top: 49%; opacity: 0; transform: rotate(8deg); }
  8% { opacity: 1; }
  40% { left: 11%; top: 58%; }
  70% { left: 3%; top: 72%; }
  92% { opacity: 1; }
  100% { left: 10%; top: 74%; opacity: 0; }
}
@keyframes fmCraftC {
  0% { left: 3%; top: 93%; opacity: 0; transform: rotate(-12deg); }
  8% { opacity: 1; }
  55% { top: 86%; }
  92% { opacity: 1; }
  100% { left: 100%; top: 78%; opacity: 0; transform: rotate(-22deg); }
}
@keyframes fmBalloonBob {
  0%, 100% { transform: translateY(28px); }
  50% { transform: translateY(-64px); }
}
@keyframes fmFloaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}
@keyframes fmWinIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}


.page-hero {
  padding: 64px 0 56px;
  background:
    linear-gradient(180deg, rgba(22,25,32,0.62), rgba(22,25,32,0.55)),
    url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1800&q=70") center/cover;
  color: var(--white);
}
.page-hero h1, .page-hero .display { color: var(--white); }
.page-hero .lede { color: rgba(255,255,255,0.82); }
.page-hero .eyebrow { color: var(--primary); }

.pay-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.card-visual {
  height: 210px;
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(135deg, #141414, #f7921f 70%, #ffc56a);
  color: var(--white);
  transform: rotateX(8deg) rotateY(-10deg);
  box-shadow: 24px 32px 50px rgba(22,25,32,0.25);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--heading);
  border: 0;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  transform: translateY(120%);
  transition: 0.35s ease;
  z-index: 80;
}
.toast.show { transform: translateY(0); }

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--heading);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.chip.active, .chip:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 12px 24px rgba(247,146,31,0.35);
}
.to-top.is-on { opacity: 1; pointer-events: auto; transform: none; }

.sky-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}
.float-orb.a { width: 90px; height: 90px; background: var(--primary-100); left: 6%; top: 18%; }
.float-orb.b { width: 54px; height: 54px; background: rgba(247,146,31,0.18); right: 8%; top: 30%; animation-duration: 9s; }
.float-orb.c { width: 120px; height: 120px; border: 2px dashed rgba(247,146,31,0.28); right: 12%; bottom: 10%; animation-duration: 16s; }

.rotating-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px dashed var(--primary);
  display: grid;
  place-items: center;
  animation: spinSlow 18s linear infinite;
  color: var(--primary);
  font-family: var(--script);
  font-size: 1.4rem;
}

[data-reveal], .heading-line {
  opacity: 0;
  transform: translateY(36px);
}
[data-reveal].is-in, .heading-line.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.scene-hero .sky-bg,
.scene-featured .sky-bg,
.scene-destinations .sky-bg,
.scene-why .sky-bg,
.scene-europe .sky-bg,
.scene-stats .sky-bg,
.scene-reviews .sky-bg,
.scene-journal .sky-bg,
.scene-newsletter .sky-bg,
.scene-reserve .sky-bg { background: none; }
.scene-hero .sky-bg::before,
.scene-hero .sky-bg::after,
.scene-featured .sky-bg::before,
.scene-destinations .sky-bg::before,
.scene-destinations .sky-bg::after,
.scene-why .sky-bg::before,
.scene-why .sky-bg::after,
.scene-europe .sky-bg::before,
.scene-europe .sky-bg::after,
.scene-stats .sky-bg::before,
.scene-stats .sky-bg::after,
.scene-reviews .sky-bg::before,
.scene-reviews .sky-bg::after,
.scene-journal .sky-bg::before,
.scene-journal .sky-bg::after,
.scene-newsletter .sky-bg::before,
.scene-newsletter .sky-bg::after,
.scene-reserve .sky-bg::before,
.scene-reserve .sky-bg::after { content: none; display: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .cine-run { height: auto; }
  .cine-run .hero.scene-hero { position: relative; }
  .hero-stage { transform: none !important; }
  [data-reveal], .heading-line, .fadeInUp, .gallery-copy [data-copy], .gallery-word > span, .category-slider { opacity: 1; transform: none; }
  .about-balloon { animation: none !important; }
  .pkg-bg { transition-duration: 1ms !important; }
  .world-tour-star, .world-tour-plus, .world-tour-x, .world-tour-illus-bob { animation: none !important; }
  .why-choose-visual, .why-plane, .why-choose-ring { animation: none !important; }
  .why-choose.is-in .why-choose-visual img { animation: none !important; }
  .why-deco-flight, .why-deco-balloon, .why-flight-craft, .why-flight-trail { animation: none !important; opacity: 1; }
  .feedback.is-in .feedback-visual img,
  .feedback.is-in .feedback-glow { animation: none !important; }
  .fm-sun, .fm-frame, .fm-photo, .fm-sparkle, .fm-title .fm-word > span, .fm-sub,
  .fm-cloud, .fm-star, .fm-doodle, .fm-doodle.balloon, .fm-float-balloon, .fm-path, .fm-craft, .fm-window, .fm-traveler { animation: none !important; }
  .fm-title .fm-word > span, .fm-sub { opacity: 1; transform: none; }
  .fm-window { opacity: 1; transform: none; }
  .vp-plane, .vp-balloon, .vp-fly, .vp-craft, .vp-head h2, .vp-head h2 em, .vp-head .lede { animation: none !important; }
  .cine-hero-scroll span { animation: none !important; }
  .cine-journey .hero.scene-hero { margin-top: 0; }
}

@media (max-width: 1140px) {
  .why-deco-flight,
  .why-deco-balloon { display: none; }
}

@media (max-width: 1020px) {
  .why-choose-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "visual visual"
      "left right";
    gap: 36px 28px;
  }
  .why-choose-visual { grid-area: visual; max-width: 420px; margin: 0 auto; }
  .why-choose-col { min-height: 0; gap: 40px; }
  .why-choose-col-left {
    grid-area: left;
    align-items: center;
    text-align: center;
  }
  .why-choose-col-right {
    grid-area: right;
    align-items: center;
    text-align: center;
  }
  .why-choose-col-left .why-item-icon,
  .why-choose-col-right .why-item-icon { margin-left: auto; margin-right: auto; }
  .why-item { max-width: 280px; }
  .hero, .dest-grid, .grid-3, .grid-4, .reviews, .newsletter, .booking, .pay-grid, .footer-grid, .footer-cta, .form-grid, .search-bar, .insta-row, .about-story-grid, .about-feature-card, .pkg-stats, .pkg-grid, .gallery-grid, .world-tour-inner, .feedback-layout, .offer-head, .offer-grid, .contact-desk-grid, .contact-box-grid {
    grid-template-columns: 1fr;
  }
  .feedback-intro { text-align: center; }
  .feedback-visual { max-width: 420px; margin: 0 auto 8px; }
  .dream-cta { padding: 28px 24px 12px; }
  .dream-cta-frame { padding: 80px 28px 48px; }
  .dream-cta-people { display: none; }
  .dest-pill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flight-moments { padding: 56px 0 36px; min-height: 0; }
  .fm-windows { flex-wrap: wrap; gap: 18px; min-height: 0; }
  .fm-window { width: 42vw; height: 420px; max-width: 220px; max-height: none; min-height: 380px; }
  .fm-traveler { height: 80%; }
  .fm-sun { width: 90px; height: 90px; }
  .fm-float-balloon.a { width: 64px; }
  .fm-float-balloon.b { width: 48px; }
  .voyager-pro { padding: 64px 0; }
  .vp-container { flex-direction: column; gap: 16px; }
  .vp-plane, .vp-curve { display: none; }
  .vp-craft { left: 8px; top: 72px; width: 140px; }
  .vp-balloon.a { width: 58px; }
  .vp-balloon.b { width: 46px; }
  .vp-fly.a { width: 42px; }
  .vp-fly.b { width: 32px; }
  .vp-fly.c { width: 36px; }
  .vp-left { width: 100%; height: min(58vw, 360px); }
  .vp-right { width: 100%; min-height: 0; }
  .vp-placeholder { width: 100%; text-align: center; }
  .footer-cta {
    padding: 28px 24px 0;
    margin-bottom: 40px;
  }
  .footer-cta-copy { padding: 0 0 8px; }
  .footer-cta h2 { max-width: none; }
  .footer-cta-visual {
    min-height: 250px;
    display: flex;
    justify-content: center;
    order: -1;
  }
  .footer-cta-visual img {
    position: relative;
    right: auto;
    height: 260px;
    max-width: 240px;
  }
  .world-tour { padding: 72px 0 80px; }
  .world-tour-photo-frame { margin-left: 0; width: 100%; }
  .world-tour-copy { max-width: none; }
  .world-tour-pyramids { inset: 48% 0 8% 0; opacity: 0.12; }
  .world-tour-illus {
    width: min(72%, 280px);
    margin: 8px auto 0;
    justify-self: center;
  }
  .tour-video { margin-bottom: calc(min(100vw - 24px, 1400px) / 3.6 + 40px); padding-top: 56px; }
  .tour-video-frame { width: calc(100% - 24px); aspect-ratio: 1.8 / 1; border-width: 7px; transform: translateY(50%); margin-top: 6px; }
  .tour-video-play { width: 64px; height: 64px; font-size: 22px; }
  .tour-float-plane { width: 64px; }
  .tour-float-chute { width: 26px; }
  .gallery-copy { max-width: none; }
  .gallery-shots { height: 320px; }
  .insta-row { grid-template-columns: repeat(3, 1fr); }
  .dest-card.wide { grid-column: auto; grid-row: auto; }
  .dest-card.wide .media { min-height: 280px; }
  .dest-grid { grid-auto-rows: 260px; }
  .nav-links { display: none; }
  .cine-hero-copy {
    left: 22px;
    right: 22px;
    bottom: 96px;
    max-width: none;
    transform: none;
  }
  .cine-hero-copy--land { bottom: 80px; }
  .cine-hero-copy--feel {
    left: 22px;
    right: 22px;
    bottom: 28%;
    max-width: none;
    transform: none;
  }
  .cine-hero-copy--story { bottom: 42%; }
  .cine-hero-cards {
    left: 12px;
    right: 12px;
    bottom: 12%;
    gap: 8px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
  .cine-hero-card { min-width: 128px; flex: 0 0 128px; }
  .cine-hero-card img { height: 160px; }
  .cine-hero-title { letter-spacing: 0.04em; }
  .cine-hero-lede { letter-spacing: 0.12em; }
  .header .logo { width: 200px; }
  .header .logo-img { height: 193px; }
  .menu-btn { display: grid; place-items: center; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    color: var(--heading);
    box-shadow: var(--shadow);
  }
  body[data-page="home"] .header:not(.is-sticky) .nav-links.open a { color: var(--heading); }
  .globe-wrap { height: 380px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .about-visual { min-height: 0; padding: 0 0 48px 56px; }
  .about-team { width: 120px; height: 120px; left: -12px; bottom: 16px; border-width: 6px; }
  .about-photo { max-width: none; border-radius: 28px; }
  .pkg-stats > div:not(:last-child) { border-right: 0; border-bottom: 1px solid rgba(20,20,20,0.08); padding-bottom: 16px; margin-bottom: 8px; }
  .pkg-card { height: auto; }
  .pkg-visual { height: 270px; }
  .hero { padding: 0; min-height: 100vh; height: 100vh; overflow: visible; }
  .hero-details { top: 120px; left: 24px; right: 24px; }
  .hero-details .title-1,
  .hero-details .title-2 { font-size: 42px; }
  .hero-details .title-box-1,
  .hero-details .title-box-2 { height: 52px; }
  .hero-details > .cta { width: auto; }
  .hero-search {
    bottom: 0;
    width: calc(100% - 32px);
    padding: 16px 16px 14px;
    transform: translate(-50%, 22%);
  }
  .hero-search-top { flex-direction: column; align-items: flex-start; }
  .hero-search-row { grid-template-columns: 1fr; gap: 12px; }
  .hero-search-field,
  .hero-search-field:first-child { padding: 8px 0; }
  .hero-search-field + .hero-search-field { border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); }
  .hero-search-submit { margin-left: 0; width: 100%; }
  .tour-category { margin-top: 0; padding-top: 160px; }
  .category-nav-prev { left: -4px; }
  .category-nav-next { right: -4px; }
  .search-field { border-right: 0; border-bottom: 1px solid var(--border); }
}

@media (max-width: 1180px) and (min-width: 1021px) {
  .footer-cta { grid-template-columns: minmax(0, 1fr) 240px; padding-left: 28px; }
  .footer-cta h2 { max-width: none; }
}
@media (max-width: 640px) {
  .site-footer { margin-top: 80px; }
  .footer-cta { margin-top: -40px; padding: 24px 18px 0; }
  .footer-cta-contacts { grid-template-columns: 1fr; }
  .footer-cta-visual { min-height: 200px; }
  .footer-cta-visual img { height: 210px; }
  .dest-pill-grid { grid-template-columns: 1fr; gap: 32px; }
  .dest-pill { --img-h: 270px; min-height: 490px; }
  .world-tour-copy h2 { font-size: 2.35rem; }
  .voyager-pro { padding: 48px 0 40px; }
  .vp-left { height: min(62vw, 280px); }
  .vp-info { flex-direction: column; align-items: stretch; }
  #vp-btn { width: 100%; }
  .gallery-shots { gap: 10px; height: 250px; }
  .gallery-shots:not(:has(.gallery-shot:hover, .gallery-shot:focus-visible, .gallery-shot.is-open)) .gallery-shot:first-child,
  .gallery-shot:hover,
  .gallery-shot:focus-visible,
  .gallery-shot.is-open { min-width: 140px; }
  .gallery-hover i { width: 44px; height: 44px; font-size: 18px; }
  .why-choose { padding: 72px 0 80px; }
  .why-choose-head { margin-bottom: 32px; }
  .why-choose-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "left"
      "right";
    gap: 32px;
  }
  .why-choose-visual { max-width: 340px; }
  .why-choose-col { gap: 32px; }
  .offer { padding: 48px 0 72px; }
  .offer-head h2 { max-width: none; }
  .offer-photo img,
  .offer-photo video { min-height: 360px; }
  .contact-desk { padding-top: 32px; }
  .contact-desk-copy h2 { max-width: none; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 28px 20px 24px; }
  .contact-map { height: 300px; margin-top: 36px; }
  .dream-cta { padding: 24px 20px 8px; }
  .dream-cta-frame { padding: 72px 24px 40px; min-height: 0; }
  .dream-cta-people { display: none; }
}

/* Hover-mask reveal band (above popular destinations) */
.hover-mask {
  --mask-size: 340px;
  --x: 70%;
  --y: 38%;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100svh;
  min-height: 680px;
  padding-left: 50px;
  padding-right: 50px;
  overflow: hidden;
  isolation: isolate;
  background: #141414;
  color: #fff;
}
.hover-mask-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hover-mask-base {
  background-image:
    linear-gradient(90deg, rgba(20, 20, 20, 0.58) 0%, rgba(20, 20, 20, 0.24) 48%, rgba(20, 20, 20, 0.12) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=88");
}
.hover-mask-reveal {
  background-image:
    linear-gradient(90deg, rgba(247, 146, 31, 0.18) 0%, rgba(20, 20, 20, 0.06) 58%, rgba(20, 20, 20, 0.02) 100%),
    url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=2200&q=88");
  clip-path: circle(calc(var(--mask-size) / 2) at var(--x) var(--y));
  will-change: clip-path;
  contain: paint;
}
.hover-mask-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 22%, transparent 66%, rgba(0, 0, 0, 0.42));
}
.hover-mask-content {
  position: absolute;
  z-index: 7;
  left: 50px;
  top: 50%;
  transform: translateY(-43%);
  width: min(780px, 64vw);
  pointer-events: none;
}
.hover-mask-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.hover-mask-eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: #fff;
}
.hover-mask-title {
  margin: 0;
  max-width: 820px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(64px, 9.1vw, 158px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  font-weight: 600;
  text-transform: none;
  color: #fff;
}
.hover-mask-title em {
  font-family: "Montez", cursive;
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  letter-spacing: 0;
}
.hover-mask-subrow {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  pointer-events: auto;
}
.hover-mask-subrow p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  max-width: 400px;
}
.hover-mask-arrow {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  font-size: 24px;
  color: #fff;
}
.hover-mask-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.hover-mask-stack {
  position: absolute;
  z-index: 8;
  right: 50px;
  bottom: 5vh;
  width: min(360px, 31vw);
  display: grid;
  gap: 12px;
}
.hover-mask-card {
  position: relative;
  width: 100%;
  min-height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(20, 20, 20, 0.22));
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  border-radius: 24px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 34px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  color: #fff;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.28s ease, border-color 0.28s ease;
}
.hover-mask-card:hover {
  transform: translateX(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(20, 20, 20, 0.28));
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}
.hover-mask-thumb {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 17px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
}
.hover-mask-copy {
  min-width: 0;
}
.hover-mask-copy small {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 7px;
  white-space: nowrap;
}
.hover-mask-copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hover-mask-copy span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hover-mask-label {
  position: absolute;
  z-index: 8;
  right: 50px;
  top: 50%;
  transform: translate(50%, -50%) rotate(90deg);
  transform-origin: center center;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
  pointer-events: none;
  color: #fff;
  white-space: nowrap;
}
.hover-mask-cursor {
  position: absolute;
  z-index: 30;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.86);
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
  opacity: 0;
}
.hover-mask-cursor::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hover-mask-ring {
  position: absolute;
  z-index: 6;
  left: 0;
  top: 0;
  width: var(--mask-size);
  height: var(--mask-size);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transform: translate3d(-999px, -999px, 0) translate(-50%, -50%);
  transition: width 0.28s cubic-bezier(0.16, 1, 0.3, 1), height 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s;
  will-change: transform, width, height;
  opacity: 0;
}
.hover-mask.is-down { --mask-size: 460px; }

@media (pointer: fine) {
  .hover-mask { cursor: none; }
}

@media (max-width: 900px) {
  .hover-mask {
    --mask-size: 240px;
    min-height: 760px;
  }
  .hover-mask-content {
    width: calc(100% - 100px);
    left: 50px;
    top: 47%;
  }
  .hover-mask-title { font-size: clamp(58px, 16vw, 100px); }
  .hover-mask-stack {
    left: 50px;
    right: auto;
    width: min(calc(100% - 100px), 360px);
    bottom: 3vh;
    gap: 8px;
  }
  .hover-mask-card {
    min-height: 82px;
    padding: 10px;
    border-radius: 20px;
  }
  .hover-mask-thumb {
    width: 62px;
    height: 62px;
    border-radius: 14px;
  }
  .hover-mask-copy strong { font-size: 14px; }
  .hover-mask-copy span { font-size: 10px; margin-top: 5px; }
  .hover-mask-label { display: none; }
  .hover-mask.is-down { --mask-size: 300px; }
}

@media (pointer: coarse) {
  .hover-mask-cursor,
  .hover-mask-ring { display: none; }
  .hover-mask-reveal { clip-path: circle(120px at 70% 38%); }
}

/* 3D adventure carousel (below gallery) */
.adv-carousel {
  --card-w: 270px;
  --card-h: 370px;
  --radius: 390px;
  background:
    linear-gradient(180deg, rgba(12, 16, 22, 0.72), rgba(12, 16, 22, 0.78)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80") center/cover;
  color: #fff;
  padding: 64px 0 0;
  overflow: hidden;
}
.adv-carousel-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 12px;
  position: relative;
  z-index: 5;
}
.adv-carousel-head .eyebrow {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}
.adv-carousel-head h2 {
  color: #fff;
  text-transform: none;
  text-align: center;
  margin: 8px auto 0;
  letter-spacing: -1.2px;
  font-size: clamp(2.35rem, 5vw, 3.9rem);
  max-width: 820px;
}
.adv-carousel-scene {
  position: relative;
  width: 100%;
  height: 850px;
  overflow: hidden;
  background: transparent;
}
.adv-carousel-scene::before {
  content: none;
}
.adv-carousel-viewport {
  position: absolute;
  inset: 0;
  perspective: 920px;
  perspective-origin: 50% 48%;
  transform-style: preserve-3d;
  z-index: 2;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}
.adv-carousel-viewport:active { cursor: grabbing; }
.adv-carousel-ring {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 0.92s cubic-bezier(0.19, 0.82, 0.19, 1);
}
.adv-carousel-card {
  position: absolute;
  left: calc(var(--card-w) / -2);
  top: calc(var(--card-h) / -2);
  width: var(--card-w);
  height: var(--card-h);
  border-radius: 20px;
  background: #090a15;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: rotateY(var(--rot, 0deg)) translateZ(var(--radius));
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.45s ease, border-color 0.32s ease, box-shadow 0.32s ease;
  cursor: pointer;
}
.adv-carousel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 12;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}
.adv-carousel-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  border: 2px solid transparent;
  pointer-events: none;
  z-index: 13;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.adv-carousel-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--accent), 0 0 28px color-mix(in srgb, var(--accent) 24%, transparent);
}
.adv-carousel-card.is-active::after {
  border-color: var(--accent);
  box-shadow: inset 0 0 14px color-mix(in srgb, var(--accent) 10%, transparent);
}
.adv-carousel-card.is-near {
  opacity: 0.88;
}
.adv-carousel-card.is-far {
  opacity: 0.38;
  pointer-events: none;
}
.adv-carousel-card.is-back {
  opacity: 0;
  pointer-events: none;
}
.adv-carousel-card.is-near:hover {
  opacity: 1;
  border-color: color-mix(in srgb, var(--accent) 72%, transparent);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.54), 0 0 18px color-mix(in srgb, var(--accent) 12%, transparent);
}
.adv-carousel-card.is-near:hover::after {
  border-color: color-mix(in srgb, var(--accent) 68%, transparent);
}
.adv-carousel-image {
  position: relative;
  height: 62%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #111;
}
.adv-carousel-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, #0a0b16);
}
.adv-carousel-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  pointer-events: none;
}
.adv-carousel-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 16px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 7px #000;
}
.adv-carousel-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  padding: 16px 18px 14px;
  background: #090a15;
  border-radius: 0 0 20px 20px;
}
.adv-carousel-title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: -0.04em;
  color: #f8f8fb;
  text-transform: none;
}
.adv-carousel-desc {
  margin: 0;
  color: #a8a8b3;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  max-width: 240px;
}
.adv-carousel-cta {
  position: absolute;
  left: 18px;
  bottom: 14px;
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  color: var(--accent);
  transition: opacity 0.2s, transform 0.2s, text-shadow 0.2s;
}
.adv-carousel-cta:hover {
  opacity: 0.86;
  transform: translateX(2px);
  color: var(--accent);
  text-shadow: 0 0 15px color-mix(in srgb, var(--accent) 30%, transparent);
}
.adv-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 30;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #14151f;
  color: #f1f1f5;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.adv-carousel-nav:hover {
  background: #22232f;
  border-color: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}
.adv-carousel-nav svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.adv-carousel-prev { left: max(20px, calc(50% - 360px)); }
.adv-carousel-next { right: max(20px, calc(50% - 360px)); }
.adv-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 35;
}
.adv-carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: #3b3c46;
  cursor: pointer;
  transition: width 0.32s cubic-bezier(0.22, 0.78, 0.18, 1), background 0.3s ease, transform 0.2s;
}
.adv-carousel-dot:hover { transform: scale(1.2); }
.adv-carousel-dot.is-active {
  width: 24px;
  background: var(--active-accent, #f7921f);
}
.adv-carousel-glow {
  display: none;
}

@media (max-width: 1120px) {
  .adv-carousel {
    --card-w: 240px;
    --card-h: 330px;
    --radius: 340px;
  }
  .adv-carousel-scene { height: 500px; }
  .adv-carousel-title { font-size: 18px; }
  .adv-carousel-desc { font-size: 12px; }
  .adv-carousel-prev { left: 18px; }
  .adv-carousel-next { right: 18px; }
}
@media (max-width: 780px) {
  .adv-carousel {
    --card-w: min(72vw, 260px);
    --card-h: 340px;
    --radius: 300px;
    padding-top: 48px;
  }
  .adv-carousel-head h2 { font-size: 2rem; }
  .adv-carousel-head p { font-size: 15px; }
  .adv-carousel-scene { height: 460px; }
  .adv-carousel-viewport { perspective: 760px; }
  .adv-carousel-card { border-radius: 18px; }
  .adv-carousel-image { border-radius: 18px 18px 0 0; }
  .adv-carousel-body { padding: 14px 16px; border-radius: 0 0 18px 18px; }
  .adv-carousel-title { font-size: 18px; }
  .adv-carousel-desc { font-size: 12px; }
  .adv-carousel-cta { left: 16px; bottom: 12px; font-size: 13px; }
  .adv-carousel-nav { top: auto; bottom: 18px; margin-top: 0; }
  .adv-carousel-prev { left: 18px; }
  .adv-carousel-next { right: 18px; }
  .adv-carousel-dots { bottom: 26px; }
  .adv-carousel-card.is-far,
  .adv-carousel-card.is-back {
    opacity: 0;
    pointer-events: none;
  }
}
