:root {
  --brand: #9e0807;
  --brand-dark: #760605;
  --ink: #1b2733;
  --muted: #5e6872;
  --paper: #ffffff;
  --soft: #f4f1ee;  
  --line: #ded8d2;
  --gold: #d4ad67;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand);
}

a:hover {
  color: var(--brand-dark);
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  padding: .75rem 1rem;
  background: #fff;
  color: var(--brand);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #9e0807;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}

.nav-wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}

.brand:hover {
  color: #fff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  letter-spacing: .12em;
  font-size: 1.1rem;
}

.brand-text span {
  font-size: .68rem;
  text-transform: uppercase;
  opacity: .84;
}

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

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  padding: .7rem .65rem;
  border-radius: 4px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, .16);
}

.menu-toggle {
  display: none;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 4px;
  padding: .55rem .7rem;
  font: inherit;
  font-weight: 700;
}

.hero {
  padding: clamp(4rem, 9vw, 7.5rem) 1rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("hero_coptor.png") center / cover no-repeat;
}

.hero-inner,
.container {
  width: min(100%, var(--max));
  margin: auto;
}

.hero-inner {
  width: min(75%, calc(var(--max) * 0.75));
  margin-left: max(0px, calc((100% - var(--max)) / 2));
  margin-right: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(20, 25, 30, 0.65);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(1px);
}

.roundedImg {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.16;
  margin-top: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin-bottom: 1.25rem;
}

.hero p {
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #e7eaed;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: .8rem 1.1rem;
  border: 2px solid var(--brand);
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}

.button.light {
  border-color: #fff;
  background: #fff;
  color: var(--brand);
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 1rem;
}

.section.alt {
  background: var(--soft);
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 35, 40, .06);
}

.card h3 {
  font-size: 1.25rem;
}

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

.card a {
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: start;
}

.two-col-t {
  display: grid;
  grid-template-columns: .5fr .85fr;
  gap: 2rem;
  align-items: start;
}

.two-col-q {
  display: grid;
  grid-template-columns: .8fr .3fr;
  gap: 2rem;
  align-items: start;
}

.feature-list {
  padding-left: 1.15rem;
}

.feature-list li {
  margin-bottom: .55rem;
}

.callout {
  padding: 2rem;
  color: #fff;
  background: var(--brand);
  border-radius: 5px;
}

.callout a {
  color: #fff;
}

.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 1rem;  
  border-bottom: 1px solid var(--line);
}

.hero-aviation {
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("hero_king_air.png") center / cover no-repeat;
}

.hero-logistics {
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("hero_logistics.png") center / cover no-repeat;
}

.hero-contracts {
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("hero_coptor2.png") center / cover no-repeat;
}

.hero-contact {
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("hero_plane.png") center / cover no-repeat;
}

.page-hero-inner {
  width: min(80%, calc(var(--max) * 0.80));
  margin-left: max(0px, calc((100% - var(--max)) / 2));
  margin-right: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(20, 25, 30, 0.65);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(1px);
  
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: .7rem;
}

.page-hero p {
  max-width: 760px;
  color: #fff;
  font-size: 1.15rem;
}

.image-right-text img {
  float: right;
  width: min(42%, 250px);
  height: auto;
  margin: 0 1.5rem 1rem 0;
  border-radius: 16px;
}

.image-left-text img {
  float: left;
  width: min(42%, 250px);
  height: auto;
  margin: 0 1.5rem 1rem 0;
  border-radius: 16px;
}

.image-left-text::after {
  content: "";
  display: block;
  clear: both;
}

.image-right-text::after {
  content: "";
  display: block;
  clear: both;
}

.contract {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.contract:last-child {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: .5fr 1.0fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: .3rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: .75rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.form-note {
  color: var(--muted);
  font-size: .9rem;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 700;
}

.site-footer {
  padding: 2.5rem 1rem 1.5rem;
  background: #9e0807;
  color: #fff;
}

.footer-grid {
  width: min(100%, var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 2rem;
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: .35rem;
  align-content: start;
}

.legal {
  width: min(100%, var(--max));
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .35);
  font-size: .78rem;
  opacity: .88;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 82px 0 auto 0;
    padding: .75rem 1rem 1rem;
    background: #9e0807;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
  }

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

  .site-nav a {
    padding: .8rem 1rem;
  }

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

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

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

    .two-col-t {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

    .two-col-q {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 560px) {
  .brand-text span {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .site-nav {
    inset-block-start: 70px;
  }

  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}