:root {
  --navy-950: #031d35;
  --navy-900: #062b4c;
  --navy-800: #0b3d68;
  --blue-700: #07569b;
  --blue-600: #0b67b2;
  --blue-100: #dbeefe;
  --blue-050: #eef7ff;
  --gold-500: #c89625;
  --ink: #182534;
  --muted: #5d6b79;
  --line: #d9e2ea;
  --surface: #ffffff;
  --surface-alt: #f5f8fb;
  --success: #17633d;
  --success-bg: #eaf7f0;
  --error: #9d2c2c;
  --error-bg: #fff0f0;
  --shadow-sm: 0 8px 24px rgba(8, 35, 60, 0.08);
  --shadow-md: 0 18px 48px rgba(8, 35, 60, 0.13);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-alt);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
}

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

a {
  color: var(--blue-700);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-900);
}

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

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

:focus-visible {
  outline: 3px solid #f0b945;
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-950);
  font-family:
    "Avenir Next", Avenir, Montserrat, ui-sans-serif, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1200;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.section {
  padding: 76px 0;
}

.section-compact {
  padding: 52px 0;
}

.section-white {
  background: var(--surface);
}

.section-navy {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 85% 12%, rgba(26, 119, 187, 0.32), transparent 31%),
    var(--navy-950);
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-navy .eyebrow {
  color: #79c1f2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:last-child {
  max-width: 690px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-navy .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 8px 24px rgba(3, 29, 53, 0.12);
}

.brand-bar {
  background: rgba(255, 255, 255, 0.98);
}

.brand-bar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  width: 205px;
  height: 66px;
  object-fit: contain;
}

.brand-positioning {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.brand-positioning strong,
.brand-positioning span {
  display: block;
}

.brand-positioning strong {
  color: var(--navy-900);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.brand-positioning span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.brand-identity {
  margin-left: auto;
  text-align: right;
}

.brand-identity strong,
.brand-identity span {
  display: block;
}

.brand-identity strong {
  color: var(--navy-950);
  font-size: 0.88rem;
}

.brand-identity span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.73rem;
}

.nav-bar {
  color: #fff;
  background: var(--navy-900);
  border-bottom: 3px solid var(--blue-600);
}

.nav-bar-inner {
  min-height: 49px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav {
  display: flex;
  align-self: stretch;
}

.main-nav ul {
  display: flex;
  align-items: stretch;
  gap: 2px;
  list-style: none;
}

.main-nav a {
  position: relative;
  min-height: 46px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: -3px;
  left: 13px;
  height: 3px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-contact {
  margin-left: auto;
  padding: 8px 14px;
  color: var(--navy-950);
  background: #fff;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.nav-contact:hover {
  color: var(--navy-950);
  background: var(--blue-100);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 40px;
  margin-left: auto;
  padding: 8px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-wrap {
  padding: 30px 0 0;
}

.hero-banner {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: -42%;
  z-index: -2;
  background: url("../images/cockpit-sunset.jpg") 56% 38% / cover no-repeat;
  filter: saturate(0.95) contrast(1.05);
  transform: rotate(-9deg) scale(1.05);
  transform-origin: center;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(3, 29, 53, 0.96) 0%,
    rgba(3, 29, 53, 0.74) 49%,
    rgba(3, 29, 53, 0.24) 100%
  );
}

.hero-banner-content {
  min-height: 232px;
  padding: 34px 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.hero-identity {
  max-width: 740px;
}

.hero-identity .eyebrow {
  margin-bottom: 8px;
  color: #89cdf9;
}

.hero-identity h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2rem, 4.1vw, 3.85rem);
}

.hero-identity > p:last-child {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
}

.availability {
  max-width: 215px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(3, 29, 53, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  font-size: 0.73rem;
  font-weight: 750;
  line-height: 1.35;
}

.availability img {
  width: 26px;
  height: 34px;
  object-fit: contain;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(320px, 0.78fr);
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
}

.home-intro-copy {
  padding: 58px 58px 50px;
}

.home-intro-copy h2 {
  max-width: 780px;
  font-size: clamp(2.45rem, 5.7vw, 5.05rem);
}

.lead {
  color: var(--muted);
  font-size: 1.11rem;
  line-height: 1.75;
}

.home-intro-copy .lead {
  max-width: 800px;
  margin-top: 24px;
}

.home-intro-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--blue-700);
  border: 1px solid var(--blue-700);
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy-900);
  background: #fff;
  border-color: var(--line);
}

.button-secondary:hover {
  color: var(--navy-950);
  background: var(--blue-050);
  border-color: #b8d8ef;
}

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

.button-light:hover {
  color: var(--navy-950);
  background: var(--blue-100);
  border-color: var(--blue-100);
}

.credential-panel {
  padding: 42px 34px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(11, 61, 104, 0.93), rgba(3, 29, 53, 0.98)),
    url("../images/sunset-flight.jpg") center / cover;
}

.credential-panel h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-list {
  list-style: none;
}

.credential-list li {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  line-height: 1.35;
}

.credential-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.credential-list span {
  color: #72bef1;
  font-size: 0.74rem;
  font-weight: 850;
}

.credential-list strong {
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.87rem;
}

.service-lanes {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-lane {
  min-height: 102px;
  padding: 20px 25px;
  display: grid;
  grid-template-columns: 62px minmax(210px, 0.72fr) minmax(320px, 1.25fr) 32px;
  align-items: center;
  gap: 20px;
  color: inherit;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.service-lane:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-lane:last-child {
  border-bottom: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.service-lane:hover {
  color: inherit;
  background: var(--blue-050);
}

.lane-number {
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lane-title {
  color: var(--navy-950);
  font-weight: 850;
  line-height: 1.3;
}

.lane-summary {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.lane-arrow {
  color: var(--blue-700);
  font-size: 1.5rem;
  transition: transform 160ms ease;
}

.service-lane:hover .lane-arrow {
  transform: translateX(4px);
}

.perspective-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: stretch;
}

.perspective-card {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.perspective-card p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.image-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 29, 53, 0.58));
}

.cta-band {
  padding: 42px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(100deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  max-width: 680px;
  margin-top: 10px;
}

.page-hero {
  position: relative;
  min-height: 282px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -54%;
  z-index: -2;
  background: url("../images/cockpit-sunset.jpg") 56% 38% / cover no-repeat;
  filter: saturate(0.9) contrast(1.05);
  transform: rotate(-9deg) scale(1.05);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(3, 29, 53, 0.97),
    rgba(3, 29, 53, 0.83) 53%,
    rgba(3, 29, 53, 0.43)
  );
}

.page-hero .shell {
  min-height: 282px;
  padding-block: 54px;
  display: flex;
  align-items: center;
}

.page-hero-copy {
  max-width: 800px;
}

.page-hero .eyebrow {
  color: #89cdf9;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p:last-child {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.service-details {
  display: grid;
  gap: 24px;
}

.service-detail {
  scroll-margin-top: 150px;
  padding: 36px 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-detail-heading {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.service-detail-heading > span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-detail > p {
  max-width: 900px;
  margin: 22px 0 25px 76px;
  color: var(--muted);
}

.service-detail > h3 {
  margin: 0 0 12px 76px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-list {
  margin-left: 76px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  color: #33475a;
  background: var(--surface-alt);
  border-radius: 8px;
  font-size: 0.91rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--blue-700);
  font-weight: 900;
}

.disclaimer {
  padding: 18px 20px;
  color: #52606d;
  background: #f4f7f9;
  border-left: 4px solid #9aa9b6;
  border-radius: 8px;
  font-size: 0.86rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.portrait-frame {
  position: sticky;
  top: 158px;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 10px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.portrait-caption {
  margin: 14px 8px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy > div {
  max-width: 760px;
}

.about-copy > div p {
  margin-bottom: 19px;
  color: #425365;
  font-size: 1.03rem;
}

.about-copy > div p:first-child {
  color: var(--navy-900);
  font-size: 1.17rem;
  font-weight: 650;
}

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

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

.value-card span {
  color: var(--blue-600);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-card h3 {
  margin-top: 10px;
}

.value-card p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.93rem;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 46px;
  align-items: start;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 159px;
  width: 1px;
  background: #cbd8e2;
}

.timeline-item {
  position: relative;
  padding: 0 0 34px;
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 48px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 153px;
  width: 13px;
  height: 13px;
  background: var(--blue-600);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--blue-600);
}

.timeline-date {
  padding-top: 1px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.4;
  text-align: right;
}

.timeline-copy {
  padding: 0 0 29px;
  border-bottom: 1px solid var(--line);
}

.timeline-copy h2 {
  font-size: 1.45rem;
}

.timeline-copy > p:last-child {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.94rem;
}

.qualification-sidebar {
  position: sticky;
  top: 158px;
  display: grid;
  gap: 20px;
}

.sidebar-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.sidebar-card h2 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.plain-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.plain-list li {
  padding: 9px 0 9px 18px;
  position: relative;
  color: #405163;
  border-bottom: 1px solid #edf1f4;
  font-size: 0.89rem;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blue-600);
  border-radius: 50%;
}

.plain-list li:last-child {
  border-bottom: 0;
}

.education-list {
  display: grid;
  gap: 16px;
}

.education-card p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 250px;
  padding: 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.process-step > span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.process-step h2 {
  margin-top: 22px;
  font-size: 1.45rem;
}

.process-step p {
  margin-top: 13px;
  color: var(--muted);
}

.process-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principle {
  padding: 25px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.principle h3 {
  font-size: 1.05rem;
}

.principle p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
  gap: 36px;
  align-items: start;
}

.contact-card {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.status-message {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.status-success {
  color: var(--success);
  background: var(--success-bg);
  border: 1px solid #b9dfcb;
}

.status-error {
  color: var(--error);
  background: var(--error-bg);
  border: 1px solid #efc2c2;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: var(--navy-900);
  font-size: 0.83rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bac8d4;
  border-radius: 8px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 165px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(11, 103, 178, 0.13);
  outline: none;
}

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

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

.form-actions button {
  cursor: pointer;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.contact-sidebar .sidebar-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-sidebar .sidebar-card p + p,
.contact-sidebar .sidebar-card .button {
  margin-top: 15px;
}

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

.resource-card {
  min-height: 310px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.resource-card-featured {
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(145deg, rgba(3, 29, 53, 0.97), rgba(11, 61, 104, 0.91)),
    url("../images/cockpit-sunset.jpg") center / cover;
  border-color: transparent;
}

.resource-card-featured h2,
.resource-card-featured h3 {
  color: #fff;
}

.resource-card > p {
  margin-top: 15px;
  color: var(--muted);
}

.resource-card-featured > p {
  color: rgba(255, 255, 255, 0.74);
}

.resource-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.privacy-copy {
  max-width: 850px;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.privacy-copy h2 {
  margin: 34px 0 12px;
  font-size: 1.45rem;
}

.privacy-copy h2:first-child {
  margin-top: 0;
}

.privacy-copy p,
.privacy-copy li {
  color: #4c5d6d;
}

.privacy-copy ul {
  margin: 12px 0 0 22px;
}

.not-found {
  min-height: calc(100vh - 260px);
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found > div {
  max-width: 640px;
}

.not-found strong {
  display: block;
  color: var(--blue-600);
  font-size: 5rem;
  line-height: 1;
}

.not-found p {
  margin: 18px 0 24px;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.footer-main {
  padding: 46px 0 34px;
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr;
  gap: 50px;
}

.footer-brand img {
  width: 190px;
  height: 84px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  max-width: 430px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-column h2 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  text-decoration: none;
}

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

.footer-bottom {
  padding: 17px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

@media (max-width: 1080px) {
  .brand-positioning span,
  .brand-identity span {
    display: none;
  }

  .main-nav a {
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .home-intro-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .home-intro-copy {
    padding-inline: 42px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 34px), var(--max));
  }

  .brand-bar-inner {
    min-height: 68px;
  }

  .brand-link img {
    width: 168px;
    height: 56px;
  }

  .brand-positioning,
  .brand-identity {
    display: none;
  }

  .nav-bar-inner {
    min-height: 50px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 118px;
    right: 17px;
    left: 17px;
    display: none;
    color: #fff;
    background: var(--navy-950);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: grid;
    padding: 8px;
  }

  .main-nav a {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 0.78rem;
  }

  .main-nav a::after {
    right: auto;
    bottom: 8px;
    left: 13px;
    width: 28px;
  }

  .nav-contact {
    margin-left: 0;
  }

  .hero-banner-content {
    flex-direction: column;
    justify-content: space-between;
  }

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

  .credential-panel {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .credential-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .service-lane {
    grid-template-columns: 50px minmax(190px, 0.65fr) 1fr 28px;
    gap: 14px;
  }

  .perspective-grid,
  .about-grid,
  .experience-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .portrait-frame,
  .qualification-sidebar {
    position: static;
  }

  .about-grid {
    gap: 36px;
  }

  .portrait-frame {
    max-width: 360px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .shell {
    width: calc(100% - 24px);
  }

  .section {
    padding: 54px 0;
  }

  .section-compact {
    padding: 40px 0;
  }

  .brand-link img {
    width: 150px;
    height: 50px;
  }

  .nav-contact {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .hero-wrap {
    padding-top: 12px;
  }

  .hero-banner {
    min-height: 250px;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .hero-banner::before {
    inset: -34%;
    background-position: 61% 40%;
    transform: rotate(-9deg) scale(1.12);
  }

  .hero-banner::after {
    background:
      linear-gradient(
        180deg,
        rgba(3, 29, 53, 0.9) 0%,
        rgba(3, 29, 53, 0.48) 52%,
        rgba(3, 29, 53, 0.87) 100%
      ),
      linear-gradient(90deg, rgba(3, 29, 53, 0.7), rgba(3, 29, 53, 0.12));
  }

  .hero-banner-content {
    min-height: 250px;
    padding: 24px;
  }

  .hero-identity h1 {
    font-size: 1.88rem;
  }

  .availability {
    max-width: 235px;
  }

  .home-intro-grid {
    border-radius: 12px;
  }

  .home-intro-copy {
    padding: 36px 24px 32px;
  }

  .home-intro-copy h2 {
    font-size: clamp(2.25rem, 14vw, 3.5rem);
  }

  .home-intro-copy .lead {
    font-size: 1rem;
  }

  .home-intro-actions {
    display: grid;
  }

  .credential-panel {
    padding: 30px 24px;
    border-radius: 0 0 12px 12px;
  }

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

  .service-lane {
    min-height: 0;
    padding: 19px;
    grid-template-columns: 42px minmax(0, 1fr) 26px;
    gap: 11px;
  }

  .lane-summary {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .lane-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .perspective-card,
  .contact-card,
  .privacy-copy {
    padding: 27px 23px;
  }

  .image-card {
    min-height: 250px;
  }

  .cta-band {
    padding: 31px 25px;
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 255px;
  }

  .page-hero::before {
    inset: -40%;
    background-position: 62% 40%;
    transform: rotate(-9deg) scale(1.12);
  }

  .page-hero::after {
    background: linear-gradient(
      180deg,
      rgba(3, 29, 53, 0.87),
      rgba(3, 29, 53, 0.66)
    );
  }

  .page-hero .shell {
    min-height: 255px;
    padding-block: 44px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .service-detail {
    padding: 27px 22px;
  }

  .service-detail-heading {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 13px;
  }

  .service-detail-heading > span {
    width: 42px;
    height: 42px;
  }

  .service-detail > p,
  .service-detail > h3,
  .check-list {
    margin-left: 0;
  }

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

  .value-grid,
  .process-grid,
  .process-principles,
  .resource-grid,
  .qualification-sidebar,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 7px;
  }

  .timeline-item {
    padding-left: 34px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-item::before {
    left: 1px;
  }

  .timeline-date {
    text-align: left;
  }

  .timeline-copy {
    padding-bottom: 25px;
  }

  .process-step {
    min-height: 0;
    padding: 27px 23px;
  }

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

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

  .resource-card {
    min-height: 280px;
    padding: 27px 23px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 24px 0;
  }
}
