/* ========================================================
   JETS FBO — Design System
   Evolution of existing brand toward more refined, photo-driven
   ======================================================== */

:root {
  /* Brand blues (pulled from existing hero + banners) */
  --jets-blue: #1B4F9C;
  --jets-blue-hover: #15407F;
  --jets-deep: #0B2855;
  --jets-navy: #061A3B;
  --jets-bright: #1E78D0;
  --jets-tint: #E8F0FA;

  /* Neutrals */
  --ink: #0A0F1A;
  --ink-2: #1A2230;
  --body: #4A5567;
  --muted: #8892A6;
  --line: #E3E8EF;
  --line-2: #D5DCE6;
  --bg: #FFFFFF;
  --bg-soft: #F4F6FA;
  --bg-tint: #EEF2F8;
  --black: #0A0A0A;

  /* Type */
  --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Spacing & radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --shadow-card: 0 1px 2px rgba(11,40,85,.04), 0 12px 32px -8px rgba(11,40,85,.12);
  --shadow-hover: 0 1px 2px rgba(11,40,85,.06), 0 24px 48px -12px rgba(11,40,85,.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ----- Type scale ----- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--jets-blue);
}
.eyebrow.on-dark { color: #9BC0EE; }

h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 5.4vw, 68px); letter-spacing: -0.02em; line-height: 1.05; }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 1.9vw, 26px); }
h4 { font-size: 18px; }
p  { margin: 0; color: var(--body); line-height: 1.65; }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); }

/* ----- Layout helpers ----- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .wrap, .wrap-wide { padding: 0 20px; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all .18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--jets-blue);
  color: #fff;
}
.btn-primary:hover { background: var(--jets-blue-hover); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.65);
}
.btn-ghost:hover { background: #fff; color: var(--jets-deep); }
.btn-outline {
  background: transparent;
  color: var(--jets-blue);
  border-color: var(--jets-blue);
}
.btn-outline:hover { background: var(--jets-blue); color: #fff; }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-2); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----- Header / Nav ----- */
.topbar {
  background: var(--jets-navy);
  color: #B9C7DD;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.topbar .wrap-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar a:hover { color: #fff; }
.topbar .tb-links { display: flex; gap: 28px; align-items: center; }
.topbar .tb-links a { display: inline-flex; align-items: center; gap: 6px; }
.topbar .tb-cta { color: #fff; font-weight: 600; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header .wrap-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.brand {
  display: flex; align-items: center;
}
.brand img { height: 38px; width: auto; }

.nav { display: flex; gap: 4px; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color .15s;
}
.nav-link:hover, .nav-item.open .nav-link { color: var(--jets-blue); }
.nav-link .caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s;
}
.nav-item.open .caret { transform: rotate(-135deg) translate(-2px, -2px); }

.nav-cta {
  margin-left: 12px;
  padding: 10px 20px;
  background: var(--jets-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}
.nav-cta:hover { background: var(--jets-blue-hover); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 720px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hover);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-item.open .dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; }
.dropdown-col h5 {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px 12px;
  font-weight: 700;
}
.dd-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  transition: background .12s;
}
.dd-item:hover { background: var(--bg-soft); }
.dd-item .dd-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dd-item .dd-code {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--jets-blue);
  background: var(--jets-tint);
  padding: 2px 6px;
  border-radius: 3px;
}
.dd-item .dd-sub { font-size: 13px; color: var(--muted); }
.dd-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--body);
}
.dd-footer a { color: var(--jets-blue); font-weight: 600; }

/* mobile */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
}
.menu-toggle span {
  position: relative;
  width: 22px; height: 2px; background: var(--ink-2);
  display: block;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink-2);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

@media (max-width: 1024px) {
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ----- Mobile polish across the whole site ----- */
@media (max-width: 720px) {
  /* Topbar: hide left-side links on small screens, keep phone numbers compact */
  .topbar .wrap-wide { height: auto; padding-top: 8px; padding-bottom: 8px; gap: 8px; flex-wrap: wrap; justify-content: center; }
  .topbar .tb-links:first-child { display: none; }
  .topbar .tb-links { gap: 14px; flex-wrap: wrap; justify-content: center; font-size: 11.5px; }

  /* Header height */
  .header .wrap-wide { height: 64px; }
  .brand img { height: 32px; }

  /* Hero - tighter on mobile */
  .hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-sub { font-size: 16px; }
  .hero .wrap-wide { padding-top: 40px; padding-bottom: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Cleveland banner — stack and center on mobile */
  .cle-banner .wrap-wide { flex-direction: column; align-items: stretch; gap: 14px; text-align: center; }
  .cle-banner .cle-left { flex-direction: column; gap: 10px; align-items: center; }
  .cle-msg { font-size: 16px; }
  .cle-actions { justify-content: center; flex-wrap: wrap; }
  .cle-actions .cle-link { font-size: 12px; padding: 10px 16px; }

  /* Page-hero meta — wrap and tighten */
  .page-hero.with-plane { min-height: 320px; }
  .page-hero.with-plane h1 { font-size: clamp(26px, 7vw, 36px); }
  .page-hero.with-plane .page-meta { flex-wrap: wrap; gap: 16px 24px; margin-top: 18px; padding-top: 16px; }
  .page-hero.with-plane .page-meta .meta-item .val { font-size: 13.5px; }
  .page-hero.with-plane .page-meta .meta-item .lbl { font-size: 10px; }

  /* CTA section stack buttons */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* Trust + Partner card */
  .partner-card { padding: 24px; }
  .partner-card .ptxt { font-size: 16px; }

  /* Sidebar card alongside prose stacks naturally; tighten padding */
  .sidecard { padding: 22px; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 59, .96);
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .md-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-drawer .md-close { color: #fff; font-size: 28px; line-height: 1; padding: 8px; }
.mobile-drawer .md-list { margin-top: 16px; }
.mobile-drawer .md-group { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-drawer .md-label { color: #9BC0EE; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.mobile-drawer .md-link { display: block; color: #fff; font-size: 22px; font-weight: 700; padding: 12px 0; letter-spacing: -0.01em; }
.mobile-drawer .md-sub { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; color: #D9E4F3; font-size: 16px; }
.mobile-drawer .md-sub .dd-code { background: rgba(255,255,255,.1); color: #9BC0EE; padding: 2px 6px; border-radius: 3px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; }

/* ----- HERO ----- */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, #061A3B 0%, #0E2E5C 35%, #1B4F9C 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 60%, rgba(30,120,208,.45), transparent 55%);
  z-index: 1;
}
/* Readability gradient for the overlay copy on the left */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,26,59,.78) 0%, rgba(6,26,59,.45) 32%, transparent 62%);
  pointer-events: none;
  z-index: 2;
}

/* Big background "JETS" wordmark — brand hero element. Inside flight-scene so jet renders above it. */
.hero-jets-bg {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: auto;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(360px, 60vw, 880px);
  line-height: 0.75;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(180deg, #6FA0DC 0%, #2E68B5 50%, #0E2E5C 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: .18;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  will-change: transform;
  transition: transform 1.4s cubic-bezier(.16,.84,.18,1);
}
.hero .wrap-wide {
  position: relative;
  z-index: 3;
  display: block;
  padding-top: 96px;
  padding-bottom: 32px;
  /* Hug the left edge instead of centering — full-bleed hero layout */
  max-width: none;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
  margin: 0;
}
.hero-copy {
  max-width: 560px;
  position: relative;
}
.hero-copy .eyebrow {
  color: #9BC0EE;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-copy .eyebrow::before {
  content: ''; width: 28px; height: 1px; background: #9BC0EE;
}
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: #9BC0EE;
}
.hero-sub {
  font-size: 18px;
  color: #C8D5E8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art { display: none; }

/* Flight scene wrapper — fills the whole hero */
.flight-scene {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 65% 100%, rgba(155,192,238,.28), transparent 65%),
    linear-gradient(180deg, #061A3B 0%, #143C7E 50%, #4A85C9 100%);
  z-index: 0;
}

/* Distant stars/lights */
.flight-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 28% 8%,  rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 42% 22%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 67% 12%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 82% 26%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 92% 6%,  rgba(255,255,255,.7), transparent);
  pointer-events: none;
}

/* ----- Clouds ----- */
.cloud {
  position: absolute;
  width: 220px;
  height: 70px;
  background:
    radial-gradient(ellipse 38% 55% at 20% 65%, rgba(255,255,255,.95), rgba(255,255,255,.4) 50%, transparent 80%),
    radial-gradient(ellipse 42% 70% at 50% 40%, rgba(255,255,255,1), rgba(255,255,255,.5) 50%, transparent 80%),
    radial-gradient(ellipse 38% 55% at 78% 60%, rgba(255,255,255,.9), rgba(255,255,255,.4) 50%, transparent 80%),
    radial-gradient(ellipse 28% 45% at 35% 30%, rgba(255,255,255,.85), transparent 70%);
  pointer-events: none;
  will-change: transform;
  z-index: 2;
}

/* Back layer — very faint, slow, very blurred (distant horizon) */
.cloud-bg {
  filter: blur(10px);
  opacity: .18;
  width: 340px;
  height: 90px;
  animation: drift 90s linear infinite;
}
/* Mid layer */
.cloud-md {
  filter: blur(6px);
  opacity: .28;
  width: 240px;
  height: 75px;
  animation: drift 55s linear infinite;
}
/* Front layer — sharper, faster, suggests jet moving through them */
.cloud-fr {
  filter: blur(4px);
  opacity: .42;
  width: 160px;
  height: 55px;
  animation: drift 32s linear infinite;
}

@keyframes drift {
  0%   { transform: translateX(110vw); }
  100% { transform: translateX(-120%); }
}

/* ----- SVG jet ----- */
.jet-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4%;
  padding-bottom: 6%;
  pointer-events: none;
  z-index: 5;
}
.jet-svg {
  width: clamp(380px, 48vw, 760px);
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,.5));
  /* Flip horizontally so the jet faces RIGHT — matches motion direction */
  transform: scaleX(-1);
  animation:
    jetEnter 1.8s cubic-bezier(.18,.84,.22,1) .4s both,
    jetBob 5s ease-in-out 2.4s infinite alternate;
  will-change: transform;
}
@keyframes jetEnter {
  0%   { transform: scaleX(-1) translate(-60%, 10%) scale(.4) rotate(3deg); opacity: 0; filter: blur(8px); }
  40%  { opacity: 1; filter: blur(2px); }
  100% { transform: scaleX(-1) translate(0, 0) scale(1) rotate(0deg); opacity: 1; filter: drop-shadow(0 24px 32px rgba(0,0,0,.5)); }
}
@keyframes jetBob {
  0%   { transform: scaleX(-1) translate(0, 0)         rotate(0deg); }
  100% { transform: scaleX(-1) translate(1.5%, -1.2%)  rotate(-.6deg); }
}

/* Speed streaks IN the scene — converge toward jet, simulate forward motion */
.flight-scene .speed-line {
  position: absolute;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85) 60%, rgba(255,255,255,0));
  border-radius: 2px;
  filter: blur(.4px);
  animation: speedLine 1.6s linear infinite;
  opacity: 0;
  z-index: 4;
}
.flight-scene .speed-line:nth-of-type(1) { top: 10%; width: 80px;  animation-delay: 0s;   animation-duration: 1.8s; }
.flight-scene .speed-line:nth-of-type(2) { top: 24%; width: 110px; animation-delay: .3s;  animation-duration: 1.4s; }
.flight-scene .speed-line:nth-of-type(3) { top: 36%; width: 60px;  animation-delay: .7s;  animation-duration: 2.0s; }
.flight-scene .speed-line:nth-of-type(4) { top: 50%; width: 130px; animation-delay: .1s;  animation-duration: 1.3s; }
.flight-scene .speed-line:nth-of-type(5) { top: 62%; width: 90px;  animation-delay: .9s;  animation-duration: 1.7s; }
.flight-scene .speed-line:nth-of-type(6) { top: 74%; width: 70px;  animation-delay: .5s;  animation-duration: 1.5s; }
.flight-scene .speed-line:nth-of-type(7) { top: 84%; width: 120px; animation-delay: 1.1s; animation-duration: 1.6s; }
.flight-scene .speed-line:nth-of-type(8) { top: 92%; width: 50px;  animation-delay: .2s;  animation-duration: 2.1s; }
@keyframes speedLine {
  0%   { left: 110%; opacity: 0; transform: scaleX(.6); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: -20%; opacity: 0; transform: scaleX(1.4); }
}

/* (engine-glow & old photo .hero-jet styles removed — jet is now SVG) */

/* Subtle altitude line readout — operator UI feel */
.alt-readout {
  position: absolute;
  top: 20px; right: 28px;
  z-index: 6;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: rgba(155,192,238,.9);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease-out 2.4s forwards;
}
.alt-readout .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4FE3A4;
  box-shadow: 0 0 8px #4FE3A4;
  animation: blink 1.4s ease-in-out infinite;
}
.alt-readout .sep { color: rgba(155,192,238,.4); }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* Entrance animations */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .9s cubic-bezier(.16,.84,.18,1) forwards;
}
.fade-up.d1 { animation-delay: .15s; }
.fade-up.d2 { animation-delay: .30s; }
.fade-up.d3 { animation-delay: .45s; }
.fade-up.d4 { animation-delay: .60s; }
.fade-up.d5 { animation-delay: .80s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.4s ease-out .2s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(0deg, rgba(6,26,59,.7), rgba(6,26,59,.25));
  backdrop-filter: blur(4px);
  margin-top: auto;
}
.hero-stat {
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,.12);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp .8s cubic-bezier(.16,.84,.18,1) forwards;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .lbl {
  margin-top: 6px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9BC0EE;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in, .hero-stat { opacity: 1; transform: none; animation: none; }
  .jet-svg, .cloud, .hero-jets-bg, .speed-line, .alt-readout, .alt-readout .dot { animation: none; opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero .wrap-wide { min-height: 0; padding-top: 56px; padding-bottom: 24px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .jet-wrap { padding-right: 0; opacity: .55; }
}

/* ----- Cleveland callout banner ----- */
.cle-banner {
  background: var(--jets-blue);
  color: #fff;
  padding: 22px 0;
}
.cle-banner .wrap-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cle-banner .cle-left {
  display: flex; align-items: center; gap: 18px;
}
.cle-pill {
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.3);
}
.cle-msg {
  font-size: 18px;
  font-weight: 600;
}
.cle-msg strong { font-weight: 800; }
.cle-actions { display: flex; gap: 10px; align-items: center; }
.cle-actions .cle-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 22px;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.cle-actions .cle-link:hover { background: #fff; color: var(--jets-blue); }
.cle-actions .cle-link.primary { background: #fff; color: var(--jets-blue); border-color: #fff; }
.cle-actions .cle-link.primary:hover { background: rgba(255,255,255,.9); }

/* ----- Intro ----- */
.intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.intro .eyebrow { margin-bottom: 22px; display: inline-block; }
.intro h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  margin-bottom: 24px;
  text-wrap: balance;
}
.intro p {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.6;
  text-wrap: pretty;
}

/* ----- Services storytelling ----- */
.services { background: var(--bg-soft); }
.services .head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.services .head h2 { text-wrap: balance; }
.services .head p { max-width: 560px; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 88px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse .service-img { order: 2; }
.service-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-tint);
  box-shadow: var(--shadow-card);
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-img .badge {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,40,85,.88);
  color: #fff;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.service-img .num {
  position: absolute;
  bottom: 18px; right: 22px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  line-height: 1;
  letter-spacing: -0.04em;
  mix-blend-mode: overlay;
}
.service-copy .eyebrow { margin-bottom: 18px; display: inline-block; }
.service-copy h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  margin-bottom: 18px;
}
.service-copy p {
  font-size: 17px;
  margin-bottom: 20px;
}
.service-copy ul {
  margin: 0 0 28px 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.service-copy ul li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}
.service-copy ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 2px;
  background: var(--jets-blue);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--jets-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-link:hover { color: var(--jets-blue-hover); }
.service-link .arrow { transition: transform .18s; }
.service-link:hover .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .services .head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .service-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .service-row.reverse .service-img { order: 0; }
  .service-copy ul { grid-template-columns: 1fr; }
}

/* ----- Locations grid ----- */
.locations .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.locations-grid .loc-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
  background-color: var(--jets-deep);
  background-size: cover;
  background-position: center;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  isolation: isolate;
}
.locations-grid .loc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,26,59,.1) 0%, rgba(6,26,59,.4) 50%, rgba(6,26,59,.95) 100%);
  z-index: -1;
}
.locations-grid .loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.locations-grid .loc-card .loc-code {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 12px;
  border-radius: 4px;
  color: #fff;
}
.locations-grid .loc-card .loc-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--jets-bright);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 700;
}
.locations-grid .loc-card h3 {
  color: #fff;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.locations-grid .loc-card .loc-place {
  font-size: 14px;
  color: #C8D5E8;
  margin-bottom: 18px;
}
.locations-grid .loc-card .loc-list {
  list-style: none; padding: 0; margin: 0 0 24px 0;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.locations-grid .loc-card .loc-list li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  color: #fff;
}
.locations-grid .loc-card .loc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.locations-grid .loc-card.cleveland {
  grid-row: span 2;
  min-height: 0;
}
.locations-grid .loc-card .loc-hangars {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.loc-hangar-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  transition: background .15s;
  color: #fff;
}
.loc-hangar-btn:hover { background: rgba(255,255,255,.2); }
.loc-hangar-btn .lh-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #9BC0EE; font-weight: 700; }
.loc-hangar-btn .lh-name { font-size: 15px; font-weight: 700; margin-top: 2px; }

@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; }
  .locations-grid .loc-card.cleveland { grid-row: auto; min-height: 420px; }
}

/* ----- Trust / Partners strip ----- */
.trust {
  background: var(--ink);
  color: #fff;
}
.trust .trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.trust h2 { color: #fff; }
.trust .eyebrow { color: #9BC0EE; display: inline-block; margin-bottom: 18px; }
.trust p { color: #B9C7DD; font-size: 17px; margin-bottom: 24px; }
.partner-card {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
}
.partner-card .pq {
  font-size: 60px;
  line-height: 0.6;
  color: var(--jets-bright);
  font-family: Georgia, serif;
}
.partner-card .ptxt {
  font-size: 18px;
  color: #fff;
  margin: 14px 0 24px;
  line-height: 1.5;
  text-wrap: pretty;
}
.partner-card .pmeta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.partner-card .pmeta .pavatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jets-blue), var(--jets-bright));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  letter-spacing: 0.04em;
}
.partner-card .pmeta .pname { font-size: 14px; font-weight: 700; }
.partner-card .pmeta .prole { font-size: 12px; color: #9BC0EE; letter-spacing: 0.06em; }

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.tstat .num { font-size: 56px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.tstat .num .unit { font-size: 28px; color: #9BC0EE; margin-left: 6px; }
.tstat .lbl { margin-top: 10px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #9BC0EE; }
.tstat .desc { margin-top: 8px; font-size: 14px; color: #B9C7DD; max-width: 280px; }

@media (max-width: 900px) {
  .trust .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-stats { grid-template-columns: 1fr; gap: 20px; }
}

/* ----- CTA section ----- */
.cta-section {
  background: var(--jets-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 50%, rgba(30,120,208,.4), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(30,120,208,.2), transparent 55%);
}
.cta-section .wrap {
  position: relative;
  text-align: center;
  padding: 88px 32px;
}
.cta-section .eyebrow { color: #9BC0EE; margin-bottom: 18px; display: inline-block; }
.cta-section h2 { color: #fff; max-width: 760px; margin: 0 auto 18px; text-wrap: balance; }
.cta-section p { color: #C8D5E8; font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- Footer ----- */
.footer {
  background: var(--black);
  color: #B9C7DD;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 36px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { color: #8892A6; font-size: 14px; max-width: 280px; }
.footer h5 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px 0;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a { color: #B9C7DD; transition: color .15s; }
.footer ul li a:hover { color: #fff; }
.footer-loc { font-size: 13.5px; line-height: 1.7; color: #B9C7DD; margin-bottom: 14px; }
.footer-loc strong { color: #fff; display: block; font-size: 13px; letter-spacing: 0.06em; margin-bottom: 4px; }
.footer-sub {
  padding-left: 12px;
  border-left: 2px solid rgba(255,255,255,.08);
  margin-top: 6px;
}
.footer-sub strong { font-size: 11px; letter-spacing: 0.04em; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #6C7689;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: #fff; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ----- SVG placeholder pattern (when no real image) ----- */
.ph {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(11,40,85,.06) 0 1px, transparent 1px 14px),
    var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 16px;
}

/* ========================================================
   SUB-PAGE HERO + LAYOUTS
   ======================================================== */
.page-hero {
  background:
    linear-gradient(135deg, #061A3B 0%, #0E2E5C 45%, #1B4F9C 100%);
  color: #fff;
  padding: 96px 0 56px;
  position: relative;
  overflow: hidden;
}

/* ----- Hero variant with plane photo facing camera + cloud parallax ----- */
.page-hero.with-plane {
  padding: 0;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.page-hero.with-plane .scene-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero.with-plane .scene-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(155,192,238,.25), transparent 60%);
  pointer-events: none;
}
.page-hero.with-plane .plane-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  background-image: url('../assets/jets-hero-jet.jpg');
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.6) 20%, #000 45%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.6) 20%, #000 45%, #000 100%);
  z-index: 2;
  animation: planeApproach 22s ease-in-out infinite alternate;
}
@keyframes planeApproach {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -.8%); }
}
.page-hero.with-plane::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,26,59,.82) 0%, rgba(6,26,59,.5) 35%, transparent 60%);
  pointer-events: none;
  z-index: 3;
}
/* Pull copy hard left, edge-to-edge like the home hero */
.page-hero.with-plane .wrap-wide {
  position: relative;
  z-index: 4;
  max-width: none;
  margin: 0;
  padding-top: 64px;
  padding-bottom: 56px;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
}
.page-hero.with-plane .hero-copy-block {
  max-width: 620px;
}
.page-hero.with-plane h1 { margin-bottom: 14px; font-size: clamp(32px, 3.6vw, 48px); }
.page-hero.with-plane .page-lead { font-size: clamp(15px, 1.2vw, 17px); margin-bottom: 4px; }

/* 3 meta points on a single line */
.page-hero.with-plane .page-meta {
  margin-top: 24px;
  padding-top: 22px;
  gap: 36px;
  flex-wrap: nowrap;
}
.page-hero.with-plane .page-meta .meta-item .val { font-size: 15px; }
.page-hero.with-plane .page-meta .meta-item .lbl { margin-bottom: 4px; }

/* Slower cloud drift specifically on the plane hero so they feel continuous */
.page-hero.with-plane .scene-bg .cloud { z-index: 1; }
.page-hero.with-plane .scene-bg .cloud-bg { animation-duration: 130s; }
.page-hero.with-plane .scene-bg .cloud-md { animation-duration: 80s; }
.page-hero.with-plane .scene-bg .cloud-fr { animation-duration: 55s; }

/* Mini jet that flies round-trip across the scene (R→L, flip, L→R, loop) */
.page-hero.with-plane .mini-jet,
.page-hero.with-photo .mini-jet {
  position: absolute;
  top: 30px;
  left: 100%;
  width: 120px;
  height: auto;
  z-index: 1;
  opacity: .85;
  pointer-events: none;
  animation: miniJetRoundTrip 36s linear infinite;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
}
@keyframes miniJetRoundTrip {
  /* Phase 1 — flies in from far right, exits far left (facing left, default SVG) */
  0%   { left: 100%;  transform: scaleX(1)  translateY(0); }
  20%  { transform: scaleX(1) translateY(-6px); }
  45%  { left: -180px; transform: scaleX(1)  translateY(2px); }
  /* Off-stage flip */
  48%  { left: -180px; transform: scaleX(-1) translateY(0); }
  /* Phase 2 — flies back in from far left, exits far right (facing right) */
  53%  { left: -180px; transform: scaleX(-1) translateY(0); }
  70%  { transform: scaleX(-1) translateY(-6px); }
  95%  { left: 100%;  transform: scaleX(-1) translateY(2px); }
  /* Off-stage flip back, ready to loop */
  98%  { left: 100%;  transform: scaleX(1)  translateY(0); }
  100% { left: 100%;  transform: scaleX(1)  translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero.with-plane .mini-jet { display: none; }
}

@media (max-width: 900px) {
  .page-hero.with-plane { min-height: 380px; }
  .page-hero.with-plane .plane-photo { width: 80%; opacity: .35; }
  .page-hero.with-plane::after { background: linear-gradient(180deg, rgba(6,26,59,.65) 0%, rgba(6,26,59,.9) 100%); }
  .page-hero.with-plane .page-meta { flex-wrap: wrap; gap: 20px 28px; }
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 30%, rgba(30,120,208,.35), transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(155,192,238,.18), transparent 60%);
  pointer-events: none;
}
.page-hero.with-image {
  padding: 0;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.page-hero.with-image .ph-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero.with-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,26,59,.45) 0%, rgba(6,26,59,.85) 100%);
  z-index: 1;
}
.page-hero.with-image .wrap-wide { padding-top: 80px; padding-bottom: 56px; }
.page-hero .wrap-wide { position: relative; z-index: 2; }

.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9BC0EE;
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s, color .15s;
}
.breadcrumb a:hover { text-decoration-color: #fff; color: #fff; }
.breadcrumb .sep { opacity: .5; }

.page-hero .code-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(36px, 4.4vw, 60px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-wrap: balance;
  max-width: 900px;
}
.page-hero h1 em { font-style: normal; color: #9BC0EE; }
.page-hero .page-lead {
  color: #C8D5E8;
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 720px;
  line-height: 1.6;
}

.page-meta {
  display: flex;
  gap: 32px 48px;
  margin-top: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.page-meta .meta-item {
  display: flex;
  flex-direction: column;
}
.page-meta .meta-item .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9BC0EE;
  margin-bottom: 6px;
}
.page-meta .meta-item .val {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.page-meta .meta-item .val a { color: #fff; }
.page-meta .meta-item .val a:hover { color: #9BC0EE; }

/* ----- Content blocks ----- */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; gap: 32px; } }

.prose h2 { margin-top: 0; margin-bottom: 18px; }
.prose h3 { margin-top: 36px; margin-bottom: 12px; }
.prose p { font-size: 17px; line-height: 1.65; margin-bottom: 18px; color: var(--ink-2); }
.prose p:last-child { margin-bottom: 0; }
.prose ul { padding-left: 0; margin: 0 0 18px; list-style: none; }
.prose ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--ink-2);
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 2px;
  background: var(--jets-blue);
}

.sidecard {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.sidecard h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jets-blue);
  margin-bottom: 16px;
  font-weight: 700;
}
.sidecard dl { margin: 0; }
.sidecard dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  font-weight: 600;
}
.sidecard dt:first-child { margin-top: 0; }
.sidecard dd {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.sidecard dd a { color: var(--jets-blue); }
.sidecard .btn { width: 100%; justify-content: center; margin-top: 22px; }

/* ----- Feature grid ----- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color .15s, transform .2s;
}
.feature-card:hover {
  border-color: var(--jets-blue);
  transform: translateY(-2px);
}
.feature-card .feat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--jets-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--jets-blue);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.feature-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--body);
  margin: 0;
  line-height: 1.55;
}

/* ----- Inline location card grid ----- */
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .network-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .network-grid { grid-template-columns: 1fr; } }
.network-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .15s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.network-card:hover {
  border-color: var(--jets-blue);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.network-card .code {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--jets-blue);
  background: var(--jets-tint);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.network-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.network-card .place {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.network-card .phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.network-card .tags {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.network-card .tags li {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--bg-tint);
  color: var(--ink-2);
  border-radius: 100px;
}
.network-card .meta-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.network-card .meta-row .go {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jets-blue);
}

/* ----- Contact form ----- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--jets-blue);
  box-shadow: 0 0 0 3px rgba(27,79,156,.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ==========================================================
   South Hangar page-specific extensions
   ========================================================== */

/* Cinematic full-bleed hero with photo background */
.page-hero.with-photo {
  padding: 0;
  min-height: 440px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.page-hero.with-photo .ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: kenBurns 30s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.10) translate(-1%, -.8%); }
}
.page-hero.with-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Heavy dark-to-mid blue overlay — photo is a subtle texture underneath */
  background: linear-gradient(135deg, rgba(6, 26, 59, 0.92) 0%, rgba(11, 40, 85, 0.85) 50%, rgba(27, 79, 156, 0.82) 100%);
  z-index: 1;
}
/* Scene-bg (clouds + mini jet) sits ABOVE the photo, BELOW the copy */
.page-hero.with-photo .scene-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.page-hero.with-photo .wrap-wide {
  position: relative;
  z-index: 4;
  max-width: none;
  margin: 0;
  padding-top: 64px;
  padding-bottom: 56px;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
}
.page-hero.with-photo .hero-copy-block { max-width: 620px; }
.page-hero.with-photo .hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.page-hero.with-photo h1 {
  margin-bottom: 14px;
  font-size: clamp(32px, 3.6vw, 48px);
}
.page-hero.with-photo .page-lead {
  font-size: clamp(15px, 1.2vw, 17px);
  margin-bottom: 4px;
}
.page-hero.with-photo .page-meta {
  margin-top: 24px;
  padding-top: 22px;
  gap: 36px;
  flex-wrap: nowrap;
}
.page-hero.with-photo .page-meta .meta-item .val { font-size: 15px; }
.page-hero.with-photo .page-meta .meta-item .lbl { margin-bottom: 4px; }

@media (max-width: 900px) {
  .page-hero.with-photo { min-height: 380px; }
  .page-hero.with-photo .page-meta { flex-wrap: wrap; gap: 16px 24px; }
}

/* Alternating photo+copy storytelling rows (like home services) */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 88px;
}
.story-row:last-child { margin-bottom: 0; }
.story-row.reverse .story-img { order: 2; }
.story-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-tint);
  box-shadow: var(--shadow-card);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img .badge {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,40,85,.9);
  color: #fff;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.story-img .credit {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
  color: rgba(255,255,255,.85);
  font-size: 11px;
  letter-spacing: 0.04em;
  font-style: italic;
}
.story-img .credit strong { color: #fff; font-style: normal; font-weight: 600; }
.story-copy .eyebrow { display: inline-block; margin-bottom: 16px; }
.story-copy h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.story-copy p {
  font-size: 17px;
  margin-bottom: 18px;
  color: var(--ink-2);
  line-height: 1.65;
}
.story-copy ul {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
}
.story-copy ul li {
  font-size: 15px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}
.story-copy ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 2px;
  background: var(--jets-blue);
}
.story-copy .row-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--jets-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.story-copy .row-cta:hover { color: var(--jets-blue-hover); }
.story-copy .row-cta .arrow { transition: transform .18s; }
.story-copy .row-cta:hover .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .story-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .story-row.reverse .story-img { order: 0; }
}

/* Icon feature grid (hangar features + ground services) */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.icon-grid.three { grid-template-columns: repeat(3, 1fr); }
.icon-grid .icon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--r-md);
  transition: background .15s;
}
.icon-grid .icon-cell:hover { background: var(--bg-soft); }
.icon-grid .icon-cell svg {
  width: 44px;
  height: 44px;
  color: var(--jets-blue);
  margin-bottom: 14px;
}
.icon-grid .icon-cell .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); padding: 18px; }
  .icon-grid.three { grid-template-columns: repeat(2, 1fr); }
  .icon-grid .icon-cell { padding: 18px 8px; }
  .icon-grid .icon-cell svg { width: 36px; height: 36px; margin-bottom: 10px; }
  .icon-grid .icon-cell .label { font-size: 10px; }
}

/* Centered head block */
.center-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.center-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.center-head h2 { margin-bottom: 12px; text-wrap: balance; }
.center-head p { font-size: 17px; color: var(--ink-2); max-width: 620px; margin: 0 auto; line-height: 1.65; }

/* Dark trusted ground services panel */
.ground-services {
  background: linear-gradient(180deg, #061A3B 0%, #0B2855 100%);
  color: #fff;
  padding: 96px 0;
}
.ground-services .center-head .eyebrow { color: #9BC0EE; }
.ground-services .center-head h2 { color: #fff; }
.ground-services .center-head p { color: #C8D5E8; }
.ground-services .icon-grid {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  box-shadow: none;
}
.ground-services .icon-grid .icon-cell:hover { background: rgba(255,255,255,.06); }
.ground-services .icon-grid .icon-cell svg { color: #7AB8F5; }
.ground-services .icon-grid .icon-cell .label { color: #E0EAF8; }

/* Partner logo strip */
.partners {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners .center-head { margin-bottom: 32px; }
.partners .center-head .eyebrow { color: var(--jets-blue); display: inline-block; }
.partners .center-head h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 12px;
}
.partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.partner-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  transition: opacity .15s, transform .15s;
}
.partner-row a:hover { opacity: .75; transform: translateY(-2px); }
.partner-row img {
  max-height: 56px;
  width: auto;
  filter: grayscale(20%);
}
.partner-row a:hover img { filter: grayscale(0); }
@media (max-width: 720px) {
  .partner-row { gap: 28px; }
  .partner-row img { max-height: 40px; }
}

/* Lease / hangar space available callout */
.lease-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lease-band .lease-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.lease-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,40,85,.92) 0%, rgba(11,40,85,.72) 50%, rgba(11,40,85,.5) 100%);
  z-index: 1;
}
.lease-band .wrap-wide {
  position: relative;
  z-index: 2;
  padding: 80px clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: none;
}
.lease-band .lease-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9BC0EE;
  margin-bottom: 16px;
  display: inline-block;
}
.lease-band h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 14px;
}
.lease-band h2 em { font-style: normal; color: #9BC0EE; }
.lease-band .lease-lead { color: #C8D5E8; font-size: 18px; line-height: 1.6; margin-bottom: 22px; max-width: 600px; }
.lease-band .lease-features {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 4px;
  padding: 0; list-style: none;
}
.lease-band .lease-features li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  color: #fff;
}
.lease-actions-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.lease-actions-card h4 {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}
.lease-actions-card .lease-phone {
  font-size: 28px;
  font-weight: 800;
  color: #9BC0EE;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: block;
}
.lease-actions-card .btn { justify-content: center; }
.pdf-row {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 8px;
}
.pdf-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s, border-color .15s;
}
.pdf-link:hover { background: rgba(0,0,0,.32); border-color: rgba(255,255,255,.28); }
.pdf-link svg { flex-shrink: 0; color: #9BC0EE; }
.pdf-link .pdf-meta { color: #9BC0EE; font-size: 11px; font-weight: 500; display: block; margin-top: 2px; }
@media (max-width: 900px) {
  .lease-band .wrap-wide { grid-template-columns: 1fr; gap: 28px; padding: 56px clamp(20px, 5vw, 40px); }
}

/* North Hangar — blue quick-links strip */
.quick-links {
  background: linear-gradient(135deg, #1B4F9C 0%, #15407F 100%);
  color: #fff;
  padding: 48px 0;
}
.quick-links .ql-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.quick-links .ql-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--r-md);
  color: #fff;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.quick-links .ql-cell:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.quick-links .ql-cell svg {
  width: 36px;
  height: 36px;
  color: #fff;
  flex-shrink: 0;
}
.quick-links .ql-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.quick-links .ql-sub {
  font-size: 11px;
  color: #9BC0EE;
  letter-spacing: 0.08em;
  margin-top: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 900px) { .quick-links .ql-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .quick-links .ql-grid { grid-template-columns: 1fr; } }

/* Check-list (used on Why Choose section) */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 14px;
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--jets-blue);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* 18-service icon grid — 6 columns on desktop */
.icon-grid.services-18 {
  grid-template-columns: repeat(6, 1fr);
  padding: 36px;
}
@media (max-width: 1024px) { .icon-grid.services-18 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px) { .icon-grid.services-18 { grid-template-columns: repeat(2, 1fr); padding: 18px; } }
/* North/KYNG: lodging + dining inline grid needs mobile fallback */
.crew-amenities-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .crew-amenities-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Two-col inline grid for content blocks (used in KYNG lodging) */
@media (max-width: 900px) {
  .section [style*="grid-template-columns: 1.4fr 1fr"],
  .section [style*="grid-template-columns:1.4fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* Make iframes responsive */
iframe[src*="google.com/maps"] {
  max-width: 100%;
}
@media (max-width: 600px) {
  iframe[src*="google.com/maps"] { height: 320px !important; }
}
