/* =======================================================
   ABOUT PAGE STYLESHEET — FlyPrivy Jet Private Aviation
   Fully self-contained — does NOT depend on index.css.
   Built on top of the site-wide tokens defined in
   variables.css (--color-bg, --color-accent, --font-heading,
   --font-body, etc). Local tokens are prefixed "--ab-" so
   nothing here collides with the main stylesheet. All
   selectors migrated from index.css are prefixed "ab-" to
   keep the about page fully independent.
   ======================================================= */

:root {
    --ab-navbar-height: 90px;
    --ab-mobile-header-height: 80px;
    --ab-bg-card: var(--color-card);
    --ab-bg-card-hover: var(--color-card-hover);
  /* Card color tokens per your spec */
  --ab-card-base: var(--color-card); /* very dark navy */
  --ab-card-active: var(--color-card-hover); /* lighter slate-teal used on hover */
  --ab-card-border: rgba(250, 205, 81,0.20); /* soft cyan border */
    --ab-border: rgba(250, 205, 81, 0.18);
    --ab-border-strong: rgba(250, 205, 81, 0.4);
    --ab-text: var(--color-text, #eef1f6);
    --ab-text-muted: var(--color-text-muted, #a6adc0);
    --ab-accent: var(--color-accent, #c9a45e);
    --ab-heading-font: var(--font-heading, 'Playfair Display', serif);
    --ab-body-font: var(--font-body, 'Mulish', sans-serif);
    --ab-radius: 18px;
    --ab-ease: cubic-bezier(.65, 0, .35, 1);
}

.ab-section {
    padding: 110px 0;
    position: relative;
}

.founder-section {
    padding-bottom: 75px;
}

.mv-section {
    padding-top: 75px;
    padding-bottom: 88px;
}

@media (max-width: 767px) {
    .ab-section {
        padding: 76px 0;
    }
    .process-section {
        padding-bottom: 0;
    }
    .promises-section {
        padding-top: 20px;
    }
}

/* ---------- Hero ---------- */
.about-hero-section {
    padding: 190px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/bg/hero-jet-cinematic.png') center 28%/cover no-repeat;
    opacity: .06;
    filter: grayscale(35%);
    pointer-events: none;
}

.about-hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 840px;
}

.about-hero-heading {
    font-family: var(--ab-heading-font);
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 600;
    color: var(--ab-text);
    line-height: 1.16;
    margin: 22px 0 28px;
}

.about-hero-lead {
    font-family: var(--ab-body-font);
    color: var(--ab-text-muted);
    font-size: 16.5px;
    line-height: 1.9;
    max-width: 660px;
    margin: 0 auto 14px;
}

.about-hero-cta-wrap {
    margin-top: 38px;
}

/* ---------- Reused eyebrow / heading helpers ---------- */
.ab-eyebrow-center {
    text-align: center;
    display: block;
}

.ab-heading-center {
    text-align: center;
}

.ab-lead-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ab-accent-center {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Mission / Vision ---------- */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
}

.mv-card {
    position: relative;
    background: var(--ab-bg-card);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius);
    padding: 48px 44px;
    overflow: hidden;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    transition: border-color .4s ease, transform .4s ease, background .4s ease;
    box-shadow: none;
}
.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(250, 205, 81, 0.04) 30%,
        rgba(250, 205, 81, 0.06) 50%,
        rgba(250, 205, 81, 0.04) 70%,
        transparent 100%
    );
    pointer-events: none;
    transition: left var(--ab-ease);
    transform: skewX(-25deg);
    transform-origin: top;
    z-index: 1;
}
.mv-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--ab-accent);
    transition: width var(--ab-ease), left var(--ab-ease);
    pointer-events: none;
}

.mv-card:hover {
    border-color: var(--ab-border-strong);
    transform: translateY(-4px);
}
.mv-card:hover::before {
    left: 150%;
}
.mv-card:hover::after {
    width: 80%;
    left: 10%;
}

.mv-num {
    position: absolute;
    top: 10px;
    right: 30px;
    font-family: var(--ab-heading-font);
    font-size: 92px;
    font-weight: 700;
    color: var(--ab-accent);
    opacity: .1;
    line-height: 1;
    user-select: none;
    transition: opacity .4s ease;
}
.mv-card:hover .mv-num {
    opacity: .45;
}

.mv-title {
    font-family: var(--ab-heading-font);
    font-style: italic;
    font-size: 28px;
    color: var(--ab-text);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: color .4s ease;
}
.mv-card:hover .mv-title {
    color: var(--ab-accent);
}

.mv-text {
    font-family: var(--ab-body-font);
    color: #ffffff;
    font-size: 16px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.mv-text .text-accent {
    color: var(--ab-accent);
    font-weight: 600;
}

@media (max-width: 767px) {
    .mv-num {
        opacity: .45;
    }
    .mv-title {
        color: var(--ab-accent);
    }
}

/* ---------- Founder ---------- */
.founder-bio-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.founder-name {
    font-family: var(--ab-body-font);
    color: var(--ab-accent);
    font-weight: 700;
    letter-spacing: .3px;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    margin-top: 54px;
}

@media (max-width: 767px) {
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.principle-item {
    padding-left: 22px;
    border-left: 2px solid var(--ab-border-strong);
}

.principle-title {
    font-family: var(--ab-heading-font);
    color: var(--ab-text);
    font-size: 21px;
    margin-bottom: 10px;
    transition: color 0.35s ease, transform 0.35s ease;
    display: inline-block;
    text-align: justify;
}

.principle-item:hover .principle-title {
    color: var(--ab-accent);
    transform: scale(1.05);
}

.principle-text {
    font-family: var(--ab-body-font);
    color: #ffffff;
    font-size: 15.5px;
    line-height: 1.85;
    text-align: justify;
}

@media (max-width: 767px) {
    .principle-title {
        color: var(--ab-accent);
    }
}

/* =======================================================
   Process / "How It Works" — Editorial Accordion
   Mirrors the numbered-list accordion pattern (number, title,
   +/× indicator, expanding text + image panel) used across the
   reference layout, restyled to match FlyPrivy Jet's dark / gold
   editorial system.
   ======================================================= */
.process-section {
    padding-bottom: 40px;
    padding-top: 88px;
}

/* Make section positionable for background overlays when an accordion opens */
.process-section {
  position: relative;
}

/* When any accordion item is active, add a subtle section-level tint that
   matches the active card background. Uses a low-opacity horizontal
   gradient to echo the card's accent without obscuring content. */
.process-section.has-active-acc::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  /* faint tint derived from the active card color */
  background: linear-gradient(90deg, rgba(32,56,71,0.06), transparent 55%);
}

/* Ensure content sits above the overlay */
.process-section > .container { position: relative; z-index: 1; }

.process-subhead {
    max-width: 640px;
    margin: 18px auto 0;
    text-align: center;
    color: #ffffff;
    font-family: var(--ab-body-font);
    font-size: 16px;
    line-height: 1.8;
}

.acc-list {
    margin-top: 64px;
    border-top: 1px solid var(--ab-border-strong);
}

.acc-item {
    border-bottom: 1px solid var(--ab-border);
    position: relative;
    transition: background .5s ease;
}

.acc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ab-accent);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform .55s var(--ab-ease);
}

.acc-item.is-active::before {
    transform: scaleY(1);
}

.acc-item.is-active {
  background: var(--ab-card-base);
  border-color: var(--ab-card-border);
  color: var(--ab-text);
}

.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px 6px 32px 26px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

.acc-trigger:focus-visible {
    outline: 1.5px solid var(--ab-accent);
    outline-offset: -4px;
}

.acc-num {
    font-family: var(--ab-heading-font);
    font-style: italic;
    font-size: 17px;
    letter-spacing: .5px;
    color: var(--ab-text-muted);
    min-width: 38px;
    transition: color .45s ease;
}

.acc-item.is-active .acc-num {
    color: var(--ab-accent);
}

.acc-title {
    flex: 1 1 auto;
    font-family: var(--ab-heading-font);
    font-weight: 500;
    font-size: clamp(19px, 2.1vw, 26px);
    color: var(--ab-text-muted);
    transition: color .45s ease, transform .45s ease;
}

.acc-trigger:hover .acc-title {
    color: var(--ab-text);
}

.acc-item.is-active .acc-title,
.acc-item.is-active .acc-trigger:hover .acc-title {
    color: var(--ab-accent);
}

.acc-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .5s var(--ab-ease);
}

.acc-icon::before,
.acc-icon::after {
    content: '';
    position: absolute;
    background: var(--ab-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.acc-icon::before {
    width: 100%;
    height: 1.5px;
}

.acc-icon::after {
    width: 1.5px;
    height: 100%;
}

.acc-item.is-active .acc-icon {
    transform: rotate(45deg);
}

.acc-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .6s var(--ab-ease);
}

.acc-item.is-active .acc-panel {
    grid-template-rows: 1fr;
}

.acc-panel-inner {
    overflow: hidden;
    min-height: 0;
}

.acc-panel-grid {
    display: flex;
    align-items: center;
    gap: 52px;
    padding: 4px 26px 46px;
}

.acc-text {
    flex: 1 1 54%;
}

.acc-desc {
    font-family: var(--ab-body-font);
    color: #ffffff;
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
    margin: 0;
}

.acc-tag {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ab-body-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ab-accent);
}

.acc-tag i {
    font-size: 14px;
}

.acc-media {
    flex: 0 0 32%;
    max-width: 32%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ab-border-strong);
    background: #111C26;
}

.acc-media img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transform: scale(1);
    filter: saturate(.92) brightness(.92);
    transition: transform 1s var(--ab-ease), filter .6s ease;
}

.acc-item.is-active .acc-media img {
    transform: scale(1);
}

.acc-media:hover img {
    transform: scale(1.06);
    filter: saturate(1) brightness(1);
}

@media (max-width: 1100px) {
    .acc-media {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

@media (max-width: 900px) {
    .acc-panel-grid {
        flex-direction: column-reverse;
        gap: 26px;
        padding-bottom: 38px;
    }

    .acc-media {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 575px) {
    .acc-trigger {
        gap: 16px;
        padding: 24px 4px 24px 16px;
    }

    .acc-panel-grid {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .acc-panel,
    .acc-icon,
    .acc-item::before,
    .acc-media img,
    .acc-num,
    .acc-title {
        transition: none !important;
    }

    .promise-card,
    .promise-card::before {
        transition: none !important;
    }

    .promise-card:hover {
        transform: none;
    }

    .promise-card:hover::before {
        left: -100%;
    }
}

/* ---------- Promises ---------- */
.promises-header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 26px;
}

.promises-header-row .ab-about-heading {
    margin-bottom: 0;
}

.promises-subhead {
    max-width: 520px;
    color: #ffffff;
    font-family: var(--ab-body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    border-right: 2px solid var(--color-accent);
    padding-right: 4px;
}

.promises-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 58px;
}

.promise-card {
    position: relative;
    flex: 1 1 250px;
    max-width: 272px;
    background: var(--ab-bg-card);
    border: 1px solid var(--ab-border);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: left;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.promise-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(250, 205, 81, 0.12) 40%,
        rgba(255, 255, 255, 0.30) 50%,
        rgba(250, 205, 81, 0.12) 60%,
        transparent 100%
    );
    pointer-events: none;
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: skewX(-25deg);
    transform-origin: top;
    z-index: 1;
}

.promise-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--color-accent);
    background: #203847;
    box-shadow: var(--shadow-md);
}

.promise-card:hover::before {
    left: 150%;
}

.promise-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.promise-icon {
    font-size: 22px;
    color: var(--ab-accent);
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    transition: transform .4s ease;
}
.promise-card:hover .promise-icon {
    transform: scale(1.12);
}

.promise-title {
    font-family: var(--ab-heading-font);
    color: var(--ab-text);
    font-size: 18px;
    margin: 0;
    line-height: 1.25;
    position: relative;
    z-index: 2;
    transition: color .4s ease;
}
.promise-card:hover .promise-title {
    color: var(--ab-accent);
}

.promise-text {
    font-family: var(--ab-body-font);
    color: #ffffff;
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .promise-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .promise-title {
        color: var(--ab-accent);
    }
}

/* ========================================================
   MIGRATED SECTIONS — from index.css, prefixed with "ab-"
   ======================================================== */

/* ==========================================================================
   CLASSIC LUXURY HERO SECTION
   ========================================================================== */

.classic-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: var(--hero-pt);    /* shared token — same as index.css */
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

.hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-bg) 80%, transparent) 0%,
    color-mix(in srgb, var(--color-bg) 30%, transparent) 45%,
    transparent 85%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-left-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-bg) 0%,
    var(--color-bg) 42%,
    color-mix(in srgb, var(--color-bg) 80%, transparent) 50%,
    color-mix(in srgb, var(--color-bg) 30%, transparent) 58%,
    transparent 68%
  );
  z-index: 3;
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 60% 50%, transparent 55%, rgba(21, 37, 58, 0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-aircraft-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.hero-aircraft-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--color-accent) 8%, transparent) 0%,
    color-mix(in srgb, var(--color-accent) 2%, transparent) 40%,
    transparent 70%
  );
  z-index: 1;
}

.hero-aircraft-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  z-index: 2;
  opacity: 0.98;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-aircraft-grade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--color-accent) 6%, transparent) 0%,
    transparent 40%,
    color-mix(in srgb, var(--color-bg) 15%, transparent) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.hero-grid {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 4;
}

.hero-animation-area {
  display: none;
}

.hero-content-col {
  margin-left: max(40px, calc((100vw - 1340px) / 2 + 40px));
  /* Fluid responsive width that expands on shorter viewports to prevent text wrapping */
  width: clamp(480px, calc(38vw + max(0px, 750px - 100vh) * 1.5), 800px);
  flex-shrink: 0;
  padding: var(--hero-col-pt) 0; /* shared token — top anchor identical to all other hero slides */
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--label-md-font-family);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero-heading {
  font-family: var(--headline-lg-font-family);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.heading-accent {
  color: var(--color-accent);
  font-weight: 700;
}

.heading-light {
  display: block;
  margin-top: 12px;
  color: var(--color-text);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.hero-body-wrapper {
  margin-bottom: 28px;
}

.hero-copy-mobile {
  display: none;
}

.hero-paragraph {
  font-family: var(--body-lg-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
  max-width: 100%;
  margin: 0;
}

.hero-paragraph + .hero-paragraph {
  margin-top: 18px;
}

.hero-cta-wrapper {
  display: flex;
  align-items: center;
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 58px;
  padding: 18px 40px;
  white-space: nowrap;
  background: var(--color-accent);
  color: #111C26;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.22),
    var(--shadow-md);
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cta-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-cta-link:hover {
  background: var(--color-accent-hover);
  color: #111C26;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.22),
    var(--shadow-lg);
}

.hero-cta-link:hover .cta-arrow {
  transform: translateX(4px);
}

.hero-cta-link:focus-visible {
  outline: none;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.22),
    0 0 0 4px var(--border-medium);
}

.classic-hero .hero-eyebrow {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.05s;
}

.classic-hero .hero-heading {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.15s;
}

.classic-hero .hero-body-wrapper {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.35s;
}

.classic-hero .hero-cta-wrapper {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: 0.55s;
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .classic-hero .hero-eyebrow,
  .classic-hero .hero-heading,
  .classic-hero .hero-body-wrapper,
  .classic-hero .hero-cta-wrapper {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================================
   SHORT DESKTOP/LAPTOP (Height-based optimizations for 720p/768p/864p)
   ========================================================================== */
@media (min-width: 1101px) and (max-height: 880px) {
  .classic-hero {
    padding-bottom: 20px;
  }

  .hero-heading {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 20px;
  }

  .heading-light {
    margin-top: 8px;
  }

  .hero-body-wrapper {
    margin-bottom: 22px;
  }

  .hero-paragraph {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-paragraph + .hero-paragraph {
    margin-top: 12px;
  }

  .hero-cta-link {
    height: 52px;
    padding: 14px 34px;
    font-size: 14.5px;
  }
  
  .hero-aircraft-img {
    height: 100%;
    object-position: 75% center;
  }
}

/* ==========================================================================
   LANDSCAPE TABLET / SMALL DESKTOP (1024x768 etc.)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1100px) {
  .classic-hero {
    min-height: 100svh;
    padding-top: calc(var(--ab-navbar-height) + 15px);
    padding-bottom: 30px;
  }

  .hero-content-col {
    width: min(48vw, 540px);
  }

  .hero-heading {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 16px;
    line-height: 1.12;
  }

  .heading-light {
    margin-top: 8px;
  }

  .hero-body-wrapper {
    margin-bottom: 22px;
  }

  .hero-paragraph {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .hero-paragraph + .hero-paragraph {
    margin-top: 12px;
  }

  .hero-cta-link {
    height: 50px;
    padding: 14px 30px;
    font-size: 14.5px;
  }

  .hero-aircraft-wrap {
    width: 58%;
  }

  .hero-aircraft-img {
    object-position: 80% center;
  }
}

/* Short landscape viewport — e.g. 1024×665, 1100×700 tablet landscape.
   Compact the hero so all content stays within the first viewport height. */
@media (min-width: 768px) and (max-width: 1100px) and (max-height: 750px) {
  .classic-hero {
    min-height: 0;
    height: 100svh;
    padding-top: clamp(72px, 10vh, 96px);
    padding-bottom: 16px;
    align-items: flex-start;
  }

  .hero-content-col {
    padding: clamp(8px, 1.5vh, 18px) 0;
  }

  .hero-heading {
    font-size: clamp(22px, 3.2vw, 30px);
    margin-bottom: clamp(8px, 1.5vh, 14px);
    line-height: 1.1;
  }

  .heading-light {
    margin-top: 4px;
  }

  .hero-body-wrapper {
    margin-bottom: clamp(10px, 1.8vh, 16px);
  }

  .hero-paragraph {
    font-size: clamp(13px, 1.8vh, 15px);
    line-height: 1.45;
  }

  .hero-paragraph + .hero-paragraph {
    margin-top: clamp(6px, 1.2vh, 10px);
  }

  .hero-copy-desktop {
    display: block;
  }

  .hero-copy-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .classic-hero {
    min-height: 90vh;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-aircraft-wrap {
    width: 58%;
    right: -6%;
    opacity: 0.98;
  }

  .hero-aircraft-img {
    height: 70%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%);
  }

  .hero-left-gradient {
    width: 100%;
    background: linear-gradient(
      135deg,
      rgba(21, 37, 58, 0.88) 0%,
      rgba(21, 37, 58, 0.6) 60%,
      rgba(21, 37, 58, 0.2) 100%
    );
  }

  .hero-content-col {
    margin-left: max(15px, calc((100% - 1340px) / 2 + 15px));
    width: min(45vw, 480px);
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .hero-radar {
    width: 180px;
    height: 180px;
    position: absolute;
    left: -60px;
    top: 100px;
    opacity: 0.5; /* Subdue it a bit on mobile */
  }

  .classic-hero {
    min-height: 100vh;
    padding-top: calc(var(--ab-mobile-header-height) + 20px);
    padding-bottom: 40px;
  }

  .hero-aircraft-wrap {
    width: 58%;
    right: -6%;
    opacity: 0.95;
  }

  .hero-aircraft-img {
    object-position: 85% center;
  }

  .hero-left-gradient {
    width: 100%;
    background: linear-gradient(
      115deg,
      rgba(21, 37, 58, 0.98) 0%,
      rgba(21, 37, 58, 0.95) 45%,
      rgba(21, 37, 58, 0.3) 75%,
      transparent 100%
    );
  }

  .hero-content-col {
    margin-left: max(15px, calc((100% - 1340px) / 2 + 15px));
    width: min(60vw, 380px);
    padding: 10px 0;
  }

  .hero-heading {
    font-size: clamp(26px, 5.5vw, 34px);
    margin-bottom: 12px;
    line-height: 1.05;
  }

  .heading-light {
    margin-top: 6px;
  }

  .hero-body-wrapper {
    margin-bottom: 16px;
  }

  .hero-copy-desktop {
    display: none;
  }

  .hero-copy-mobile {
    display: block;
    padding: 0;
  }

  .hero-paragraph {
    font-size: 15.5px;
    line-height: 1.45;
  }

  .hero-paragraph + .hero-paragraph {
    margin-top: 10px;
  }

  .hero-cta-link {
    height: 52px;
    padding: 12px 24px;
    font-size: 13.5px;
  }
}

@media (max-width: 575px) {
  .classic-hero {
    min-height: 100svh;
    padding-top: clamp(100px, 12svh, 130px); /* Accounts for navbar + 32-50px spacing */
    padding-bottom: clamp(40px, 6svh, 60px); /* 40-60px bottom spacing */
  }

  .hero-aircraft-wrap {
    display: none;
  }

  .hero-heading {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 0.95;
    margin-bottom: 14px;
    padding: 0 16px;
  }

  .hero-copy-mobile {
    padding: 0 16px;
  }

  .hero-paragraph {
    font-size: 15.5px;
  }

  .hero-paragraph + .hero-paragraph {
    margin-top: 10px;
  }

  .hero-cta-link {
    min-height: 48px;
    height: auto;
    font-size: 12.5px;
    line-height: 1.2;
    gap: 10px;
    padding: 12px 18px;
    margin: 0 14px;
    border-radius: 12px;
    white-space: normal;
  }

  .hero-grid {
    justify-content: center;
  }

  .hero-cta-wrapper {
    padding-left: 0;
    margin-top: 18px;
    margin-bottom: 0;
  }

  .hero-content-col {
    margin-left: 0;
    width: 100%;
    max-width: 480px;
    padding: 10px 0 0;
  }
}

/* Continuation cue */
.hero-continuation-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  animation: hero-fade-up 0.8s ease forwards;
  animation-delay: 1.4s;
}

.cue-arrow {
  font-size: 10px;
  color: var(--color-text);
  opacity: 0.2;
}

@media (prefers-reduced-motion: reduce) {
  .hero-continuation-cue {
    opacity: 0.1;
    animation: none;
  }
}

@media (max-width: 575px) {
  .hero-continuation-cue {
    display: none;
  }
}

/* ==========================================================================
   ABOUT — EDITORIAL MANIFESTO (migrated from index.css)
   ========================================================================== */
.ab-about-manifesto {
  position: relative;
  padding: 40px 0 120px;
  z-index: 2;
}

/* Seamless glow matching solutions section top glow */
.ab-about-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    color-mix(in srgb, var(--color-accent) 5%, transparent) 0%,
    transparent 65%
  );
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 100%);
  pointer-events: none;
  z-index: 0;
}

.ab-about-manifesto .container {
  position: relative;
  max-width: 1340px;
}

.ab-about-editorial {
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ab-about-left {
  flex: 0 0 35%;
  max-width: 35%;
}

.ab-about-right {
  flex: 0 0 calc(65% - 80px);
  max-width: calc(65% - 80px);
}

/* Left column */
.ab-about-eyebrow {
  display: inline-block;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: clamp(14px, 0.9vw + 5px, 18px);
  font-weight: 700;
  letter-spacing: clamp(2.5px, 0.25vw, 4px);
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.ab-about-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  max-width: 420px;
  margin: 0 0 20px;
  text-shadow: var(--shadow-sm);
}

.ab-about-divider {
  width: 320px;
  height: 1px;
  background: linear-gradient(to right, var(--border-medium) 20%, transparent);
}

/* Right column — glass card */
.ab-about-glass-card {
  position: relative;
  overflow: hidden;
  background: var(--color-card);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(250, 205, 81, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl) var(--space-2xl);
  box-shadow: none;
  transition: 
    background var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ab-about-glass-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-slow), left var(--transition-slow);
  pointer-events: none;
}

.ab-about-glass-card:hover {
  transform: scale(1.02);
}


.ab-about-paragraph {
  font-family: var(--font-body);
  font-size: var(--body-md-font-size);
  font-weight: 400;
  line-height: var(--body-md-line-height);
  color: var(--color-text-soft);
  max-width: 560px;
  margin: 0;
}

.ab-about-hairline {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-medium), transparent);
  margin: 32px 0;
}

/* Statistics */
.ab-about-stats {
  display: flex;
  gap: 0;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.ab-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 32px;
}

.ab-stat-item + .ab-stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--border-light);
}

.ab-stat-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 6px;
}

.ab-stat-label {
  font-family: var(--font-body);
  font-size: var(--label-sm-font-size);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* CTA */
.ab-about-cta-wrap {
  margin-top: 36px;
  text-align: left;
}

/* AOS override */
.ab-about-manifesto [data-aos="fade-up"] {
  transform: translate3d(0, 20px, 0);
}

/* Tablet */
@media (max-width: 991px) {
  .ab-about-manifesto {
    padding: 80px 0;
  }

  .ab-about-editorial {
    flex-direction: column;
    gap: 48px;
  }

  .ab-about-left,
  .ab-about-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ab-about-heading {
    max-width: 100%;
    font-size: clamp(28px, 5vw, 38px);
  }

  .ab-about-glass-card {
    padding: 32px 32px 70px;
  }

  .ab-stat-item {
    padding: 0 20px;
  }

  .ab-about-stats {
    gap: 0;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .ab-about-manifesto {
    padding: 60px 0;
  }

  .ab-about-eyebrow {
    font-size: 13.5px;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
  }

  .ab-about-heading {
    font-size: clamp(24px, 8vw, 32px);
  }

  .ab-about-glass-card {
    padding: 24px 24px 60px;
  }

  .ab-about-paragraph {
    font-size: 15px;
  }

  .ab-about-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .ab-stat-item {
    padding: 12px 0;
    width: 100%;
  }

  .ab-stat-item + .ab-stat-item::before {
    display: none;
  }

  .ab-stat-item + .ab-stat-item {
    border-top: 1px solid rgba(250, 205, 81, 0.06);
    padding-top: 20px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ab-about-manifesto [data-aos] {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}

/* Sol CTA button (used in about.php) */
.ab-sol-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: var(--space-sm) var(--space-lg);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: var(--label-sm-font-size);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition:
    color var(--transition-normal),
    box-shadow var(--transition-normal);
  flex-shrink: 0;
}

.ab-sol-cta-fill {
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateX(-102%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.ab-sol-cta:hover .ab-sol-cta-fill {
  transform: translateX(0);
}
.ab-sol-cta:hover {
  color: #111C26;
  text-decoration: none;
  box-shadow: 0 10px 34px color-mix(in srgb, var(--color-accent) 30%, transparent);
}
.ab-sol-cta span,
.ab-sol-cta i {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   SOL SECTION HEADING ACCENT (migrated from index.css)
   ========================================================================== */
.ab-sol-eyebrow {
  display: block;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: clamp(14px, 0.9vw + 5px, 18px);
  font-weight: 700;
  letter-spacing: clamp(2.5px, 0.25vw, 4px);
  line-height: 1.3;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.ab-sol-heading {
  font-family: var(--font-heading);
  font-size: clamp(var(--headline-md-font-size), 4vw, var(--headline-lg-font-size));
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}

.ab-sol-head-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-sm) auto var(--space-md);
  max-width: 200px;
}

.ab-sol-head-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.ab-sol-head-diamond {
  font-size: 9px;
  color: var(--color-accent);
  opacity: 0.6;
  line-height: 1;
}

/* ==========================================================================
   EXPLORE THE FLEET — Editorial Composition (migrated from index.css)
   ========================================================================== */
.ab-fleet-header {
  text-align: left;
  max-width: 630px;
  margin: 0 0 15px;
}

.ab-fleet-eyebrow {
  display: block;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: clamp(14px, 0.9vw + 5px, 18px);
  font-weight: 700;
  letter-spacing: clamp(2.5px, 0.25vw, 4px);
  line-height: 1.3;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ab-fleet-heading {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-text);
}

.ab-fleet-br {
  display: none;
}

@media (min-width: 768px) {
  .ab-fleet-br {
    display: block;
  }
}

/* ── Showcase Container ── */
.ab-fleet-showcase {
  margin-bottom: 70px;
}

.ab-fleet-showcase-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 992px) {
  .ab-fleet-showcase-inner {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }
  .ab-fleet-showcase:first-of-type .ab-fleet-showcase-inner {
    gap: var(--space-xl);
  }
}

/* ── Image — Framed Editorial Photograph ── */
.ab-fleet-showcase-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.ab-fleet-showcase:first-of-type .ab-fleet-showcase-image {
  background:
    radial-gradient(
      ellipse at 50% 100%,
      color-mix(in srgb, var(--color-accent) 30%, transparent) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      color-mix(in srgb, var(--color-accent) 15%, transparent),
      transparent 50%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-accent) 30%, black) 0%,
      color-mix(in srgb, var(--color-accent) 25%, black) 25%,
      color-mix(in srgb, var(--color-accent) 20%, black) 50%,
      color-mix(in srgb, var(--color-accent) 15%, black) 70%,
      color-mix(in srgb, var(--color-accent) 35%, black) 100%
    );
}

.ab-fleet-showcase--alt .ab-fleet-showcase-image {
  background:
    radial-gradient(
      ellipse at 50% 100%,
      color-mix(in srgb, var(--color-accent) 8%, transparent) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 30% 20%,
      color-mix(in srgb, var(--color-accent) 3%, transparent),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-bg) 90%, black) 0%,
      color-mix(in srgb, var(--color-bg) 85%, black) 30%,
      var(--color-bg) 60%,
      var(--color-bg) 85%,
      color-mix(in srgb, var(--color-bg) 95%, black) 100%
    );
}

@media (min-width: 992px) {
  .ab-fleet-showcase:first-of-type .ab-fleet-showcase-image {
    flex: 0 0 58%;
    width: 58%;
  }
  .ab-fleet-showcase--alt .ab-fleet-showcase-image {
    flex: 0 0 59%;
    width: 59%;
  }
}

.ab-fleet-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 20px;
  filter: brightness(1.06) contrast(1.12);
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  position: relative;
  z-index: 1;
}

.ab-fleet-showcase:first-of-type .ab-fleet-img {
  padding: 2px 12px;
  object-position: left center;
}

.ab-fleet-showcase-image:hover .ab-fleet-img {
  transform: scale(1.03);
}

.ab-fleet-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 50%, var(--overlay-heavy) 100%),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--overlay-heavy) 50%, transparent),
      transparent 40%,
      color-mix(in srgb, var(--color-accent) 4%, transparent) 80%
    );
  pointer-events: none;
  z-index: 2;
}

.ab-fleet-showcase--alt .ab-fleet-image-overlay {
  background:
    radial-gradient(ellipse at center, transparent 50%, var(--overlay-heavy) 100%),
    linear-gradient(
      225deg,
      color-mix(in srgb, var(--overlay-heavy) 50%, transparent),
      transparent 40%,
      color-mix(in srgb, var(--color-accent) 4%, transparent) 80%
    );
}

/* ── Content Panel — Unified Design System ── */
.ab-fleet-showcase-content {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .ab-fleet-showcase:first-of-type .ab-fleet-showcase-content {
    flex: 0 0 calc(42% - 80px);
    width: calc(42% - 80px);
    position: relative;
    z-index: 3;
    transform: translateX(0);
    padding: var(--space-sm) var(--space-lg) var(--space-lg) var(--space-lg);
    justify-content: flex-start;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--surface-glass);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow:
      var(--shadow-md),
      inset 0 1px rgba(255, 255, 255, 0.025);
    transition:
      background var(--transition-normal),
      border var(--transition-normal),
      box-shadow var(--transition-normal);
  }

  .ab-fleet-showcase:first-of-type .ab-fleet-showcase-content:hover {
    background: var(--surface-hover);
    border-color: var(--border-medium);
    box-shadow:
      var(--shadow-lg),
      inset 0 1px rgba(255, 255, 255, 0.025);
  }

  .ab-fleet-showcase--alt .ab-fleet-showcase-content {
    flex: 0 0 42%;
    width: 42%;
    padding: 24px 62px 20px 62px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow:
      var(--shadow-md),
      inset 0 1px rgba(255, 255, 255, 0.025);
  }

  .ab-fleet-showcase--alt {
    margin-top: 28px;
  }
}

.ab-fleet-category-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.2;
}

.ab-fleet-divider {
  width: 38%;
  height: 1px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-accent) 40%, transparent),
    color-mix(in srgb, var(--color-accent) 5%, transparent)
  );
  margin: 30px 0 40px;
  border: 0;
}

.ab-fleet-category-desc {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin: 0 0 36px;
  max-width: 600px;
  text-align: justify;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .ab-fleet-header {
    margin-bottom: 20px;
    margin-left: 0;
  }
  .ab-fleet-showcase {
    margin-bottom: 30px;
  }
  .ab-fleet-showcase-image {
    border-radius: 10px;
  }
  .ab-fleet-img {
    padding: 14px;
  }
  .ab-fleet-showcase:first-of-type .ab-fleet-img {
    padding: 2px 8px;
  }
}

@media (max-width: 768px) {
  .ab-fleet-showcase-content {
    margin-left: 0 !important;
    padding: 0 45px;
    align-items: center;
  }
  .ab-fleet-category-desc {
    width: 100%;
    max-width: 600px;
    text-align: left;
  }
  .ab-fleet-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .ab-fleet-header {
    margin-bottom: 16px;
  }
  .ab-fleet-showcase {
    margin-bottom: 24px;
  }
  .ab-fleet-showcase-inner {
    gap: 16px;
  }
  .ab-fleet-showcase-image {
    border-radius: 6px;
  }
  .ab-fleet-img {
    padding: 12px;
  }
  .ab-fleet-showcase:first-of-type .ab-fleet-img {
    padding: 0px 6px;
  }
  .ab-fleet-category-title {
    font-size: 21px;
  }
  .ab-fleet-showcase-content {
    width: 100%;
    margin-left: 0 !important;
    padding: 0 20px;
  }
  .ab-fleet-divider {
    margin: 16px auto 20px;
  }
  .ab-fleet-category-desc {
    font-size: 14px;
    max-width: 100%;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .ab-fleet-showcase-image:hover .ab-fleet-img {
    transform: none;
  }
}

/* ==========================================================================
   JOURNEY CTA SECTION — Multi-Depth Editorial (migrated from index.css)
   ========================================================================== */

/* ── Section Container (Depth 0) ── */
.ab-journey-cta-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent !important;
}

/* ── Layer 1: Subtle tonal gradient ── */
.ab-journey-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-bg), black 15%) 0%,
    var(--color-bg) 45%,
    color-mix(in srgb, var(--color-bg), black 10%) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Layer 2: Overlay + spotlight ── */
.ab-journey-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--overlay-heavy) 0%,
    var(--overlay-light) 45%,
    var(--overlay-medium) 80%,
    var(--overlay-heavy) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.ab-journey-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 620px;
  transform: translate(-50%, -58%);
  background: radial-gradient(
    ellipse,
    color-mix(in srgb, var(--color-accent) 7%, transparent) 0%,
    color-mix(in srgb, var(--color-accent) 2%, transparent) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 2;
}

.ab-journey-spotlight--secondary {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 500px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, color-mix(in srgb, var(--color-accent) 4%, transparent) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

/* ── Layer 3: Peripheral vignette ── */
.ab-journey-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, var(--overlay-medium) 100%);
  pointer-events: none;
  z-index: 3;
}

/* ── Layer 4: Aviation HUD Elements ── */
.ab-journey-hud {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

/* Override: make Journey CTA section visually transparent so page background
   shows through (remove local background + decorative overlays) */
.ab-journey-cta-section,
.ab-journey-cta-section .ab-journey-bg-gradient,
.ab-journey-cta-section .ab-journey-overlay,
.ab-journey-cta-section::after,
.ab-journey-cta-section .ab-journey-spotlight,
.ab-journey-cta-section .ab-journey-spotlight--secondary,
.ab-journey-cta-section .ab-journey-hud {
  background: transparent !important;
  background-image: none !important;
}

.ab-journey-cta-section .ab-journey-bg-gradient,
.ab-journey-cta-section .ab-journey-overlay,
.ab-journey-cta-section::after {
  display: none !important;
}

.ab-journey-cta-section { min-height: 0; }

/* Coordinates */
.ab-hud-coord {
  position: absolute;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  color: color-mix(in srgb, var(--color-accent) 30%, transparent);
  letter-spacing: 2px;
  line-height: 1.6;
}
.ab-hud-coord--tl {
  top: 28px;
  left: 32px;
}
.ab-hud-coord--tr {
  top: 28px;
  right: 32px;
  text-align: right;
}
.ab-hud-coord--bl {
  bottom: 28px;
  left: 32px;
}
.ab-hud-coord--br {
  bottom: 28px;
  right: 32px;
}

.ab-hud-signature {
  right: 32px;
}

.ab-hud-coord-line {
  display: block;
}

.ab-hud-coord-sep {
  margin: 0 2px;
  color: color-mix(in srgb, var(--color-accent) 18%, transparent);
}
.ab-hud-coord--br .ab-hud-coord-sep {
  margin: 0 3px 0 0;
}

/* ── Corner framing brackets ── */
.ab-hud-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: color-mix(in srgb, var(--color-accent) 12%, transparent);
  border-style: solid;
}
.ab-hud-corner--tl {
  top: 20px;
  left: 20px;
  border-width: 1px 0 0 1px;
}
.ab-hud-corner--tr {
  top: 20px;
  right: 20px;
  border-width: 1px 1px 0 0;
}

/* ── Extended horizontal framing lines with end caps ── */
.ab-hud-frameline {
  position: absolute;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--color-accent) 5%, transparent) 10%,
    color-mix(in srgb, var(--color-accent) 5%, transparent) 90%,
    transparent
  );
}
.ab-hud-frameline::before,
.ab-hud-frameline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 5px;
  background: color-mix(in srgb, var(--color-accent) 5%, transparent);
  transform: translateY(-50%);
}
.ab-hud-frameline::before {
  left: 5%;
}
.ab-hud-frameline::after {
  right: 5%;
}
.ab-hud-frameline--top {
  top: 14%;
}
.ab-hud-frameline--bottom {
  bottom: 14%;
}

.ab-hud-frameline-label {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 400;
  color: color-mix(in srgb, var(--color-accent) 8%, transparent);
  letter-spacing: 2px;
}
.ab-hud-frameline--bottom .ab-hud-frameline-label {
  color: color-mix(in srgb, var(--color-accent) 6%, transparent);
}

/* ── Gold navigation compass (signature detail) ── */
.ab-hud-compass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
  pointer-events: none;
}

/* ── Vertical centerline with micro tick marks ── */
.ab-hud-centerline {
  position: absolute;
  top: 6%;
  bottom: auto;
  height: 78%;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--color-accent) 20%, transparent) 6%,
    color-mix(in srgb, var(--color-accent) 22%, transparent) 20%,
    color-mix(in srgb, var(--color-accent) 18%, transparent) 35%,
    color-mix(in srgb, var(--color-accent) 10%, transparent) 50%,
    color-mix(in srgb, var(--color-accent) 6%, transparent) 65%,
    color-mix(in srgb, var(--color-accent) 2%, transparent) 78%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.ab-hud-centerline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 10px;
  height: 100%;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 52px,
    color-mix(in srgb, var(--color-accent) 10%, transparent) 52px,
    color-mix(in srgb, var(--color-accent) 10%, transparent) 53px,
    transparent 53px,
    transparent 56px
  );
  pointer-events: none;
}

.ab-hud-aircraft {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
}

/* ── Light pulse (GSAP animated) ── */
.ab-hud-light-pulse {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 80px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-accent) 0%, transparent) 0%,
    color-mix(in srgb, var(--color-accent) 18%, transparent) 30%,
    color-mix(in srgb, var(--color-accent) 30%, transparent) 50%,
    color-mix(in srgb, var(--color-accent) 18%, transparent) 70%,
    color-mix(in srgb, var(--color-accent) 0%, transparent) 100%
  );
  opacity: 0;
  pointer-events: none;
  filter: blur(1.5px);
}

/* ── Progression waypoints on centerline ── */
.ab-hud-waypoint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ab-hud-waypoint--1 {
  top: 52%;
}
.ab-hud-waypoint--2 {
  top: 60%;
}

.ab-hud-waypoint-dot {
  width: 4px;
  height: 4px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 8%, transparent);
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
}

.ab-hud-waypoint-label {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 400;
  color: color-mix(in srgb, var(--color-accent) 8%, transparent);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ab-hud-waypoint--1 .ab-hud-waypoint-label {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
}
.ab-hud-waypoint--2 .ab-hud-waypoint-label {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
}

/* ── Crosshair ── */
.ab-hud-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 55%;
  background: color-mix(in srgb, var(--color-accent) 4%, transparent);
}

.ab-hud-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 1px;
  background: color-mix(in srgb, var(--color-accent) 4%, transparent);
}

/* ── Navigation ticks ── */
.ab-hud-tick {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 1px;
  background: color-mix(in srgb, var(--color-accent) 7%, transparent);
  transform: translateX(-50%);
}
.ab-hud-tick--1 {
  top: 16%;
}
.ab-hud-tick--2 {
  top: 22%;
}
.ab-hud-tick--3 {
  top: 28%;
}
.ab-hud-tick--4 {
  top: 36%;
}
.ab-hud-tick--5 {
  top: 64%;
}
.ab-hud-tick--6 {
  top: 72%;
}
.ab-hud-tick--7 {
  top: 78%;
}
.ab-hud-tick--8 {
  top: 84%;
}

/* ── Layer 5: Content ── */
.ab-journey-cta-section .container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.ab-journey-content {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Decorative hairline rules */
.ab-journey-rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--color-accent) 10%, transparent),
    transparent
  );
  margin: 0 auto;
}
.ab-journey-rule--top {
  width: 100px;
  margin-bottom: 32px;
}
.ab-journey-rule--bottom {
  width: 70px;
  margin-top: 28px;
  margin-bottom: 32px;
}

/* Gold editorial divider between heading and body */
.ab-journey-divider {
  width: 140px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--color-accent) 18%, transparent),
    transparent
  );
  margin: 0 auto 22px;
}

/* Eyebrow */
.ab-journey-eyebrow {
  display: block;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: clamp(14px, 0.9vw + 5px, 18px);
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: clamp(2.5px, 0.25vw, 4px);
  line-height: 1.3;
  margin-bottom: 18px;
  opacity: 1;
  text-shadow: var(--shadow-gold-text);
}

/* Navigation star above eyebrow */
.ab-journey-star {
  display: block;
  font-size: 10px;
  color: color-mix(in srgb, var(--color-accent) 12%, transparent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0;
}

/* FlyPrivy Jet signature star watermark in HUD */
.ab-hud-signature {
  position: absolute;
  bottom: 28px;
  right: 32px;
  font-size: 7px;
  color: color-mix(in srgb, var(--color-accent) 6%, transparent);
  pointer-events: none;
  z-index: 3;
}

/* Heading — refined, sculpted */
.ab-journey-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.6vw, 57px);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  margin-top: -12px;
}

.ab-journey-heading-line {
  display: block;
}

.ab-journey-heading-line + .ab-journey-heading-line {
  margin-top: 10px;
}

/* Body */
.ab-journey-body {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--color-text-soft);
  max-width: 550px;
  margin: 0 auto;
}

/* ── Layer 6: Framed CTA ── */
.ab-journey-cta-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
}

.ab-journey-cta-line {
  position: relative;
  width: 48px;
  height: 1px;
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  flex-shrink: 0;
}

.ab-journey-cta-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: color-mix(in srgb, var(--color-accent) 15%, transparent);
  text-transform: uppercase;
  white-space: nowrap;
}

.ab-journey-cta-line--left .ab-journey-cta-label {
  right: calc(100% + 8px);
}

.ab-journey-cta-line--right .ab-journey-cta-label {
  left: calc(100% + 8px);
}

.ab-journey-cta-wrap {
  margin: 0 8px;
}

.ab-journey-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111C26;
  background: var(--color-accent);
  padding: 14px 32px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-journey-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  border-radius: inherit;
  pointer-events: none;
  transition: background-position 0.35s ease;
}

.ab-journey-btn-arrow {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-journey-btn:hover {
  background: var(--color-accent);
  color: #111C26;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--color-accent) 25%, transparent);
}

.ab-journey-btn:hover::after {
  background-position: -200% 0;
}

.ab-journey-btn:hover .ab-journey-btn-arrow {
  transform: translateX(6px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .ab-journey-cta-section {
    min-height: 460px;
  }
  .ab-journey-star {
    font-size: 9px;
    margin-bottom: 10px;
  }
  .ab-journey-heading {
    font-size: clamp(26px, 4.2vw, 44px);
  }
  .ab-journey-heading-line + .ab-journey-heading-line {
    margin-top: 7px;
  }
  .ab-journey-body {
    font-size: 14.5px;
    max-width: 480px;
  }
  .ab-journey-spotlight {
    width: 440px;
    height: 440px;
  }
  .ab-hud-coord {
    font-size: 8px;
  }
  .ab-hud-cross {
    height: 45%;
  }
  .ab-hud-cross::after {
    width: 35%;
  }
  .ab-hud-corner {
    width: 20px;
    height: 20px;
  }
  .ab-hud-frameline--top {
    top: 10%;
  }
  .ab-hud-frameline--bottom {
    bottom: 10%;
  }
  .ab-hud-frameline-label {
    display: none;
  }
  .ab-hud-compass {
    display: none;
  }
  .ab-hud-light-pulse {
    display: none;
  }
  .ab-hud-signature {
    display: none;
  }
  .ab-hud-waypoint--2 {
    top: 63%;
  }
  .ab-journey-cta-line {
    width: 32px;
  }
}

@media (max-width: 575px) {
  .ab-journey-cta-section {
    min-height: 420px;
  }
  .ab-journey-star {
    font-size: 8px;
    margin-bottom: 8px;
  }
  .ab-journey-eyebrow {
    font-size: 13.5px !important;
    letter-spacing: 2.5px !important;
    margin-bottom: 14px;
  }
  .ab-journey-heading {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .ab-journey-heading-line + .ab-journey-heading-line {
    margin-top: 5px;
  }
  .ab-journey-body {
    font-size: 13.5px;
    line-height: 1.75;
    max-width: 100%;
  }
  .ab-journey-rule--top {
    width: 60px;
    margin-bottom: 24px;
  }
  .ab-journey-rule--bottom {
    width: 50px;
    margin-top: 20px;
    margin-bottom: 24px;
  }
  .ab-journey-divider {
    width: 100px;
    margin-bottom: 18px;
  }
  .ab-journey-btn {
    padding: 12px 28px;
    font-size: 11px;
  }
  .ab-journey-spotlight,
  .ab-journey-spotlight--secondary {
    display: none;
  }
  .ab-hud-coord {
    display: none;
  }
  .ab-hud-cross {
    display: none;
  }
  .ab-hud-tick {
    display: none;
  }
  .ab-hud-corner {
    display: none;
  }
  .ab-hud-frameline {
    display: none;
  }
  .ab-hud-centerline {
    display: none;
  }
  .ab-hud-aircraft {
    display: none;
  }
  .ab-hud-compass {
    display: none;
  }
  .ab-hud-waypoint {
    display: none;
  }
  .ab-hud-frameline-label {
    display: none;
  }
  .ab-hud-light-pulse {
    display: none;
  }
  .ab-hud-signature {
    display: none;
  }
  .ab-journey-cta-line {
    display: none;
  }
  .ab-journey-cta-label {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   Critical Layout Overrides (migrated from index.css)
   - Ensure page-wrapper stacks above .airplane-bg-container
   - Keep backgrounds transparent so .airplane-bg-container shows through
   ════════════════════════════════════════════════════════════════ */
html {
  background: transparent !important;
  overflow-x: clip;
}
html body {
  background: transparent !important;
  overflow-x: clip;
}
.dark {
  background-color: transparent !important;
}
html body div.page-wrapper.dark,
html body .page-wrapper.dark {
  position: relative;
  z-index: 2;
  background: transparent !important;
  width: 100% !important;
  overflow-x: hidden !important;
}
.page-wrapper.dark {
  background-color: rgba(0, 0, 0, 0.6) !important;
}
div.page-wrapper.dark {
  background-color: rgba(0, 0, 0, 0.6) !important;
}
.section--bg {
  background-color: transparent !important;
}

/* ==========================================================================
   AVIATION SCROLL CORRIDOR — Vertical Flight Story
   ========================================================================== */

/* =====================================================
   Floating Call Widget Aesthetics Override
   Matches index.css styling — dark themed bracket
   ===================================================== */
.call-widget-wrapper .call-widget-btn {
  background: var(--overlay-heavy) !important;
  background-color: var(--overlay-heavy) !important;
  border-left: 2px solid var(--color-accent) !important;
  border-top: 1px solid var(--border-light) !important;
  border-bottom: 1px solid var(--border-light) !important;
  border-right: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: var(--shadow-tab) !important;
  transition: all var(--transition-normal) !important;
  color: var(--color-text) !important;
}

.call-widget-wrapper .call-widget-btn:hover {
  background: var(--color-accent) !important;
  background-color: var(--color-accent) !important;
  box-shadow: -5px 0 35px color-mix(in srgb, var(--color-accent) 20%, transparent) !important;
}

.call-widget-wrapper .call-widget-btn span.num {
  color: var(--color-accent) !important;
  transition: color var(--transition-normal) !important;
}

.call-widget-wrapper .call-widget-btn:hover span.num {
  color: #111C26 !important;
  transition: color var(--transition-normal) !important;
}

.call-widget-wrapper .call-widget-btn span.arrow::before {
  color: var(--color-accent) !important;
  transition: color var(--transition-normal) !important;
}

.call-widget-wrapper .call-widget-btn:hover span.arrow::before {
  color: #111C26 !important;
  transition: color var(--transition-normal) !important;
}

/* Decorative curved trailing lines */
.ce-decor-map {
  position: fixed;
  bottom: 30%;
  right: -10%;
  width: 700px;
  height: 500px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.ce-decor-map svg {
  width: 100%;
  height: 100%;
}

/* ── Hero Radar Sweep ── */
.hero-radar {
  position: absolute;
  left: -130px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  z-index: 5;
  pointer-events: none;
}

.hero-radar-svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .hero-radar {
    width: 280px;
    height: 280px;
    left: -80px;
  }
}

/* Removed old display:none for hero-radar to show it at smaller sizes */

/* ── Taxiway Network ── */
.taxiway-network {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
  /* Keep the network off the hero */
  clip-path: inset(100vh 0 0 0);
}

@media (max-width: 575px) {
  .taxiway-network { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .taxiway-network { display: none; }
}

/* ── Wing Light Glide — Fixed Wingtip Decoration ── */
.wing-light-glide {
  position: fixed;
  right: -140px;
  bottom: 15px;
  width: 560px;
  height: 175px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

.wing-light-glide svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .wing-light-glide { display: none; }
}

/* ── Promise Card Icon Glow on Hover ── */
.promise-card:hover .promise-icon {
  filter: drop-shadow(0 0 8px rgba(250, 205, 81, 0.6)) drop-shadow(0 0 20px rgba(250, 205, 81, 0.3));
}

/* ── Section isolation — covers taxiway SVG ── */
.classic-hero,
.ab-about-manifesto,
.founder-section,
.mv-section,
.process-section,
.promises-section,
.ab-journey-cta-section {
  isolation: isolate;
}

/* =============================================================
   HERO PREMIUM — cinematic blue → image blend
   ============================================================= */

/* Cinematic blue-family depth (no charcoal/gray overlay).
   Multi-tone brand-blue atmosphere flowing top-left → bottom-right. */
.classic-hero.hero-premium .hero-dark-overlay {
  background: transparent !important;
  opacity: 1;
}

/* Scoped gradient overlay — covers ONLY the text column (left ~44% of viewport).
   Never extends over the aircraft, so the jet is never painted over with blue.
   The image mask handles the actual blend. */
.classic-hero.hero-premium .hero-left-gradient {
  background: linear-gradient(
    90deg,
    #01569C 0%,
    #01569C 36%,
    rgba(1, 86, 156, 0.70) 44%,
    rgba(1, 86, 156, 0.20) 50%,
    transparent 56%
  ) !important;
  /* Fade out at the bottom to blend seamlessly into the next section */
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Mobile: Aircraft image is hidden. The blue gradient should cover full width 
   and fade naturally toward the bottom into the dark fixed background. */
@media (max-width: 991px) {
  .classic-hero.hero-premium .hero-left-gradient {
    background: linear-gradient(
      180deg,
      #01569C 0%,
      #01569C 70%,
      transparent 100%
    ) !important;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  }
  .classic-hero.hero-premium .hero-aircraft-wrap {
    display: none !important;
  }
}

/* Shift the aircraft photograph right within its fixed container
   so the subject becomes clearly visible. */
.classic-hero.hero-premium .hero-aircraft-img {
  object-position: 20% center;
}

/* Hero layout: 42% content / 58% image split on desktop. */
@media (min-width: 992px) {
  .classic-hero.hero-premium .hero-aircraft-wrap {
    width: 58%;
    /* Also mask aircraft wrap at the bottom to prevent a hard edge on desktop */
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  }
  .classic-hero.hero-premium .hero-content-col {
    /* Fluid responsive width that expands on shorter viewports to prevent text wrapping */
    width: clamp(480px, calc(34vw + max(0px, 750px - 100vh) * 1.5), 800px);
    margin-left: max(40px, calc((100vw - 1340px) / 2 + 40px));
  }
  /* Mask fades the image itself (not a painted overlay) so the aircraft
     remains visible. Very wide fade zone (0 → 62%) eliminates any rectangular
     edge. The jet emerges from the blue naturally. */
  .classic-hero.hero-premium .hero-aircraft-img {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.05) 10%,
      rgba(0,0,0,0.20) 22%,
      rgba(0,0,0,0.45) 34%,
      rgba(0,0,0,0.72) 46%,
      rgba(0,0,0,0.90) 54%,
      black 62%,
      black 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.05) 10%,
      rgba(0,0,0,0.20) 22%,
      rgba(0,0,0,0.45) 34%,
      rgba(0,0,0,0.72) 46%,
      rgba(0,0,0,0.90) 54%,
      black 62%,
      black 100%
    );
  }
}

/* Cinematic edge vignette */
.classic-hero.hero-premium .hero-vignette {
  background: transparent !important;
}

/* ── Golden flight-path line — subtle sky trajectory ── */
.hero-premium .hero-flight-path {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.hero-premium .hero-flight-path-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-premium .fp-halo {
  opacity: 0.06;
}
.hero-premium .fp-glow {
  opacity: 0.15;
}
.hero-premium .fp-core {
  opacity: 0.9;
}

@media (max-width: 575px) {
  .hero-premium .hero-flight-path {
    display: none;
  }
}

/* ── Targeted Fix for Short Desktop Viewports (e.g., 1024x768, 1366x768, 1440x650) ── */
@media (min-width: 992px) and (max-height: 800px) {
  .classic-hero {
    height: auto !important; /* Allow container to grow if content is tall */
    min-height: 100vh;
    padding-top: 130px !important; /* Fixed start position below navbar */
    padding-bottom: 40px !important; /* Ensure space after CTA */
    align-items: flex-start !important; /* Force top alignment to prevent center-bleed into navbar */
  }

  .classic-hero .hero-content-col {
    padding: 0;
  }

  .classic-hero .hero-heading {
    margin-bottom: 16px;
  }
  
  .classic-hero .heading-light {
    margin-top: 6px;
  }

  .classic-hero .hero-body-wrapper {
    margin-bottom: 20px;
  }
  
  .classic-hero .hero-paragraph {
    line-height: 1.5;
  }

  .classic-hero .hero-paragraph + .hero-paragraph {
    margin-top: 10px;
  }
}
