/* ============================================================
   PJ1 SEO PAGES — Unified Dark Luxury Theme
   ============================================================
   Google Fonts (free): Playfair Display + Inter
   Colors: #0a0e1a / #141827 / #f8f6f3 / #c9a96e / #e0c090
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --lux-dark: #0a0e1a;
  --lux-secondary: #141827;
  --lux-light: #f8f6f3;
  --lux-text: #d4d8e4;
  --lux-muted: #8b93a8;
  --lux-gold: #c9a96e;
  --lux-gold-hover: #e0c090;
  --lux-border: rgba(201, 169, 110, 0.15);
  --lux-border-subtle: rgba(201, 169, 110, 0.08);
  --lux-glow: rgba(201, 169, 110, 0.12);

  /* Legacy aliases for backward compatibility */
  --pj-ink: #0a0e1a;
  --pj-navy: #0a0e1a;
  --pj-blue: #c9a96e;
  --pj-sky: #d4d8e4;
  --pj-ice: #0a0e1a;
  --pj-soft: #141827;
  --pj-paper: #141827;
  --pj-muted: #8b93a8;
  --pj-gold: #c9a96e;
  --pj-line: rgba(201, 169, 110, 0.15);
  --pj-dark-line: rgba(201, 169, 110, 0.15);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pj-page {
  margin: 0;
  background: var(--lux-dark);
  color: var(--lux-light);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lux-light);
  margin-top: 0;
}
h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.94;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
p { margin-top: 0; color: var(--lux-text); }
.lead {
  max-width: 68ch;
  color: var(--lux-muted);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.6;
}
.hero .lead {
  max-width: 62ch;
  color: rgba(248, 246, 243, 0.82);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lux-gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.label {
  display: inline-block;
  color: var(--lux-gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--lux-light);
  letter-spacing: -0.02em;
}

/* --- Layout --- */
.pj-wrap, .container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.band {
  padding: 120px 0;
  background: var(--lux-dark);
  color: var(--lux-light);
}
.band.white, .band.soft, .band.dark {
  background: var(--lux-dark);
  color: var(--lux-light);
}

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

.text-center { text-align: center; }
.text-gold { color: var(--lux-gold); }
.mt-0 { margin-top: 0; }
.mt-6 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.animate-in {
  opacity: 0;
  transform: translateY(30px);
}
.reveal.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Header --- */
.pj-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 14, 26, 0.92);
  border-bottom: 1px solid var(--lux-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color 0.25s ease;
}
.pj-header.is-scrolled { background: rgba(10, 14, 26, 0.98); }
.pj-header__inner {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.pj-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  z-index: 2;
  line-height: 0;
}
.pj-logo__img {
  display: block;
  height: clamp(36px, 4.2vw, 48px);
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}
/* Default theme is dark — show silver mark */
.pj-logo__for-light-bg { display: none; }
.pj-logo__for-dark-bg { display: block; }
.pj-header__left, .pj-header__right {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 20px);
  font-size: 0.9rem;
}
.pj-header__left a:not(.pj-cta), .pj-header__right a:not(.pj-cta) {
  position: relative;
  color: rgba(248, 246, 243, 0.75);
  white-space: nowrap;
  transition: color 160ms ease;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
}
.pj-header__left a:not(.pj-cta)::after, .pj-header__right a:not(.pj-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--lux-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.pj-header__left a:not(.pj-cta):hover, .pj-header__right a:not(.pj-cta):hover,
.pj-header__left a[aria-current="page"]:not(.pj-cta), .pj-header__right a[aria-current="page"]:not(.pj-cta) {
  color: var(--lux-light);
}
.pj-header__left a:not(.pj-cta):hover::after, .pj-header__right a:not(.pj-cta):hover::after,
.pj-header__left a[aria-current="page"]:not(.pj-cta)::after, .pj-header__right a[aria-current="page"]:not(.pj-cta)::after {
  transform: scaleX(1);
}

/* Solid gold pill — never inherit nav-link padding/underline/opacity */
.pj-cta,
.pj-header__right a.pj-cta,
.pj-header__mobile-menu a.pj-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 24px !important;
  border-radius: 999px;
  border: none;
  background: #c9a96e !important;
  background-color: #c9a96e !important;
  color: #0a0e1a !important;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  opacity: 1 !important;
  box-shadow: 0 2px 10px rgba(10, 14, 26, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pj-cta:hover,
.pj-header__right a.pj-cta:hover,
.pj-header__mobile-menu a.pj-cta:hover {
  background: #d4b67a !important;
  background-color: #d4b67a !important;
  color: #0a0e1a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201, 169, 110, 0.35);
}
.pj-cta::after,
.pj-header__right a.pj-cta::after,
.pj-header__mobile-menu a.pj-cta::after {
  display: none !important;
  content: none !important;
}

/* Dropdowns */
.dropdown { position: relative; }
.dropdown-arrow { display: inline-block; margin-left: 2px; font-size: 0.7em; opacity: 0.6; transition: transform 0.2s ease; }
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  padding: 12px 0;
  border-radius: 8px;
  background: rgba(20, 24, 39, 0.98);
  border: 1px solid var(--lux-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(20, 24, 39, 0.98);
  border-left: 1px solid var(--lux-border);
  border-top: 1px solid var(--lux-border);
  transform: translateX(-50%) rotate(45deg);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: rgba(248, 246, 243, 0.72);
  font-size: 0.85rem;
  transition: color 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  color: var(--lux-light);
  background: rgba(201, 169, 110, 0.08);
}
.dropdown-menu a::after { display: none; }

/* Mobile toggle */
.pj-header__mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0;
  z-index: 3;
}
.pj-header__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background-color 0.2s ease;
}
.pj-header__mobile-toggle span::before,
.pj-header__mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}
.pj-header__mobile-toggle span::before { top: -7px; }
.pj-header__mobile-toggle span::after { top: 7px; }
.pj-header__mobile-toggle.is-open span { background: transparent; }
.pj-header__mobile-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.pj-header__mobile-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu overlay */
.pj-header__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.98);
  border-bottom: 1px solid var(--lux-border);
  padding: 20px;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - 74px);
  overflow-y: auto;
}
.pj-header__mobile-menu.is-open { display: flex; }
.pj-header__mobile-menu a {
  display: block;
  padding: 12px 0;
  color: rgba(248, 246, 243, 0.8);
  font-size: 1rem;
  border-bottom: 1px solid rgba(248, 246, 243, 0.06);
}
.pj-header__mobile-menu a:hover { color: #fff; }
.pj-header__mobile-menu .dropdown-menu-mobile {
  display: none;
  padding-left: 16px;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.pj-header__mobile-menu .dropdown-menu-mobile.is-open { display: flex; }
.pj-header__mobile-menu .dropdown-menu-mobile a {
  padding: 8px 0;
  font-size: 0.9rem;
  border: none;
  color: rgba(248, 246, 243, 0.65);
}
.pj-header__mobile-menu .mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.pj-header__mobile-menu .mobile-dropdown-toggle .dropdown-arrow { transition: transform 0.2s ease; }
.pj-header__mobile-menu .mobile-dropdown-toggle.is-open .dropdown-arrow { transform: rotate(180deg); }
.pj-header__mobile-menu .pj-cta { margin-top: 8px; text-align: center; justify-content: center; }
.pj-header__mobile-menu .pj-cta::after { display: none; }

/* --- Utility Classes --- */
.u-text-center { text-align: center; }
.u-mb-6 { margin-bottom: 24px; }
.u-mt-6 { margin-top: 24px; }
.u-justify-center { justify-content: center; }

.hero-tagline {
  margin: 12px 0 16px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--lux-gold);
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}

.u-text-cream { color: var(--lux-light); }
.u-text-gold { color: var(--lux-gold); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: clamp(480px, 70vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--lux-dark);
  color: var(--lux-light);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 26, 0.60), rgba(10, 14, 26, 0.30) 50%, rgba(10, 14, 26, 0.10)),
    linear-gradient(180deg, rgba(10, 14, 26, 0.05), rgba(10, 14, 26, 0.60));
  pointer-events: none;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(84px, 12vw, 150px) 0 clamp(54px, 7vw, 86px);
}

/* --- Buttons --- */
.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(--lux-gold);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn.primary {
  background: var(--lux-gold);
  color: var(--lux-dark);
  border-color: var(--lux-gold);
}
.btn.primary:hover {
  background: var(--lux-gold-hover);
  border-color: var(--lux-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}
.btn.light {
  border-color: var(--lux-light);
  background: var(--lux-light);
  color: var(--lux-dark);
}
.btn.light:hover {
  background: transparent;
  color: var(--lux-light);
  transform: translateY(-2px);
}
.btn.ghost {
  background: transparent;
  color: var(--lux-light);
  border-color: rgba(248, 246, 243, 0.5);
}
.btn.ghost:hover {
  border-color: var(--lux-gold);
  color: var(--lux-gold);
  transform: translateY(-2px);
}
.btn:disabled { opacity: 0.7; cursor: wait; }

/* --- Statbar --- */
.statbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  max-width: 900px;
  border: 1px solid var(--lux-border);
  background: var(--lux-border);
}
.statbar div {
  padding: 24px 18px;
  background: rgba(20, 24, 39, 0.7);
  text-align: center;
}
.statbar b {
  display: block;
  color: var(--lux-gold);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}
.statbar span {
  display: block;
  margin-top: 10px;
  color: var(--lux-muted);
  font-size: 0.82rem;
}

/* --- Subnav --- */
.subnav { background: var(--lux-secondary); border-bottom: 1px solid var(--lux-border); }
.subnav__inner { min-height: 52px; display: flex; align-items: center; gap: 20px; overflow-x: auto; color: var(--lux-muted); font-size: 0.9rem; }
.subnav a { white-space: nowrap; color: var(--lux-muted); transition: color 0.2s ease; }
.subnav a:hover { color: var(--lux-gold); }

/* --- Cards & Grids --- */
.card-grid, .solution-grid, .route-grid, .faq-grid, .fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.card, .solution-card, .route-card, .faq-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover, .solution-card:hover, .route-card:hover, .faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
}
.card p, .solution-card p, .route-card p, .faq-card p {
  margin-bottom: 0;
  color: var(--lux-muted);
}
.card h3, .route-card h3, .faq-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.solution-card { display: flex; flex-direction: column; gap: 16px; }
.solution-card__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--lux-border);
  color: var(--lux-gold);
  font-size: 0.9rem;
  font-weight: 600;
}

/* --- Split --- */
.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 --- */
.media-panel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--lux-secondary);
  border: 1px solid var(--lux-border);
}
.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.media-panel:hover img { transform: scale(1.03); }

/* --- Feature List --- */
.feature-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  padding-left: 20px;
  border-left: 2px solid var(--lux-gold);
  color: var(--lux-text);
  line-height: 1.6;
}

/* --- Panels --- */
.panel {
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
}
.panel.dark {
  border-color: var(--lux-border);
  background: rgba(201, 169, 110, 0.05);
}

/* --- Number List --- */
.number-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-border);
}
.number-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 24px;
  background: var(--lux-secondary);
}
.number-row b { color: var(--lux-gold); font-size: 1.1rem; }
.number-row p { margin-bottom: 0; color: var(--lux-muted); }

/* --- Comparison --- */
.comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-border);
}
.comparison article { padding: 26px; background: var(--lux-secondary); }
.comparison ul { margin: 18px 0 0; padding-left: 18px; color: var(--lux-muted); }
.comparison h3 { font-family: 'Playfair Display', serif; }

/* --- Quote Band --- */
.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(--lux-secondary);
  border: 1px solid var(--lux-border);
  color: var(--lux-light);
}
.quote-band p { margin-bottom: 0; color: var(--lux-muted); }
.quote-band .actions { margin-top: 0; justify-content: flex-end; }

/* --- Contact --- */
.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(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
  color: var(--lux-text);
  transition: all 0.2s ease;
}
.contact-stack a:hover {
  border-color: var(--lux-gold);
  color: var(--lux-gold);
}

/* --- Forms --- */
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label, .check-row {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lux-light);
  font-family: 'Inter', sans-serif;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--lux-dark);
  color: var(--lux-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}
.field textarea { min-height: 126px; resize: vertical; }
.check-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--lux-muted);
  font-weight: 400;
  font-size: 0.9rem;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--lux-muted);
  font-size: 0.9rem;
}

/* --- Fleet --- */
.fleet-tools {
  position: sticky;
  top: 74px;
  z-index: 10;
  padding: 16px 0;
  background: linear-gradient(var(--lux-dark) 78%, rgba(10, 14, 26, 0));
}
.fleet-filter { display: flex; flex-wrap: wrap; gap: 10px; }
.fleet-chip {
  min-height: 40px;
  border: 1px solid var(--lux-border);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--lux-secondary);
  color: var(--lux-light);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
.fleet-chip:hover { border-color: var(--lux-gold); }
.fleet-chip[aria-pressed="true"] {
  background: var(--lux-gold);
  color: var(--lux-dark);
  border-color: var(--lux-gold);
}
.aircraft-card {
  overflow: hidden;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aircraft-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201, 169, 110, 0.08); }
.aircraft-card.is-hidden { display: none; }
.aircraft-media { position: relative; min-height: 210px; background: var(--lux-dark); }
.aircraft-media img { width: 100%; 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(10, 14, 26, 0.85);
  color: var(--lux-gold);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--lux-border);
}
.aircraft-body { padding: 22px; }
.aircraft-maker { color: var(--lux-gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.aircraft-name { margin: 5px 0 16px; font-size: 1.45rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.spec-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.spec-grid b { display: block; color: var(--lux-light); }
.spec-grid span { color: var(--lux-muted); font-size: 0.75rem; text-transform: uppercase; }

/* --- Modal --- */
.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(10, 14, 26, 0.85); }
.modal__panel {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 8px;
  background: var(--lux-secondary);
  border: 1px solid var(--lux-border);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--lux-secondary);
  color: var(--lux-light);
  cursor: pointer;
  font-size: 1.35rem;
  border: 1px solid var(--lux-border);
  transition: all 0.2s ease;
}
.modal__close:hover { background: var(--lux-gold); color: var(--lux-dark); }
.modal__media img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.modal__body { padding: clamp(24px, 4vw, 42px); color: var(--lux-text); }

/* --- Footer --- */
.site-footer {
  padding: 80px 0 32px;
  background: var(--lux-dark);
  color: var(--lux-light);
  border-top: 1px solid var(--lux-border);
}
.site-footer__inner { display: flex; flex-direction: column; gap: 48px; }
.footer-brand {
  display: flex;
  justify-content: flex-start;
}
.footer-logo {
  display: inline-flex;
  line-height: 0;
}
.footer-logo__img {
  display: block;
  height: clamp(64px, 8vw, 96px);
  width: auto;
  max-width: min(280px, 70vw);
  object-fit: contain;
}
/* Dark footer default → silver full logo */
.footer-logo__for-light-bg { display: none; }
.footer-logo__for-dark-bg { display: block; }
.footer-cols { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 28px; }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin: 0 0 14px 0;
  font-family: 'Inter', sans-serif;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--lux-muted);
  line-height: 2.2;
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--lux-gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--lux-border);
}
.footer-bottom p { margin: 0; font-size: 0.8rem; color: var(--lux-muted); }
.footer-bottom a { color: var(--lux-muted); transition: color 160ms ease; }
.footer-bottom a:hover { color: var(--lux-gold); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 20px; max-width: 620px; }
.footer-links a { color: var(--lux-muted); }
.footer-links a:hover { color: var(--lux-gold); }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.testimonial-card {
  padding: 28px;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
}
.testimonial-card q {
  display: block;
  margin-bottom: 20px;
  color: var(--lux-light);
  font-size: 1.05rem;
  line-height: 1.55;
  font-style: italic;
}
.testimonial-card .author { display: block; font-weight: 600; font-size: 0.95rem; color: var(--lux-light); }
.testimonial-card .meta { display: block; color: var(--lux-muted); font-size: 0.85rem; }
.testimonial-card .date { display: block; color: var(--lux-muted); font-size: 0.8rem; margin-top: 4px; }
.testimonial-card .star-rating { display: block; color: var(--lux-gold); font-size: 1.1rem; margin-bottom: 8px; letter-spacing: 2px; }

/* --- FAQ Accordion --- */
.faq-item { border-bottom: 1px solid var(--lux-border); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  color: var(--lux-light);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--lux-gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .answer { padding: 0 0 20px; color: var(--lux-muted); line-height: 1.6; }

/* --- Blog --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.blog-card {
  overflow: hidden;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201, 169, 110, 0.08); }
.blog-card__media { position: relative; min-height: 180px; background: var(--lux-dark); }
.blog-card__media img { width: 100%; aspect-ratio: 16 / 9; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px; }
.blog-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.1);
  color: var(--lux-gold);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-card__date { display: block; margin-bottom: 8px; color: var(--lux-muted); font-size: 0.82rem; }
.blog-card h3 { margin-bottom: 10px; font-size: 1.15rem; font-family: 'Playfair Display', serif; }
.blog-card p { margin-bottom: 0; color: var(--lux-muted); font-size: 0.95rem; }

/* --- Events --- */
.event-hero { min-height: clamp(420px, 55vh, 600px); }
.event-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.1);
  color: var(--lux-light);
  font-size: 0.85rem;
  border: 1px solid var(--lux-border);
}
.event-section { padding: clamp(48px, 7vw, 90px) 0; }
.event-section.white, .event-section.soft { background: var(--lux-dark); }

/* --- Comparison Table --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--lux-border);
}
.compare-table th {
  background: var(--lux-secondary);
  color: var(--lux-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.compare-table td { font-size: 0.95rem; color: var(--lux-text); }
.compare-table tr:nth-child(even) td { background: rgba(20, 24, 39, 0.5); }
.compare-table .winner { color: var(--lux-gold); font-weight: 600; }

/* --- Calculator --- */
.calc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
}
.calc-result {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 8px;
  background: var(--lux-dark);
  border: 1px solid var(--lux-border);
  color: var(--lux-light);
}
.calc-result h3 {
  margin: 0 0 10px;
  color: var(--lux-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.calc-result .big { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--lux-gold); font-family: 'Playfair Display', serif; }

/* --- Chat Widget --- */
.pj-chat {
  position: fixed;
  right: 22px;
  bottom: 100px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lux-gold);
  color: var(--lux-dark);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.pj-chat:hover { transform: scale(1.08); background: var(--lux-gold-hover); }
.pj-chat svg { width: 26px; height: 26px; }

/* --- Aircraft Selector (calculator) --- */
.aircraft-selector { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-bottom: 32px; }
.aircraft-selector__card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.aircraft-selector__card:hover { transform: translateY(-4px); border-color: rgba(201, 169, 110, 0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.aircraft-selector__card.is-selected { border-color: var(--lux-gold); box-shadow: 0 0 0 1px var(--lux-gold), 0 8px 32px rgba(201, 169, 110, 0.15); }
.aircraft-selector__card.is-selected::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--lux-gold); }
.aircraft-selector__media { position: relative; height: 160px; overflow: hidden; background: var(--lux-dark); }
.aircraft-selector__media img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.aircraft-selector__card:hover .aircraft-selector__media img { transform: scale(1.05); }
.aircraft-selector__body { padding: 20px 16px; }
.aircraft-selector__body .category { margin: 0 0 6px; color: var(--lux-gold); font-size: 0.72rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.aircraft-selector__body .price-range { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--lux-light); font-family: 'Playfair Display', serif; }
.aircraft-selector__body .detail { margin: 6px 0 0; font-size: 0.82rem; color: var(--lux-muted); }

/* --- Calculator Result --- */
.calc-result { display: none; margin-top: 40px; padding: 48px; border: 1px solid var(--lux-border); border-radius: 8px; background: var(--lux-secondary); }
.calc-result.is-visible { display: block; animation: fadeInUp 0.8s ease forwards; }
.calc-result__header { text-align: center; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--lux-border); }
.calc-result__price { font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; color: var(--lux-gold); font-family: 'Playfair Display', serif; line-height: 1; margin: 0; }
.calc-result__price .prefix { font-size: 0.5em; color: var(--lux-muted); font-weight: 400; display: block; margin-bottom: 8px; }
.calc-result__price .suffix { font-size: 0.3em; color: var(--lux-muted); font-weight: 400; display: block; margin-top: 8px; }
.calc-result__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-bottom: 40px; }
.calc-result__card { padding: 28px; border: 1px solid var(--lux-border); border-radius: 8px; background: var(--lux-dark); text-align: center; transition: transform 0.3s ease, border-color 0.3s ease; }
.calc-result__card:hover { transform: translateY(-4px); border-color: rgba(201, 169, 110, 0.3); }
.calc-result__card .category { margin: 0 0 10px; color: var(--lux-gold); font-size: 0.72rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.calc-result__card .price { margin: 0; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--lux-light); font-family: 'Playfair Display', serif; }
.calc-result__card .rate { margin: 8px 0 0; font-size: 0.85rem; color: var(--lux-muted); }
.calc-result__card .desc { margin: 12px 0 0; font-size: 0.85rem; color: var(--lux-muted); line-height: 1.5; }

/* --- Trust Badges --- */
.trust-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; padding: 32px 0; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--lux-border);
  color: var(--lux-text);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.trust-badge:hover { background: rgba(201, 169, 110, 0.15); border-color: rgba(201, 169, 110, 0.3); transform: translateY(-2px); }
.trust-badge svg { width: 18px; height: 18px; color: var(--lux-gold); flex-shrink: 0; }

/* --- Team --- */
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.team-card { text-align: center; }
.team-card img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
  background: var(--lux-dark);
  border: 2px solid var(--lux-border);
  transition: border-color 0.3s ease;
}
.team-card:hover img { border-color: var(--lux-gold); }
.team-card .name { font-weight: 600; font-size: 1rem; color: var(--lux-light); }
.team-card .role { color: var(--lux-muted); font-size: 0.85rem; }

/* --- Breadcrumb --- */
.pj-breadcrumb {
  padding: 14px 0;
  background: var(--lux-secondary);
  border-bottom: 1px solid var(--lux-border);
  font-size: 0.85rem;
  color: var(--lux-muted);
}
.pj-breadcrumb a { color: var(--lux-gold); }
.pj-breadcrumb a:hover { text-decoration: underline; }

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lux-gold);
  color: var(--lux-dark);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.2s ease;
  text-decoration: none;
}
.floating-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
  background: var(--lux-gold-hover);
}
.floating-cta svg { width: 28px; height: 28px; }

/* --- Cert Grid --- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
  padding: 32px;
  background: var(--lux-secondary);
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  margin-bottom: 32px;
}
.cert-grid img {
  max-height: 80px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: brightness(0.95) grayscale(0.3);
}
.cert-grid img:hover { opacity: 1; transform: scale(1.05); filter: brightness(1) grayscale(0); }

/* --- Safety Counter --- */
.safety-counter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.counter-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--lux-secondary);
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.counter-item:hover { transform: translateY(-4px); border-color: rgba(201, 169, 110, 0.3); }
.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--lux-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 0.85rem;
  color: var(--lux-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Route Cards --- */
.route-card { display: block; text-decoration: none; color: inherit; }
.route-card h3 { margin: 0 0 10px 0; font-size: 1.15rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.route-card p { margin: 0; color: var(--lux-muted); font-size: 0.9rem; line-height: 1.5; }

/* --- Fleet Cards --- */
.fleet-card { text-decoration: none; color: inherit; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201, 169, 110, 0.08); }
.fleet-card h3 { margin: 0 0 8px 0; font-size: 1.1rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.fleet-card p { font-size: 0.9rem; color: var(--lux-muted); margin: 0 0 12px 0; }
.fleet-meta { font-size: 0.8rem; color: var(--lux-gold); font-weight: 600; }

.card-media { overflow: hidden; border-radius: 8px 8px 0 0; }
.card-body { padding: 24px; }
.table-wrapper { overflow-x: auto; }

/* --- Responsive --- */
@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)); }
  .aircraft-selector, .calc-result__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-band .actions { justify-content: flex-start; }
  .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-grid, .blog-grid, .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .safety-counter { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pj-header__left, .pj-header__right { display: none; }
  .pj-header__mobile-toggle { display: flex; }
  .pj-header__inner { min-height: 64px; }
  .pj-logo { min-width: 100px; }
  .pj-logo__img { height: 36px; }
  .hero__content h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
}

@media (max-width: 760px) {
  .hero { min-height: 610px; }
  .hero__content { padding-top: 90px; }
  .statbar, .card-grid, .solution-grid, .route-grid, .faq-grid, .fleet-grid, .comparison, .quote-form, .safety-counter, .aircraft-selector, .calc-result__grid { grid-template-columns: 1fr; }
  .number-row { grid-template-columns: 1fr; gap: 10px; }
  .fleet-tools { top: 66px; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .testimonial-grid, .blog-grid, .team-grid, .calc-form { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 12px 10px; font-size: 0.85rem; }
  .floating-cta { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .cert-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .pj-header__inner { min-height: 60px; }
  .pj-logo { min-width: 88px; }
  .pj-logo__img { height: 32px; }
  .band { padding: 80px 0; }
  .calc-result { padding: 24px; }
  .calc-result__price { font-size: clamp(2rem, 6vw, 3rem); }
}

/* --- Hero Split (Advantages page) --- */
.hero-split {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-split__side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  min-height: 400px;
}

.hero-split__side--dark {
  background: var(--lux-dark);
}

.hero-split__side--light {
  background: var(--lux-secondary);
  border-left: 1px solid var(--lux-border);
}

.hero-split__side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-split__side--dark::after,
.hero-split__side--light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.6), rgba(10, 14, 26, 0.9));
}

.hero-split__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.crossed-out {
  text-decoration: line-through;
  text-decoration-color: var(--lux-gold);
  text-decoration-thickness: 3px;
  opacity: 0.5;
}

.highlight-gold {
  color: var(--lux-gold);
}

/* --- Additional reveal variants --- */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.tagline {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(248, 246, 243, 0.9);
}

.hero .actions {
  margin-top: 24px;
}

/* --- Card Images --- */
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.fleet-card:hover .card-img {
  transform: scale(1.04);
}

/* --- Fleet Card Exterior + Interior (luxury pair) --- */
.fleet-card .card-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: #0b0b0b;
}
.fleet-card .card-img,
.fleet-card .card-interior {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(1.05) contrast(1.04);
}
.fleet-card:hover .card-interior,
.fleet-card:hover .card-img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.06);
}
@media (max-width: 640px) {
  .fleet-card .card-img,
  .fleet-card .card-interior {
    height: 160px;
  }
}

/* --- Interior Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--lux-border);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(10, 14, 26, 0.9));
  color: var(--lux-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Footer Spacing --- */
.footer-heading-spaced {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__side--light { border-left: none; border-top: 1px solid var(--lux-border); }
}

/* ─── Value Cards (icon cards) ─── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 36px 28px;
  border: 1px solid var(--lux-border);
  border-radius: 8px;
  background: var(--lux-secondary);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--lux-border);
  color: var(--lux-gold);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--lux-light);
  font-family: 'Playfair Display', serif;
}

.value-card p {
  color: var(--lux-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Timeline ─── */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--lux-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lux-gold);
  border: 2px solid var(--lux-dark);
  box-shadow: 0 0 0 2px var(--lux-border);
}

.timeline-item__year {
  color: var(--lux-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.timeline-item h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: var(--lux-light);
  font-family: 'Playfair Display', serif;
}

.timeline-item p {
  color: var(--lux-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Floating CTA ─── */
.pj-float-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lux-gold);
  color: var(--lux-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.pj-float-cta:hover {
  transform: translateY(-4px) scale(1.05);
  background: var(--lux-gold-hover);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.45);
}

.pj-float-cta svg {
  width: 28px;
  height: 28px;
}

/* ─── Gold Divider ─── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--lux-gold);
  margin: 20px 0;
}

/* ─── Utility Classes ─── */
.text-center { text-align: center; }
.m-0 { margin: 0; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Homepage Hero */
.hero-home {
  min-height: 100vh;
}
.hero-home__content {
  text-align: center;
  padding: 120px 0 80px;
}
.hero-home h1 {
  max-width: 16ch;
  margin-inline: auto;
}
.hero-home .lead {
  max-width: 60ch;
  margin-inline: auto;
}
.hero-home .actions {
  justify-content: center;
  margin-top: 36px;
}

/* Band Dark */
.band-dark {
  position: relative;
  overflow: hidden;
}
.band-dark .hero__media {
  opacity: 0.3;
}
.band-dark__wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
.band-dark h2 {
  max-width: 800px;
  margin-inline: auto;
}
.band-dark .lead {
  max-width: 600px;
  margin-inline: auto;
}
.band-dark .actions {
  justify-content: center;
  margin-top: 30px;
}

/* Card link */
.card-link {
  text-decoration: none;
  color: inherit;
}

/* Card image for fleet preview */
.card-img-fleet {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
  display: block;
}

/* Utility */
.mt-36 {
  margin-top: 36px;
}

/* Founder Section */
.founder-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.founder-photo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  border: 2px solid var(--lux-border, #c9a96e);
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.founder-photo-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--lux-secondary);
  border: 2px solid var(--lux-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lux-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  transition: border-color 0.3s ease;
}

.founder-photo-placeholder:hover {
  border-color: var(--lux-gold);
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--lux-gold);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.founder-title {
  display: block;
  color: var(--lux-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.founder-bio {
  color: var(--lux-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.founder-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.founder-contact a,
.founder-contact span {
  color: var(--lux-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.founder-contact a:hover {
  color: var(--lux-gold);
}

/* --- Cost Calculator utility classes --- */
.hero-label {
  margin: 12px 0 16px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--lux-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.field--bottom {
  display: flex;
  align-items: flex-end;
}

.btn--full {
  width: 100%;
}

.mt-20 { margin-top: 20px; }

.calc-range {
  color: var(--lux-text);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.calc-category {
  margin: 0 0 8px;
  color: var(--lux-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Inter', sans-serif;
}

.calc-price {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--lux-light);
  font-family: 'Playfair Display', serif;
}

.calc-rate {
  margin: 8px 0 0;
  color: var(--lux-muted);
  font-size: 0.9rem;
}

.calc-desc {
  margin: 12px 0 0;
  color: var(--lux-text);
  font-size: 0.85rem;
}

.card--media {
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.card--media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card--media .card-body {
  padding: 24px;
}

.calc-price-sm {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lux-light);
}

.calc-spec {
  margin: 8px 0 0;
  color: var(--lux-text);
  font-size: 0.85rem;
}

.footer-col h4.footer-heading-spaced {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .founder-photo-placeholder {
    width: 200px;
    height: 200px;
  }
}

/* Text-only certification chips (no third-party logos) */
.cert-chips { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; max-width:900px; margin:0 auto; }
.cert-chip {
  display:inline-block; padding:10px 16px; border:1px solid rgba(201,169,110,0.45);
  border-radius:999px; color:inherit; font-size:0.85rem; background:rgba(201,169,110,0.08);
}
.safety-mark {
  width:44px; height:44px; margin:0 auto 12px; border-radius:50%;
  border:1px solid rgba(201,169,110,0.55); color:#c9a96e; font-size:0.75rem; font-weight:600;
  display:flex; align-items:center; justify-content:center;
}


/* Aircraft photo gallery — 6 luxury shots per category */
.aircraft-gallery { margin-top: 36px; }
.aircraft-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.aircraft-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0b0b0b;
  aspect-ratio: 16 / 10;
}
.aircraft-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(1.06) contrast(1.04);
}
.aircraft-gallery__item:hover img {
  transform: scale(1.05);
  filter: saturate(1.12) contrast(1.06);
}
.aircraft-gallery__item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff8ed;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,169,110,0.45);
  backdrop-filter: blur(4px);
}
@media (max-width: 1100px) {
  .aircraft-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .aircraft-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .aircraft-gallery__grid { grid-template-columns: 1fr; }
}
