/* ============================================================================
   Aircraft Executives — site.css
   Companion to design-system.css.
   - Adds mobile menu, theme toggle, skip link, breadcrumb, hero image overlays
   - Adds legacy shims that map old class names to new design tokens so
     inventory detail pages, journal article pages, and service detail pages
     pick up the new look without a structural rewrite.
   ============================================================================ */


/* ───── Legacy variable aliases ─────────────────────────────────────────── */
/* Map legacy custom-property names (still referenced by inline <style> blocks
   in inventory detail and other pages) onto new design-system tokens. */
:root {
  /* legacy spacing scale → 8px grid */
  --space-xs: var(--s-2);
  --space-sm: var(--s-3);
  --space-md: var(--s-6);
  --space-lg: var(--s-8);
  --space-xl: var(--s-12);
  --space-2xl: var(--s-16);
  --space-3xl: var(--s-24);
  --space-section: var(--s-16);

  /* legacy semantic colors */
  --paper: var(--bg);
  --bone: var(--bg);
  --parchment: var(--raised);
  --ash: var(--rule);
  --stone: var(--ink-3);
  --charcoal: var(--ink-2);
  --heritage-navy: var(--ink);
  --platinum: var(--rule);
  --gold-hover: var(--ink);
  --positive: var(--ok);
  --negative: var(--bad);

  /* legacy layout */
  --header-h: 64px;

  /* legacy transitions */
  --transition-fast: var(--dur-fast) var(--ease);
  --transition-base: var(--dur) var(--ease);
}


/* ───── Skip link ───────────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--s-2);
  background: var(--ink);
  color: var(--ink-inverse);
  padding: var(--s-2) var(--s-4);
  font-family: var(--font-ui);
  font-size: var(--t-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  z-index: 100;
}
.skip-link:focus {
  left: var(--s-3);
}


/* ───── Nav additions: theme toggle + hamburger ─────────────────────────── */

.nav__theme,
.nav__hamburger {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__theme:hover,
.nav__hamburger:hover {
  border-color: var(--ink);
  color: var(--gold);
}
.nav__theme-moon { display: none; }
[data-theme="dark"] .nav__theme-sun { display: none; }
[data-theme="dark"] .nav__theme-moon { display: inline; }
.nav__hamburger { display: none; }
.nav__hamburger span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  margin: 3px 0;
}

@media (max-width: 800px) {
  .nav__hamburger { display: inline-flex; }
}


/* ───── Mobile menu drawer ──────────────────────────────────────────────── */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 60;
  padding: var(--s-12) var(--s-6);
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: var(--s-12) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--t-h2);
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-3) 0;
  display: block;
}
.mobile-menu a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}


/* ───── Breadcrumb ──────────────────────────────────────────────────────── */

.breadcrumb {
  font-family: var(--font-ui);
  font-size: var(--t-caption);
  color: var(--ink-3);
  padding: var(--s-6) 0 var(--s-3);
  display: flex;
  gap: var(--s-2);
  align-items: center;
}
.breadcrumb a {
  color: var(--ink-3);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.breadcrumb a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.breadcrumb [aria-current="page"] {
  color: var(--ink);
}


/* ───── Filter bar (inventory) ──────────────────────────────────────────── */

.filter-bar {
  display: flex;
  gap: var(--s-6);
  align-items: baseline;
  padding: var(--s-4) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: var(--s-8) 0 var(--s-12);
  flex-wrap: wrap;
}
.filter-bar__group {
  display: flex;
  gap: var(--s-2);
  align-items: baseline;
  flex-wrap: wrap;
}
.filter-bar__group .label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-right: var(--s-2);
}
.filter-bar__pill {
  font-family: var(--font-ui);
  font-size: var(--t-caption);
  padding: 4px 10px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.filter-bar__pill[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--ink);
}
.filter-bar__pill:hover { color: var(--ink); }
.filter-bar__count {
  margin-left: auto;
  font-family: var(--font-numeric);
  font-variant-numeric: lining-nums tabular-nums;
  font-size: var(--t-caption);
  color: var(--ink-3);
}


/* ───── Inventory row (horizontal card) ─────────────────────────────────── */

.inv-rows {
  display: grid;
  gap: 0;
}
.inv-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-12);
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.inv-row:first-child { border-top: 1px solid var(--rule); }

/* Image — no frame, no badge; aircraft floats on the page surface */
.inv-row__media {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--s-6);
}
.inv-row__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.inv-row__body { display: grid; gap: var(--s-4); }

/* Title row — tracked caps for the aircraft identifier, S/N right-flush */
.inv-row__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--rule);
}
.inv-row__title {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0;
  transition: color var(--dur) var(--ease);
}
.inv-row:hover .inv-row__title { color: var(--gold); }
.inv-row__sn {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}

/* Meta — three inline cells separated by vertical hairlines */
.inv-row__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin: 0;
}
.inv-row__meta > div {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  padding: 0 var(--s-5);
  border-right: 1px solid var(--rule);
  min-width: 0;
}
.inv-row__meta > div:first-child { padding-left: 0; }
.inv-row__meta > div:last-child  { border-right: 0; padding-right: 0; }
.inv-row__meta dt {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
  flex-shrink: 0;
}
.inv-row__meta dt::after { content: ":"; }
.inv-row__meta dd {
  margin: 0;
  font-family: var(--font-numeric);
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 15px;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 800px) {
  .inv-row {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    padding: var(--s-8) 0;
  }
  .inv-row__head { padding-bottom: var(--s-3); }
  .inv-row__title { font-size: 16px; }
  .inv-row__meta {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .inv-row__meta > div {
    padding: var(--s-2) 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .inv-row__meta > div:last-child { border-bottom: 0; }
}


/* ───── Spec grid (aircraft detail) ─────────────────────────────────────── */

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.spec-grid > div {
  padding: var(--s-4) var(--s-6);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.spec-grid dt {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--s-1);
}
.spec-grid dd {
  margin: 0;
  font-family: var(--font-numeric);
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--ink);
  font-size: var(--t-h5);
}


/* ───── Two-column content (about, contact) ─────────────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-12);
  align-items: start;
}
.two-col__content > * + * { margin-top: var(--s-4); }
.two-col__media {
  background: var(--overlay);
  border: 1px solid var(--rule);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.two-col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}


/* ───── Form block (contact, valuation) ─────────────────────────────────── */

.form__row { display: grid; gap: var(--s-2); }
.form__row--inline { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 600px) { .form__row--inline { grid-template-columns: 1fr; } }


/* ───── Hero on image — legibility refinements ──────────────────────────── */
/* Bring the lede to full white (was 0.85 in foundation) and add a subtle
   text-shadow to the title as a safety net for high-contrast spots in the
   source photo. The overlay is the primary mechanism; this catches edges. */
.hero:not(.hero--bare) .hero__title {
  text-shadow: 0 1px 2px rgba(0,0,0,0.30);
}
.hero:not(.hero--bare) .hero__lede {
  color: #FAFAF9;
  text-shadow: 0 1px 1px rgba(0,0,0,0.25);
}
.hero:not(.hero--bare) .hero__eyebrow {
  color: #E8D7B0;
  text-shadow: 0 1px 1px rgba(0,0,0,0.20);
}
.hero:not(.hero--bare) .hero__eyebrow.eyebrow--line::before {
  background: #E8D7B0;
}


/* ───── Hero — type-only (no image) variant ─────────────────────────────── */

.hero--bare {
  min-height: auto;
  background: var(--bg);
  color: var(--ink);
  padding: var(--s-16) 0 var(--s-12);
  border-bottom: 1px solid var(--rule);
}
.hero--bare .hero__content {
  padding: 0;
  max-width: var(--width-content);
}
.hero--bare .hero__title {
  color: var(--ink);
}
.hero--bare .hero__lede {
  color: var(--ink-2);
}
.hero--bare .hero__cta .btn {
  background: var(--ink);
  color: var(--ink-inverse);
  border-color: var(--ink);
}
.hero--bare .hero__cta .btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}


/* ───── Off-market closing block ────────────────────────────────────────── */

.closer {
  margin-top: var(--s-16);
  padding: var(--s-10) 0;
  border-top: 1px solid var(--gold-mute);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: end;
}
@media (max-width: 800px) {
  .closer { grid-template-columns: 1fr; }
}


/* ───── Photo cards (journal featured) ──────────────────────────────────── */

.j-card__media-photo {
  aspect-ratio: 4 / 3;
  background: var(--overlay);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.j-card__media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================================
   LEGACY SHIMS
   Map old class names used in inventory detail, journal article, and service
   detail pages to the new design tokens. This keeps those pages visually
   coherent without a structural rewrite.
   ============================================================================ */


/* Old site header / nav still used in legacy pages -- hide if our new nav is rendered */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-header .container {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: var(--s-3) var(--s-12);
}
.site-header .header-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-8);
  align-items: center;
}
.site-header .site-logo img {
  height: 28px;
  width: auto;
}
.site-header .site-nav ul {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
  align-items: center;
}
.site-header .site-nav a {
  font-family: var(--font-ui);
  font-size: var(--t-h5);
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header .site-nav a:hover,
.site-header .site-nav a.active,
.site-header .site-nav a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.site-header .site-nav .nav-cta {
  background: var(--ink);
  color: var(--ink-inverse);
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.site-header .site-nav .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-inverse);
}
.site-header .hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  cursor: pointer;
  padding: 8px;
}
.site-header .hamburger-btn span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  margin: 3px 0;
}
@media (max-width: 800px) {
  .site-header .site-nav { display: none; }
  .site-header .hamburger-btn { display: inline-flex; }
}


/* Old footer */
.site-footer {
  background: var(--raised);
  border-top: 1px solid var(--rule);
  padding: var(--s-16) var(--s-12) var(--s-8);
  margin-top: var(--s-24);
}
.site-footer .container {
  max-width: var(--width-content);
  margin: 0 auto;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid var(--rule);
}
.site-footer .footer-heading {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin: 0 0 var(--s-4);
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.site-footer .footer-links a,
.site-footer .footer-contact a {
  color: var(--ink);
  font-size: var(--t-h5);
  font-family: var(--font-ui);
}
.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover { color: var(--gold); }
.site-footer .footer-bottom {
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
  font-size: var(--t-caption);
  color: var(--ink-3);
}
.site-footer .footer-legal a { color: var(--ink-3); margin-left: var(--s-4); }


/* ───── Buttons (legacy → new) ──────────────────────────────────────────── */

.btn--primary,
.btn--gold {
  background: var(--ink);
  color: var(--ink-inverse);
  border: 1px solid var(--ink);
}
.btn--primary:hover,
.btn--gold:hover {
  background: color-mix(in oklab, var(--ink) 88%, var(--gold) 12%);
  border-color: color-mix(in oklab, var(--ink) 88%, var(--gold) 12%);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--ink-inverse);
}


/* ───── Page hero (legacy) → matches new hero--bare ─────────────────────── */

.page-hero {
  background: var(--bg);
  color: var(--ink);
  padding: var(--s-16) 0 var(--s-12);
  border-bottom: 1px solid var(--rule);
}
.page-hero .container {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 0 var(--s-12);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-display);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  margin: var(--s-6) 0 var(--s-4);
  max-width: 22ch;
  text-wrap: balance;
}
.page-hero p {
  font-size: var(--t-body-lg);
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.5;
}


/* ───── Section header (legacy) ─────────────────────────────────────────── */

.section-header {
  margin-bottom: var(--s-10);
}
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h2);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.view-all-link {
  font-family: var(--font-ui);
  font-size: var(--t-h5);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  display: inline-flex;
  gap: var(--s-2);
  align-items: center;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.view-all-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.view-all-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}


/* ───── About-section (legacy) ──────────────────────────────────────────── */

.about-section,
.contact-form-section,
.cta-section,
.credentials,
.faq-section,
.why-section,
.journal-section,
.newsletter-section,
.metrics,
.inventory,
.services,
.process,
.journal,
.inquiry-section,
.inventory-section,
.filters {
  padding: var(--s-12) 0;
}
.about-section .container,
.contact-form-section .container,
.cta-section .container,
.credentials .container,
.faq-section .container,
.why-section .container,
.journal-section .container,
.newsletter-section .container,
.metrics .container,
.inventory .container,
.services .container,
.process .container,
.journal .container,
.inquiry-section .container,
.inventory-section .container,
.filters .container {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 0 var(--s-12);
}
@media (max-width: 720px) {
  .about-section .container,
  .contact-form-section .container,
  .cta-section .container,
  .credentials .container,
  .faq-section .container,
  .why-section .container,
  .journal-section .container,
  .newsletter-section .container,
  .metrics .container,
  .inventory .container,
  .services .container,
  .process .container,
  .journal .container,
  .inquiry-section .container,
  .inventory-section .container,
  .filters .container { padding: 0 var(--s-6); }
}


/* ───── Stats grid (legacy) ─────────────────────────────────────────────── */

.metrics-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.metric,
.stat-item {
  padding: var(--s-6) var(--s-4);
  border-right: 1px solid var(--rule);
  text-align: left;
}
.metric:last-child,
.stat-item:last-child { border-right: 0; }
.metric-value,
.stat-value {
  font-family: var(--font-display);
  font-size: var(--t-h2);
  font-weight: 300;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
}
.metric-label,
.stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: var(--s-2);
}


/* ───── Services / capability (legacy) ──────────────────────────────────── */

.services-grid,
.values-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.service-card,
.value-card,
.why-item {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-8) var(--s-6);
}
.service-card h3,
.value-card h3,
.why-item h3 {
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  text-wrap: balance;
}
.service-card p,
.value-card p,
.why-item p {
  color: var(--ink-2);
  font-size: var(--t-body);
  line-height: 1.6;
  margin: 0;
}
.service-icon,
.value-icon {
  width: 32px;
  height: 32px;
  margin-bottom: var(--s-4);
  color: var(--gold);
}
.service-icon svg,
.value-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
@media (max-width: 900px) {
  .services-grid, .values-grid, .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid, .values-grid, .why-grid { grid-template-columns: 1fr; }
}


/* ───── Process steps (legacy) ──────────────────────────────────────────── */

.process-grid {
  display: grid;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s-8);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.process-step:last-child { border-bottom: 1px solid var(--rule); }
.process-number {
  font-family: var(--font-numeric);
  font-variant-numeric: lining-nums tabular-nums;
  font-size: var(--t-h2);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--s-2);
}
.process-step p {
  color: var(--ink-2);
  font-size: var(--t-body);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0;
}
@media (max-width: 720px) {
  .process-step { grid-template-columns: 1fr; gap: var(--s-2); }
}


/* ───── Journal cards (legacy) ──────────────────────────────────────────── */

.journal-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.journal-card {
  border-bottom: 1px solid var(--rule);
  padding: var(--s-6) var(--s-4) var(--s-6) 0;
}
.journal-card .journal-content,
.journal-card .journal-meta {
  display: contents;
}
.journal-date {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: var(--s-2);
}
.journal-title {
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--s-2);
  text-wrap: balance;
}
.journal-excerpt {
  color: var(--ink-2);
  font-size: var(--t-body);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 0 var(--s-3);
}
.journal-link {
  font-family: var(--font-ui);
  font-size: var(--t-h5);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  display: inline-flex;
  gap: var(--s-2);
  align-items: center;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.journal-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.journal-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.journal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0; border-top: 1px solid var(--rule); }
.featured-post {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-8);
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 800px) {
  .featured-post { grid-template-columns: 1fr; }
}


/* ───── FAQ (legacy) ────────────────────────────────────────────────────── */

.faq-grid {
  border-top: 1px solid var(--rule);
}
.faq-item {
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--rule);
}
.faq-item h3 {
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--s-3);
}
.faq-item p {
  color: var(--ink-2);
  font-size: var(--t-body);
  line-height: 1.7;
  max-width: var(--width-prose);
  margin: 0;
}


/* ───── CTA (legacy) ────────────────────────────────────────────────────── */

.cta-section {
  border-top: 1px solid var(--gold-mute);
  border-bottom: 1px solid var(--rule);
  margin-top: var(--s-12);
}
.cta-content {
  max-width: var(--width-prose);
  margin: 0 auto;
  text-align: left;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h1);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
.cta-section p {
  font-size: var(--t-body-lg);
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.5;
}
.cta-buttons {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-6);
}
.cta-buttons .btn svg {
  width: 16px;
  height: 16px;
}


/* ───── Inventory list (legacy aircraft-row) ────────────────────────────── */

.inventory-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.aircraft-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  transition: background var(--dur) var(--ease);
}
.aircraft-row:hover {
  background: var(--raised);
}
.aircraft-row__image {
  aspect-ratio: 16 / 10;
  background: var(--overlay);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.aircraft-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aircraft-row__head {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  align-items: baseline;
  margin-bottom: var(--s-3);
}
.aircraft-row__brand {
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 500;
  color: var(--ink);
}
.aircraft-row__sn {
  font-family: var(--font-ui);
  font-size: var(--t-caption);
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.aircraft-row__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  border-top: 1px solid var(--rule-soft);
  padding-top: var(--s-3);
  margin: 0;
}
.aircraft-row__specs .spec dt {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--s-1);
}
.aircraft-row__specs .spec dd {
  margin: 0;
  font-family: var(--font-numeric);
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--ink);
  font-size: var(--t-h5);
}
@media (max-width: 720px) {
  .aircraft-row { grid-template-columns: 1fr; }
}


/* ───── Aircraft cards (legacy carousel) ────────────────────────────────── */

.inventory-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
}
.aircraft-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
}
.aircraft-card:hover { border-color: var(--ink); }
.aircraft-image {
  aspect-ratio: 16 / 10;
  background: var(--overlay);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.aircraft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aircraft-status {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid currentColor;
  background: var(--bg);
}
.aircraft-status--available { color: var(--ok); }
.aircraft-status--sold { color: var(--bad); }
.aircraft-status--acquired { color: var(--info); }
.aircraft-details { padding: var(--s-4); }
.aircraft-category {
  font-family: var(--font-ui);
  font-size: var(--t-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 var(--s-2);
}
.aircraft-name {
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--s-2);
}
.aircraft-meta {
  display: flex;
  gap: var(--s-3);
  font-size: var(--t-caption);
  color: var(--ink-3);
}


/* ───── Inventory stats (legacy stat-dot) ───────────────────────────────── */

.inventory-stats {
  display: flex;
  gap: var(--s-6);
  margin-top: var(--s-4);
  font-family: var(--font-ui);
  font-size: var(--t-caption);
  color: var(--ink-2);
  flex-wrap: wrap;
}
.stat-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: var(--s-1);
}
.stat-dot--available { background: var(--ok); }
.stat-dot--acquired  { background: var(--info); }
.stat-dot--sold      { background: var(--bad); }


/* ───── Filter buttons (legacy) ─────────────────────────────────────────── */

.filter-group {
  display: flex;
  gap: var(--s-2);
  align-items: baseline;
  flex-wrap: wrap;
}
.filter-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-right: var(--s-2);
}
.filter-btn {
  font-family: var(--font-ui);
  font-size: var(--t-caption);
  padding: 4px 10px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.filter-btn.active,
.filter-btn[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--ink);
}
.filter-btn:hover { color: var(--ink); }


/* ───── Credentials block (legacy) ──────────────────────────────────────── */

.credentials {
  border-top: 1px solid var(--rule);
}
.credentials-content,
.credentials-showcase {
  display: flex;
  gap: var(--s-8);
  align-items: center;
  flex-wrap: wrap;
}
.credential-badge img,
.credential-item img {
  height: 80px;
  width: auto;
  display: block;
}
.credential-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  align-items: center;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--rule-soft);
}


/* ───── Forms (legacy) ──────────────────────────────────────────────────── */

.contact-form { display: grid; gap: var(--s-6); margin-top: var(--s-8); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: grid; gap: var(--s-2); }
.form-field label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: var(--s-3) 0;
  font-family: var(--font-display);
  font-size: var(--t-h5);
  width: 100%;
  transition: border-color var(--dur) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.form-field select { appearance: none; -webkit-appearance: none; padding-right: var(--s-6); cursor: pointer; }
.form-error {
  display: none;
  font-family: var(--font-ui);
  font-size: var(--t-caption);
  color: var(--bad);
  margin-top: var(--s-1);
}
.form-field.has-error .form-error { display: block; }
.form-submit { margin-top: var(--s-4); }
.form-success { display: none; padding: var(--s-6); border-top: 1px solid var(--gold-mute); }
.form-success.is-visible { display: block; }


/* ───── Two-col inline (legacy) ─────────────────────────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-12);
  align-items: start;
}
.two-col-content > * + * { margin-top: var(--s-3); }
.two-col-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h2);
  line-height: 1.15;
  color: var(--ink);
}
.two-col-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h3);
  margin-top: var(--s-6);
}
.two-col-content p {
  color: var(--ink-2);
  line-height: 1.6;
}
.two-col-content a { color: var(--gold); border-bottom: 1px solid color-mix(in oklab, var(--gold) 35%, transparent); }
.two-col-content a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.two-col-image {
  aspect-ratio: 4 / 3;
  background: var(--overlay);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }


/* ───── About-intro (legacy) ────────────────────────────────────────────── */

.about-intro {
  max-width: var(--width-prose);
  margin-bottom: var(--s-10);
}
.about-intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h1);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
.about-intro p {
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: var(--s-4);
}
.about-intro p:last-child { margin-bottom: 0; }


/* ───── Team member (legacy) ────────────────────────────────────────────── */

.team-member {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-8);
}
.team-photo {
  aspect-ratio: 1;
  width: 200px;
  background: var(--overlay);
  border: 1px solid var(--rule);
  margin-bottom: var(--s-4);
}
.team-name {
  font-family: var(--font-display);
  font-size: var(--t-h2);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 var(--s-1);
}
.team-title {
  font-family: var(--font-ui);
  font-size: var(--t-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--s-6);
}
.team-bio { max-width: var(--width-prose); }
.team-bio p { color: var(--ink-2); line-height: 1.7; margin-bottom: var(--s-3); }


/* ───── Why-content (legacy) ────────────────────────────────────────────── */

.why-content {
  max-width: var(--width-content);
}
.why-content > p {
  font-size: var(--t-body-lg);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 60ch;
  margin-bottom: var(--s-10);
}


/* ───── Newsletter (legacy) ─────────────────────────────────────────────── */

.newsletter-section {
  border-top: 1px solid var(--gold-mute);
  border-bottom: 1px solid var(--rule);
}


/* ───── Inquiry (legacy) ────────────────────────────────────────────────── */

.inquiry-section {
  border-top: 1px solid var(--rule);
}


/* ───── Page utility (legacy `container`) ───────────────────────────────── */

.container {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 0 var(--s-12);
}
@media (max-width: 720px) { .container { padding: 0 var(--s-6); } }


/* ───── Print ───────────────────────────────────────────────────────────── */

@media print {
  .nav, .mobile-menu, .site-header, .footer, .site-footer { display: none !important; }
  body { background: white; color: black; }
}
