:root {
  --ink: #0c1b27;
  --navy: #102d42;
  --navy-2: #153d59;
  --sky: #dcedf5;
  --cream: #f6f3ec;
  --paper: #fff;
  --red: #e84a3a;
  --red-dark: #c9382b;
  --muted: #60707b;
  --line: #dce4e8;
  --shadow: 0 24px 60px rgba(12, 27, 39, .14);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(232, 74, 58, .5);
  text-underline-offset: .2em;
}

a:hover {
  text-decoration-color: var(--red);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #56b7e8;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: .65rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 1.3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  font-weight: 400;
}

h2 {
  margin-bottom: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
}

h3 {
  margin-bottom: .65rem;
  font-size: 1.3rem;
}

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  color: #fff;
  background: var(--red-dark);
  box-shadow: 0 10px 25px rgba(200, 56, 43, .25);
  text-decoration: none;
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(255, 255, 255, .45);
  background: transparent;
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
}

.button--dark {
  background: var(--ink);
}

.button--dark:hover {
  background: var(--navy-2);
}

.button--flight-circle {
  gap: .55rem;
  padding: .65rem .95rem;
  font-size: .8rem;
  letter-spacing: .03em;
  text-transform: none;
}

.button__logo {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.site-header--solid {
  position: relative;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: inherit;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 84px;
  height: 84px;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  padding: 2px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
}

.brand__mark img {
  width: 100%;
  height: auto;
}

.site-header--solid .brand__mark {
  border: 1px solid var(--line);
  background: #fff;
}

.brand span {
  display: grid;
  gap: .16rem;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.82rem;
  font-weight: 400;
  letter-spacing: -.02em;
}

.brand small {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.site-nav a {
  position: relative;
  padding-block: .45rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .button {
  min-height: 42px;
  padding: .65rem 1rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero--compact {
  min-height: 78vh;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 29, .9) 0%, rgba(7, 19, 29, .52) 48%, rgba(7, 19, 29, .12) 75%),
    linear-gradient(0deg, rgba(7, 19, 29, .72), transparent 45%);
  content: "";
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.4s ease both;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 180px 0 11vh;
}

.hero--compact .hero__content {
  padding: 150px 0 8vh;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
}

.hero .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hero__facts {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 7vh;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2.2rem;
  margin: 0;
}

.hero__facts div {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.hero__facts dt {
  color: rgba(255, 255, 255, .65);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: .15rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.page-hero {
  padding: 118px 0 78px;
  color: #fff;
  background: var(--navy);
}

.page-hero--compact {
  padding: 104px 0 58px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
}

.page-hero .lead {
  color: rgba(255, 255, 255, .72);
}

.section {
  padding-block: clamp(75px, 10vw, 130px);
}

.section--home {
  padding-block: clamp(52px, 7vw, 84px);
}

.section--tight {
  padding-block: 72px;
}

.section--cream {
  background: var(--cream);
}

.section--sky {
  background: var(--sky);
}

.section--dark {
  color: #fff;
  background: var(--ink);
}

.section--dark .lead,
.section--dark .muted {
  color: rgba(255, 255, 255, .68);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.split--home {
  gap: clamp(30px, 5vw, 62px);
}

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

.split__media {
  position: relative;
}

.split__media img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split__media--whole-plane {
  border-radius: var(--radius);
  background: linear-gradient(180deg, #243241 0%, #162330 100%);
}

.split__media--whole-plane img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #243241 0%, #162330 100%);
}

.split__media::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 70%;
  height: 70%;
  border-radius: var(--radius);
  background: var(--red);
  content: "";
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading--home {
  margin-bottom: 2rem;
}

.section-heading > div {
  max-width: 760px;
}

.page-intro {
  margin-bottom: 1.5rem;
}

.page-intro--compact {
  margin-bottom: 1rem;
}

.page-intro h1 {
  margin-bottom: .65rem;
  font-size: clamp(2.1rem, 3.5vw, 3rem);
}

.page-intro .lead {
  max-width: 680px;
  font-size: 1rem;
}

.availability-card strong {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-heading h2,
.split h2,
.narrow h2,
.contact-card h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fleet-grid--full-plane .aircraft-card {
  min-height: 440px;
  background: linear-gradient(180deg, #2b3d4c 0%, #162330 100%);
}

.fleet-grid--full-plane .aircraft-card::after {
  background: linear-gradient(0deg, rgba(7, 19, 29, .92), rgba(7, 19, 29, .18) 62%);
}

.fleet-grid--full-plane .aircraft-card img {
  padding: 18px 18px 96px;
  object-fit: contain;
  object-position: center 42%;
}

.aircraft-card {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  background: var(--navy);
  box-shadow: 0 20px 50px rgba(12, 27, 39, .12);
}

.aircraft-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 19, 29, .94), rgba(7, 19, 29, .08) 70%);
  content: "";
}

.aircraft-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

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

.aircraft-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.aircraft-card__registration {
  display: block;
  margin-bottom: .4rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.aircraft-card h3 {
  margin-bottom: .4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.aircraft-card p {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.aircraft-card__model {
  margin: 0 0 .55rem;
  color: rgba(255, 255, 255, .88);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.aircraft-card__year {
  margin: 0 0 .85rem;
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  font-weight: 600;
}

.aircraft-card--link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .9);
  outline-offset: 4px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: .25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 400;
}

.metric span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.feature {
  min-height: 220px;
  padding: 34px;
  background: #fff;
}

.feature__number {
  display: block;
  margin-bottom: 2rem;
  color: var(--red);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

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

.social-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-gallery button {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.social-gallery img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  transition: transform .3s ease;
}

.social-gallery button:first-child {
  grid-column: span 2;
}

.social-gallery button:first-child img {
  height: 300px;
}

.social-gallery button:hover img {
  transform: scale(1.01);
}

.rates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.rate-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.rate-card strong {
  display: block;
  margin: .75rem 0 .25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.rate-card small {
  color: var(--muted);
}

.note {
  margin-top: 1.4rem;
  padding: 18px 22px;
  border-left: 3px solid var(--red);
  color: var(--muted);
  background: rgba(220, 237, 245, .45);
  font-size: .9rem;
}

.steps {
  display: grid;
  gap: 0;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 1rem;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  counter-increment: steps;
}

.steps li::before {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  content: "0" counter(steps);
}

.steps strong {
  display: block;
  margin-bottom: .25rem;
}

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

.aircraft-hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.aircraft-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 19, 29, .9), rgba(7, 19, 29, .08) 70%);
  content: "";
}

.aircraft-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.aircraft-hero--sunset img {
  object-position: center 62%;
}

.aircraft-hero__content {
  position: relative;
  z-index: 2;
  padding: 180px 0 70px;
}

.aircraft-hero h1 {
  margin-bottom: .4rem;
  font-size: clamp(2.45rem, 4.5vw, 4rem);
}

.aircraft-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 1.2rem;
}

.spec-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(45px, 8vw, 100px);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
  margin: 0;
}

.spec-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: .2rem 0 0;
  font-weight: 750;
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.gallery--expanded {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
}

.gallery img {
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery img:first-child {
  grid-row: 1 / 3;
}

.gallery button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.gallery a,
.gallery button {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery a:first-child,
.gallery button:first-child {
  grid-row: 1 / 3;
}

.gallery--expanded a:first-child,
.gallery--expanded button:first-child {
  grid-column: span 2;
}

.gallery a img,
.gallery button img {
  transition: transform .5s ease;
}

.gallery a:hover img,
.gallery button:hover img {
  transform: scale(1.025);
}

.gallery button::after {
  position: absolute;
  inset: auto 16px 16px auto;
  padding: .4rem .75rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 19, 29, .78);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateY(8px);
  content: "View";
}

.gallery button:hover::after,
.gallery button:focus-visible::after {
  opacity: 1;
  transform: none;
}

.gallery-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 19, 29, .9);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal__dialog {
  position: relative;
  width: min(1080px, 100%);
}

.gallery-modal__image {
  max-width: 100%;
  max-height: min(78vh, 920px);
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.gallery-modal__caption {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .82);
  text-align: center;
}

.gallery-modal__close,
.gallery-modal__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  cursor: pointer;
}

.gallery-modal__close {
  top: -16px;
  right: -16px;
  font-size: 1.8rem;
  line-height: 1;
}

.gallery-modal__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
}

.gallery-modal__nav--prev {
  left: -72px;
}

.gallery-modal__nav--next {
  right: -72px;
}

.gallery-modal__close:hover,
.gallery-modal__nav:hover {
  background: rgba(255, 255, 255, .22);
}

.member-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.member-area-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.member-area-card p:last-child,
.member-area-card ul:last-child {
  margin-bottom: 0;
}

.member-area-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.member-area-card li + li {
  margin-top: .45rem;
}

.fc-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.fc-screenshot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 27, 39, .08);
}

.fc-screenshot:first-child {
  grid-column: 1 / -1;
  max-width: 920px;
  justify-self: center;
}

.fc-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.fc-screenshot figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: .95rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.contact-card__main {
  padding: clamp(24px, 4vw, 44px);
}

.contact-card__side {
  display: grid;
  align-content: start;
  align-items: start;
  padding: clamp(24px, 4vw, 40px);
  background: var(--red);
}

.contact-card__side a {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.3;
  white-space: nowrap;
}

.contact-card .lead {
  color: rgba(255, 255, 255, .72);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.contact-form--inline {
  margin-top: 0;
}

.contact-form__field {
  display: grid;
  gap: .45rem;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field span {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  grid-column: 1 / -1;
  margin-top: .25rem;
}

.contact-form__status {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.contact-form .button--dark {
  border-color: rgba(255, 255, 255, .18);
  background: #fff;
  color: var(--ink);
}

.contact-form .button--dark:hover {
  background: var(--cream);
  color: var(--ink);
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
}

.cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.cta::after {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .03), 0 0 0 120px rgba(255, 255, 255, .02);
  content: "";
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 80px;
}

.cta--home .cta__inner {
  padding-block: 58px;
}

.cta h2 {
  max-width: 750px;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 4vw, 3.2rem);
}

.site-footer {
  padding: 65px 0 30px;
  color: rgba(255, 255, 255, .75);
  background: #07131d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, .7fr);
  gap: 4rem;
  margin-bottom: 50px;
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 1.2rem;
}

.site-footer p {
  max-width: 420px;
}

.footer-heading {
  margin-bottom: 1rem;
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: .65rem;
}

.footer-links a {
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .75rem;
}

.muted {
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-in {
  from {
    opacity: .6;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    position: relative;
    z-index: 30;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.2rem;
    color: #fff;
    background: rgba(7, 19, 29, .98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav .button {
    margin-top: .5rem;
    font-family: inherit;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-open .site-header {
    position: fixed;
  }

  .nav-open .brand {
    position: relative;
    z-index: 30;
    color: #fff;
  }

  .hero__facts {
    display: none;
  }

  .hero__content {
    padding-bottom: 10vh;
  }

  .split,
  .split--reverse,
  .spec-layout {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 2;
  }

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

  .aircraft-card {
    min-height: 440px;
  }

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

  .social-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .social-gallery button:first-child {
    grid-column: 1 / -1;
  }

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

  .member-area-grid {
    grid-template-columns: 1fr;
  }

  .fc-screenshot-grid {
    grid-template-columns: 1fr;
  }

  .fc-screenshot:first-child {
    grid-column: auto;
    max-width: none;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 82px;
  }

  .brand strong {
    font-size: 1.38rem;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .brand__mark {
    width: 70px;
    height: 70px;
    padding: 2px;
    border-radius: 16px;
  }

  .hero {
    min-height: 780px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(7, 19, 29, .94) 0%, rgba(7, 19, 29, .35) 78%);
  }

  .hero__media {
    object-position: 62% center;
  }

  .aircraft-hero--sunset img {
    object-position: 61% center;
  }

  .hero__content {
    padding: 150px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8.6vw, 3.9rem);
  }

  .page-hero h1,
  .aircraft-hero h1 {
    font-size: clamp(2.1rem, 7.8vw, 3.2rem);
  }

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

  .section-heading,
  .cta__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-intro h1 {
    font-size: clamp(1.95rem, 7vw, 2.55rem);
  }

  .section-heading h2,
  .split h2,
  .narrow h2,
  .contact-card h2,
  .cta h2 {
    font-size: clamp(1.7rem, 6.2vw, 2.35rem);
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .social-gallery {
    grid-template-columns: 1fr;
  }

  .social-gallery button:first-child {
    grid-column: auto;
  }

  .social-gallery img,
  .social-gallery button:first-child img {
    height: 210px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 260px);
  }

  .gallery--expanded {
    grid-template-rows: repeat(6, 220px);
  }

  .gallery a:first-child,
  .gallery button:first-child,
  .gallery--expanded a:first-child,
  .gallery--expanded button:first-child {
    grid-row: auto;
    grid-column: auto;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .gallery-modal {
    padding: 18px;
  }

  .gallery-modal__dialog {
    width: 100%;
  }

  .gallery-modal__close {
    top: -8px;
    right: -4px;
  }

  .gallery-modal__nav {
    top: auto;
    bottom: -62px;
    transform: none;
  }

  .gallery-modal__nav--prev {
    left: calc(50% - 58px);
  }

  .gallery-modal__nav--next {
    right: calc(50% - 58px);
  }

  .gallery-modal__caption {
    padding-bottom: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
