/* =========================================================
   ALTUS VECTOR™
   AVIATION CONSULTANCY
   Master Stylesheet — v11
   ========================================================= */

/* ---------------------------------------------------------
   DESIGN TOKENS
   --------------------------------------------------------- */

:root {
  --navy: #062846;
  --navy-2: #0a3c63;
  --navy-3: #0f4f7a;

  --ink: #082f53;
  --muted: #627a91;
  --muted-2: #8ba0b2;

  --gold: #dfb51b;
  --gold-dark: #af8700;

  --paper: #ffffff;
  --soft: #f5f8fa;
  --line: #d9e3ea;

  --max: 1540px;

  --shadow:
    0 16px 44px rgba(3, 35, 60, 0.10);

  --shadow-soft:
    0 8px 28px rgba(3, 35, 60, 0.07);
}


/* ---------------------------------------------------------
   RESET / GLOBAL
   --------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);

  font-family:
    Montserrat,
    "Avenir Next",
    "Helvetica Neue",
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.site-header {
  position: relative;
  z-index: 50;

  height: 104px;

  color: #fff;

  background:
    linear-gradient(
      90deg,
      #052641 0%,
      #073b60 100%
    );

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  position: relative;

  height: 104px;

  display: flex;
  align-items: center;
}

.brand {
  position: relative;

  display: block;

  width: 330px;

  flex: 0 0 auto;
}

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

.brand-tm {
  position: absolute;

  right: -8px;
  top: 10px;

  font-size: 9px;
  font-weight: 700;

  color: #fff;
}

.header-tagline {
  position: absolute;

  top: 16px;
  right: 110px;

  font-size: 13px;
  line-height: 1;

  letter-spacing: 0.01em;

  color: #9fb4c4;
}

.nav {
  display: flex;
  align-items: center;

  gap: 37px;

  margin-left: auto;
  padding-top: 24px;
}

.nav a {
  position: relative;

  padding: 17px 0 18px;

  font-size: 17px;
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.01em;

  color: #f8fbfd;

  white-space: nowrap;
}

.nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;
  bottom: 6px;

  height: 3px;

  background: var(--gold);

  transition: right 0.2s ease;
}

.nav a:hover::after,
.nav a.active::after {
  right: 0;
}

.search-link {
  width: 30px;
  height: 30px;

  margin: 25px 0 0 26px;

  display: grid;
  place-items: center;
}

.search-link svg {
  width: 24px;
  height: 24px;

  fill: none;

  stroke: #fff;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;

  margin-left: auto;
  padding: 8px;

  border: 0;

  background: transparent;

  color: #fff;

  font-size: 29px;
  line-height: 1;
}


/* ---------------------------------------------------------
   SHARED ELEMENTS
   --------------------------------------------------------- */

.eyebrow {
  margin: 0 0 20px;

  color: var(--gold);

  font-size: 13px;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.19em;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 58px;

  padding: 0 34px;

  border: 1px solid transparent;

  font-size: 15px;
  font-weight: 800;

  letter-spacing: 0.01em;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.btn::after {
  content: "→";

  margin-left: 24px;

  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);

  color: var(--navy);
}

.btn-gold:hover {
  background: #efc523;

  transform: translateY(-1px);
}

.btn-outline-light {
  color: #fff;

  border-color: rgba(255, 255, 255, 0.85);

  background:
    rgba(3, 31, 53, 0.18);

  backdrop-filter: blur(2px);
}

.btn-outline-light:hover {
  background:
    rgba(255, 255, 255, 0.13);
}


/* ---------------------------------------------------------
   HOMEPAGE HERO
   --------------------------------------------------------- */

.hero {
  position: relative;

  min-height: 590px;

  overflow: hidden;

  background: #123d62;

  color: #fff;
}

.hero-bg {
  position: absolute;

  inset: 0;

  background-image:
    url("/assets/img/hero-approved.jpg");

  background-position:
    center center;

  background-size:
    cover;

  background-repeat:
    no-repeat;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2, 28, 51, 0.82) 0%,
      rgba(3, 39, 67, 0.66) 34%,
      rgba(4, 43, 72, 0.24) 58%,
      rgba(4, 43, 72, 0.05) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;

  min-height: 590px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;
}

.hero-copy {
  width: min(680px, 54%);

  padding: 62px 0 54px;
}

.hero h1 {
  margin: 0 0 24px;

  color: #fff;

  font-size: 62px;
  font-weight: 400;

  line-height: 1.05;

  letter-spacing: -0.035em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;

  margin: 0;

  color: #edf4f8;

  font-size: 20px;
  font-weight: 400;

  line-height: 1.55;
}

.hero-actions {
  display: flex;

  gap: 18px;

  margin-top: 31px;
}

.hero-side {
  align-self: center;

  min-width: 235px;

  margin-right: 20px;
  padding: 5px 0 5px 29px;

  display: flex;
  flex-direction: column;

  gap: 9px;

  border-left:
    1px solid rgba(255, 255, 255, 0.65);
}

.hero-side span {
  color: #fff;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.21em;
}


/* ---------------------------------------------------------
   FEATURE STRIP
   --------------------------------------------------------- */

.feature-strip {
  background: #fff;

  border-bottom:
    1px solid var(--line);
}

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);
}

.feature-item {
  min-height: 166px;

  padding: 26px 26px 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-right:
    1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  height: 49px;

  margin-bottom: 8px;
}

.feature-icon svg {
  width: 49px;
  height: 49px;

  fill: none;

  stroke: #0a4b7d;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item b {
  margin-bottom: 8px;

  color: var(--ink);

  font-size: 14px;

  line-height: 1.25;

  text-transform: uppercase;

  letter-spacing: 0.015em;
}

.feature-item span {
  max-width: 210px;

  color: #677e94;

  font-size: 14.5px;

  line-height: 1.4;
}


/* ---------------------------------------------------------
   HOMEPAGE ABOUT
   --------------------------------------------------------- */

.about-section {
  background: #fff;

  border-bottom:
    1px solid var(--line);
}

.about-split {
  min-height: 445px;

  display: grid;

  grid-template-columns:
    46% 54%;
}

.about-copy {
  padding: 64px 74px 60px 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 {
  margin: 0 0 21px;

  color: var(--ink);

  font-size: 44px;
  font-weight: 500;

  line-height: 1.08;

  letter-spacing: -0.025em;
}

.about-copy p:not(.eyebrow) {
  max-width: 640px;

  margin: 0 0 26px;

  color: #4e687f;

  font-size: 17px;

  line-height: 1.65;
}

.about-copy .btn {
  align-self: flex-start;

  min-height: 51px;

  padding: 0 25px;

  font-size: 13px;
}

.about-visual {
  position: relative;

  min-height: 445px;

  overflow: hidden;

  background: #f2f6f8;
}

.about-engine {
  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 62%;

  background-image:
    url("/assets/img/engine-clean.jpg");

  background-position:
    center;

  background-size:
    cover;

  background-repeat:
    no-repeat;
}

.about-wedge {
  position: absolute;
  z-index: 2;

  right: 0;
  top: 0;
  bottom: 0;

  width: 43%;

  background:
    linear-gradient(
      105deg,
      transparent 0 17%,
      #fff 17.2% 100%
    );
}

.ghost-mark {
  position: absolute;
  z-index: 3;

  right: 78px;
  top: 78px;

  width: 155px;
  height: 180px;

  opacity: 0.08;
}

.ghost-mark .g1 {
  position: absolute;

  left: 12px;
  right: 12px;
  top: 0;

  height: 123px;

  background: #0a456f;

  clip-path:
    polygon(
      50% 0,
      100% 100%,
      50% 76%,
      0 100%
    );
}

.ghost-mark .g2 {
  position: absolute;

  left: 17px;
  right: 17px;
  top: 128px;

  height: 42px;

  background: #0a456f;

  clip-path:
    polygon(
      0 67%,
      50% 0,
      100% 67%,
      50% 38%
    );
}

.about-badge {
  position: absolute;
  z-index: 4;

  right: 55px;
  bottom: 48px;

  width: 205px;

  color: #315875;

  font-size: 12px;
  font-weight: 700;

  line-height: 1.55;

  letter-spacing: 0.16em;

  text-align: center;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   VALUES BAND
   --------------------------------------------------------- */

.home-values {
  color: #fff;

  background:
    linear-gradient(
      90deg,
      #052641,
      #073b60
    );
}

.home-values-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}

.home-value {
  min-height: 145px;

  padding: 30px 34px;

  display: flex;
  align-items: center;

  gap: 17px;

  border-right:
    1px solid rgba(255, 255, 255, 0.21);
}

.home-value:last-child {
  border-right: 0;
}

.home-value svg {
  width: 43px;
  height: 43px;

  flex: 0 0 auto;

  fill: none;

  stroke: #fff;
  stroke-width: 1.7;
}

.home-value b {
  display: block;

  margin-bottom: 7px;

  font-size: 14px;

  text-transform: uppercase;

  letter-spacing: 0.04em;
}

.home-value span {
  display: block;

  color: #d7e3eb;

  font-size: 14px;

  line-height: 1.4;
}


/* ---------------------------------------------------------
   HOMEPAGE SERVICES
   --------------------------------------------------------- */

.services-home {
  padding: 61px 0 64px;

  background: #fff;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;

  color: var(--ink);

  font-size: 35px;
  font-weight: 500;

  line-height: 1.12;

  letter-spacing: -0.02em;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.section-heading > a {
  color: var(--gold-dark);

  font-size: 13px;
  font-weight: 800;

  text-transform: uppercase;

  white-space: nowrap;
}

.home-service-grid {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 16px;
}

.home-service-card {
  min-width: 0;

  overflow: hidden;

  background: #fff;

  border:
    1px solid #dce5eb;

  box-shadow:
    0 5px 18px rgba(5, 43, 73, 0.03);
}

.home-service-card img {
  width: 100%;

  height: 176px;

  object-fit: cover;

  object-position: center;
}

.home-service-body {
  min-height: 222px;

  padding: 18px 19px 20px;

  display: flex;
  flex-direction: column;
}

.home-service-body h3 {
  margin: 0 0 10px;

  color: var(--ink);

  font-size: 17px;

  line-height: 1.2;
}

.home-service-body p {
  margin: 0 0 18px;

  color: #60788e;

  font-size: 15.5px;

  line-height: 1.52;
}

.home-service-body a {
  margin-top: auto;

  color: var(--ink);

  font-size: 13px;
  font-weight: 800;
}

.home-service-body a span {
  margin-left: 13px;

  font-size: 17px;
}


/* ---------------------------------------------------------
   RUNWAY CTA
   --------------------------------------------------------- */

.cta-photo {
  position: relative;

  min-height: 285px;

  overflow: hidden;

  color: #fff;

  background: #173a58;
}

.cta-photo-bg {
  position: absolute;

  inset: 0;

  background-image:
    url("/assets/img/runway-clean.jpg");

  background-position:
    center 52%;

  background-size:
    cover;

  background-repeat:
    no-repeat;
}

.cta-photo-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2, 31, 53, 0.76) 0%,
      rgba(3, 38, 64, 0.44) 45%,
      rgba(3, 38, 64, 0.12) 78%
    );
}

.cta-photo-inner {
  position: relative;
  z-index: 2;

  min-height: 285px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-inline: 28px;
}

.cta-photo h2 {
  margin: 0 0 13px;

  font-size: 41px;
  font-weight: 400;

  line-height: 1.03;

  letter-spacing: -0.02em;
}

.cta-photo p {
  margin: 0;

  color: #f2f6f8;

  font-size: 17px;

  line-height: 1.48;
}

.cta-photo .btn {
  min-width: 180px;
}


/* ---------------------------------------------------------
   SECTORS
   --------------------------------------------------------- */

.sectors-home {
  padding: 56px 0 52px;

  background: #fff;

  border-bottom:
    1px solid var(--line);
}

.sector-intro {
  margin-bottom: 26px;
}

.sector-intro h2 {
  margin: 0 0 9px;

  font-size: 33px;
  font-weight: 500;
}

.sector-intro p {
  margin: 0;

  color: #627a91;

  font-size: 16.5px;

  line-height: 1.55;
}

.sector-row {
  display: grid;

  grid-template-columns:
    repeat(6, 1fr);

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);
}

.sector-item {
  padding: 26px 16px;

  text-align: center;

  border-right:
    1px solid var(--line);
}

.sector-item:last-child {
  border-right: 0;
}

.sector-item svg {
  width: 42px;
  height: 42px;

  margin-bottom: 10px;

  fill: none;

  stroke: #315875;
  stroke-width: 1.65;
}

.sector-item b {
  display: block;

  font-size: 13.5px;

  line-height: 1.25;

  text-transform: uppercase;

  letter-spacing: 0.035em;
}

.sector-item span {
  display: block;

  margin-top: 7px;

  color: #71879b;

  font-size: 15px;

  line-height: 1.45;
}


/* =========================================================
   LATEST PERSPECTIVES / INSIGHTS
   FIXED VERSION
   ========================================================= */

.insights-home {
  padding: 64px 0 72px;

  background: #fff;
}

.insights-home .section-heading {
  margin-bottom: 30px;

  align-items: flex-end;
}

.insight-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 30px;

  align-items: stretch;
}

.insight-card {
  min-width: 0;

  padding-right: 30px;

  display: flex;
  flex-direction: column;

  border-right:
    1px solid var(--line);
}

.insight-card:last-child {
  padding-right: 0;

  border-right: 0;
}

/*
  IMPORTANT:
  aspect-ratio prevents the images from collapsing
  into very thin horizontal strips.
*/

.insight-card img {
  width: 100%;

  aspect-ratio: 16 / 9;

  height: auto;

  min-height: 220px;
  max-height: 250px;

  margin: 0 0 22px;

  object-fit: cover;

  object-position: center;

  background: #e9eef2;
}

.insight-card time {
  display: block;

  margin-bottom: 10px;

  color: #8498aa;

  font-size: 12px;
  font-weight: 800;

  line-height: 1.2;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.insight-card h3 {
  margin: 0 0 12px;

  color: var(--ink);

  font-size: 20px;
  font-weight: 800;

  line-height: 1.3;
}

.insight-card p {
  margin: 0 0 18px;

  color: #657c92;

  font-size: 16px;

  line-height: 1.58;
}

.insight-card > a {
  margin-top: auto;

  color: var(--ink);

  font-size: 13px;
  font-weight: 800;

  line-height: 1.3;

  text-transform: uppercase;

  letter-spacing: 0.035em;
}

.insight-card > a:hover {
  color: var(--gold-dark);
}


/* ---------------------------------------------------------
   GENERIC PAGE HEROES
   --------------------------------------------------------- */

.page-hero,
.service-hero {
  position: relative;

  overflow: hidden;

  padding: 86px 0 80px;

  color: #fff;

  background:
    linear-gradient(
      105deg,
      #052845,
      #0b456f
    );
}

.page-hero .shell,
.service-hero .shell {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.service-hero h1 {
  margin: 0 0 19px;

  font-size: 54px;
  font-weight: 500;

  line-height: 1.05;

  letter-spacing: -0.03em;
}

.page-hero p:not(.eyebrow),
.service-hero p:not(.eyebrow) {
  max-width: 900px;

  color: #dbe7ee;

  font-size: 19px;

  line-height: 1.6;
}

.services-hero {
  background:
    linear-gradient(
      90deg,
      rgba(5, 40, 69, 0.94),
      rgba(5, 40, 69, 0.45)
    ),
    url("/assets/img/hero-approved.jpg")
    center / cover
    no-repeat;
}

.service-hero-bg {
  position: absolute;

  inset: 0;

  background-position: center !important;
  background-size: cover !important;

  filter: saturate(0.9);
}


/* ---------------------------------------------------------
   GENERAL SECTIONS
   --------------------------------------------------------- */

.section {
  padding: 76px 0;
}

.section h2 {
  margin: 0 0 22px;

  font-size: 38px;
  font-weight: 500;

  line-height: 1.13;

  letter-spacing: -0.02em;
}

.lead {
  max-width: 880px;

  color: var(--muted);

  font-size: 19px;

  line-height: 1.62;
}

.two-col {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 86px;
}

.prose p {
  color: #506b82;

  font-size: 18px;

  line-height: 1.68;
}

.prose h2 {
  font-size: 40px;
}


/* ---------------------------------------------------------
   ABOUT — OUR APPROACH
   --------------------------------------------------------- */

.navy-band {
  padding: 43px 0;

  color: #fff;

  background:
    linear-gradient(
      90deg,
      #052641,
      #073b60
    );
}

.four-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}

.four-grid > div {
  min-height: 145px;

  margin-right: 34px;
  padding: 17px 34px 17px 0;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right:
    1px solid rgba(255, 255, 255, 0.23);
}

.four-grid > div:last-child {
  margin-right: 0;
  padding-right: 0;

  border-right: 0;
}

.four-grid strong {
  display: block;

  margin-bottom: 11px;

  color: #fff;

  font-size: 16px;
  font-weight: 800;

  line-height: 1.25;

  text-transform: uppercase;

  letter-spacing: 0.05em;
}

.four-grid strong::before {
  content: "";

  display: block;

  width: 36px;
  height: 3px;

  margin-bottom: 14px;

  background: var(--gold);
}

.four-grid span {
  display: block;

  color: #d9e5ed;

  font-size: 15.5px;

  line-height: 1.55;
}


/* ---------------------------------------------------------
   OVERVIEW GRIDS
   --------------------------------------------------------- */

.overview-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 19px;
}

.overview-card {
  display: block;

  min-height: 245px;

  padding: 27px;

  background: #fff;

  border:
    1px solid #dbe4ea;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.overview-card:hover {
  transform: translateY(-3px);

  box-shadow: var(--shadow);
}

.overview-card .num {
  color: #a87e00;

  font-size: 12px;
  font-weight: 900;
}

.overview-card h2 {
  margin: 28px 0 11px;

  font-size: 24px;

  line-height: 1.16;
}

.overview-card p {
  margin: 0 0 20px;

  color: var(--muted);

  font-size: 16.5px;

  line-height: 1.56;
}

.text-link {
  font-size: 13px;
  font-weight: 800;
}

.credential-note {
  margin-top: 42px;

  padding: 30px;

  background: #f5f8fa;

  border-left:
    4px solid var(--gold);
}

.credential-note h2 {
  font-size: 27px;
}


/* ---------------------------------------------------------
   SERVICE DETAIL PAGES
   --------------------------------------------------------- */

.capability-group {
  padding: 54px 0;

  display: grid;

  grid-template-columns:
    300px 1fr;

  gap: 58px;

  border-bottom:
    1px solid #dfe6eb;
}

.group-head {
  display: flex;

  gap: 15px;
}

.group-head span {
  padding-top: 7px;

  color: #a77c00;

  font-size: 12px;
  font-weight: 900;
}

.group-head h2 {
  margin: 0;

  font-size: 29px;

  line-height: 1.15;
}

.capability-list {
  margin: 0;
  padding: 0;

  list-style: none;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 22px 38px;
}

.capability-list li {
  padding-top: 15px;

  border-top:
    2px solid #e8eef2;
}

.capability-list h3 {
  margin: 0 0 8px;

  font-size: 18px;

  line-height: 1.3;
}

.capability-list p {
  margin: 0;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.58;
}


/* ---------------------------------------------------------
   CONTACT BAND
   --------------------------------------------------------- */

.contact-band {
  padding: 50px 0;

  color: #fff;

  background:
    linear-gradient(
      90deg,
      #052641,
      #073b60
    );
}

.contact-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.contact-band h2 {
  margin: 0 0 7px;

  font-size: 32px;
}

.contact-band p {
  margin: 0;

  color: #d7e3eb;

  font-size: 16px;

  line-height: 1.55;
}


/* ---------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------- */

.contact-grid {
  display: grid;

  grid-template-columns:
    0.78fr 1.22fr;

  gap: 66px;
}

.contact-details {
  padding: 38px;

  background: #f3f6f8;
}

.contact-details h2 {
  font-size: 34px;
}

.contact-details p {
  font-size: 17px;

  line-height: 1.6;
}

.contact-details a {
  font-size: 27px;
  font-weight: 800;
}

.small {
  font-size: 15px !important;

  line-height: 1.58 !important;
}

.contact-form {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 23px 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;

  gap: 9px;

  font-size: 16px;
  font-weight: 800;

  line-height: 1.3;
}

.contact-form label:nth-of-type(5),
.contact-form label:nth-of-type(6),
.contact-form .consent,
.contact-form button,
.form-note,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  padding: 14px 15px;

  border:
    1px solid #aebfcd;

  border-radius: 2px;

  background: #fff;

  color: var(--ink);

  font-family: inherit;

  font-size: 17px;
  font-weight: 500;

  line-height: 1.4;
}

.contact-form input,
.contact-form select {
  min-height: 56px;
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  font-family: inherit;

  font-size: 17px;
  font-weight: 500;
}

.contact-form textarea {
  min-height: 190px;

  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline:
    2px solid rgba(223, 181, 27, 0.45);

  outline-offset: 1px;

  border-color:
    var(--gold-dark);
}

.consent {
  flex-direction: row !important;
  align-items: flex-start;

  font-size: 15px !important;
  font-weight: 500 !important;
}

.consent input {
  width: auto;

  margin-top: 4px;
}

.form-note {
  color: var(--muted);

  font-size: 14.5px;

  line-height: 1.55;
}


/* ---------------------------------------------------------
   ARTICLES / LEGAL
   --------------------------------------------------------- */

.article-list {
  max-width: 960px;
}

.article-list article {
  margin-bottom: 54px;
  padding-bottom: 54px;

  border-bottom:
    1px solid #dfe6eb;
}

.article-list h2 {
  font-size: 38px;
}

.legal {
  max-width: 900px;
}

.legal h2 {
  margin-top: 34px;

  font-size: 29px;
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.site-footer {
  padding: 48px 0 20px;

  color: #fff;

  background:
    linear-gradient(
      90deg,
      #052641,
      #07395f
    );
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.25fr 0.72fr 1.02fr 1.2fr;

  gap: 58px;

  align-items: start;
}

.footer-brand {
  position: relative;

  display: inline-block;

  width: 275px;
}

.footer-logo {
  width: 100%;
}

.footer-tm {
  position: absolute;

  right: -7px;
  top: 7px;

  color: #fff;

  font-size: 8px;
}

.footer-tag {
  margin: 17px 0 0 !important;

  color: #d8e4ec !important;

  font-size: 14.5px !important;

  line-height: 1.58 !important;

  text-transform: uppercase;

  letter-spacing: 0.14em;
}

.footer-company-line {
  max-width: 310px;

  margin: 15px 0 0 !important;

  color: #eef4f8 !important;

  font-size: 15px !important;
  font-weight: 600;

  line-height: 1.55 !important;

  letter-spacing: 0.01em;
}

.site-footer h3 {
  margin: 5px 0 18px;

  color: #fff;

  font-size: 15px;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}

.site-footer a,
.site-footer p {
  display: block;

  margin: 6px 0;

  color: #dbe6ed;

  font-size: 15px;

  line-height: 1.58;
}

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

.footer-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;

  gap: 10px !important;
}

.footer-links a {
  display: block !important;

  width: max-content;

  margin: 0 !important;

  line-height: 1.35 !important;
}

.newsletter-row {
  display: flex;

  margin-top: 13px;
}

.newsletter-row input {
  min-width: 0;
  height: 47px;

  flex: 1;

  padding: 0 13px;

  color: #fff;

  background: transparent;

  border:
    1px solid #9aafbe;

  font-size: 15px;
}

.newsletter-row button {
  width: 47px;

  border: 0;

  background: var(--gold);

  color: #07345b;

  font-size: 19px;
  font-weight: 900;
}

.social-row {
  display: flex;

  gap: 13px;

  margin-top: 14px;
}

.social-row a {
  color: #fff;

  font-size: 19px;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 17px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #b8c7d2;

  font-size: 13px;

  border-top:
    1px solid rgba(255, 255, 255, 0.22);
}

.footer-bottom-links {
  display: flex;

  gap: 21px;
}

.footer-bottom-links a {
  margin: 0;

  font-size: 13px;
}


/* =========================================================
   RESPONSIVE — MEDIUM DESKTOP
   ========================================================= */

@media (max-width: 1260px) {

  .shell {
    width:
      min(calc(100% - 48px), var(--max));
  }

  .brand {
    width: 285px;
  }

  .nav {
    gap: 23px;
  }

  .nav a {
    font-size: 15px;
  }

  .header-tagline {
    right: 78px;

    font-size: 11px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .home-service-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .home-service-card img {
    height: 190px;
  }

  .sector-row {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .sector-item:nth-child(3) {
    border-right: 0;
  }

  .sector-item:nth-child(-n + 3) {
    border-bottom:
      1px solid var(--line);
  }

  .insight-card img {
    min-height: 200px;
  }
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 920px) {

  .site-header,
  .header-inner {
    height: 82px;
  }

  .nav,
  .header-tagline,
  .search-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    width: 250px;
  }

  .nav.open {
    position: absolute;

    left: -24px;
    right: -24px;
    top: 82px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 2px;

    padding: 18px 28px 23px;

    background: #052641;

    box-shadow:
      0 15px 30px rgba(0, 0, 0, 0.16);
  }

  .nav.open a {
    padding: 10px 0;

    font-size: 17px;
  }

  .nav.open a::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-copy {
    width: 70%;
  }

  .hero-side {
    display: none;
  }

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

  .feature-item:nth-child(3) {
    border-right: 0;
  }

  .feature-item:nth-child(-n + 3) {
    border-bottom:
      1px solid var(--line);
  }

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

  .about-copy {
    padding: 50px 0;
  }

  .about-visual {
    min-height: 380px;
  }

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

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

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

  .home-value:nth-child(-n + 2) {
    border-bottom:
      1px solid rgba(255, 255, 255, 0.2);
  }

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

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

  .footer-brand {
    width: 250px;
  }

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

  .four-grid > div:nth-child(2) {
    margin-right: 0;

    border-right: 0;
  }

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

  .insight-card,
  .insight-card:last-child {
    padding: 0 0 32px;

    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }

  .insight-card:last-child {
    border-bottom: 0;
  }

  .insight-card img {
    width: 100%;

    aspect-ratio: 16 / 7;

    min-height: 260px;
    max-height: 330px;
  }

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

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


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .shell {
    width:
      min(calc(100% - 28px), var(--max));
  }

  .brand {
    width: 225px;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-bg {
    background-position:
      43% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(2, 28, 51, 0.88),
        rgba(3, 39, 67, 0.62) 70%,
        rgba(3, 39, 67, 0.20)
      );
  }

  .hero-inner {
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;

    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .btn {
    min-height: 52px;

    padding: 0 23px;
  }

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

  .feature-item,
  .feature-item:nth-child(3) {
    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }

  .about-copy h2 {
    font-size: 36px;
  }

  .about-visual {
    min-height: 310px;
  }

  .about-engine {
    width: 76%;
  }

  .about-wedge {
    width: 40%;
  }

  .ghost-mark {
    right: 12px;
    top: 58px;

    transform:
      scale(0.75);

    transform-origin:
      right top;
  }

  .about-badge {
    right: 8px;
    bottom: 26px;

    width: 145px;
  }

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

  .home-value,
  .home-value:nth-child(2) {
    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.2);
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-photo-inner {
    padding: 42px 0;

    align-items: flex-start;
    flex-direction: column;
    justify-content: center;

    gap: 22px;
  }

  .cta-photo h2 {
    font-size: 34px;
  }

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

  .sector-item:nth-child(3) {
    border-right:
      1px solid var(--line);
  }

  .sector-item:nth-child(even) {
    border-right: 0;
  }

  .sector-item {
    border-bottom:
      1px solid var(--line);
  }

  .sector-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .insights-home {
    padding:
      52px 0 58px;
  }

  .insight-grid {
    gap: 28px;
  }

  .insight-card img {
    width: 100%;

    aspect-ratio: 16 / 9;

    min-height: 190px;
    max-height: none;
  }

  .insight-card h3 {
    font-size: 19px;
  }

  .insight-card p {
    font-size: 15.5px;
  }

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

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

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

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

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

  .four-grid > div,
  .four-grid > div:nth-child(2) {
    margin-right: 0;

    padding: 20px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.18);
  }

  .four-grid > div:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;

    gap: 9px;
  }

  .page-hero h1,
  .service-hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 58px 0;
  }
}
