:root {
  --pj-ink: #101820;
  --pj-navy: #152a38;
  --pj-blue: #2f596b;
  --pj-sky: #d8e7ee;
  --pj-ice: #f4f8fa;
  --pj-soft: #eef3f5;
  --pj-paper: #ffffff;
  --pj-muted: #61717c;
  --pj-gold: #b89662;
  --pj-line: rgba(16, 24, 32, 0.14);
  --pj-dark-line: rgba(255, 255, 255, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.pj-page {
  margin: 0;
  background: var(--pj-ice);
  color: var(--pj-ink);
  font-family: "GT America", "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.pj-wrap {
  width: min(1240px, calc(100% - 42px));
  margin: 0 auto;
}

.pj-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--pj-line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pj-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.pj-logo {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  color: var(--pj-ink);
}

.pj-logo svg {
  width: 220px;
  height: auto;
}

.pj-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 0.9rem;
}

.pj-nav a {
  opacity: 0.75;
  white-space: nowrap;
  transition: opacity 160ms ease, color 160ms ease, background-color 160ms ease;
}

.pj-nav a:hover,
.pj-nav a[aria-current="page"] {
  opacity: 1;
}

.pj-nav .pj-cta {
  opacity: 1;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--pj-ink);
  color: #fff;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--pj-navy);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 19, 27, 0.86), rgba(9, 19, 27, 0.52) 44%, rgba(9, 19, 27, 0.16)),
    linear-gradient(180deg, rgba(9, 19, 27, 0.1), rgba(9, 19, 27, 0.72));
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(84px, 12vw, 150px) 0 clamp(54px, 7vw, 86px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--pj-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11.5ch;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 8vw, 7rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
}

.lead {
  max-width: 68ch;
  color: var(--pj-muted);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.hero .lead {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.82);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pj-ink);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
}

.btn.primary {
  background: var(--pj-ink);
  color: #fff;
}

.btn.light {
  border-color: #fff;
  background: #fff;
  color: var(--pj-ink);
}

.btn.ghost {
  background: transparent;
  color: var(--pj-ink);
}

.hero .btn.ghost,
.band.dark .btn.ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.statbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  max-width: 900px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
}

.statbar div {
  padding: 18px;
  background: rgba(11, 26, 36, 0.54);
}

.statbar b {
  display: block;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.statbar span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.subnav {
  background: #fff;
  border-bottom: 1px solid var(--pj-line);
}

.subnav__inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  color: var(--pj-muted);
  font-size: 0.9rem;
}

.subnav a {
  white-space: nowrap;
}

.band {
  padding: clamp(64px, 9vw, 118px) 0;
}

.band.white {
  background: #fff;
}

.band.dark {
  background: var(--pj-navy);
  color: #fff;
}

.band.dark .lead,
.band.dark p,
.band.dark li {
  color: rgba(255, 255, 255, 0.75);
}

.band.soft {
  background: var(--pj-soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 36px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-panel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--pj-navy);
}

.media-panel img {
  aspect-ratio: 16 / 11;
  height: 100%;
  object-fit: cover;
}

.panel {
  border: 1px solid var(--pj-line);
  border-radius: 8px;
  background: #fff;
}

.panel.dark {
  border-color: var(--pj-dark-line);
  background: rgba(255, 255, 255, 0.07);
}

.card-grid,
.solution-grid,
.route-grid,
.faq-grid,
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.solution-card,
.route-card,
.faq-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--pj-line);
  border-radius: 8px;
  background: #fff;
}

.card p,
.solution-card p,
.route-card p,
.faq-card p {
  margin-bottom: 0;
  color: var(--pj-muted);
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-card__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--pj-line);
  color: var(--pj-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.number-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--pj-line);
  border-radius: 8px;
  background: var(--pj-line);
}

.number-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 24px;
  background: #fff;
}

.number-row b {
  color: var(--pj-gold);
  font-size: 1.1rem;
}

.number-row p {
  margin-bottom: 0;
  color: var(--pj-muted);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 18px;
  border-left: 2px solid var(--pj-gold);
  color: var(--pj-muted);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--pj-line);
  border-radius: 8px;
  background: var(--pj-line);
}

.comparison article {
  padding: 26px;
  background: #fff;
}

.comparison ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--pj-muted);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.5fr);
  gap: 30px;
  align-items: center;
  padding: clamp(30px, 5vw, 48px);
  border-radius: 8px;
  background: var(--pj-ink);
  color: #fff;
}

.quote-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.quote-band .actions {
  margin-top: 0;
  justify-content: flex-end;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-stack a,
.contact-stack span {
  display: block;
  padding: 16px;
  border: 1px solid var(--pj-line);
  border-radius: 8px;
  background: #fff;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--pj-line);
  border-radius: 8px;
  background: #fff;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.check-row {
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 24, 32, 0.22);
  border-radius: 8px;
  padding: 11px 12px;
  background: #f9fbfc;
  color: var(--pj-ink);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.check-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--pj-muted);
  font-weight: 500;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--pj-muted);
}

.fleet-tools {
  position: sticky;
  top: 74px;
  z-index: 10;
  padding: 16px 0;
  background: linear-gradient(#f4f8fa 78%, rgba(244, 248, 250, 0));
}

.fleet-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fleet-chip {
  min-height: 40px;
  border: 1px solid var(--pj-line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  color: var(--pj-ink);
  cursor: pointer;
}

.fleet-chip[aria-pressed="true"] {
  background: var(--pj-ink);
  color: #fff;
}

.aircraft-card {
  overflow: hidden;
  border: 1px solid var(--pj-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.aircraft-card.is-hidden {
  display: none;
}

.aircraft-media {
  position: relative;
  min-height: 210px;
  background: var(--pj-navy);
}

.aircraft-media img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
}

.aircraft-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pj-ink);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.aircraft-body {
  padding: 22px;
}

.aircraft-maker {
  color: var(--pj-blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.aircraft-name {
  margin: 5px 0 16px;
  font-size: 1.45rem;
  font-weight: 750;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.spec-grid b {
  display: block;
}

.spec-grid span {
  color: var(--pj-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 24, 0.66);
}

.modal__panel {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.35rem;
}

.modal__media img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.modal__body {
  padding: clamp(24px, 4vw, 42px);
}

.site-footer {
  padding: 52px 0;
  background: #0d151d;
  color: #fff;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.site-footer p {
  max-width: 38ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  max-width: 620px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1020px) {
  .section-head,
  .split,
  .split.reverse,
  .quote-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .solution-grid,
  .route-grid,
  .faq-grid,
  .fleet-grid,
  .comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-band .actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .pj-header__inner {
    min-height: 92px;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px 16px;
    padding: 10px 0;
  }

  .pj-logo,
  .pj-logo svg {
    min-width: 170px;
    width: 170px;
  }

  .pj-nav {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 3px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pj-nav::-webkit-scrollbar {
    display: none;
  }

  .pj-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    flex: 0 0 auto;
  }

  .pj-nav .pj-cta {
    min-height: 34px;
    padding: 8px 13px;
  }

  .hero {
    min-height: 610px;
  }

  .hero__content {
    padding-top: 90px;
  }

  .statbar,
  .card-grid,
  .solution-grid,
  .route-grid,
  .faq-grid,
  .fleet-grid,
  .comparison,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .number-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fleet-tools {
    top: 66px;
  }
}
