/* ─── VARIABLES ─── */
:root {
  --white:     #FFFFFF;
  --off-white: #F8F8F6;
  --light-grey:#EFEFED;
  --mid-grey:  #C8C8C4;
  --steel:     #8A8F9A;
  --charcoal:  #3A3D45;
  --navy:      #1A2035;
  --deep-navy: #0D1320;
  --sky:       #4A7EBC;
  --sky-light: #D0E4F7;
  --gold:      #B8A068;
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 1rem; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


a:not([class], nav a, .btn), .link {
  color: var(--sky); text-decoration: none;
  border-bottom: 1px solid rgba(74,126,188,0.3); transition: border-color 0.3s;
	
	&:hover { border-color: var(--sky); }
}


.section {
	&.bg-dark {
		background: var(--deep-navy); color: #fff;

		.section-title {
			color: #fff;
		}
	}
}


/* ─── HERO ─── */
.hero {
  position: relative;
  height: 90dvh; min-height: 40rem;
  overflow: hidden;
  display: flex; align-items: center;

	@media (min-width:992px) {
		height: calc(100dvh - 9rem);
	}
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(165deg, rgba(13,19,32,0.72) 0%, rgba(13,19,32,0.28) 55%, rgba(13,19,32,0.55) 100%),
    linear-gradient(180deg, #1a3a6e 0%, #2d5ca8 40%, #4a7ebc 70%, #6fa3d4 100%);
  background-size: cover; background-position: center;
  transform: scale(1);
  animation: heroZoom 10s ease-in-out  alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem; max-width: 900px;
  margin-top: 5rem;
  animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sky-light); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 2.5rem; height: 1px;
  background: var(--sky);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--sky-light); }
.hero-sub {
  font-size: 0.88rem; font-weight: 300;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  line-height: 1.8;
  max-width: 40rem;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 52dvh; min-height: 20rem;
  background: var(--deep-navy);
  display: flex; align-items: flex-end;
  padding: 0 4rem 4rem;
  overflow: hidden;
  /* margin-top: 5rem; */

	&.bg-dark {
		.page-hero-bg {
			display:none;
		}
	}

	@media (min-width:992px) {
		&._mini {
			height: 32dvh;
		}
	}
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,126,188,0.18) 0%, transparent 60%);
}
.page-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(13, 19, 32, 0.75) 0%, rgba(13, 19, 32, 0.3) 55%, rgba(13, 19, 32, 0.6) 100%), /* Deep blue sky gradient as placeholder */ linear-gradient(180deg, #1a3a6e 0%, #2d5ca8 40%, #4a7ebc 70%, #6fa3d4 100%);
	background-size: cover;
	background-position: center;
}
.page-hero-line {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--gold) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sky);
  font-weight: 300; margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white);
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  margin-top: 20px;
  font-size: 0.92rem; font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 520px; line-height: 1.8;
  letter-spacing: 0.02em;
}

.page-hero-btns {
	margin-top:2.5rem;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1.2s 0.8s ease both;
}
.scroll-hint span {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); transform-origin: top; }
}


#mainNav {
	--btn-height: 2.25rem;
	--icon-size: 1.5rem;
	--nav-height: 5rem;

	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	display: flex; align-items: center; justify-content: space-between;
	height: var(--nav-height); padding: 0 3.75rem;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(1rem);
	border-bottom: 0.0625rem solid rgba(200, 200, 196, 0.4);
	transition: height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;

	&.scrolled {
		--nav-height: 4rem;
		background: rgba(255, 255, 255, 0.97);
		box-shadow: 0 0.125rem 1.5rem rgba(26, 32, 53, 0.06);
	}

	.mobile-only {
		display:none;
	}



	.nav-links {
		display: flex; align-items: center; gap: 2rem;
		margin-left: auto; list-style: none;

		> li { position: relative; }

		a {
			position: relative; display: inline-flex; align-items: center; justify-content: center;
			min-height: 2rem; color: var(--charcoal);
			font-family: var(--font-body); font-size: 0.78125rem; font-weight: 400;
			letter-spacing: 0.15em; text-decoration: none; text-transform: uppercase; white-space: nowrap;
			transition: color 0.3s;
		}

		a::after {
			content: ''; position: absolute; bottom: -0.25rem; left: 0; right: 0;
			height: 0.0625rem; background: var(--sky);
			transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
		}
		
		a:hover, a.active { color: var(--sky); }
		a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

		& > li:has(.dropdown-menu):hover .dropdown-menu {
			opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
		}

		
		.nav-cta {
			display: inline-flex; align-items: center; justify-content: center;
			height: var(--btn-height); padding: 0.25rem 1.5rem;
			background: var(--navy); color: var(--white) !important;
			letter-spacing: 0.12em !important; white-space: nowrap;
			transition: background 0.3s !important;
			
			&:hover { background: var(--sky) !important; color: var(--white) !important; }
			&::after { display: none !important; }
		}
	}

	.dropdown-menu {
		position: absolute; top: 100%; left: 50%;
		min-width: 15rem; padding: 0.5rem 0;
		background: var(--white); border: 0.0625rem solid var(--light-grey);
		box-shadow: 0 1.25rem 3.75rem rgba(26, 32, 53, 0.12);
		opacity: 0; pointer-events: none;
		transform: translateX(-50%) translateY(-0.5rem);
		transition: opacity 0.3s ease, transform 0.3s ease;
	}

	.dropdown-menu a {
		display: block; height: auto; padding: 0.75rem 1.5rem;
		font-size: 0.72rem; letter-spacing: 0.1em; transition: background 0.2s, color 0.2s, padding-left 0.2s;
		
		 a::after { display: none; }
		
		 a:hover { background: var(--off-white); color: var(--sky); padding-left: 2rem; }
	}

	.nav-contacts { display: flex; gap: 0.75rem; list-style: none; }
	.nav-contact {
		flex-shrink: 0;

		a {
			display: flex; align-items: center; justify-content: center;
			width: var(--btn-height); height: var(--btn-height);
			background-color: rgba(0, 40, 180, 0.1);
			
			&::after { content: none; }
		}
	}
	.nav-contact svg { width: var(--icon-size); height: var(--icon-size); color: currentColor; }
	.contact-btn--phone:hover { background-color: #4A7EBC; color: #fff !important; }
	.contact-btn--wa:hover { background-color: #25D366; color: #fff !important; }


	.nav-hamburger {
		display: none; flex-direction: column; justify-content:center; align-items:center; gap: 0.25rem; padding:.25rem; border: 1px solid rgba(0, 40, 180, 0.25); padding: 0.5rem; background: none; cursor: pointer; width: var(--btn-height); height: var(--btn-height);

		span {
			display: block; width: 1.25rem; height: 0.125rem;
			background: var(--navy); transition: all 0.3s ease;
		}

		#navLinks.mobile-open + & {
			border: .25rem solid rgba(0, 40, 180, 0.5);

			span:nth-child(1) {
				transform: rotate(45deg) translate(0.25rem,0.25rem)
			}
			span:nth-child(2) {
				opacity:0;
			}
			span:nth-child(3) {
				transform: rotate(-45deg) translate(0.25rem,-0.25rem)
			}
		}
	}

	@media (max-width: 959.98px) {
		--nav-item-padding: .25rem 1.5rem;

		padding: 0 1.25rem;
		
		.mobile-only {
			display:flex; color:var(--charcoal); margin: 0 1rem 0 auto;

			a {
				color:currentColor;
			}
		}

		.nav-links { 
			display: none;
			
			.dropdown-menu {
				display:none;
			}
		}

		.nav-hamburger { display: flex; }

		#navLinks.mobile-open {
			position: fixed; top: 4rem; left: 0; right: 0; z-index: 999;
			display: flex !important; flex-direction: column; gap: 0;
			padding: 0.5rem 0 1.5rem; background: var(--white);
			border-bottom: 0.0625rem solid var(--light-grey);
			box-shadow: 0 2rem 5rem rgba(26, 32, 53, 0.5);

			li { width: 100%; }

			a {
				display: block !important; padding: 1rem 1.5rem !important;
				border-bottom: 0.0625rem solid var(--light-grey) !important;
				color: var(--charcoal) !important; text-decoration: none;

				&:hover { background: var(--off-white); color: var(--sky) !important; }
			}

			.nav-cta {
				display: block !important; height:auto; margin:var(--nav-item-padding);
				background: var(--navy) !important; border-bottom: none !important;
				color: var(--white) !important; text-align: center !important;
			}

			.nav-contacts { 
				width:100%; padding-top:1rem;

				.nav-contact {
					display:none;
				}
			}
		}

		
	}

	@media (max-width: 479.98px) {
		--nav-height: 3.75rem; padding: 0 1rem;

		
	}
}



.nav-logo {

	font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
	letter-spacing: 0.08em; color: var(--navy); text-decoration: none;

	span { color: var(--sky); }

	@media (max-width: 479.98px) {
		font-size: 1.2rem;
	}
}

/* ─── BUTTONS ─── */
.btn-primary {
  display:inline-flex; justify-content: center; align-items: center; gap:.5rem;
  background: var(--sky);
  color: var(--white);
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--sky);
  cursor: pointer;
}
.btn-primary:hover { background: var(--deep-navy); border-color: var(--deep-navy); color: var(--white); }

.btn-navy {
  display:inline-flex; justify-content: center; align-items: center; gap:.5rem;
  background: var(--deep-navy);
  color: var(--white);
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--deep-navy);
  cursor: pointer;
}
.btn-navy:hover { background: var(--sky); border-color: var(--sky); color: var(--white); }

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.8);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--white); background-color: var(--white); color: var(--deep-navy); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 12px 26px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-cta-white {
  background: var(--white); color: var(--navy);
  padding: 14px 2rem; text-decoration: none;
  font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-family: var(--font-body);
  font-weight: 400; transition: all 0.3s; white-space: nowrap;
  display: inline-block;
}
.btn-cta-white:hover { background: var(--sky); color: var(--white); }

.btn-cta-ghost {
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 14px 2rem; text-decoration: none;
  font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-family: var(--font-body);
  font-weight: 300; transition: all 0.3s; white-space: nowrap;
  display: inline-block;
}
.btn-cta-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ─── SECTION COMMON ─── */
section { padding: 120px 4rem; }

.section-eyebrow {
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 2rem; height: 1px;
  background: var(--sky);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; }

/* ─── SERVICES (index grid) ─── */
#services { background: var(--off-white); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px;
}
.services-intro {
  font-size: 0.88rem; font-weight: 300;
  color: var(--steel); line-height: 1.9;
  letter-spacing: 0.02em;
  max-width: 520px; margin-top: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-grey);
}
.service-card {
  background: var(--white);
  padding: 52px 44px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--sky);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--navy); }
.service-card:hover .service-num,
.service-card:hover .service-name,
.service-card:hover .service-desc { color: var(--white); }
.service-card:hover .service-icon { color: var(--sky); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-size: 0.6rem; letter-spacing: 0.22em;
  color: var(--mid-grey); margin-bottom: 1.5rem;
  font-weight: 300;
}
.service-icon {
  font-size: 2rem; margin-bottom: 20px;
  color: var(--sky); display: block;
  transition: color 0.4s;
  line-height: 1;
}
.service-icon svg { display: block; color: inherit; }
.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  color: var(--navy); margin-bottom: 1rem;
  line-height: 1.2;
  transition: color 0.4s;
}
.service-desc {
  font-size: 0.8rem; font-weight: 300;
  color: var(--steel); line-height: 1.8;
  letter-spacing: 0.02em;
  transition: color 0.4s;
}

/* ─── SERVICES PAGE (full blocks) ─── */
.services-page { padding: 0}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.service-block:nth-child(even) .service-img { order: 2; }
.service-block:nth-child(even) .service-content { order: 1; }
.service-img {
  position: relative; overflow: hidden;
  background: var(--deep-navy);
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s ease;
  filter: brightness(0.92);
}
.service-block:hover .service-img img { transform: scale(1.04); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,19,32,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.service-number {
  position: absolute; top: 2rem; left: 2rem;
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1; pointer-events: none;
}
.service-content {
  background: var(--white);
  padding: 4.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.service-block:nth-child(even) .service-content {
  background: var(--off-white);
}
.service-eyebrow {
  font-size: 0.58rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 20px; font-weight: 300;
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; line-height: 1.15;
  color: var(--navy); margin-bottom: 1.5rem;
}
.service-title em { font-style: italic; }
.service-divider {
  width: 3rem; height: 1px;
  background: var(--gold); margin-bottom: 1.5rem;
}
.service-desc-full {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.9; color: var(--steel);
  letter-spacing: 0.02em; max-width: 420px;
  margin-bottom: 36px;
}
.service-features {
  list-style: none; margin-bottom: 2.5rem;
}
.service-features li {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal);
  font-weight: 400; padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  display: flex; align-items: center; gap: 12px;
}
.service-features li::before {
  content: ''; width: 4px; height: 4px;
  background: var(--sky); border-radius: 50%;
  flex-shrink: 0;
}
.service-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
  text-decoration: none; font-weight: 400;
  transition: color 0.3s; width: fit-content;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
}
.service-cta:hover { color: var(--sky); border-bottom-color: var(--sky); }
.service-cta svg { transition: transform 0.3s; }
.service-cta:hover svg { transform: translateX(4px); }

@media (max-width:991.98px) {
	.service-block {
		min-height:auto; grid-template-columns:1fr;

		.service-img {
			order:1 !important;

			img {
				aspect-ratio: 16 / 9;
			}
		}

		.service-content {
			order:2 !important;
		}
	}
}

@media (max-width:575.98px) {
	.service-block {
		.service-content {
			padding: 2rem 1.5rem;
		}
	}
}

@media (min-width:992px) {
	.service-img img {
		aspect-ratio: 1 / 1; height: auto;
	}
}

/* ─── AIRCRAFT ─── */
#aircraft {
	background: var(--white);

	.aircraft-explore.reveal {
		padding: 1.5rem 0 0;
	}
}
.aircraft-header { margin-bottom: 72px; }
.aircraft-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--light-grey);
}
.aircraft-card {
  border-right: 1px solid var(--light-grey);
  overflow: hidden; cursor: pointer;
  transition: all 0.3s; position: relative;
}
.aircraft-card:last-child { border-right: none; }
.aircraft-img {
  min-height: 14rem; aspect-ratio: 4 / 3; width: 100%;
  background: var(--light-grey) center/cover no-repeat;
  transition: transform 0.5s ease;
  overflow: hidden; display: block;
}
.aircraft-card:hover .aircraft-img { transform: scale(1.04); }
.aircraft-info {
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid var(--light-grey);
}
.aircraft-cat {
  font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 8px; font-weight: 300;
}
.aircraft-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400;
  color: var(--navy); margin-bottom: 12px;
}
.aircraft-specs {
  display: flex; gap: 20px;
  font-size: 0.7rem; color: var(--steel);
  letter-spacing: 0.06em;
}
.aircraft-spec { display: flex; flex-direction: column; gap: 2px; }
.aircraft-spec strong {
  font-size: 0.82rem; color: var(--charcoal);
  font-weight: 400;
}

/* Aircraft page categories */
.cat-section {
  padding: 3rem 1.5rem 0;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cat-section.visible { opacity: 1; transform: translateY(0); }
.cat-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 2rem 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.cat-card:hover {
  border-color: var(--sky);
  box-shadow: 0 4px 1.5rem rgba(74,126,188,0.08);
}
.card-num {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.2em; color: var(--steel);
  margin-bottom: 10px;
}
.card-icon {
  font-size: 2rem; display: block;
  margin-bottom: 12px;
  transition: transform 0.3s;
}
.cat-card:hover .card-icon { transform: translateX(4px); }
.card-label {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 6px;
}
.card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.card-title em { font-style: italic; }
.card-body {
  font-size: 0.85rem; font-weight: 300;
  color: var(--charcoal); line-height: 1.75;
}
.card-body + .card-body { margin-top: 12px; }
.card-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 1.5rem; padding-top: 20px;
  border-top: 1px solid var(--light-grey);
}
.meta-label {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 3px;
}
.meta-val {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400; color: var(--navy);
}
.ac-list {
  margin-top: 20px;
  border-top: 1px solid var(--light-grey);
}
.ac-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--light-grey);
}
.ac-row:last-child { border-bottom: none; }
.ac-row-name {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 400; color: var(--navy);
}
.ac-row-maker {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.08em; color: var(--steel);
}
.section-rule {
  height: 1px; background: var(--light-grey);
  margin: 3rem 1.5rem 0;
}
.photo-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 1.5rem;
}
.photo-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.ac-photo {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-wrap:hover .ac-photo { transform: scale(1.03); }


@media (max-width:991.98px) {
	.section-rule {
		margin: 0 1.5rem 0;
	}
}

/* ─── DESTINATIONS ─── */

/* Destinations page */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  padding: 0 4rem;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none; position: sticky; top: 72px; z-index: 50;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel); background: none; border: none;
  padding: 18px 20px 1rem; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn:hover { color: var(--sky); }
.filter-btn.active { color: var(--navy); border-bottom-color: var(--sky); }


/* Regions */
.regions-section {
  padding: 100px 4rem;
  background: var(--white);
}
.regions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--light-grey);
  margin-top: 64px;
}
.region-card {
  background: var(--white); padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  cursor: pointer; transition: all 0.4s ease;
}
.region-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--sky);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.region-card:hover { background: var(--navy); }
.region-card:hover .region-num,
.region-card:hover .region-name,
.region-card:hover .region-destinations { color: var(--white); }
.region-card:hover .region-desc { color: rgba(255,255,255,0.6); }
.region-card:hover::before { transform: scaleX(1); }
.region-card:hover .region-icon { color: var(--sky); }
.region-num {
  font-size: 0.6rem; letter-spacing: 0.22em;
  color: var(--mid-grey); margin-bottom: 1.5rem; font-weight: 300;
  transition: color 0.4s;
}
.region-icon {
  font-size: 1.6rem; margin-bottom: 18px;
  color: var(--sky); display: block;
  transition: color 0.4s; line-height: 1;
}
.region-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  color: var(--navy); margin-bottom: 12px; line-height: 1.2;
  transition: color 0.4s;
}
.region-desc {
  font-size: 0.8rem; font-weight: 300;
  color: var(--steel); line-height: 1.8;
  letter-spacing: 0.02em; margin-bottom: 20px;
  transition: color 0.4s;
}
.region-destinations {
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sky); transition: color 0.4s;
}

/* Airport band */
.airport-band {
  background: var(--deep-navy);
  padding: 5rem 4rem;
}
.airport-band-header { margin-bottom: 56px; }
.airport-band-header .section-eyebrow { color: var(--sky-light); }
.airport-band-header .section-eyebrow::before { background: var(--sky); }
.airport-band-header .section-title { color: var(--white); }
.airport-band-intro {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.5); max-width: 460px;
  line-height: 1.8; margin-top: 14px;
}
.airport-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid rgba(255,255,255,0.08);
}
.airport-card {
  padding: 36px 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.airport-card:last-child { border-right: none; }
.airport-card:hover { background: rgba(74,126,188,0.08); }
.airport-iata {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300;
  color: var(--sky); letter-spacing: 0.04em;
  margin-bottom: 8px; line-height: 1;
}
.airport-city {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px;
}
.airport-name {
  font-size: 0.72rem; font-weight: 300;
  color: rgba(255,255,255,0.4); margin-bottom: 1rem;
  line-height: 1.4;
}
.airport-note {
  font-size: 0.7rem; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 1.6;
  letter-spacing: 0.02em;
}

/* Routes table */
.routes-section {
  padding: 100px 4rem;
  background: var(--off-white);
}
.routes-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
}
.routes-table {
  border: 1px solid var(--light-grey);
}
.route-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr 1fr auto;
  align-items: center; gap: 0;
  border-bottom: 1px solid var(--light-grey);
  transition: background 0.2s;
  padding: 0;
}
.route-row:last-child { border-bottom: none; }
.route-row:hover { background: var(--white); }
.route-row.header-row {
  background: var(--navy); padding: 0;
}
.route-cell {
  padding: 1.5rem 1.5rem;
  font-size: 0.8rem; font-weight: 300;
  color: var(--charcoal); letter-spacing: 0.02em;
  border-right: 1px solid var(--light-grey);
}
.route-cell:last-child { border-right: none; }
.route-row.header-row .route-cell {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); border-right-color: rgba(255,255,255,0.08);
  padding: 1rem 1.5rem;
}
.route-from { font-weight: 400; color: var(--navy); }
.route-arrow {
  font-size: 0.7rem; color: var(--sky); padding: 0 8px;
}
.route-aircraft {
  font-size: 0.7rem; color: var(--sky); font-weight: 300;
}
.route-enquire {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); background: var(--navy);
  border: none; padding: 10px 1rem; cursor: pointer;
  margin: 12px 1rem; display: block; white-space: nowrap;
  text-decoration: none; text-align: center;
  transition: background 0.2s;
}
.route-enquire:hover { background: var(--sky); }

/* ─── HISTORY / STORY ─── */
#history, .story-section { background: var(--white); }
.history-inner, .story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 120px;
  align-items: start;
}
.history-content, .story-content { padding-top: 1rem; }
.history-text, .story-text {
  font-size: 0.88rem; font-weight: 300;
  color: var(--steel); line-height: 1.9;
  letter-spacing: 0.02em; margin: 1.5rem 0 2.5rem;
}
.story-lead {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 300;
  color: var(--navy); line-height: 1.5;
  letter-spacing: 0.01em; margin: 1.5rem 0 1.5rem;
}
.story-lead em { font-style: italic; }
.story-sign {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--light-grey);
  display: flex; align-items: center; gap: 20px;
}
.sign-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--navy); font-style: italic;
}
.sign-title {
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel); margin-top: 3px;
}
.sign-line { width: 2.5rem; height: 1px; background: var(--light-grey); }
.history-stats, .story-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--light-grey);
  margin-top: 52px;
}
.stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--light-grey);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 300;
  color: var(--navy); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--steel);
  font-weight: 300;
}
.history-visual {
  position: relative;
  height: 40rem;
}
.story-visual {
  position: relative;
  height: 62.5rem;
}
.history-img-main, .visual-main {
  position: absolute; top: 0; left: 0; right: 4rem; bottom: 5rem;
  background: var(--navy) center/cover no-repeat;
  overflow: hidden;
}
.history-img-accent, .visual-accent {
  position: absolute; bottom: 0; right: 0;
  width: 260px; height: 220px;
  background: var(--navy) center/cover no-repeat;
  border: 6px solid var(--white);
}
.visual-accent {
  width: 12.5rem; height: 12.5rem;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; padding: 1.5rem;
  border: none;
}
.accent-year {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 300;
  color: var(--white); line-height: 1;
}
.accent-label {
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 8px;
}
.visual-art {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a2035 0%, #2d4a7a 40%, #4a7ebc 70%, #7aafd4 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.visual-art::before {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: 20%; left: 20%;
}
.visual-art::after {
  content: '\2708';
  font-size: 5rem; opacity: 0.08;
  color: white; position: absolute;
  bottom: 20%; right: 15%;
  transform: rotate(-10deg);
}

/* Values */
.values-section { padding: 100px 4rem; background: var(--off-white); }
.values-header { margin-bottom: 64px; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--light-grey);
}
.value-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: all 0.4s ease; cursor: default;
}
.value-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--sky);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.value-card:hover { background: var(--navy); }
.value-card:hover .value-num,
.value-card:hover .value-name,
.value-card:hover .value-desc { color: var(--white); }
.value-card:hover .value-icon { color: var(--sky); }
.value-card:hover::before { transform: scaleX(1); }
.value-num {
  font-size: 0.6rem; letter-spacing: 0.22em;
  color: var(--mid-grey); margin-bottom: 1.5rem; font-weight: 300;
  transition: color 0.4s;
}
.value-icon {
  font-size: 1.6rem; margin-bottom: 18px;
  color: var(--sky); display: block;
  transition: color 0.4s; line-height: 1;
}
.value-name {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400;
  color: var(--navy); margin-bottom: 14px; line-height: 1.2;
  transition: color 0.4s;
}
.value-desc {
  font-size: 0.8rem; font-weight: 300;
  color: var(--steel); line-height: 1.8;
  letter-spacing: 0.02em; transition: color 0.4s;
}

/* Timeline */
.timeline-section { padding: 100px 4rem; background: var(--white); }
.timeline-header { margin-bottom: 72px; }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 1px;
  background: var(--light-grey);
}
.tl-item {
  position: relative; padding: 0 0 56px 3rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -5px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sky);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--sky);
}
.tl-year {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 8px;
}
.tl-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--navy); margin-bottom: 10px;
  line-height: 1.2;
}
.tl-desc {
  font-size: 0.83rem; font-weight: 300;
  color: var(--steel); line-height: 1.8;
  max-width: 560px;
}

/* Ethos band */
.ethos-band {
  background: var(--deep-navy);
  padding: 5rem 4rem;
}
.ethos-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.ethos-eyebrow {
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sky-light); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 14px;
}
.ethos-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--sky); }
.ethos-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; color: var(--white);
  line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.ethos-title em { font-style: italic; color: #a8c4e0; }
.ethos-text {
  font-size: 0.87rem; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85; letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.ethos-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.06);
  margin-top: 2.5rem; border: 1px solid rgba(255,255,255,0.06);
}
.pillar { padding: 1.5rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.06); }
.pillar:nth-child(even) { border-right: none; }
.pillar:nth-child(3), .pillar:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
.pillar-icon { font-size: 1.2rem; margin-bottom: 10px; display: block; }
.pillar-name {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sky-light); margin-bottom: 6px;
}
.pillar-text {
  font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.6;
}
.ethos-promise {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 44px;
}
.promise-quote {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 300;
  color: var(--white); line-height: 1.4;
  font-style: italic; margin-bottom: 1.5rem;
}
.promise-attr {
  font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─── CONTACT ─── */
#contact { background: var(--off-white); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 120px;
  align-items: start;
}
.contact-form {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--light-grey);
  background: var(--white);
}
.cf-row {
  display: grid; grid-template-columns: 1fr 1fr;
}
.cf-field {
  padding: 1.5rem 1.5rem;
  border-right: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}
.cf-field.full { grid-column: 1 / -1; }
.cf-field:nth-child(even) { border-right: none; }
.cf-field label {
  display: block; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 8px;
}
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; border: none; outline: none;
  font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 300; color: var(--navy);
  background: transparent; resize: none;
  -webkit-appearance: none;
}
.cf-field textarea { height: 5rem; }
.cf-submit {
  padding: 1.5rem 1.5rem; border-bottom: none;
}
.contact-info { padding-top: 8px; }
.contact-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--light-grey);
}
.contact-item-label {
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 8px; font-weight: 300;
}
.contact-item-val {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 300;
  color: var(--navy); line-height: 1.5;
}
.contact-item-val a { color: inherit; text-decoration: none; }

/* Contacts page */
.contact-section { padding: 100px 4rem; background: var(--white); }
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  margin-top: 0;
}
.contact-info-col { padding-top: 4px; }
.contact-items { margin-top: 2.5rem; }
.ci-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-grey);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: start;
}
.ci-item:last-child { border-bottom: none; }
.ci-label {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky); padding-top: 3px;
}
.ci-val {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 300;
  color: var(--navy); line-height: 1.5;
  text-decoration: none; display: block;
  transition: color 0.2s;
}
a.ci-val:hover { color: var(--sky); }
.ci-text {
  font-family: var(--font-body);
  font-size: 0.87rem; font-weight: 300;
  color: var(--charcoal); line-height: 1.65;
}
.contact-photo-col {
  min-height: 26rem; overflow: hidden;
}
.contact-photo {
  display: block; width: 100%; height: 100%; object-fit: cover;
}

.contact-photo-col, .contact-photo {
  min-height: 26rem; max-height:40rem;
}

.ci-item--buttons { border-bottom: none; align-items: center; }
.ci-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.ci-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  padding: 11px 20px;
  border: 1px solid var(--light-grey);
  color: var(--charcoal);
  transition: all 0.25s ease;
}
.ci-btn:hover { border-color: var(--sky); color: var(--sky); }
.ci-btn--wa { border-color: #25D366; color: #25D366; }
.ci-btn--wa:hover { background: #25D366; color: #fff; }
.ci-btn--tg { border-color: #229ED9; color: #229ED9; }
.ci-btn--tg:hover { background: #229ED9; color: #fff; }
.ci-btn--email { border-color: var(--sky); color: var(--sky); }
.ci-btn--email:hover { background: var(--sky); color: #fff; }

/* Availability band */
.avail-band {
  background: var(--deep-navy);
  padding: 64px 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.avail-item {
  padding: 2.5rem 44px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.avail-item:last-child { border-right: none; }
.avail-eyebrow {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin-bottom: 12px;
}
.avail-val {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--white); line-height: 1.1; margin-bottom: 8px;
}
.avail-val em { font-style: italic; color: #a8c4e0; }
.avail-note {
  font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.38); line-height: 1.6;
}

/* Map section */
.map-section {
  background: var(--off-white);
  padding: 5rem 4rem;
}
.map-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
.address-block {
  margin-top: 2rem;
  border: 1px solid var(--light-grey);
}
.address-row {
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid var(--light-grey);
  display: grid; grid-template-columns: 5rem 1fr;
  gap: 1rem; align-items: start;
}
.address-row:last-child { border-bottom: none; }
.addr-label {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sky); padding-top: 2px;
}
.addr-val {
  font-size: 0.85rem; font-weight: 300;
  color: var(--charcoal); line-height: 1.6;
}
.addr-val a { color: inherit; text-decoration: none; transition: color 0.2s; }
.addr-val a:hover { color: var(--sky); }
.addr-val .company-num {
  font-size: 0.72rem; color: var(--steel);
  margin-top: 4px; display: block; letter-spacing: 0.04em;
}
.map-visual {
  height: 380px;
  background: var(--light-grey);
  position: relative; overflow: hidden;
}
.map-visual iframe {
  width: 100%; height: 100%; border: none;
}
.map-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8eef6 0%, #d0dded 50%, #b8ccdf 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.map-fallback-icon { font-size: 2.5rem; opacity: 0.4; }
.map-fallback-text {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel);
}
.map-pin-label {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--navy); color: var(--white);
  padding: 10px 18px;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ─── BOOKING BAR ─── */
.booking-section {
  background: var(--white);
  position: relative;
  z-index: 10; padding-top:1.5rem; padding-bottom:0;
	box-shadow: 0 .5rem 4rem rgba(26,32,53,0.08);
	border: 1px solid var(--light-grey);
  width: 100%;

	.section__head {
		em {
			color:var(--sky);
		}
	}
}
.booking-card {
  background: var(--white);fbooking-tabs
  max-width: 100%;
	 /* margin: -3rem 0 0; */
  position: relative;

	@media (max-width:991.98px) {
		padding-top:1.5rem;
	}
}
.booking-tabs {
  display: flex; border-bottom: 1px solid var(--light-grey);
  padding: 1.5rem 1rem 0;
}
.booking-tab {
  padding: 1.25rem 0; margin-right: 2.25rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--steel); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s; position: relative; top: 1px;
}
.booking-tab.active { color: var(--navy); border-bottom-color: var(--sky); }
.booking-step { display: none; }
.booking-step.active { display: block; }
.booking-form-row {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 0.9fr 0.8fr auto;
  gap: 0;
  align-items: stretch;
  padding: 0;
}
.form-field {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--light-grey);
  position: relative;
  /* cursor: pointer; */
  overflow: visible;
}
.form-field:last-of-type { border-right: none; }
.form-field label {
  display: block;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 8px;
}
.form-field input, .form-field select {
  width: 100%; border: none; outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 400;
  color: var(--navy);
  background: transparent;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.form-field select option { color: var(--charcoal); }
.form-field:focus-within { background: var(--off-white); }
.form-field input::placeholder { color: var(--charcoal); opacity: 0.55; }
.form-field:focus-within label { color: var(--sky); }
.booking-submit-wrap {
  display: flex; align-items: center; padding: 20px 2rem;
}
.booking-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
  width: 100%;
}
.booking-submit:hover { background: var(--sky); }

/* Step 2 */
.booking-step-2 {
  padding: 2.5rem;
  display: none;
}
.booking-step-2.active { display: block; }
.step2-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.step2-back {
  background: none; border: 1px solid var(--mid-grey);
  padding: 8px 20px; font-family: var(--font-body);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--charcoal); cursor: pointer;
  transition: all 0.3s;
}
.step2-back:hover { border-color: var(--navy); color: var(--navy); }
.step2-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 300;
  color: var(--navy);
}
.step2-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--light-grey);
  max-width: 600px;
}
.step2-field {
  padding: 1.5rem 1.5rem; border-right: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}
.step2-field:nth-child(2) { border-right: none; }
.step2-field:nth-child(3), .step2-field:nth-child(4) { border-bottom: none; }
.step2-field label {
  display: block; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 8px;
}
.step2-field input {
  width: 100%; border: none; outline: none;
  font-family: var(--font-body); font-size: 0.92rem;
  font-weight: 300; color: var(--navy);
  background: transparent;
}
.step2-actions {
  margin-top: 1.5rem; display: flex; gap: 12px; align-items: center;
}
.step2-note {
  font-size: 0.72rem; color: var(--steel);
  letter-spacing: 0.04em; margin-top: 1rem;
}

/* Multi-leg */
.multi-leg { margin-bottom: 1rem; }
.leg-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 4px; font-weight: 400;
  padding: 0 4px;
}
.multi-leg .booking-form-row {
  border: 1px solid var(--light-grey);
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* City autocomplete */
.city-field { position: relative; overflow: visible !important; }
.city-dropdown {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-top: none;
  box-shadow: 0 1rem 3rem rgba(26,32,53,0.12);
  z-index: 999;
  max-height: 280px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}
.city-dropdown.open { display: block; }
.city-option {
  padding: 1rem 2rem;
  font-size: 0.88rem; font-weight: 300;
  color: var(--charcoal);
  cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(239,239,237,0.7);
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
  min-height: 52px;
  pointer-events: all;
}
.city-option:last-child { border-bottom: none; }
.city-option:hover, .city-option.highlighted { background: var(--off-white); color: var(--navy); }
.city-option-iata {
  font-size: 0.65rem; letter-spacing: 0.14em;
  color: var(--sky); font-weight: 400;
  min-width: 36px;
}
.city-option-country {
  font-size: 0.68rem; color: var(--steel);
  margin-left: auto; letter-spacing: 0.04em;
}

/* Enquiry form */
.enquiry-form-wrap { display: flex; flex-direction: column; gap: 0; }
.enquiry-form-title { margin-bottom: 1.5rem; }
.enquiry-subtitle {
  font-size: 0.8rem; font-weight: 300;
  color: var(--steel); letter-spacing: 0.04em;
  line-height: 1.7; margin-top: 6px;
}

/* ─── WHY CHOOSE US ─── */
.why-choose {
  margin-top: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--light-grey);
}
.why-header { margin-bottom: 52px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--light-grey);
  border: 1px solid var(--light-grey);
}
.why-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.why-item:hover { background: var(--off-white); }
.why-icon {
  font-size: 1.2rem; color: var(--sky);
  margin-bottom: 1rem; display: block;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--navy); margin-bottom: 10px;
}
.why-text {
  font-size: 0.8rem; font-weight: 300;
  color: var(--steel); line-height: 1.8;
}

/* ─── SERVICES DESTINATIONS CALLOUT ─── */
.services-destinations {
  margin-top: 5rem;
  padding: 4rem;
  background: var(--deep-navy);
  text-align: center;
}
.services-destinations .section-eyebrow {
  justify-content: center; color: var(--sky-light);
}
.services-destinations .section-eyebrow::before { background: var(--sky); }
.services-dest-text {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.9; letter-spacing: 0.03em;
  max-width: 680px; margin: 20px auto 0;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--navy);
  padding: 5rem 4rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; color: var(--white); line-height: 1.2;
}
.cta-band-text h2 em { font-style: italic; color: var(--gold); }
.cta-band-text p {
  margin-top: 12px; font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.55); letter-spacing: 0.02em;
}
.cta-band-actions { display: flex; gap: 1rem; flex-shrink: 0; }
.cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300; color: var(--white);
}
.cta-text em { font-style: italic; color: #a8c4e0; }
.cta-sub {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: 10px; max-width: 420px; line-height: 1.7;
}

/* ─── LUXURY BAND ─── */
.luxury-band {
  background: var(--navy);
  padding: 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
}
.luxury-band-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300; color: var(--white);
  letter-spacing: 0.01em;
}
.luxury-band-text em { font-style: italic; color: var(--sky-light); }
.band-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center; flex-shrink: 0;
}
.band-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 1.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.band-btn:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.band-btn--whatsapp:hover { background: #25D366; border-color: #25D366; color: var(--white); }
.band-btn--telegram:hover  { background: #2AABEE; border-color: #2AABEE; color: var(--white); }
.band-btn--email:hover     { background: var(--sky); border-color: var(--sky); color: var(--white); }
.band-btn--call:hover      { background: rgba(255,255,255,0.12); }

/* ─── ENQUIRE (aircraft page) ─── */
.enquire {
  background: var(--navy);
  margin: 3rem 0 0; padding: 52px 1.5rem;
}
.enquire h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  font-weight: 400; color: var(--white);
  line-height: 1.15; margin-bottom: 10px;
}
.enquire h2 em { font-style: italic; color: #9dbee0; }
.enquire p {
  font-size: 0.84rem; font-weight: 300;
  color: rgba(255,255,255,0.48);
  max-width: 400px; line-height: 1.7; margin-bottom: 26px;
}
.btn-enquire {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: transparent;
  padding: 13px 1.5rem;
  border: 1px solid rgba(255,255,255,0.28);
  text-decoration: underline; text-underline-offset: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-enquire:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.55); }

/* ─── POLICY PAGES ─── */
.policy-wrap {
  max-width: 860px; margin: 0 auto; padding: 5rem 4rem 120px;
}
.policy-intro {
  font-size: 1rem; font-weight: 300; line-height: 1.9;
  color: var(--steel); letter-spacing: 0.02em;
  margin-bottom: 64px; padding-bottom: 3rem;
  border-bottom: 1px solid var(--light-grey);
}
.policy-section { margin-bottom: 52px; }
.policy-section-number {
  font-size: 0.58rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sky);
  font-weight: 300; margin-bottom: 14px;
}
.policy-divider { width: 3rem; height: 1px; background: var(--gold); margin: 0 0 1.5rem; }
.policy-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400; color: var(--navy);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.policy-section p {
  font-size: 0.9rem; font-weight: 300; line-height: 1.9;
  color: var(--steel); letter-spacing: 0.02em; margin-bottom: 1rem;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-list {
  list-style: none; padding: 0; margin: 0 0 1rem;
}
.policy-list li {
  font-size: 0.88rem; font-weight: 300; color: var(--steel);
  letter-spacing: 0.02em; padding: 9px 0;
  border-bottom: 1px solid var(--light-grey);
  display: flex; align-items: flex-start; gap: 12px; line-height: 1.7;
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before {
  content: ''; width: 4px; height: 4px;
  background: var(--sky); border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.policy-highlight {
  background: var(--off-white);
  border-left: 3px solid var(--sky);
  padding: 1.5rem 1.5rem; margin: 0 0 1rem;
}
.policy-highlight p {
  font-size: 0.87rem; font-weight: 300;
  line-height: 1.8; color: var(--charcoal); margin-bottom: 0;
}
.policy-notice {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.5rem; margin-bottom: 1rem;
}
.policy-notice p {
  font-size: 0.87rem; font-weight: 300;
  line-height: 1.8; color: var(--charcoal); margin-bottom: 0;
}

/* Cookie groups */
.cookie-group {
  margin-bottom: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border-left: 3px solid var(--sky);
}
.cookie-group-title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.cookie-group p {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--steel);
  margin-bottom: 14px;
}
.cookie-list {
  list-style: none; margin: 0; padding: 0;
}
.cookie-list li {
  font-size: 0.82rem; font-weight: 300; color: var(--charcoal);
  letter-spacing: 0.02em; padding: 8px 0;
  border-bottom: 1px solid var(--light-grey);
  display: flex; align-items: flex-start; gap: 12px; line-height: 1.6;
}
.cookie-list li:last-child { border-bottom: none; }
.cookie-list li::before {
  content: ''; width: 4px; height: 4px;
  background: var(--sky); border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}
.browser-list {
  list-style: none; padding: 0; margin: 0;
}
.browser-list li {
  font-size: 0.87rem; font-weight: 300; color: var(--steel);
  letter-spacing: 0.02em; padding: 9px 0;
  border-bottom: 1px solid var(--light-grey);
  display: flex; align-items: center; gap: 12px; line-height: 1.6;
}
.browser-list li:last-child { border-bottom: none; }
.browser-list li::before {
  content: ''; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
}

/* ─── MODAL ─── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(13,19,32,0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none; align-items: center; justify-content: center;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--white);
  max-width: 520px; width: 90%;
  padding: 52px;
  position: relative;
  animation: modalIn 0.4s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 20px; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--steel);
  line-height: 1; transition: color 0.2s;
}
.modal-close:hover { color: var(--navy); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--navy); margin-bottom: 8px;
}
.modal-sub {
  font-size: 0.78rem; color: var(--steel);
  margin-bottom: 2rem; letter-spacing: 0.04em;
}
.modal-confirm {
  background: var(--sky);
  color: var(--white); border: none;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; cursor: pointer;
  margin-top: 1.5rem; width: 100%;
  transition: background 0.3s;
}
.modal-confirm:hover { background: var(--navy); }

/* ─── FOOTER ─── */
footer {
  background: var(--deep-navy);
  padding: 72px 4rem 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo {
  display: block; margin-bottom: 20px;
  color: var(--white);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--white);
  text-decoration: none; display: block; margin-bottom: 18px;
}
.footer-logo span { color: var(--sky); }
.footer-tagline {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8; letter-spacing: 0.04em;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.78rem; font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--sky-light); }
.footer-bottom {
  padding-top: 2.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2.5rem; flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.72rem; font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.8; letter-spacing: 0.03em;
  max-width: 44rem;
}
.footer-policy {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  align-items: flex-start;
}
.footer-policy a {
  font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.3s;
}
.footer-policy a:hover { color: var(--sky-light); }
.footer-policy a.active { color: var(--gold); }

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 20px; z-index: 500;
  width: 2.5rem; height: 2.5rem; background: var(--sky); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--navy); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.hidden { opacity: 0; transform: translateY(20px); }
.reveal.hidden.visible { opacity: 1; transform: translateY(0); }

/* ─── TABLET (max-width: 1024px) ─── */
@media (max-width: 1023.98px) {
  section { padding: 3rem 1.25rem; }
  nav, #mainNav, .topnav { padding: 0 2rem; }
  .hero-content { padding: 0 20px; margin-top: 4rem; }
  .hero h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 0.82rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; padding: .875rem 1.25rem; }

  .booking-section {}
  .booking-card { margin: -2rem auto 0; }
  .booking-form-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .form-field { padding: 18px 1rem; min-height: 72px; }
  .form-field input, .form-field select { font-size: 1rem !important; min-height: 2rem; }
  .booking-submit-wrap { grid-column: 1 / -1; padding: 1rem; }
  .booking-submit { width: 100%; }
  .booking-tabs { padding: 0 1rem; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 36px 1.5rem; }

  .aircraft-grid { grid-template-columns: 1fr 1fr; }
  .aircraft-img { height: 160px; }
  .aircraft-info { padding: 18px 1rem 20px; }
  .aircraft-name { font-size: 1rem; }
  .aircraft-specs { gap: 10px; }

  .history-inner, .story-inner { grid-template-columns: 1fr; gap: 0; }
  .history-visual, .story-visual { display: none; }
  .history-stats, .story-stats { grid-template-columns: repeat(3,1fr); }
  .stat { padding: 20px 12px; }
  .stat-num { font-size: 1.8rem; }

  .contact-inner, .contact-main { grid-template-columns: 1fr; gap: 3rem; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-field { border-right: none !important; }

  .luxury-band { flex-direction: column; align-items: flex-start; padding: 2.5rem 20px; gap: 1.5rem; }
  .band-actions { flex-wrap: wrap; gap: 8px; width: 100%; }
  .band-btn { flex: 1; min-width: 44%; justify-content: center; padding: 12px 8px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1.25rem; }
  .footer-policy { gap: 1rem; }

  .page-hero { padding: 0 1.5rem 3rem; }
  .policy-wrap { padding: 52px 1.5rem 5rem; }
  .cta-band { flex-direction: column; padding: 3rem 1.5rem; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .btn-cta-white, .btn-cta-ghost { text-align: center; }

  .contact-section, .avail-band, .map-section { padding-left: 2rem; padding-right: 2rem; }
  .map-inner { grid-template-columns: 1fr; }
  .map-visual { height: 280px; }
  .avail-band { grid-template-columns: 1fr 1fr; }
  .avail-item:last-child { grid-column: 1 / -1; border-right: none; border-top: 1px solid rgba(255,255,255,0.06); }

	.regions-section, .airport-band, .routes-section { padding: 72px 2rem; }
  .filter-bar { padding: 0 2rem; }
  .dest-mosaic { grid-template-rows: 220px 220px; }
  .regions-grid { grid-template-columns: 1fr 1fr; }
  .airport-grid { grid-template-columns: 1fr 1fr; }
  .route-row { grid-template-columns: 1fr 1fr 1fr auto; }
  .route-cell:nth-child(4),
  .route-cell:nth-child(5) { display: none; }

  .story-visual { height: 360px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .ethos-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── MOBILE (max-width: 768px) ─── */
@media (max-width: 767.98px) {
  nav, #mainNav, .topnav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex !important; flex-direction: column; align-items: flex-start;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem 1.5rem;
    gap: 20px;
    border-bottom: 1px solid var(--light-grey);
    box-shadow: 0 8px 2rem rgba(26,32,53,0.08);
  }

  .hero { padding-top: 64px; min-height: 60vh; }
  .hero-content { padding: 0 20px; }
  .page-hero { padding-top: 64px; padding-bottom: 3rem; }

  .contact-section, .cta-band, footer { padding: 56px 20px; }
  .avail-band { padding: 3rem 20px; grid-template-columns: 1fr; }
  .avail-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .avail-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .address-row { grid-template-columns: 70px 1fr; }

  .story-section, .values-section, .timeline-section, .ethos-band { padding: 56px 20px; }
  .story-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .ethos-pillars { grid-template-columns: 1fr; }
  .pillar:nth-child(even) { border-right: none; }
  .pillar { border-right: none !important; }
  .pillar:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .timeline { padding-left: 1.5rem; }
  .tl-item { padding-left: 2rem; }
}

/* ─── SMALL MOBILE (max-width: 839.98px) ─── */
@media (max-width: 839.98px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); gap:3rem 1.5rem; }
  .page-hero-title { font-size: 2rem; }
  .cookie-group { padding: 20px 20px; }
}

/* ─── MOBILE (max-width: 480px) ─── */
@media (max-width: 479.98px) {
  section { padding: 44px 1rem; }
  .hero-content { padding: 0 1rem; }
  .hero h1 { font-size: 2rem; line-height: 1.12; }
  .hero-eyebrow { font-size: 0.6rem; }

  .booking-card { margin: -1.25rem auto 0; }
  .booking-form-row { grid-template-columns: 1fr; }
  .form-field { border-right: none !important; padding: 1rem 1rem; }
  .booking-submit-wrap { padding: 12px 1rem; }
  .booking-tabs { gap: 0; }
  .booking-tab { margin-right: 1rem; font-size: 0.62rem; }

  .section-title { font-size: 1.8rem; }
  .section-eyebrow { font-size: 0.58rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem 20px; }
  .service-name { font-size: 1.2rem; }

  .aircraft-grid { grid-template-columns: 1fr; gap:1.5rem }
  .aircraft-img { height: 200px; }

  .destinations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 11rem);
  }
  .dest-card { min-height: 11rem; }
  .dest-card:first-child { grid-row: auto; min-height: 11rem; }
  .dest-city { font-size: 1.6rem; }
  .dest-card:first-child .dest-city { font-size: 1.6rem; }

  .history-visual { height: 22.5rem; margin-bottom: 2rem; }
  .history-img-main { right: 0; bottom: 0; top: 0; left: 0; }
  .history-stats { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 18px 10px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.55rem; }

  .luxury-band-text { font-size: 1.4rem; }
  .band-btn { min-width: 100%; }

  /* .footer-top { grid-template-columns: 1fr; gap: 2rem; } */
  .footer-legal { font-size: 0.65rem; }

  .step2-grid { grid-template-columns: 1fr; }
  .step2-field { border-right: none !important; }
  .modal { padding: 2rem 20px; }

  .why-choose { margin-top: 20px; padding-top: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 1.5rem 20px; }

  .photo-gallery { grid-template-columns: 1fr; }
}

/* --- HOME PAGE IMAGE BACKGROUNDS --- */
.hero-bg {
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 20 60 / 55%) 100%),
    linear-gradient(165deg, rgb(0 50 155 / 75%) 0%, rgba(15, 20, 32, 0.3) 55%, rgb(8 25 57 / 55%) 100%),
    url("../img/home-hero-picture.webp") center center/cover no-repeat;
}
.history-img-main { background: #BAC5D7; }
.history-img-main::after { content: ''; position: absolute; inset: 0; mix-blend-mode: multiply; background: url("../img/home-private-jet.webp") center/cover no-repeat; }
.history-img-accent { background: var(--navy) url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?w=600&q=80") center/cover no-repeat; }

@keyframes heroDrift {
  from { transform: scale(1.03); }
  to { transform: scale(1); }
}


.flight-code { justify-self: end; width: min(100%, 360px); border-left: 1px solid rgba(255,255,255,0.18); padding: 1.5rem 0 1.5rem 42px; animation: fadeUp 0.9s ease 0.12s both; }
.flight-code-number { display: block; font-variant-numeric: lining-nums tabular-nums; font-feature-settings: "lnum" 1, "tnum" 1; margin: 1rem 0 3rem; font-family: var(--font-display); font-size: clamp(7rem, 16vw, 13rem); font-weight: 300; line-height: 0.82; color: rgba(255,255,255,0.16); }
.flight-code-label { margin-bottom: 30px; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.42); }
.quick-links { display: grid; gap: 1px; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
.quick-link { display: flex; align-items: center; justify-content: space-between; min-height: 54px; padding: 1rem 0; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.25s ease, padding-left 0.25s ease; }
.quick-link:last-child { border-bottom: none; }
.quick-link::after { content: ''; width: 18px; height: 1px; background: var(--gold); transform-origin: right; transition: transform 0.25s ease; }
.quick-link:hover { color: var(--white); padding-left: 8px; }
.quick-link:hover::after { transform: scaleX(1.5); }

@media (max-width: 1024px) {
  .not-found-inner { grid-template-columns: 1fr; align-content: center; gap: 3rem; padding: 5rem 2rem 64px; }
  .flight-code { justify-self: stretch; width: 100%; border-left: none; border-top: 1px solid rgba(255,255,255,0.16); padding: 34px 0 0; }
  .flight-code-number { font-size: clamp(5.4rem, 24vw, 10rem); }
}

@media (max-width: 768px) {
  .not-found { min-height: auto; padding-top: 64px; }
  .not-found::after { top: 64px; }
  .not-found-inner { padding: 64px 20px 56px; }
  .not-found-actions { flex-direction: column; align-items: stretch; }
  .not-found .btn-primary, .not-found .btn-ghost { width: 100%; padding: 15px 20px; text-align: center; }
}

@media (max-width: 480px) {
  .not-found-inner { padding: 52px 1rem 3rem; gap: 38px; }
  .not-found-eyebrow { font-size: 0.58rem; letter-spacing: 0.24em; }
  .not-found h1 { font-size: 2.35rem; }
  .not-found-text { font-size: 0.88rem; line-height: 1.75; }
  .flight-code-number { font-size: 5.5rem; }
}
