:root {
  --ink: #0b1112;
  --paper: #f4f2eb;
  --white: #ffffff;
  --lime: #c8f135;
  --lime-dark: #8eab19;
  --muted: #69716d;
  --line: rgba(11, 17, 18, 0.16);
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(calc(100% - 64px), 1180px);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 6.2vw, 84px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

em {
  color: var(--lime-dark);
  font-weight: 400;
}

.eyebrow {
  margin: 0 0 25px;
  color: #66706b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.64);
}

.section-heading {
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
  cursor: pointer;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover {
  background: white;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.button-ghost:hover {
  background: white;
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: var(--lime);
  color: var(--ink);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.button-outline:hover {
  background: white;
  color: var(--ink);
}

.button-whatsapp {
  width: 100%;
  min-height: 48px;
  background: #25d366;
  color: #07160c;
  text-align: center;
}

.play-mini {
  width: 0;
  height: 0;
  margin-right: 10px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.site-header {
  height: var(--header-height);
  padding: 0 34px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 12, 13, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  font-size: 10px;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 190px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 29px);
}

.main-nav a {
  position: relative;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  height: 1px;
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  background: var(--lime);
  transition: right 0.25s;
}

.main-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 1px;
  margin: 5px auto;
  display: block;
  background: white;
  transition: transform 0.25s;
}

.menu-button.active span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button.active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: 790px;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-video,
.hero-shade,
.hero-grid {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-video {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 10, 11, 0.9), rgba(5, 10, 11, 0.22) 75%),
    linear-gradient(0deg, rgba(5, 10, 11, 0.68), transparent 55%);
}

.hero-grid {
  opacity: 0.14;
  background: linear-gradient(
    90deg,
    transparent 24.9%,
    white 25%,
    transparent 25.1%,
    transparent 49.9%,
    white 50%,
    transparent 50.1%,
    transparent 74.9%,
    white 75%,
    transparent 75.1%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero h1 {
  max-width: 930px;
  margin: 0 0 30px;
  font-size: clamp(68px, 9.4vw, 132px);
  font-weight: 400;
  line-height: 0.79;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--lime);
}

.hero-copy {
  max-width: 570px;
  margin: 0 0 34px 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  margin-left: 5px;
  display: flex;
  gap: 12px;
}

.hero-meta {
  position: absolute;
  right: 40px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 44px;
}

.hero-meta div {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-meta strong {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.hero-meta span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tours-section {
  background: var(--paper);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tour-card {
  min-height: 535px;
  position: relative;
  overflow: hidden;
  background: #202627;
  color: white;
}

.tour-card-featured {
  min-height: 590px;
  grid-column: span 2;
}

.tour-card > img,
.tour-card-shade {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.tour-card > img {
  object-fit: cover;
  transition: transform 0.7s;
}

.tour-card:hover > img {
  transform: scale(1.04);
}

.tour-card-shade {
  background: linear-gradient(
    0deg,
    rgba(4, 9, 10, 0.95),
    rgba(4, 9, 10, 0.08) 76%
  );
}

.tour-index {
  position: absolute;
  top: 26px;
  left: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.featured-tag {
  padding: 8px 11px;
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--lime);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-card-content {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.tour-meta {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tour-meta span + span::before {
  content: "•";
  margin-right: 18px;
  color: var(--lime);
}

.tour-card h3 {
  margin: 13px 0 10px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.tour-card-content > p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.65;
}

.tour-card-footer {
  padding-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.tour-card-footer strong {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.tour-card-footer a {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-card-footer a span {
  margin-left: 6px;
  color: var(--lime);
  font-size: 16px;
}

.pricing-section {
  background: #e9e7df;
}

.air-experience {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: white;
}

.air-experience-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.air-experience-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 9, 10, 0.9), rgba(4, 9, 10, 0.12) 75%),
    linear-gradient(0deg, rgba(4, 9, 10, 0.88), transparent 65%);
}

.air-experience-content {
  width: 100%;
  padding-top: 150px;
  padding-bottom: clamp(62px, 9vh, 110px);
  position: relative;
  z-index: 2;
}

.air-experience h2 {
  max-width: 850px;
  margin: 24px 0;
  font-size: clamp(62px, 9vw, 132px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.air-experience h2 em {
  color: var(--lime);
  font-family: Georgia, serif;
  font-weight: 400;
}

.air-experience-copy {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.75;
}

.air-experience-footer {
  max-width: 770px;
  margin-top: 38px;
  padding-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.air-experience-detail {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.air-experience-detail span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.air-experience-detail strong {
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-card {
  min-height: 410px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7f5ef;
}

.pricing-card > span {
  margin-bottom: 54px;
  color: #858b88;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pricing-card > small {
  margin-bottom: 11px;
  color: var(--lime-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0 0 16px;
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-card p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.pricing-card > strong {
  margin-top: auto;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.pricing-card a {
  width: 100%;
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card a::after {
  content: "↗";
  color: var(--lime-dark);
  font-size: 16px;
}

.pricing-card-featured {
  background: var(--ink);
  color: white;
}

.pricing-card-featured > span,
.pricing-card-featured p {
  color: rgba(255, 255, 255, 0.58);
}

.pricing-card-featured a {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-featured a::after,
.pricing-card-featured > small {
  color: var(--lime);
}

.booking-section {
  padding: 120px 0;
  background: var(--ink);
  color: white;
}

.booking-section-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 85px;
  align-items: start;
}

.booking-intro {
  position: sticky;
  top: 125px;
}

.booking-intro h2 {
  margin-bottom: 30px;
}

.booking-intro h2 em {
  color: var(--lime);
}

.booking-intro > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.booking-live-summary {
  margin-top: 38px;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.booking-live-summary span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-live-summary strong {
  margin: 11px 0 6px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.booking-live-summary b {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.booking-live-summary small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form {
  padding: 38px;
  background: white;
  color: var(--ink);
}

.booking-form-heading {
  margin-bottom: 32px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.booking-form-heading span {
  color: var(--lime-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form-heading strong {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.booking-panel {
  display: block;
}

.booking-panel[hidden] {
  display: none;
}

.booking-restored-notice {
  margin-bottom: 26px;
  padding: 14px 16px;
  border-left: 4px solid var(--lime-dark);
  background: #f1f3e8;
  color: #536000;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}

.booking-restored-notice[hidden] {
  display: none;
}

.booking-step-title {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.booking-step-title > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
}

.booking-step-title h3 {
  margin: 0 0 5px;
  font-size: 27px;
  font-weight: 400;
}

.booking-step-title p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #535c57;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-field-wide {
  grid-column: 1 / -1;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #d5d9d6;
  border-radius: 0;
  outline: 0;
  background: #fbfbf8;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.booking-field textarea {
  min-height: 110px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 3px rgba(200, 241, 53, 0.22);
}

.booking-flight-type {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  border: 0;
}

.booking-flight-type legend {
  margin-bottom: 9px;
  color: #535c57;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-flight-type label {
  min-height: 52px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d5d9d6;
  background: #fbfbf8;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.booking-flight-type input {
  accent-color: var(--lime-dark);
}

.booking-flight-type small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.passenger-list {
  display: grid;
  gap: 18px;
}

.passenger-card {
  padding: 24px;
  border: 1px solid #d9ddd9;
  background: #f7f7f3;
}

.passenger-card-heading {
  margin-bottom: 22px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.passenger-card-heading span {
  color: var(--lime-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.passenger-card-heading strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.booking-price-summary {
  margin: 25px 0;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background: #f1f3e8;
  border-left: 4px solid var(--lime-dark);
}

.booking-price-summary > div {
  display: flex;
  flex-direction: column;
}

.booking-price-summary span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-price-summary strong {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.booking-price-summary small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.booking-continue {
  width: 100%;
  border: 0;
}

.booking-selection-summary {
  margin-bottom: 26px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 18px;
  align-items: end;
  border: 1px solid var(--line);
  background: #f7f7f3;
}

.booking-selection-summary > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-selection-summary span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-selection-summary strong {
  font-size: 12px;
  line-height: 1.45;
}

.booking-change-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.booking-change-button:hover {
  background: var(--ink);
  color: white;
}

.booking-notes-field {
  margin-top: 24px;
}

.booking-consent {
  margin: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5f6763;
  font-size: 11px;
  line-height: 1.5;
}

.booking-consent input {
  margin-top: 1px;
  accent-color: var(--lime-dark);
}

.booking-submit {
  width: 100%;
  border: 0;
}

.booking-feedback {
  min-height: 20px;
  margin: 14px 0 0;
  color: #536000;
  font-size: 11px;
  line-height: 1.5;
}

.booking-feedback.error {
  color: #a12424;
}

.booking-qr-result {
  margin-top: 30px;
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.booking-qr-result[hidden] {
  display: none;
}

.booking-qr-copy > span {
  color: var(--lime-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-qr-copy h3 {
  margin: 12px 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.booking-qr-copy > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.booking-qr-copy dl {
  margin: 24px 0 0;
}

.booking-qr-copy dl div {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.booking-qr-copy dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-qr-copy dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.booking-qr-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.booking-qr-visual canvas {
  width: 360px;
  height: 360px;
  max-width: 100%;
  align-self: center;
  border: 1px solid #e1e4df;
  background: white;
  image-rendering: pixelated;
}

.booking-qr-visual small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.secondary-button {
  min-height: 44px;
  border: 1px solid var(--ink);
  background: white;
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.secondary-button:hover {
  background: var(--ink);
  color: white;
}

.video-section {
  background: var(--ink);
  color: white;
}

.video-heading h2 em {
  color: var(--lime);
}

.video-heading > p {
  color: rgba(255, 255, 255, 0.58);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
}

.video-card {
  min-height: 500px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 0;
  background: #1f2526;
  color: white;
  text-align: left;
  cursor: pointer;
}

.video-card:nth-child(2) {
  margin-top: 70px;
  min-height: 430px;
}

.video-card > img,
.video-shade {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.video-card > img {
  object-fit: cover;
  transition: transform 0.6s;
}

.video-card:hover > img {
  transform: scale(1.04);
}

.video-shade {
  background: linear-gradient(
    0deg,
    rgba(4, 9, 10, 0.9),
    transparent 70%
  );
}

.play-button {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 16px;
}

.video-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
}

.video-copy small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-copy strong {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.location-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #151c1d;
  color: white;
}

.location-image {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-height: 720px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-panel {
  grid-column: 1;
  grid-row: 1;
  padding: 110px clamp(32px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-panel h2 {
  margin-bottom: 26px;
}

.location-panel h2 em {
  color: var(--lime);
}

.location-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.location-panel ul {
  margin: 24px 0 34px;
  padding: 0;
  list-style: none;
}

.location-panel li {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.location-panel li span {
  margin-right: 18px;
  color: var(--lime);
  font-size: 9px;
}

.fleet-section {
  background: var(--paper);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 75px;
  align-items: center;
}

.fleet-visual {
  min-height: 570px;
  position: relative;
  overflow: hidden;
}

.fleet-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.fleet-visual span {
  position: absolute;
  right: 20px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-family: Georgia, serif;
  font-size: 70px;
}

.fleet-copy h2 {
  margin-bottom: 28px;
}

.fleet-copy p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-section {
  background: #e9e7df;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  font-family: Georgia, serif;
  font-size: 21px;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--lime-dark);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.faq-list summary i {
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 42px 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  background: var(--ink);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 11, 0.88), rgba(5, 10, 11, 0.25)),
    url("https://images.unsplash.com/photo-1483729558449-99ef09a8c325?auto=format&fit=crop&w=2000&q=85")
    center / cover;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-bottom: 36px;
}

.final-cta h2 em {
  color: var(--lime);
}

.site-footer {
  padding: 75px 0 24px;
  background: #070c0d;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 55px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-brand p {
  max-width: 240px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.7;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.video-modal {
  padding: 40px;
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
}

.video-modal[hidden] {
  display: none;
}

.modal-close {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.modal-video {
  width: min(100%, 1100px);
  color: white;
}

.modal-video video {
  width: 100%;
  max-height: 75vh;
  background: black;
}

.modal-video strong {
  margin-top: 13px;
  display: block;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 13px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-section-grid {
    gap: 50px;
  }

  .booking-qr-result {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 0 22px;
  }

  .main-nav {
    padding: 105px 28px 42px;
    position: fixed;
    inset: 0 0 auto;
    z-index: -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: var(--ink);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-meta {
    display: none;
  }

  .split-heading,
  .booking-section-grid,
  .location-section,
  .fleet-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .booking-intro {
    position: static;
  }

  .location-image {
    min-height: 500px;
  }

  .location-panel {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .fleet-visual {
    min-height: 500px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .site-header {
    padding: 0 16px;
  }

  .hero {
    min-height: 690px;
    height: 100svh;
    align-items: flex-start;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 10, 11, 0.9), rgba(5, 10, 11, 0.42)),
      linear-gradient(0deg, rgba(5, 10, 11, 0.7), transparent 55%);
  }

  .hero-content {
    padding-top: 145px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .split-heading {
    gap: 24px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .tour-grid,
  .pricing-grid,
  .booking-form-grid,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tour-card,
  .tour-card-featured {
    min-height: 510px;
    grid-column: auto;
  }

  .tour-card-content {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .tour-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-card {
    min-height: 350px;
    padding: 24px;
  }

  .air-experience {
    min-height: 760px;
  }

  .air-experience-content {
    padding-top: 120px;
    padding-bottom: 58px;
  }

  .air-experience h2 {
    margin-top: 28px;
    font-size: clamp(54px, 18vw, 82px);
  }

  .air-experience-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .air-experience-footer .button {
    width: 100%;
  }

  .pricing-card > span {
    margin-bottom: 40px;
  }

  .booking-section {
    padding: 78px 0;
  }

  .booking-form {
    padding: 28px 18px;
  }

  .booking-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .booking-price-summary {
    grid-template-columns: 1fr;
  }

  .booking-price-summary small {
    grid-column: auto;
  }

  .booking-selection-summary {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .booking-change-button {
    width: 100%;
  }

  .booking-step-title {
    grid-template-columns: 36px 1fr;
  }

  .booking-flight-type {
    grid-template-columns: 1fr;
  }

  .booking-flight-type small {
    grid-column: auto;
  }

  .passenger-card {
    padding: 20px 14px;
  }

  .passenger-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-field-wide {
    grid-column: auto;
  }

  .booking-field input,
  .booking-field select,
  .booking-field textarea {
    font-size: 16px;
  }

  .booking-qr-copy dl div {
    grid-template-columns: 82px 1fr;
  }

  .booking-qr-visual canvas {
    width: 100%;
    height: auto;
  }

  .video-card,
  .video-card:nth-child(2) {
    min-height: 390px;
    margin-top: 0;
  }

  .location-image {
    min-height: 340px;
  }

  .location-panel {
    padding: 72px 22px;
  }

  .fleet-visual {
    min-height: 390px;
  }

  .faq-list summary {
    grid-template-columns: 34px 1fr auto;
    font-size: 18px;
  }

  .faq-list details p {
    margin-right: 0;
    margin-left: 34px;
  }

  .final-cta {
    min-height: 500px;
  }

  .video-modal {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.voucher-image-preview {
  width: 100%;
  height: auto;
  margin-top: 18px;
  display: block;
  grid-column: 1 / -1;
  border: 1px solid #d9ddd9;
  background: white;
}