:root {
  --navy: #02083f;
  --navy-2: #071a58;
  --blue: #0674bd;
  --blue-deep: #045e9d;
  --blue-soft: #dceefb;
  --bronze: #a47a3c;
  --bronze-deep: #755324;
  --bronze-dark: #755324;
  --ink: #172033;
  --muted: #52657d;
  --paper: #f5f9fc;
  --paper-2: #edf4fa;
  --line: #d9e4ee;
  --white: #ffffff;
  --max: 1396px;
  --gutter: clamp(40px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--white);
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--blue-soft);
  color: #1e2d5c;
}

.header-inner,
.footer-inner,
.section-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.brand-lockup .brand-mark {
  width: 64px;
  height: 58px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.brand-lockup.has-custom-logo {
  max-width: min(420px, 42vw);
}

.brand-lockup .brand-logo {
  width: auto;
  max-width: 100%;
  max-height: 64px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.site-header .brand-name {
  color: #1e2d5c;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #1e2d5c;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav li,
.footer-col li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul,
.footer-col ul {
  display: contents;
  margin: 0;
  padding: 0;
}

.nav .button-link a,
.nav a.button-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  padding: 0 34px;
  box-shadow: 0 18px 34px rgba(6, 116, 189, .25);
}

.nav .button-link a {
  text-decoration: none;
}


.nav a:hover,
.nav a:focus-visible {
  color: var(--blue-deep);
}

.nav .button-link a:hover,
.nav .button-link a:focus-visible,
.nav a.button-link:hover,
.nav a.button-link:focus-visible {
  background: var(--blue-deep);
  color: var(--white);
}

.button-link,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 18px 34px rgba(6, 116, 189, .25);
}

.button-link {
  padding: 0 24px;
}

.button {
  padding: 0 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 850;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bronze);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 45, 92, .3);
  border-radius: 6px;
  background: rgba(255, 255, 255, .45);
  color: #1e2d5c;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: 625px;
  color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(247, 251, 255, .98) 0%, rgba(247, 251, 255, .92) 25%, rgba(247, 251, 255, .35) 50%, rgba(2, 8, 63, .16) 78%, rgba(2, 8, 63, .38) 100%),
    linear-gradient(180deg, rgba(2, 8, 63, .08) 0%, rgba(2, 8, 63, 0) 50%, rgba(2, 8, 63, .2) 100%),
    url("../images/hero-aircraft.png");
  background-size: cover;
  background-position: center 100%;
}

.hero h1 {
  font-size: 3vw;
}

.hero .section-inner {
  min-height: 625px;
  display: grid;
  grid-template-columns: minmax(540px, 700px) 1fr;
  align-items: center;
}

.hero-copy {
  padding: 40px 0 110px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1,
.display {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 700;
  line-height: .98;
}

.hero-rule,
.short-rule {
  width: 58px;
  height: 3px;
  margin: 0 0 24px;
  background: var(--bronze);
}

.lead {
  max-width: 540px;
  margin-bottom: 34px;
  color: #24364d;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.pathways {
  position: relative;
  z-index: 5;
  margin-top: -86px;
  padding-bottom: 54px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.path-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
  border: 1px solid rgba(217, 228, 238, .92);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 48px rgba(20, 48, 84, .12);
}

.path-card h2,
.path-card h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
}

.path-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.path-card .text-link {
  margin-top: auto;
  font-size: 14px;
}

.proof-band {
  padding: 48px 0 50px;
  background: linear-gradient(180deg, #f6faff, #edf5fb);
  text-align: center;
}

.proof-band .eyebrow {
  margin-bottom: 10px;
}

.proof-band h2 {
  max-width: 840px;
  margin: 0 auto 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.2;
}

.proof-band p {
  max-width: 730px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.subhero {
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 84% 22%, rgba(8, 121, 201, .18), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #edf5fb 55%, #e4f0f8 100%);
}

.subhero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 1fr);
  align-items: end;
  gap: 72px;
}

.subhero h1 {
  font-size: clamp(48px, 4.8vw, 72px);
}

.subhero p {
  max-width: 660px;
  color: #2c4058;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.quick-panel {
  padding: 30px;
  border-left: 3px solid var(--bronze);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 24px 60px rgba(20, 48, 84, .1);
}

.quick-panel p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.quick-panel a {
  display: block;
  padding: 8px 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 850;
}

.content-section {
  padding: 78px 0;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.08;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 68px;
  align-items: start;
}

.body-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.body-copy strong {
  color: var(--navy);
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(430px, .78fr);
  gap: 76px;
  align-items: center;
}

.financing-section {
  padding-bottom: 64px;
  background: var(--navy);
}

.financing-first {
  display: block;
  max-width: 900px;
  text-align: center;
}

.financing-section .financing-first .eyebrow,
.financing-section .financing-first h2,
.financing-section .financing-first .section-lead,
.financing-section .financing-first .body-copy,
.financing-section .financing-first .body-copy strong {
  color: var(--white);
}

.financing-section .financing-first .section-lead,
.financing-section .financing-first .body-copy {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.financing-section .financing-first .body-copy {
  color: rgba(255, 255, 255, .82);
}

.financing-section .financing-first .body-copy > :last-child {
  margin-bottom: 0;
}

.editorial-copy-block h2 {
  

  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.06;
}

.section-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: #314961;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
}

.editorial-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 28px 60px rgba(20, 48, 84, .18);
}

.editorial-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 63, 0) 40%, rgba(2, 8, 63, .56) 100%);
  content: "";
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
}

.editorial-image figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.finance-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.finance-options-wrap {
  padding-top: 0;
  padding-bottom: 78px;
  background: var(--navy);
}

.finance-options-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.12;
}

.finance-options article {
  padding-right: 20px;
}

.option-icon,
.note-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(179, 129, 59, .32);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(239, 245, 250, .68));
  color: var(--bronze-deep);
}

.option-icon {
  margin-bottom: 18px;
}

.option-icon svg,
.note-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.finance-options h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.12;
}

.finance-options p {
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.55;
}

.finance-options .option-icon {
  border-color: rgba(210, 180, 118, .6);
  background: rgba(255, 255, 255, .08);
  color: #e2bc72;
}

.editorial-row {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1fr);
  gap: 88px;
  align-items: start;
}

.editorial-kicker {
  margin-bottom: 0;
  padding-top: 4px;
}

.editorial-kicker h2 {
  max-width: 540px;
}

.editorial-note {
  margin-top: 30px;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.editorial-note strong,
.editorial-note span {
  display: block;
}

.editorial-note strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.2;
}

.editorial-note span {
  color: #405772;
  font-size: 16px;
  line-height: 1.55;
}

.note-icon {
  margin-top: 1px;
  background: rgba(255, 255, 255, .66);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-card {
  min-height: 156px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.12;
}

.detail-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: transparent;
}

.process div {
  padding: 26px 0 0;
  background: transparent;
}

.process strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.process span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.about-feature {
  grid-template-columns: minmax(0, .82fr) minmax(450px, 1fr);
}

.about-feature .editorial-image img {
  min-height: 380px;
  object-position: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.team-card {
  min-height: 190px;
  padding: 24px;
  border-top: 3px solid var(--bronze);
  background: var(--white);
  box-shadow: 0 20px 42px rgba(20, 48, 84, .08);
}

.team-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.1;
}

.team-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(var(--team-columns, 5), minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-member {
  min-height: 302px;
  padding: 28px 20px 30px;
  border-right: 1px solid var(--line);
  background: transparent;
}

.team-member:last-child {
  border-right: 0;
}

.team-member h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
}

.team-member p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.team-profile {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.team-headshot {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(210, 180, 118, .58);
  border-radius: 12px;
  background:
    radial-gradient(circle at 38% 22%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #edf5fb, #dce9f4 58%, #c9d9e8);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .45), 0 18px 34px rgba(20, 48, 84, .08);
}

.team-headshot svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: #183b63;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  opacity: .76;
}

.team-headshot.has-image {
  overflow: hidden;
  padding: 0;
}

.team-headshot.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-member .team-title {
  margin-bottom: 12px;
  color: var(--bronze-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.insight-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #f8fbfe);
}

.insight-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.insight-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.inquiry-hero .quick-panel span {
  display: block;
  color: var(--navy);
  font-weight: 850;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: 78px;
  align-items: start;
}

.inquiry-sidebar {
  position: sticky;
  top: 36px;
}

.inquiry-sidebar h2,
.form-intro h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.08;
}

.inquiry-sidebar > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.inquiry-points {
  margin-top: 34px;
  display: grid;
  gap: 26px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.inquiry-points div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.inquiry-points strong {
  margin-top: 2px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
}

.inquiry-points p {
  grid-column: 2;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.inquiry-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #f8fbfe);
  box-shadow: 0 26px 62px rgba(20, 48, 84, .12);
}

.form-intro {
  max-width: 680px;
  margin-bottom: 30px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-grid label {
  display: grid;
  gap: 9px;
}

.field-grid label span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field-grid input,
.field-grid select,
.field-grid textarea,
.field-grid .wpcf7-form-control {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cbd8e5;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 0 16px;
}

.field-grid textarea {
  min-height: 138px;
  padding-top: 15px;
  resize: vertical;
}

.field-grid .wpcf7-form-control-wrap {
  display: block;
}

.field-grid input::placeholder,
.field-grid textarea::placeholder,
.field-grid .wpcf7-form-control::placeholder {
  color: #8898aa;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus,
.field-grid .wpcf7-form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(6, 116, 189, .14);
}

.field-full {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-actions p {
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.wpcf7-spinner {
  margin: 0 0 0 8px;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
  margin-top: 8px;
  color: #9f2f2f;
  font-size: 13px;
  font-weight: 700;
}

.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.site-footer {
  padding: 44px 0 32px;
  background: linear-gradient(90deg, var(--navy), #05245f);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) repeat(4, minmax(130px, .6fr));
  gap: 36px;
}

.footer-brand .brand-lockup {
  margin-bottom: 20px;
}

.footer-brand .brand-lockup .brand-mark {
  width: 55px;
  height: 48px;
}

.footer-brand .brand-lockup.has-custom-logo {
  max-width: min(310px, 100%);
}

.footer-brand .brand-lockup .brand-logo {
  max-height: 58px;
}

.footer-brand .brand-name {
  font-size: 27px;
}

.footer-brand p,
.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  text-decoration: none;
}

.footer-bottom {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 34px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.has-scroll-reveal .reveal-item {
    opacity: 0;
    transform: translateY(18px);
  }

  html.has-scroll-reveal .reveal-item.is-visible {
    animation: revealContent .7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms) both;
  }

  @keyframes revealContent {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1120px) {
  .nav {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    top: 100%;
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    gap: 16px;
    padding: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 24px 40px rgba(2, 8, 63, .22);
  }

  .nav.is-open a:hover,
  .nav.is-open a:focus-visible {
    color: #9ed6ff;
  }

  .nav.is-open .button-link a:hover,
  .nav.is-open .button-link a:focus-visible,
  .nav.is-open a.button-link:hover,
  .nav.is-open a.button-link:focus-visible {
    color: var(--white);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .path-grid,
  .finance-options,
  .process,
  .team-grid,
  .team-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-feature,
  .about-feature {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
    gap: 48px;
  }

  .editorial-row {
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
    gap: 52px;
  }

  .inquiry-layout {
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 48px;
  }

  .inquiry-form {
    padding: 34px;
  }

  .team-member {
    border-bottom: 1px solid var(--line);
  }

  .team-member:nth-child(2n) {
    border-right: 0;
  }

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

@media (max-width: 820px) {
  :root {
    --gutter: 24px;
  }

  .header-inner {
    gap: 16px;
  }

  .brand-lockup {
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .brand-lockup .brand-mark {
    width: 48px;
    height: 44px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-name {
    overflow: hidden;
    font-size: clamp(17px, 4.7vw, 20px);
    text-overflow: clip;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

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

  .hero .section-inner,
  .subhero .section-inner,
  .two-col,
  .editorial-feature,
  .about-feature,
  .editorial-row,
  .inquiry-layout,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 140px;
  }

  .hero h1 {
    font-size: clamp(38px, 9vw, 54px);
  }

  .lead {
    font-size: 18px;
  }

  .path-grid,
  .finance-options,
  .detail-grid,
  .process,
  .team-grid,
  .team-list,
  .insights-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .editorial-copy-block h2,
  .section-heading h2 {
    font-size: 38px;
  }

  .editorial-image img,
  .about-feature .editorial-image img {
    min-height: 320px;
  }

  .about-feature .editorial-image img {
    object-position: center;
  }

  .inquiry-sidebar {
    position: static;
  }

  .inquiry-form {
    padding: 26px;
  }

  .field-full {
    grid-column: auto;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-member,
  .team-member:nth-child(2n) {
    border-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 18px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-lockup.has-custom-logo {
    max-width: calc(100vw - 110px);
  }

  .brand-lockup .brand-logo {
    max-height: 44px;
  }

  .brand-lockup .brand-mark {
    width: 42px;
    height: 38px;
  }

  .brand-name {
    font-size: 17px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

.wp-block-acf-jb-hero,
.wp-block-acf-jb-pathways,
.wp-block-acf-jb-proof-band,
.wp-block-acf-jb-subhero,
.wp-block-acf-jb-editorial-feature,
.wp-block-acf-jb-finance-options,
.wp-block-acf-jb-solution-section,
.wp-block-acf-jb-team,
.wp-block-acf-jb-inquiry {
  max-width: none;
}
