:root {
  --bg: #06101d;
  --bg-soft: #0a1729;
  --surface: rgba(11, 24, 41, 0.9);
  --surface-strong: rgba(13, 29, 49, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(138, 190, 255, 0.22);
  --text: #edf4ff;
  --muted: #9cb0cc;
  --muted-strong: #c6d8ef;
  --accent: #69c3ff;
  --accent-2: #b2ebff;
  --accent-3: #1f7dd6;
  --accent-warm: #f7d7a1;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.24);
  --radius: 30px;
  --radius-sm: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -10%, rgba(201, 232, 255, 0.1), transparent 22%),
    radial-gradient(circle at top right, rgba(92, 173, 255, 0.18), transparent 26%),
    radial-gradient(circle at left 20%, rgba(25, 98, 179, 0.18), transparent 28%),
    linear-gradient(180deg, #04101b 0%, #071423 45%, #08111d 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4,
dt {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

p,
dd,
li,
small,
span,
a {
  overflow-wrap: break-word;
  word-break: normal;
}

p {
  margin: 0;
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -50px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: #08101c;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-main {
  padding: 0 24px 88px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: rgba(4, 13, 24, 0.72);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(178, 235, 255, 0.5), transparent);
}

.site-header__inner,
.section,
.hero,
.site-footer__grid,
.aircraft-page,
.post-page {
  width: min(1220px, calc(100vw - 48px));
  margin: 0 auto;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.site-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-brand:hover {
  transform: translateY(-1px);
}

.site-logo-image {
  width: 180px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(53, 156, 255, 0.22));
}

.site-brand__text strong {
  display: none;
}

.site-brand__text small {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-menu li {
  min-width: 0;
  display: flex;
  align-items: center;
}

.site-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-menu a:hover,
.site-menu .current-menu-item > a {
  color: var(--white);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(178, 235, 255, 0.2);
  background: linear-gradient(135deg, rgba(74, 162, 255, 0.2), rgba(125, 219, 255, 0.16));
  color: var(--white);
  font-weight: 700;
}

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.site-nav__toggle strong {
  font: 700 0.85rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(158, 228, 255, 0.18);
  background: rgba(87, 183, 255, 0.08);
  color: var(--accent-2);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: normal;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 32px;
  align-items: end;
  padding: 78px 0 44px;
}

.hero--simple {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 38px 0 18px;
}

.hero--simple::before {
  inset: 32px 0 auto auto;
  width: 420px;
  height: 320px;
}

.hero--simple .hero__copy {
  max-width: none;
}

.hero--simple .hero__copy h1 {
  max-width: none;
  font-size: clamp(3.3rem, 5.2vw, 6rem);
  text-wrap: normal;
}

.hero--simple .hero__copy p {
  max-width: 88ch;
}

.home .section-heading {
  max-width: none;
}

.home .section-heading h2 {
  max-width: none;
  text-wrap: normal;
}

.home .section-heading--split > div:first-child {
  width: 100%;
  max-width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 40px 0 auto 48%;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 198, 255, 0.16), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.top-banner,
.feature-banner {
  width: min(1220px, calc(100vw - 48px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(108, 197, 255, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(12, 26, 46, 0.98), rgba(8, 18, 31, 0.98));
  box-shadow: var(--shadow);
}

.feature-banner--inline {
  width: 100%;
  margin: 8px 0 28px;
}

.top-banner__copy,
.feature-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.top-banner__copy h2,
.feature-banner__content h1 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.95;
}

.feature-banner__content h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 0.95;
}

.top-banner__copy p,
.feature-banner__content p {
  margin-top: 14px;
  max-width: 58ch;
  color: var(--muted-strong);
}

.top-banner__meta,
.feature-banner__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.top-banner__meta span,
.feature-banner__stats div {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.feature-banner__stats div {
  min-width: 150px;
}

.feature-banner__stats strong {
  display: block;
  font: 800 1.2rem/1 "Space Grotesk", sans-serif;
}

.feature-banner__stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.top-banner__media,
.feature-banner__media {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  min-height: 100%;
}

.top-banner__media img,
.feature-banner__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero__copy,
.hero__panel,
.fleet-card,
.journal-card,
.highlight-card,
.spotlight-grid article,
.split-copy,
.split-media,
.post-page__header,
.post-page__content,
.post-page__media,
.section-heading,
.site-footer__grid > div {
  min-width: 0;
}

.hero__copy h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  margin: 18px 0;
  max-width: 11ch;
}

.hero__copy p {
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--muted-strong);
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero__signature span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.site-nav__cta:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, #48a6ff, #8ce7ff);
  color: #04111f;
}

.button--ghost {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.hero__panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(132, 214, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(16, 35, 60, 0.95), rgba(8, 21, 38, 0.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__feature {
  display: grid;
  gap: 18px;
  color: inherit;
}

.hero__feature-media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(178, 235, 255, 0.18);
}

.hero__feature-media img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.hero__feature-body h2 {
  margin-top: 16px;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 0.96;
}

.hero__feature-body p {
  margin-top: 12px;
  color: var(--muted-strong);
}

.hero__feature-specs,
.hero__metrics {
  display: grid;
  gap: 12px;
}

.hero__feature-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.hero__feature-specs div,
.hero__stat {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.hero__feature-specs dt {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero__feature-specs dd {
  margin: 8px 0 0;
  color: var(--white);
  line-height: 1.35;
}

.hero__stat strong {
  display: block;
  font: 800 2.4rem/1 "Space Grotesk", sans-serif;
  color: var(--white);
}

.hero__stat span {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted-strong);
}

.section {
  padding: 78px 0;
}

.section--dark {
  padding: 72px 32px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(10, 23, 41, 0.96), rgba(8, 17, 31, 0.96)),
    linear-gradient(90deg, rgba(105, 195, 255, 0.08), transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section--spotlight {
  position: relative;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: end;
  max-width: none;
}

.section-heading h1,
.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
}

.section-heading p {
  margin-top: 14px;
  font-size: 1.04rem;
  color: var(--muted-strong);
}

.journal-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.journal-categories__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(178, 235, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font: 700 0.82rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.journal-categories__link:hover,
.journal-categories__link.is-active {
  transform: translateY(-1px);
  border-color: rgba(178, 235, 255, 0.3);
  background: rgba(91, 195, 255, 0.12);
  color: var(--white);
}

.news-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}

.news-category-list--sticky {
  position: sticky;
  top: 86px;
  z-index: 18;
  padding: 10px 0 8px;
  background: linear-gradient(180deg, rgba(6, 16, 29, 0.98), rgba(6, 16, 29, 0.88));
  backdrop-filter: blur(14px);
}

.news-category-list__link {
  color: var(--muted-strong);
  font: 700 0.92rem/1.2 "Space Grotesk", sans-serif;
  letter-spacing: 0.03em;
}

.news-category-list__link:hover,
.news-category-list__link.is-active {
  color: var(--white);
}

.news-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  margin: 34px 0;
}

.news-feature-carousel {
  display: none;
}

.news-feature-carousel__viewport {
  overflow: hidden;
  border-radius: 24px;
}

.news-feature-carousel__track {
  display: flex;
  transition: transform 0.65s ease;
  will-change: transform;
}

.news-feature-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.news-feature-card--carousel {
  min-height: 0;
}

.news-feature-card--carousel .news-feature-card__media {
  position: relative;
}

.news-feature-card--carousel .news-feature-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.08), rgba(5, 10, 18, 0.16) 30%, rgba(5, 10, 18, 0.8) 74%, rgba(5, 10, 18, 0.96) 100%);
}

.news-feature-card--carousel .news-feature-card__media img {
  aspect-ratio: 16 / 13;
}

.news-feature-card--carousel .news-feature-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 22px 24px;
}

.news-feature-card--carousel .content-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  margin: 0;
  border-color: rgba(10, 30, 52, 0.9);
  background: rgba(10, 30, 52, 0.96);
}

.news-feature-card--carousel h2 {
  margin-top: 0;
  font-size: clamp(1.7rem, 6vw, 2.35rem);
  line-height: 0.98;
}

.news-feature-card--carousel p,
.news-feature-card--carousel .journal-card__meta,
.news-feature-card--carousel a {
  color: var(--white);
}

.news-feature-card--carousel .journal-card__meta {
  margin-bottom: 8px;
  font-size: 0.72rem;
}

.news-feature-card--carousel p {
  margin-top: 12px;
  color: rgba(237, 244, 255, 0.92);
}

.news-feature-card--carousel.news-feature-card--text-only .news-feature-card__body {
  position: relative;
  inset: auto;
  padding: 78px 22px 24px;
}

.news-feature-carousel__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.news-feature-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.news-feature-carousel__dot.is-active {
  background: var(--accent-2);
}

.news-feature-stack {
  display: grid;
  gap: 18px;
}

.news-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 35, 60, 0.88), rgba(11, 22, 37, 0.95));
  box-shadow: var(--shadow-soft);
}

.news-feature-card--text-only {
  min-height: 100%;
}

.news-feature-card--text-only .news-feature-card__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-start;
}

.news-feature-card__media {
  display: block;
}

.news-feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature-card__body {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.news-feature-card__body .content-badge {
  margin-bottom: 12px;
}

.news-feature-card--hero .news-feature-card__media img {
  aspect-ratio: 16 / 10;
}

.news-feature-card--hero .news-feature-card__body {
  padding-top: 18px;
}

.news-feature-card--hero h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.news-feature-card--hero p {
  margin-top: 14px;
  max-width: 50ch;
}

.news-feature-card--stack {
  min-height: 0;
}

.news-feature-card--stack .news-feature-card__media {
  position: relative;
  min-height: 100%;
}

.news-feature-card--stack .news-feature-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.04), rgba(5, 10, 18, 0.12) 34%, rgba(5, 10, 18, 0.82) 74%, rgba(5, 10, 18, 0.96) 100%);
}

.news-feature-card--stack .news-feature-card__media img {
  aspect-ratio: 16 / 9.8;
}

.news-feature-card--stack .news-feature-card__body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 62px 22px 24px;
}

.news-feature-card--stack .content-badge {
  position: absolute;
  top: 10px;
  left: 14px;
  margin: 0;
  border-color: rgba(10, 30, 52, 0.9);
  background: rgba(10, 30, 52, 0.96);
  color: var(--accent-2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  z-index: 3;
}

.news-feature-card--stack.news-feature-card--text-only .news-feature-card__body {
  position: relative;
  padding: 24px;
}

.news-feature-card--stack.news-feature-card--text-only .content-badge {
  position: static;
  margin-bottom: 12px;
}

.news-feature-card--stack .journal-card__meta,
.news-feature-card--stack h3,
.news-feature-card--stack p,
.news-feature-card--stack a {
  color: var(--white);
}

.news-feature-card--stack h3 {
  margin-top: 8px;
  font-size: clamp(1.36rem, 2vw, 1.88rem);
  line-height: 1.02;
  max-width: 15ch;
}

.news-feature-card--stack p {
  margin-top: 10px;
  max-width: 36ch;
  color: rgba(237, 244, 255, 0.88);
}

.archive-intro {
  display: grid;
  gap: 14px;
}

.archive-intro__item {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.archive-intro__item strong {
  display: block;
  font: 700 1rem/1.1 "Space Grotesk", sans-serif;
  color: var(--white);
}

.archive-intro__item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.fleet-grid,
.journal-grid,
.gallery-grid,
.highlight-grid,
.spotlight-grid,
.hero-specs,
.spec-grid {
  display: grid;
  gap: 22px;
}

.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-grid--feature {
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}

.spotlight-grid,
.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.home-news-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 32%);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.home-news-carousel::-webkit-scrollbar {
  display: none;
}

.home-news-carousel .journal-card {
  scroll-snap-align: start;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.carousel-controls--below {
  margin-top: 16px;
  justify-content: flex-end;
}

.carousel-controls--mobile-only {
  display: none;
}

.carousel-controls__button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(178, 235, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font: 700 0.8rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-controls__button:hover {
  border-color: rgba(178, 235, 255, 0.3);
  background: rgba(105, 195, 255, 0.08);
}

.carousel-controls__button--arrow {
  width: 44px;
  min-width: 44px;
  padding: 0;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.carousel-controls__button--arrow span {
  line-height: 1;
  transform: translateY(-1px);
}

.infinite-feed-status {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.infinite-feed-status[data-state="loading"] span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 999px;
  border: 2px solid rgba(178, 235, 255, 0.24);
  border-top-color: var(--accent-2);
  vertical-align: -1px;
  animation: skyvera-spin 0.9s linear infinite;
}

.infinite-feed-status[data-state="error"] {
  color: var(--accent-warm);
}

.infinite-feed-sentinel {
  width: 100%;
  height: 1px;
}

@keyframes skyvera-spin {
  to {
    transform: rotate(360deg);
  }
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-card,
.journal-card,
.highlight-card,
.gallery-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 35, 60, 0.88), rgba(11, 22, 37, 0.95));
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.fleet-card,
.journal-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-card:hover,
.journal-card:hover,
.highlight-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(178, 235, 255, 0.26);
  box-shadow: 0 26px 56px rgba(2, 11, 22, 0.42);
}

.fleet-card__media,
.journal-card__media {
  overflow: hidden;
}

.fleet-card__media img,
.journal-card__media img {
  width: 100%;
  transition: transform 0.45s ease;
}

.fleet-card__media img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.section--archive .fleet-card__media,
.related-card--aircraft .related-card__media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(131, 204, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(10, 23, 41, 0.96), rgba(7, 17, 30, 0.96));
}

.section--archive .fleet-card__media img,
.related-card--aircraft .related-card__media img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center center;
  padding: 16px;
}

.journal-card__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.fleet-card__body,
.journal-card__body,
.highlight-card,
.spotlight-grid article {
  padding: 22px;
}

.journal-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 30px 30px 28px;
}

.journal-card--text-only .journal-card__body {
  padding: 34px 34px 32px !important;
}

.fleet-card__segment {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  line-height: 1.35;
}

.journal-card__meta {
  display: block;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  line-height: 1.45;
}

.journal-card__body h2,
.journal-card__body h3 {
  margin-top: 4px;
}

.journal-card__body p {
  margin-top: 0;
}

.fleet-card h2,
.fleet-card h3,
.journal-card h2,
.journal-card h3 {
  margin-top: 10px;
  font-size: clamp(1.32rem, 2vw, 1.65rem);
  line-height: 1.06;
}

.fleet-card p,
.journal-card p {
  margin-top: 12px;
}

.fleet-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.fleet-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.fleet-card--featured .fleet-card__media img {
  aspect-ratio: 16 / 8;
}

.fleet-card--featured .fleet-card__body {
  padding: 28px;
}

.fleet-card__body p {
  min-height: 90px;
}

.fleet-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.fleet-card__specs > div:last-child {
  grid-column: 1 / -1;
}

.fleet-card__specs--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-card__specs--wide > div:last-child {
  grid-column: auto;
}

.fleet-card__specs div,
.spec-grid__item {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  min-width: 0;
}

.fleet-card__specs dt,
.spec-grid dt,
.hero-specs dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fleet-card__specs dd,
.spec-grid dd,
.hero-specs dd {
  margin: 8px 0 0;
  color: var(--white);
  line-height: 1.35;
}

.journal-card__read {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  padding-bottom: 4px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.4;
}

.term-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.term-list a {
  color: inherit;
  white-space: normal;
  text-decoration: none;
}

.term-separator {
  display: none;
}

.content-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(178, 235, 255, 0.24);
  background: rgba(91, 195, 255, 0.12);
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-card--weekly-top {
  border-color: rgba(178, 235, 255, 0.24);
  box-shadow: 0 18px 40px rgba(33, 92, 148, 0.28);
}

.highlight-card h3,
.spotlight-grid h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.spotlight-grid article {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.aircraft-hero {
  position: relative;
  min-height: 88vh;
  margin-top: 28px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.aircraft-hero__media img {
  width: 100%;
  height: 88vh;
  object-fit: cover;
}

.aircraft-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.12), rgba(5, 10, 18, 0.78) 70%, rgba(5, 10, 18, 0.95));
}

.aircraft-hero__content {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

.aircraft-hero__content h1 {
  max-width: 10ch;
  margin: 14px 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.93;
}

.aircraft-hero__content p {
  max-width: 62ch;
  font-size: 1.08rem;
  color: #d8e4f9;
}

.hero-specs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.hero-specs div {
  min-width: 0;
  padding: 18px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  background: rgba(8, 19, 35, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-specs dd {
  font-size: 1rem;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.section--split-alt .split-copy {
  order: 2;
}

.section--split-alt .split-media {
  order: 1;
}

.split-copy h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.split-copy p {
  margin-top: 14px;
  font-size: 1.03rem;
}

.split-copy--wide {
  max-width: 760px;
}

.split-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-carousel {
  grid-auto-columns: minmax(280px, 420px);
}

.gallery-carousel .gallery-card {
  scroll-snap-align: start;
}

.gallery-carousel .gallery-card img {
  aspect-ratio: 16 / 10;
}

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

.source-list {
  display: grid;
  gap: 12px;
}

.source-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.source-list a {
  color: var(--accent-2);
  word-break: break-word;
}

.post-page {
  padding: 48px 0 72px;
}

.post-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
  max-width: 1040px;
  margin: 0 auto 32px;
}

.post-page__hero-copy {
  min-width: 0;
}

.post-page__hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
}

.post-page__kicker {
  margin-top: 18px;
  color: var(--accent-warm);
  font: 700 0.78rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.post-page__deck {
  max-width: 28ch;
  margin-top: 18px;
  color: #e2ecfb;
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.post-page__hero-meta {
  display: grid;
  gap: 14px;
}

.post-page__meta-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.post-page__meta-label,
.post-page__rail-label {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.post-page__meta-card strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font: 700 1.05rem/1.2 "Space Grotesk", sans-serif;
}

.post-page__media {
  max-width: 1040px;
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.post-page__media img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.post-page__story {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.post-page__rail {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 14px;
}

.post-page__rail-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.post-page__rail-card p {
  margin-top: 10px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.post-page__rail-terms {
  margin-top: 10px;
}

.post-page__content {
  max-width: none;
  margin: 0;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 25, 43, 0.92), rgba(9, 18, 31, 0.95));
  box-shadow: var(--shadow);
}

.post-page__content p {
  color: #d2def1;
}

.post-page__content > p {
  font-size: 1.06rem;
  line-height: 1.82;
}

.post-page__content > p:first-child {
  color: #eef5ff;
  font-size: 1.18rem;
}

.post-page__content > * + * {
  margin-top: 16px;
}

.post-page__content h2,
.post-page__content h3 {
  margin-top: 26px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.post-page__content a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.related-news {
  padding-bottom: 0;
}

.related-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 380px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.related-carousel::-webkit-scrollbar {
  display: none;
}

.related-card {
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 35, 60, 0.88), rgba(11, 22, 37, 0.95));
  box-shadow: var(--shadow-soft);
}

.related-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.related-card__body {
  padding: 20px;
}

.related-card__body h3 {
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.related-card__body p {
  margin-top: 12px;
}

.related-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-2);
  font-weight: 800;
}

.site-footer {
  margin-top: 32px;
  padding: 28px 24px 48px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 14, 24, 0), rgba(5, 14, 24, 0.45));
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding-top: 12px;
}

.site-footer__grid > div {
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--white);
}

@media (max-width: 1100px) {
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .spotlight-grid,
  .highlight-grid,
  .spec-grid,
  .news-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-news-carousel {
    grid-auto-columns: minmax(320px, 46%);
  }
}

@media (max-width: 960px) {
  .site-main {
    padding: 0 16px 64px;
  }

  .site-header__inner,
  .section,
  .hero,
  .site-footer__grid,
  .aircraft-page,
  .post-page,
  .top-banner,
  .feature-banner {
    width: min(1220px, calc(100vw - 32px));
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

    .site-menu li,
    .site-menu a {
      min-height: 0;
    }

    .site-menu a {
      min-height: 44px;
    }

  .site-nav__cta {
    width: 100%;
    margin-top: 8px;
  }

  .hero,
  .section--split,
  .site-footer__grid,
  .news-feature-grid,
  .journal-grid,
  .gallery-grid,
  .spec-grid,
  .spotlight-grid,
  .highlight-grid,
  .top-banner,
  .feature-banner {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .home .fleet-grid--home-carousel {
    display: flex;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    align-items: stretch;
  }

  .home .fleet-grid--home-carousel::-webkit-scrollbar {
    display: none;
  }

  .home .fleet-grid--home-carousel .fleet-card {
    scroll-snap-align: start;
    flex: 0 0 74vw;
    height: auto;
  }

  .home .fleet-grid--home-carousel .fleet-card__body {
    padding: 18px;
  }

  .home .fleet-grid--home-carousel .fleet-card__body p {
    min-height: 0;
    margin-top: 10px;
    font-size: 0.95rem;
  }

  .home .fleet-grid--home-carousel .fleet-card h3 {
    font-size: clamp(1.18rem, 2vw, 1.4rem);
  }

  .home .fleet-grid--home-carousel .fleet-card__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
    padding-top: 0;
  }

  .home .fleet-grid--home-carousel .fleet-card__specs > div:last-child {
    grid-column: 1 / -1;
  }

  .home .fleet-grid--home-carousel .fleet-card__specs div {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .home .fleet-grid--home-carousel .fleet-card__specs dt {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .home .fleet-grid--home-carousel .fleet-card__specs dd {
    margin-top: 6px;
    font-size: 0.92rem;
    line-height: 1.25;
  }

    .carousel-controls--mobile-only {
      display: none;
    }

  .home-news-carousel {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .section--dark {
    padding: 48px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero__feature-specs,
  .hero__metrics,
  .journal-card--lead,
  .post-page__hero,
  .post-page__story,
  .section-heading--split,
  .news-feature-grid {
    grid-template-columns: 1fr;
  }

  .post-page__rail {
    position: static;
  }

  .hero__copy h1,
  .aircraft-hero__content h1 {
    max-width: 100%;
  }

  .aircraft-hero__content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .aircraft-hero__media img {
    height: 78vh;
  }

  .hero-specs {
    grid-template-columns: 1fr;
  }

  .fleet-card__specs {
    grid-template-columns: 1fr;
  }

  .fleet-card__specs > div:last-child,
  .fleet-card__specs--wide > div:last-child {
    grid-column: auto;
  }

  .related-carousel {
    grid-auto-columns: minmax(280px, 86vw);
  }

    .carousel-controls {
      width: 100%;
      justify-content: flex-end;
    }
  }

@media (max-width: 768px) {
    .hero--simple {
      padding: 24px 0 8px;
    }

  .hero--simple::before {
    width: 240px;
    height: 220px;
    inset: 44px -30px auto auto;
  }

    .news-category-list--sticky {
      top: 72px;
      margin-top: 14px;
      padding: 12px 0 10px;
    }

  .news-feature-carousel {
    display: block;
    margin: 24px 0 28px;
  }

  .news-feature-grid {
    display: none;
  }

  .site-header {
    backdrop-filter: blur(18px);
  }

  .site-header__inner {
    gap: 12px;
    padding: 12px 0;
  }

  .site-logo-image {
    width: 156px;
    max-width: 52vw;
  }

  .site-nav {
    top: calc(100% + 10px);
    padding: 16px;
    border-radius: 22px;
  }

  .site-nav__toggle {
    padding: 11px 12px;
  }

  .site-nav__cta {
    min-height: 46px;
    padding-inline: 18px;
  }

  .section--dark,
  .post-page,
  .aircraft-page {
    padding-top: 40px;
  }

  .section-heading {
    gap: 14px;
  }

    .section-heading p,
    .hero__copy p,
    .post-page__deck {
      max-width: 100%;
    }

    .hero__copy p {
      font-size: 1rem;
      line-height: 1.6;
    }

    .hero__actions {
      gap: 10px;
      margin-top: 22px;
    }

    .archive-intro {
      display: none;
    }

    .news-category-list {
      flex-wrap: nowrap;
      gap: 10px;
      margin-top: 18px;
      padding: 0 0 8px;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scrollbar-width: none;
    }

  .news-category-list::-webkit-scrollbar {
    display: none;
  }

    .news-category-list__link {
      flex: 0 0 auto;
      padding: 12px 15px;
      border: 1px solid rgba(178, 235, 255, 0.16);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.03);
      font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
  }

  .news-feature-card {
    border-radius: 22px;
  }

  .news-feature-card__body {
    padding: 20px;
  }

  .news-feature-card--hero .news-feature-card__body {
    padding-top: 16px;
  }

  .news-feature-card--hero h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 0.98;
  }

  .news-feature-card--stack .news-feature-card__media img {
    aspect-ratio: 16 / 11.5;
  }

  .news-feature-card--stack .news-feature-card__body {
    padding: 58px 18px 20px;
  }

  .news-feature-card--stack h3 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

    .news-feature-card--carousel .news-feature-card__media img {
      aspect-ratio: 16 / 12.8;
    }

    .news-feature-card--carousel .news-feature-card__body {
      padding: 78px 18px 20px;
    }

  .news-feature-card--carousel h2 {
    font-size: clamp(1.72rem, 7vw, 2.2rem);
  }

    .journal-card__body {
      gap: 9px;
      padding: 22px 20px 20px;
    }

    .journal-card__body p {
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 4;
    }

  .home .fleet-grid--home-carousel {
    gap: 14px;
  }

  .home .fleet-grid--home-carousel .fleet-card {
    flex-basis: 72vw;
    gap: 14px;
  }

  .carousel-controls__button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.74rem;
  }

  .carousel-controls__button--arrow {
    width: 42px;
    min-width: 42px;
    padding: 0;
    font-size: 1.28rem;
  }

  .journal-card--text-only .journal-card__body {
    padding: 26px 22px 24px !important;
  }

    .journal-card__media img {
      aspect-ratio: 16 / 11;
    }

    .aircraft-hero {
      min-height: auto;
      border-radius: 28px;
      overflow: visible;
      background: transparent;
      box-shadow: none;
      border: none;
    }

    .aircraft-hero__media {
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .aircraft-hero__media img {
      height: auto;
      aspect-ratio: 16 / 12;
      display: block;
    }

    .aircraft-hero__overlay {
      inset: auto 0 0;
      height: 58%;
      border-radius: 0 0 28px 28px;
      background: linear-gradient(180deg, rgba(5, 10, 18, 0), rgba(5, 10, 18, 0.68) 42%, rgba(5, 10, 18, 0.94) 100%);
    }

    .aircraft-hero__content {
      position: relative;
      left: auto;
      right: auto;
      bottom: auto;
      margin: -76px 14px 0;
      padding: 18px;
      border-radius: 24px;
      border: 1px solid rgba(178, 235, 255, 0.12);
      background: linear-gradient(180deg, rgba(10, 22, 38, 0.94), rgba(7, 16, 29, 0.98));
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(12px);
    }

    .aircraft-hero__content h1 {
      margin: 8px 0 10px;
      font-size: clamp(2rem, 9vw, 3.2rem);
      line-height: 0.98;
    }

    .aircraft-hero__content p {
      font-size: 0.98rem;
      line-height: 1.55;
    }

    .hero-specs {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 16px;
    }

    .hero-specs div {
      padding: 14px;
      border-radius: 16px;
    }

    .spec-grid__item {
      padding: 14px;
      border-radius: 16px;
    }

    .post-page__hero {
      gap: 20px;
      margin-bottom: 24px;
    }

  .post-page__hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    line-height: 0.98;
  }

    .post-page__hero-meta {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

  .post-page__meta-card {
    padding: 16px;
    border-radius: 18px;
  }

  .post-page__media {
    margin-bottom: 22px;
    border-radius: 24px;
  }

  .post-page__media img {
    aspect-ratio: 4 / 3;
  }

  .post-page__content,
  .post-page__rail-card {
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .home .fleet-grid--home-carousel {
    gap: 12px;
  }

  .home .fleet-grid--home-carousel .fleet-card {
    flex-basis: 78vw;
  }

    .hero--simple .hero__copy h1 {
      max-width: none;
      font-size: clamp(2.6rem, 11vw, 4rem);
    }

  .site-main {
    padding: 0 12px 52px;
  }

  .site-header__inner,
  .section,
  .hero,
  .site-footer__grid,
  .aircraft-page,
  .post-page,
  .top-banner,
  .feature-banner {
    width: min(1220px, calc(100vw - 24px));
  }

  .site-logo-image {
    width: 136px;
    max-width: 48vw;
  }

  .site-nav {
    left: -2px;
    right: -2px;
  }

  .site-nav__toggle {
    gap: 8px;
    padding: 10px 11px;
  }

  .site-nav__toggle strong {
    font-size: 0.78rem;
  }

  .site-brand__text small {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero__copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero__signature span {
    width: 100%;
    justify-content: center;
  }

  .section-heading h1,
  .section-heading h2,
  .split-copy h2,
  .post-page__hero-copy h1 {
    line-height: 1;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

    .section-heading p {
      font-size: 0.98rem;
      line-height: 1.6;
    }

    .hero__actions {
      flex-direction: column;
      align-items: stretch;
    }

    .hero__actions .button {
      width: 100%;
      justify-content: center;
    }

  .news-category-list {
    margin-top: 16px;
    margin-right: -2px;
    margin-left: -2px;
    padding-inline: 2px;
  }

  .news-feature-card__body,
  .news-feature-card--stack .news-feature-card__body {
    padding-right: 16px;
    padding-left: 16px;
  }

  .news-feature-card--carousel .news-feature-card__body,
  .news-feature-card--carousel.news-feature-card--text-only .news-feature-card__body {
    padding: 84px 16px 18px;
  }

  .news-feature-card--stack .content-badge {
    top: 12px;
    left: 12px;
  }

  .news-feature-card--carousel .content-badge {
    top: 12px;
    left: 12px;
  }

  .news-feature-card--carousel h2 {
    font-size: clamp(1.54rem, 7.2vw, 2rem);
  }

  .news-feature-card--carousel p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .journal-card__body {
    padding: 22px 18px 20px;
  }

  .journal-card--text-only .journal-card__body {
    padding: 24px 18px 22px !important;
  }

  .journal-card h2,
  .journal-card h3 {
    font-size: clamp(1.34rem, 7vw, 1.72rem);
    line-height: 1.04;
  }

    .aircraft-hero__media img {
      aspect-ratio: 16 / 12.8;
    }

    .aircraft-hero__content {
      margin: -64px 10px 0;
      padding: 16px;
      border-radius: 22px;
    }

    .aircraft-hero__content p {
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    }

    .hero-specs {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-specs div:nth-child(n+5) {
      display: none;
    }

  .post-page__content {
    padding: 22px 16px;
  }

    .post-page__hero-copy h1 {
      font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .post-page__deck {
      font-size: 1rem;
      line-height: 1.55;
    }

    .post-page__hero-meta {
      grid-template-columns: 1fr;
    }
  }
