/* ============================================================
   AERIAL JETS — v2 cinematic luxury system
   ============================================================ */
:root {
  --bg:        oklch(98.5% 0.003 80);
  --bg-soft:   oklch(96.2% 0.004 80);
  --bg-3:      oklch(93.5% 0.006 80);
  --ink:       oklch(22% 0.012 265);
  --ink-soft:  oklch(42% 0.012 265);
  --ink-mute:  oklch(58% 0.012 265);
  --line:      oklch(89% 0.005 80);
  --line-2:    oklch(80% 0.006 80);

  --dark:      oklch(17% 0.008 265);
  --dark-2:    oklch(12% 0.006 265);
  --on-dark:   oklch(95% 0.004 90);
  --on-dark-mute: oklch(72% 0.008 90);
  --line-dark: oklch(32% 0.01 265);

  --accent:    oklch(49% 0.20 26);
  --accent-2:  oklch(60% 0.20 26);

  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1340px;
  --pad: clamp(22px, 5.2vw, 84px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- shared type ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.eyebrow.mute { color: var(--ink-mute); }
.eyebrow.on-dark { color: var(--accent-2); }

.h-xl {
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-lg {
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0;
}
.h-md {
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0;
}
.lead {
  font-weight: 300;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 0;
  border: 1px solid var(--ink); background: var(--ink); color: var(--on-dark);
  cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.accent:hover { background: oklch(43% 0.20 26); border-color: oklch(43% 0.20 26); }
.btn.outline { background: transparent; color: var(--ink); }
.btn.outline:hover { background: var(--ink); color: var(--on-dark); }
.btn.on-dark { background: transparent; border-color: oklch(70% 0.01 90 / .5); color: var(--on-dark); }
.btn.on-dark:hover { background: #fff; border-color: #fff; color: var(--ink); }

.link-red {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); padding-bottom: 6px;
  border-bottom: 1px solid color-mix(in oklch, var(--accent) 40%, transparent);
  transition: gap .3s var(--ease), border-color .3s;
  width: fit-content;
}
.link-red:hover { gap: 16px; border-color: var(--accent); }
.link-red.on-dark { color: var(--accent-2); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 28px;
  padding: 22px var(--pad);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: oklch(98.5% 0.003 80 / .9);
  backdrop-filter: blur(16px) saturate(1.2);
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.nav-logo { position: relative; height: 30px; }
.nav-logo img { height: 30px; width: auto; transition: opacity .4s var(--ease); }
.nav-logo .dark-logo { position: absolute; inset: 0; opacity: 0; }
.nav.scrolled .nav-logo .white-logo { opacity: 0; }
.nav.scrolled .nav-logo .dark-logo { opacity: 1; }

.nav-links { display: flex; justify-content: center; gap: 38px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark); position: relative; padding: 6px 0; transition: color .3s;
}
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 22px; justify-self: end; }
.nav-phone { font-size: 13px; letter-spacing: 0.06em; color: var(--on-dark); white-space: nowrap; }
.nav.scrolled .nav-phone { color: var(--ink-soft); }
.nav-btn {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 12px 24px; border: 1px solid currentColor; color: var(--on-dark);
  white-space: nowrap;
  transition: background .3s, color .3s, border-color .3s;
}
.nav-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.nav.scrolled .nav-btn { color: var(--accent); border-color: var(--accent); }
.nav.scrolled .nav-btn:hover { background: var(--accent); color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 660px; overflow: hidden; background: var(--dark-2); }
.hero-media { position: absolute; inset: 0; }
.hero-media image-slot { width: 100%; height: 100%; display: block; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, oklch(12% 0.006 265 / .5) 0%, transparent 26%, transparent 48%, oklch(10% 0.006 265 / .82) 100%),
    linear-gradient(75deg, oklch(10% 0.006 265 / .55) 0%, transparent 60%);
}
.hero-inner {
  position: relative; z-index: 3; height: 100%;
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(56px, 9vh, 110px);
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--on-dark);
}
.hero .eyebrow { color: var(--accent-2); }
.hero h1 {
  font-weight: 200;
  font-size: clamp(46px, 7.4vw, 116px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin: 20px 0 0; max-width: 16ch;
}
.hero h1 b { font-weight: 500; font-style: normal; }
.hero h1 .red { color: var(--accent-2); font-weight: 400; }
.hero-sub {
  margin: 26px 0 0; max-width: 46ch;
  font-weight: 300; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55;
  color: var(--on-dark-mute);
}
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--on-dark-mute);
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
}
.scroll-cue .bar { width: 1px; height: 38px; background: linear-gradient(var(--accent-2), transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity:.5 } 50% { transform: scaleY(1); opacity:1 } }

/* ============================================================
   PLAN A FLIGHT  (booking band)
   ============================================================ */
.plan { background: var(--dark); color: var(--on-dark); padding: clamp(40px, 5vw, 64px) 0; }
.plan-inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.plan-intro h2 { font-weight: 300; font-size: clamp(26px, 2.4vw, 36px); line-height: 1.05; letter-spacing: -0.015em; margin: 10px 0 0; }
.plan-intro .eyebrow { color: var(--accent-2); }
.booking {
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 0;
  border: 1px solid var(--line-dark);
}
.bk-field { display: flex; flex-direction: column; gap: 6px; padding: 18px 22px; border-right: 1px solid var(--line-dark); }
.bk-field label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-mute); }
.bk-field input, .bk-field select {
  border: 0; background: transparent; outline: none; appearance: none;
  font-family: var(--sans); font-size: 16px; font-weight: 400; color: var(--on-dark); width: 100%; padding: 0;
}
.bk-field input::placeholder { color: var(--on-dark-mute); }
.bk-field option { color: #111; }
.bk-submit { display: flex; }
.bk-submit button {
  border: 0; background: var(--accent); color: #fff;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0 30px; cursor: pointer; transition: background .3s; white-space: nowrap;
}
.bk-submit button:hover { background: oklch(43% 0.20 26); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section.block { padding: clamp(72px, 10vw, 150px) 0; }

/* intro / statement of difference */
.intro-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.intro-grid .lead.big { font-size: clamp(22px, 2.1vw, 30px); font-weight: 300; line-height: 1.45; color: var(--ink); letter-spacing: -0.01em; }
.intro-grid .lead.big em { font-style: normal; color: var(--accent); }
.pillars { margin-top: 4px; display: grid; gap: 0; }
.pillar { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 26px 0; border-top: 1px solid var(--line); align-items: start; }
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar .pn { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; color: var(--accent); padding-top: 7px; }
.pillar h3 { font-weight: 500; font-size: 21px; letter-spacing: -0.01em; margin: 0 0 6px; }
.pillar p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); font-weight: 300; }

/* ============================================================
   FEATURE BANDS
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: clamp(440px, 56vw, 720px); }
.feat-media { position: relative; overflow: hidden; background: var(--dark-2); }
.feat-media image-slot { width: 100%; height: 100%; display: block; }
.feat-text { display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: clamp(40px, 6vw, 110px); background: var(--bg); }
.feature.soft .feat-text { background: var(--bg-soft); }
.feature.reverse .feat-media { order: 2; }

/* ---------- fleet (stacked, wide photo) ---------- */
.fleet-stack { background: var(--bg-soft); }
.fleet-head { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(32px, 4vw, 52px); }
.fleet-head-copy h2 { margin-top: 16px; max-width: 20ch; }
.fleet-head-side { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.fleet-head-side .lead { max-width: 44ch; }
.fleet-photo { width: 100%; overflow: hidden; background: var(--dark-2); aspect-ratio: 1964 / 806; }
.fleet-photo image-slot { width: 100%; height: 100%; display: block; }

/* animated route map (replaces fleet photo) */
.fleet-map { position: relative; width: 100%; aspect-ratio: 1964 / 806; overflow: hidden; background: linear-gradient(180deg, oklch(97.5% 0.004 80) 0%, oklch(95% 0.005 75) 100%); border: 1px solid var(--line); }
.fm-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.fm-dots { fill: oklch(40% 0.012 262); opacity: 0.38; }
.fm-arc { fill: none; stroke: var(--ink); stroke-width: 1.3; stroke-opacity: 0.5; stroke-dasharray: 1; stroke-linecap: round; }
.fm-node { fill: #fff; stroke: var(--accent); stroke-width: 1.6; }
.fm-core { fill: var(--accent); }
.fm-pulse { fill: var(--accent); }
.fm-label { fill: var(--ink); font-family: var(--sans); font-size: 18px; font-weight: 600; letter-spacing: 0.13em; }
.fm-routes { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; flex-wrap: wrap; gap: 10px 28px; padding: 20px clamp(20px, 3vw, 40px); background: linear-gradient(180deg, transparent, oklch(96% 0.005 75 / .92) 55%); }
.fm-routes span { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 7px; }
.fm-routes i { color: var(--accent); font-style: normal; font-size: 14px; }
@media (max-width: 600px) { .fm-label { font-size: 26px; } .fm-routes span { font-size: 11px; } }
@media (prefers-reduced-motion: reduce) {
  .fm-arc { stroke-dashoffset: 0 !important; }
  .fm-svg animate, .fm-svg animateMotion { animation: none; }
}
.fleet-meta { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(28px, 3.5vw, 44px); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line); }
.fleet-meta .m { padding: 26px 28px 24px; border-right: 1px solid var(--line); }
.fleet-meta .m:last-child { border-right: 0; }
.fleet-meta .m .v { font-weight: 300; font-size: clamp(28px, 3vw, 46px); letter-spacing: -0.02em; line-height: 1; }
.fleet-meta .m .v em { font-style: normal; color: var(--accent); }
.fleet-meta .m .k { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 10px; }

.fleet-classes { display: grid; grid-template-columns: repeat(7, 1fr); border-bottom: 1px solid var(--line); }
.fleet-classes .fc { display: flex; flex-direction: column; gap: 8px; padding: 24px 18px 22px; border-right: 1px solid var(--line); transition: background .3s var(--ease); }
.fleet-classes .fc:last-child { border-right: 0; }
.fleet-classes .fc:hover { background: var(--bg); }
.fleet-classes .fc-n { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: var(--accent); }
.fleet-classes .fc-name { font-weight: 400; font-size: clamp(15px, 1.15vw, 17px); letter-spacing: -0.008em; line-height: 1.15; color: var(--ink); }
.fleet-classes .fc-pax { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-mute); margin-top: auto; }
.feat-text .lead { max-width: 46ch; }
.feat-meta { display: flex; gap: 36px; margin-top: 4px; flex-wrap: wrap; }
.feat-meta .m .v { font-weight: 300; font-size: clamp(26px, 2.4vw, 38px); letter-spacing: -0.02em; line-height: 1; }
.feat-meta .m .v em { font-style: normal; color: var(--accent); }
.feat-meta .m .k { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 8px; }

/* ============================================================
   STATEMENT (full-bleed cinematic)
   ============================================================ */
.statement { position: relative; min-height: clamp(460px, 62vh, 720px); display: grid; overflow: hidden; background: var(--dark-2); }
.statement image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.statement .scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, oklch(12% 0.006 265 / .62) 0%, oklch(12% 0.006 265 / .28) 52%, oklch(12% 0.006 265 / .08) 100%), linear-gradient(180deg, transparent 55%, oklch(11% 0.006 265 / .45) 100%); pointer-events: none; }
.statement-inner { position: relative; z-index: 3; align-self: center; max-width: var(--maxw); margin: 0 auto; width: 100%; padding: clamp(48px, 8vw, 96px) var(--pad); color: var(--on-dark); }
.statement-inner .h-lg { max-width: 18ch; margin-top: 18px; }
.statement-inner .lead { color: var(--on-dark-mute); max-width: 48ch; margin-top: 22px; }
.statement-inner .actions { margin-top: 34px; }

/* ============================================================
   CLIENTELE
   ============================================================ */
.clients { background: var(--bg-soft); }
.clients .sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; margin-bottom: clamp(36px, 4vw, 60px); }
.clients .sec-head .lead { max-width: 40ch; justify-self: end; }
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.client-card { background: var(--bg); border: 1px solid var(--line); padding: 34px 32px 30px; display: flex; flex-direction: column; gap: 14px; min-height: 232px; transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s; }
.client-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 26px 54px -32px rgba(20,18,24,.32); }
.client-card .ck { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; color: var(--accent); }
.client-card .cname { font-weight: 400; font-size: clamp(21px, 1.9vw, 27px); letter-spacing: -0.012em; line-height: 1.08; }
.client-card .cdesc { font-size: 15px; line-height: 1.55; color: var(--ink-soft); font-weight: 300; margin-top: auto; }
.client-card.cta { grid-column: span 2; flex-direction: row; align-items: center; justify-content: space-between; gap: 30px; background: var(--dark); border-color: var(--dark); color: var(--on-dark); }
.client-card.cta .cta-copy { display: flex; flex-direction: column; gap: 10px; }
.client-card.cta .cname { color: #fff; max-width: 24ch; }
.client-card.cta .cdesc { color: var(--on-dark-mute); margin-top: 0; max-width: 42ch; }
.client-card.cta .cta-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2); white-space: nowrap; transition: gap .3s var(--ease); }
.client-card.cta:hover { transform: translateY(-4px); border-color: var(--dark); box-shadow: 0 26px 54px -30px rgba(0,0,0,.5); }
.client-card.cta:hover .cta-link { gap: 16px; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest .sec-head { margin-bottom: clamp(32px, 4vw, 54px); max-width: 60ch; }
.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.dest-card { position: relative; aspect-ratio: 2 / 3.1; overflow: hidden; }
.dest-card image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.dest-card .meta { position: absolute; inset: 0; z-index: 2; pointer-events: none; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: var(--on-dark); background: linear-gradient(180deg, transparent 45%, oklch(10% 0.006 265 / .8) 100%); }
.dest-card .city { font-weight: 300; font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.01em; line-height: 1; }
.dest-card .code { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--on-dark-mute); margin-top: 8px; }

/* ============================================================
   PRESS
   ============================================================ */
.press { background: rgb(243,242,247); padding: clamp(48px, 6vw, 80px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.press .lbl { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 36px; }
.press-wall { max-width: 1080px; margin: 0 auto; }
.press-wall image-slot { display: block; width: 100%; height: auto; aspect-ratio: 1602 / 427; }

/* ============================================================
   PROMISE / ENQUIRY CTA
   ============================================================ */
.promise { background: var(--dark); color: var(--on-dark); text-align: center; padding: clamp(44px, 4.5vw, 68px) 0; }
.promise .eyebrow { color: var(--accent-2); }
.promise h2 { font-weight: 300; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.1; letter-spacing: -0.016em; margin: 12px auto 0; max-width: 22ch; color: #fff; }
.promise .lead { color: var(--on-dark-mute); max-width: 52ch; margin: 14px auto 0; font-size: clamp(14px, 1vw, 16px); }
.promise .actions { margin-top: 26px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.promise .btn.solid { background: var(--accent); border-color: var(--accent); color: #fff; }
.promise .btn.solid:hover { background: oklch(43% 0.20 26); border-color: oklch(43% 0.20 26); }
.promise .btn.ghost { background: transparent; border-color: oklch(70% 0.01 90 / .5); color: var(--on-dark); }
.promise .btn.ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site { background: var(--dark-2); color: var(--on-dark-mute); padding: clamp(64px, 8vw, 104px) 0 44px; }
.foot-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 44px; }
.foot-brand img { height: 32px; margin-bottom: 22px; }
.foot-brand p { max-width: 34ch; line-height: 1.6; font-weight: 300; color: var(--on-dark-mute); }
.foot-brand .social { display: flex; gap: 14px; margin-top: 22px; }
.foot-brand .social a { width: 38px; height: 38px; border: 1px solid var(--line-dark); display: grid; place-items: center; font-size: 12px; letter-spacing: 0.1em; transition: border-color .3s, color .3s; color: var(--on-dark-mute); }
.foot-brand .social a:hover { border-color: var(--accent-2); color: var(--on-dark); }
.foot-col h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: oklch(60% 0.01 90); margin: 0 0 18px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { color: var(--on-dark-mute); font-weight: 300; transition: color .3s; }
.foot-col a:hover { color: var(--accent-2); }
.foot-col .v { color: var(--on-dark); font-weight: 300; font-size: 18px; }
.disclaimer { margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line-dark); font-size: 11.5px; line-height: 1.65; color: oklch(55% 0.01 90); font-weight: 300; display: grid; gap: 12px; }
.foot-legal { margin-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 11px; letter-spacing: 0.06em; color: oklch(54% 0.01 90); text-transform: uppercase; }

/* ============================================================
   INTERIOR PAGES (About, etc.)
   ============================================================ */
.page-hero { position: relative; background: var(--dark-2); color: var(--on-dark); overflow: hidden; }
.page-hero image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero .scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, oklch(12% 0.006 265 / .55) 0%, oklch(10% 0.006 265 / .45) 60%, oklch(9% 0.006 265 / .82) 100%), linear-gradient(75deg, oklch(10% 0.006 265 / .6) 0%, transparent 62%); }
.page-hero-inner { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; padding: clamp(140px, 20vh, 220px) var(--pad) clamp(56px, 9vh, 104px); }
.page-hero .eyebrow { color: var(--accent-2); }
.page-hero h1 { font-weight: 200; font-size: clamp(40px, 6vw, 92px); line-height: 1; letter-spacing: -0.03em; margin: 18px 0 0; max-width: 16ch; }
.page-hero h1 b { font-weight: 500; }
.page-hero .page-sub { margin: 24px 0 0; max-width: 52ch; font-weight: 300; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; color: var(--on-dark-mute); }

/* about intro */
.about-intro { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 4.5vw, 68px); align-items: start; }
.about-grid .stack { display: flex; flex-direction: column; gap: 22px; }
.about-grid .stack p { margin: 0; }
.about-side { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 18px; }
.about-side .eyebrow { color: var(--accent); margin-bottom: 2px; }
.about-leaders { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.al-person { display: flex; flex-direction: column; }
.al-person .portrait { width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-3); }
.al-person .portrait image-slot { width: 100%; height: 100%; display: block; transition: transform .6s var(--ease); }
.al-person:hover .portrait image-slot { transform: scale(1.03); }
.al-person .nm { font-weight: 400; font-size: clamp(16px, 1.3vw, 19px); letter-spacing: -0.01em; line-height: 1.1; margin-top: 14px; }
.al-person .rl { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-top: 5px; }

/* leadership */
/* (leadership now lives in the about-intro sidebar) */

/* jet sales — service cards */
.sales { background: var(--bg-soft); }
.sales .sec-head { max-width: 60ch; margin-bottom: clamp(32px, 4vw, 52px); }
.sales-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sales-card { background: var(--bg); border: 1px solid var(--line); padding: clamp(30px, 3.4vw, 48px); display: flex; flex-direction: column; gap: 16px; min-height: 320px; transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s; }
.sales-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 28px 56px -34px rgba(20,18,24,.3); }
.sales-card .sc-n { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.sales-card h3 { font-weight: 300; font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -0.018em; line-height: 1.04; margin: 0; }
.sales-card p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); font-weight: 300; }
.sales-card .link-red { margin-top: auto; }

/* contact */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.contact-info { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 30px; }
.contact-info .eyebrow { color: var(--accent); }
.contact-info h2 { font-weight: 300; font-size: clamp(30px, 3.4vw, 50px); line-height: 1.04; letter-spacing: -0.02em; margin: 14px 0 0; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-top: 6px; }
.cd { display: flex; flex-direction: column; gap: 5px; }
.cd .cd-k { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.cd .cd-v { font-weight: 300; font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -0.01em; color: var(--ink); transition: color .2s; width: fit-content; }
a.cd-v:hover { color: var(--accent); }
.contact-social { display: flex; gap: 12px; }
.contact-social a { width: 42px; height: 42px; border: 1px solid var(--line-2); display: grid; place-items: center; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-soft); transition: border-color .3s, color .3s, background .3s; }
.contact-social a:hover { border-color: var(--accent); color: #fff; background: var(--accent); }

.cform { background: var(--bg-soft); border: 1px solid var(--line); padding: clamp(28px, 3.4vw, 48px); display: grid; gap: 18px; }
.cform .crow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea { border: 1px solid var(--line-2); background: var(--bg); padding: 14px 16px; font-family: var(--sans); font-size: 16px; font-weight: 400; color: var(--ink); border-radius: 0; outline: none; transition: border-color .25s, box-shadow .25s; width: 100%; appearance: none; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 14%, transparent); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.cform .submit-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cform button { border: 0; }
.form-note { font-size: 13px; color: var(--ink-mute); font-weight: 300; }
.form-success { display: none; padding: 22px 24px; border: 1px solid var(--accent); background: color-mix(in oklch, var(--accent) 8%, transparent); color: var(--ink); font-size: 15px; }
.cform .form-field-wrap { display: grid; gap: 18px; }
.cform.sent .form-field-wrap { display: none; }
.cform.sent .form-success { display: block; }

/* blog / journal */
.blog { background: var(--bg); }
.blog .sec-head { margin-bottom: clamp(32px, 4vw, 52px); }
.blog-feature { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; border: 1px solid var(--line); margin-bottom: clamp(28px, 3.5vw, 44px); background: var(--bg-soft); transition: border-color .3s var(--ease), box-shadow .3s; }
.blog-feature:hover { border-color: var(--accent); box-shadow: 0 30px 60px -38px rgba(20,18,24,.3); }
.blog-feature .bf-media { overflow: hidden; min-height: 320px; background: var(--bg-3); }
.blog-feature .bf-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-feature:hover .bf-media img { transform: scale(1.04); }
.blog-feature .bf-text { padding: clamp(30px, 3.6vw, 56px); display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.blog-feature .bf-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.blog-feature h3 { font-weight: 300; font-size: clamp(26px, 2.8vw, 42px); line-height: 1.06; letter-spacing: -0.02em; margin: 0; }
.blog-feature p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); font-weight: 300; max-width: 50ch; }
.blog-feature .bdate { font-size: 13px; color: var(--ink-mute); font-weight: 400; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.bpost { display: flex; flex-direction: column; gap: 14px; }
.bpost .bp-media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--bg-3); border: 1px solid var(--line); }
.bpost .bp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.bpost:hover .bp-media img { transform: scale(1.05); }
.bpost .bp-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.bpost h4 { font-weight: 400; font-size: clamp(19px, 1.6vw, 22px); line-height: 1.18; letter-spacing: -0.012em; margin: 0; transition: color .25s; }
.bpost:hover h4 { color: var(--accent); }
.bpost p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); font-weight: 300; }
.bpost .bdate { font-size: 12.5px; color: var(--ink-mute); margin-top: auto; padding-top: 4px; }

/* fleet page */
.fleetx { background: var(--bg); }
.fleetx .sec-head { max-width: 64ch; margin-bottom: clamp(36px, 4.5vw, 60px); }
.fleet-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fcard { border: 1px solid var(--line); background: var(--bg-soft); padding: 30px 28px 26px; display: flex; flex-direction: column; gap: 12px; transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s; }
.fcard:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 30px 56px -36px rgba(20,18,24,.3); }
.fcard .ficon { height: 116px; display: grid; place-items: center; margin-bottom: 2px; }
.fcard .ficon svg { width: 100%; height: 100%; display: block; color: var(--ink); transition: color .3s; }
.fcard:hover .ficon svg { color: var(--accent); }
.fcard .fname { font-weight: 500; font-size: 13px; letter-spacing: 0.04em; color: var(--ink); }
.fcard .fseats { font-weight: 300; font-size: clamp(28px, 2.4vw, 38px); letter-spacing: -0.02em; line-height: 1; }
.fcard .fseats span { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-mute); margin-left: 4px; }
.fcard .fdesc { font-size: 14px; line-height: 1.5; color: var(--ink-soft); font-weight: 300; }
.fcard .fmodels { font-size: 13px; letter-spacing: 0.01em; color: var(--ink); font-weight: 400; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.fcard .fmodels::before { content: "Example aircraft"; display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.fcard.cta-card { background: var(--dark); border-color: var(--dark); color: var(--on-dark); justify-content: center; gap: 16px; }
.fcard.cta-card .fname { color: var(--accent-2); }
.fcard.cta-card h3 { font-weight: 300; font-size: clamp(22px, 1.9vw, 27px); letter-spacing: -0.015em; line-height: 1.08; margin: 0; color: #fff; }
.fcard.cta-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--on-dark-mute); font-weight: 300; }
.fcard.cta-card .link-red { margin-top: 6px; color: var(--accent-2); }
@media (max-width: 1080px) { .fleet-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fleet-cards { grid-template-columns: 1fr; } }

/* legal / policy pages */
.legal { background: var(--bg); }
.legal-grid { display: grid; grid-template-columns: 0.32fr 0.68fr; gap: clamp(36px, 6vw, 96px); align-items: start; }
.legal-toc { position: sticky; top: 110px; }
.legal-toc .eyebrow { color: var(--accent); margin-bottom: 18px; }
.legal-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; display: flex; flex-direction: column; gap: 11px; }
.legal-toc li { counter-increment: toc; }
.legal-toc a { font-size: 14px; color: var(--ink-soft); font-weight: 300; display: flex; gap: 10px; transition: color .2s; }
.legal-toc a::before { content: counter(toc, decimal-leading-zero); font-size: 11px; font-weight: 600; color: var(--ink-mute); letter-spacing: 0.08em; padding-top: 2px; }
.legal-toc a:hover { color: var(--accent); }
.legal-body { max-width: 70ch; }
.legal-body .updated { font-size: 13px; color: var(--ink-mute); font-weight: 400; margin: 0 0 8px; }
.legal-body .intro { font-weight: 300; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--ink); margin: 0 0 40px; }
.legal-body section { padding: 0 0 36px; }
.legal-body h2 { font-weight: 400; font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.014em; line-height: 1.12; margin: 0 0 16px; scroll-margin-top: 110px; }
.legal-body h2 .ln { font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: 0.08em; margin-right: 12px; }
.legal-body h3 { font-weight: 600; font-size: 15px; letter-spacing: 0.02em; margin: 22px 0 8px; }
.legal-body p { margin: 0 0 14px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); font-weight: 300; }
.legal-body ul { margin: 0 0 14px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal-body li { font-size: 16px; line-height: 1.6; color: var(--ink-soft); font-weight: 300; }
.legal-body a.inline { color: var(--accent); border-bottom: 1px solid color-mix(in oklch, var(--accent) 35%, transparent); }
.legal-body a.inline:hover { border-color: var(--accent); }
@media (max-width: 880px) {
  .legal-grid { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; }
}

/* testimonials */
.testi { background: var(--bg-soft); }
.testi .sec-head { max-width: 60ch; margin-bottom: clamp(36px, 4.5vw, 60px); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { background: var(--bg); border: 1px solid var(--line); padding: 36px 34px 30px; display: flex; flex-direction: column; gap: 22px; transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s; }
.testi-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 28px 54px -36px rgba(20,18,24,.28); }
.testi-card .stars { display: flex; gap: 3px; color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.testi-card blockquote { margin: 0; font-weight: 300; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.42; letter-spacing: -0.01em; color: var(--ink); }
.testi-card .who { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 8px; }
.testi-card .who .mono { width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; flex: none; }
.testi-card .who .nm { font-weight: 500; font-size: 15px; color: var(--ink); }
.testi-card .who .rl { font-size: 12px; color: var(--ink-mute); font-weight: 400; margin-top: 2px; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }

/* credential strip */
.creds { background: var(--bg); border-top: 1px solid var(--line); }
.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); }
.creds .c { padding: 36px 30px; border-right: 1px solid var(--line); }
.creds .c .v { font-weight: 300; font-size: clamp(28px, 3vw, 44px); letter-spacing: -0.02em; line-height: 1; }
.creds .c .v em { font-style: normal; color: var(--accent); }
.creds .c .k { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 10px; }
.creds .c .v.ratings { font-size: clamp(20px, 1.7vw, 26px); letter-spacing: -0.01em; line-height: 1.15; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .booking { grid-template-columns: 1fr 1fr; }
  .bk-field:nth-child(2) { border-right: 0; }
  .bk-submit { grid-column: 1 / -1; }
  .bk-submit button { width: 100%; padding: 18px; }
  .plan-inner { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-phone { display: none; }
  .feature { grid-template-columns: 1fr; }
  .feature.reverse .feat-media { order: 0; }
  .fleet-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .fleet-meta { grid-template-columns: repeat(2, 1fr); }
  .fleet-meta .m:nth-child(2) { border-right: 0; }
  .fleet-meta .m:nth-child(1), .fleet-meta .m:nth-child(2) { border-bottom: 1px solid var(--line); }
  .fleet-classes { grid-template-columns: repeat(3, 1fr); }
  .fleet-classes .fc:nth-child(3n) { border-right: 0; }
  .fleet-classes .fc { border-bottom: 1px solid var(--line); }
  .feat-media { min-height: 320px; }
  .clients .sec-head { grid-template-columns: 1fr; }
  .clients .sec-head .lead { justify-self: start; }
  .client-grid { grid-template-columns: 1fr; }
  .client-card.cta { grid-column: auto; flex-direction: column; align-items: flex-start; gap: 20px; }
  .client-card .cdesc { grid-column: 2; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 34px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-side { position: static; }
  .about-leaders { max-width: 360px; }
  .sales-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-info { position: static; }
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature .bf-media { min-height: 240px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .creds .c:nth-child(1), .creds .c:nth-child(2) { border-bottom: 1px solid var(--line); }
}
