:root {
  --navy-950: #040b13;
  --navy-900: #071321;
  --navy-800: #0d2135;
  --navy-700: #153650;
  --ink: #101c28;
  --cream: #f3f0e9;
  --paper: #fbfaf7;
  --gold: #c7a45b;
  --gold-light: #e2c980;
  --white: #ffffff;
  --muted: #8fa0ae;
  --line: rgba(255, 255, 255, 0.13);
  --shell: min(1380px, calc(100vw - 80px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#services, #resources, #about, #contact { scroll-margin-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--navy-950);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--gold);
  color: var(--navy-950);
  padding: 0.75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, transform 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(4, 11, 19, 0.9);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(199, 164, 91, 0.2);
}
.header-shell {
  width: var(--shell);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand-type { display: grid; line-height: 1; }
.brand-type strong { font-family: var(--serif); font-size: 1.65rem; letter-spacing: 0.12em; }
.brand-type small { margin-top: 7px; color: rgba(255, 255, 255, 0.54); font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(22px, 2.2vw, 40px); }
.primary-nav > a:not(.button) {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.primary-nav > a:hover, .primary-nav > a.is-active { color: var(--white); }
.primary-nav > a:hover::after, .primary-nav > a.is-active::after { right: 0; }
.menu-toggle { display: none; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 27px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #08131e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.button:hover { background: var(--gold-light); transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.button-small { min-height: 43px; padding-inline: 20px; font-size: 0.61rem; }
.button-ghost { background: rgba(4, 11, 19, 0.18); color: var(--white); border-color: rgba(255, 255, 255, 0.45); backdrop-filter: blur(8px); }
.button-ghost:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }

.hero {
  position: relative;
  min-height: 900px;
  height: max(100svh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero-background {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(4, 11, 19, 0.97) 0%, rgba(4, 11, 19, 0.86) 37%, rgba(4, 11, 19, 0.42) 67%, rgba(4, 11, 19, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 11, 19, 0.8) 0%, transparent 42%),
    url("assets/approved-gulfstream-clouds.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
  animation: hero-drift 18s ease-in-out infinite alternate;
}
@keyframes hero-drift { to { transform: scale(1.045) translateX(-0.5%); } }
.radar-grid {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -210px;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transform: translateY(-49%);
  background: repeating-radial-gradient(circle, transparent 0 79px, rgba(255,255,255,.055) 80px 81px);
}
.radar-grid::before, .radar-grid::after { content: ""; position: absolute; background: rgba(255,255,255,.06); }
.radar-grid::before { width: 1px; height: 100%; left: 50%; }
.radar-grid::after { height: 1px; width: 100%; top: 50%; }
.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 8vw;
  align-items: end;
}
.hero-copy { max-width: 860px; }
.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow > span { width: 38px; height: 1px; background: var(--gold); }
.eyebrow-dark { color: #8c6d2f; }
.hero h1, .section-heading h2, .why h2, .final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
}
.hero h1 { max-width: 850px; font-size: clamp(4.7rem, 7.9vw, 8rem); }
.hero h1 em, .section-heading h2 em, .why h2 em, .final-cta h2 em { color: var(--gold-light); font-weight: 500; }
.hero-lede { max-width: 650px; margin: 30px 0 0; color: rgba(255, 255, 255, 0.76); font-size: clamp(1rem, 1.4vw, 1.22rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 42px; }
.flight-card {
  align-self: center;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 11, 19, 0.53);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(15px);
}
.flight-card-top { display: flex; justify-content: space-between; color: rgba(255, 255, 255, 0.54); font-size: 0.54rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.live-dot { display: flex; align-items: center; gap: 7px; color: var(--gold-light); }
.live-dot::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(199,164,91,.15); }
.flight-card-mark { margin: 26px 0 19px; display: flex; align-items: center; justify-content: space-between; border-block: 1px solid var(--line); padding: 18px 0; }
.flight-card-mark span { font-family: var(--serif); font-size: 2.25rem; letter-spacing: 0.12em; }
.flight-card-mark svg { width: 105px; fill: var(--gold); }
.flight-card > p { color: rgba(255, 255, 255, 0.66); font-size: 0.75rem; line-height: 1.7; }
.flight-card dl { margin: 20px 0 0; }
.flight-card dl div { padding: 9px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 0.63rem; }
.flight-card dt { color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.flight-card dd { margin: 0; color: rgba(255,255,255,.85); }
.promise-bar {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  min-height: 90px;
  padding: 0 max(40px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.13);
  background: rgba(4, 11, 19, 0.62);
  backdrop-filter: blur(12px);
}
.promise-bar p { margin: 0; min-height: 90px; display: flex; align-items: center; gap: 17px; border-right: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.66); font-family: var(--serif); font-size: 1.15rem; }
.promise-bar p:nth-child(2), .promise-bar p:nth-child(3) { padding-left: 34px; }
.promise-bar p:last-child { border: 0; }
.promise-bar span { color: var(--gold); font-family: var(--sans); font-size: .56rem; font-weight: 700; letter-spacing: .15em; }
.promise-bar .promise-emphasis { color: var(--white); }

.trust-strip { position: relative; z-index: 3; background: var(--paper); border-bottom: 1px solid #dedbd3; }
.trust-track { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); }
.trust-track article { min-height: 122px; padding: 23px 18px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid #ddd9d0; }
.trust-track article:first-child { border-left: 1px solid #ddd9d0; }
.trust-track strong { color: var(--navy-800); font-family: var(--serif); font-size: 1.72rem; font-weight: 600; line-height: 1; }
.trust-track span { margin-top: 9px; color: #64717b; font-size: .58rem; font-weight: 700; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }

.section-light { background: var(--cream); }
.section-shell { width: var(--shell); margin: 0 auto; }
.services { padding: 130px 0 150px; }
.section-heading { margin-bottom: 72px; display: grid; grid-template-columns: 1fr 410px; gap: 80px; align-items: end; }
.section-heading h2 { color: var(--navy-900); font-size: clamp(3.2rem, 5.6vw, 5.8rem); }
.section-heading h2 em { color: #9a7532; }
.section-heading > p { margin: 0 0 5px; color: #67727b; font-size: .95rem; line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #cfc9bd; border-left: 1px solid #cfc9bd; }
.service-card { position: relative; min-height: 570px; padding: 54px; overflow: hidden; border-right: 1px solid #cfc9bd; border-bottom: 1px solid #cfc9bd; background: rgba(255,255,255,.2); transition: background .35s ease, color .35s ease; }
.service-card::before { content: ""; position: absolute; inset: auto -120px -120px auto; width: 280px; height: 280px; border: 1px solid rgba(15,38,58,.1); border-radius: 50%; box-shadow: 0 0 0 45px rgba(15,38,58,.025), 0 0 0 90px rgba(15,38,58,.018); transition: transform .5s ease; }
.service-card::after { content: ""; position: absolute; z-index: 0; inset: 0 0 auto auto; width: 52%; height: 48%; background: linear-gradient(90deg, rgba(243,240,233,1), rgba(243,240,233,.12)), var(--service-image) center / cover no-repeat; opacity: .11; filter: saturate(.7); transition: opacity .45s ease, filter .45s ease, transform .65s ease; transform: scale(1.03); }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { color: var(--white); background: var(--navy-800); }
.service-card:hover::before { border-color: rgba(199,164,91,.2); transform: scale(1.12); }
.service-card:hover::after { background-image: linear-gradient(90deg, rgba(13,33,53,1), rgba(13,33,53,.14)), var(--service-image); opacity: .36; filter: saturate(.9); transform: scale(1.08); }
.service-number { position: absolute; right: 36px; top: 25px; color: #a4a29c; font-size: .6rem; font-weight: 800; letter-spacing: .18em; }
.service-icon { width: 70px; height: 70px; display: grid; place-items: center; border: 1px solid #bdb5a7; border-radius: 50%; color: #8b6b30; transition: border-color .35s, background .35s; }
.service-card:hover .service-icon { background: rgba(199,164,91,.1); border-color: var(--gold); color: var(--gold-light); }
.service-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.25; }
.service-label { margin: 38px 0 11px; color: #8d713e; font-size: .61rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-card:hover .service-label { color: var(--gold-light); }
.service-card h3 { max-width: 440px; margin: 0; color: var(--navy-900); font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); font-weight: 600; line-height: 1.05; transition: color .35s; }
.service-card:hover h3 { color: var(--white); }
.service-card > p:not(.service-label) { max-width: 520px; margin: 22px 0 0; color: #68727a; font-size: .84rem; line-height: 1.8; transition: color .35s; }
.service-card:hover > p:not(.service-label) { color: rgba(255,255,255,.65); }
.service-card ul { margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; }
.service-card li { color: #46545f; font-size: .66rem; font-weight: 700; }
.service-card li::before { content: "+"; margin-right: 7px; color: #9a7532; }
.service-card:hover li { color: rgba(255,255,255,.72); }
.service-card > a { position: absolute; left: 54px; bottom: 45px; padding-bottom: 7px; border-bottom: 1px solid #9e9687; color: var(--navy-900); font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .35s, border-color .35s; }
.service-card > a span { margin-left: 9px; color: #99742e; }
.service-card:hover > a { color: var(--white); border-color: var(--gold); }

.why { display: grid; grid-template-columns: minmax(0, 1fr) minmax(560px, .95fr); min-height: 960px; background: var(--navy-900); color: var(--white); }
.why-image { position: relative; width: calc(100% - clamp(45px, 7vw, 115px)); min-height: 0; aspect-ratio: 16 / 9; align-self: center; justify-self: start; margin-left: clamp(30px, 4vw, 75px); overflow: visible; border: 1px solid rgba(199,164,91,.25); background: #0a1927; box-shadow: 0 32px 90px rgba(0,0,0,.28); }
.why-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,11,19,.28), transparent 38%); pointer-events: none; }
.why-image > img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: saturate(.78) contrast(1.04); }
.image-coordinates { position: absolute; z-index: 2; left: 38px; top: 35px; display: grid; color: rgba(255,255,255,.58); font-size: .52rem; font-weight: 700; letter-spacing: .14em; }
.experience-seal { position: absolute; z-index: 2; right: -34px; bottom: -62px; width: 190px; height: 190px; display: flex; align-items: center; justify-content: center; gap: 15px; border: 1px solid rgba(199,164,91,.6); border-radius: 50%; background: rgba(7,19,33,.92); backdrop-filter: blur(10px); }
.experience-seal::before { content: ""; position: absolute; inset: 9px; border: 1px dashed rgba(199,164,91,.35); border-radius: 50%; }
.experience-seal strong { font-family: var(--serif); font-size: 4.1rem; font-weight: 500; line-height: 1; color: var(--gold-light); }
.experience-seal span { color: rgba(255,255,255,.65); font-size: .54rem; font-weight: 700; letter-spacing: .11em; line-height: 1.6; text-transform: uppercase; }
.why-copy { padding: 130px clamp(50px, 8vw, 145px) 110px clamp(50px, 6vw, 110px); }
.why h2 { max-width: 700px; font-size: clamp(3.2rem, 5.1vw, 5.5rem); }
.why-intro { max-width: 660px; margin: 40px 0 16px; color: var(--white) !important; font-family: var(--serif); font-size: 1.45rem !important; line-height: 1.45 !important; }
.why-copy > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.58); font-size: .84rem; line-height: 1.85; }
.risk-list { margin-top: 38px; border-top: 1px solid var(--line); }
.risk-list div { padding: 16px 0; display: flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.risk-list span { color: var(--gold); font-size: .53rem; font-weight: 800; }
.risk-list p { margin: 0; color: rgba(255,255,255,.8); font-family: var(--serif); font-size: 1.08rem; }
blockquote { margin: 38px 0 0; padding: 0; }
blockquote > p { margin: 0; color: var(--gold-light); font-family: var(--serif); font-size: 1.25rem; font-style: italic; line-height: 1.5; }
blockquote footer { margin-top: 20px; display: flex; align-items: center; gap: 13px; }
blockquote img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: top; filter: grayscale(1); }
blockquote span { display: grid; color: rgba(255,255,255,.38); font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; }
blockquote strong { color: rgba(255,255,255,.85); font-size: .65rem; }

.resources { position: relative; padding: 140px 0 150px; overflow: hidden; color: var(--white); background: #0b1c2c; }
.resources::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #0b1c2c 34%, rgba(11,28,44,.76), #0b1c2c), url("assets/approved-g700-clouds.png") 74% center / cover no-repeat; opacity: .12; filter: saturate(.55); }
.resources .section-shell { position: relative; z-index: 1; }
.section-heading-dark h2 { color: var(--white); }
.section-heading-dark > p { color: rgba(255,255,255,.53); }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-card { position: relative; min-height: 480px; padding: 32px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.025); transition: transform .35s, border-color .35s, background .35s; }
.resource-card:hover { transform: translateY(-8px); border-color: rgba(199,164,91,.65); background: rgba(255,255,255,.05); }
.resource-featured { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
.resource-featured:hover { background: var(--gold-light); }
.resource-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: .53rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.resource-featured .resource-top { color: rgba(7,19,33,.58); }
.resource-top span:last-child { font-size: 1.1rem; color: var(--gold); }
.resource-featured .resource-top span:last-child { color: var(--navy-900); }
.resource-icon { margin: 57px 0 42px; width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid rgba(199,164,91,.6); border-radius: 50%; color: var(--gold-light); font-family: var(--serif); font-size: 2.2rem; }
.resource-featured .resource-icon { border-color: rgba(7,19,33,.35); color: var(--navy-900); }
.resource-card h3 { margin: 0; max-width: 350px; font-family: var(--serif); font-size: 2.45rem; font-weight: 600; line-height: 1.05; }
.resource-card p { margin: 18px 0 25px; color: rgba(255,255,255,.55); font-size: .78rem; line-height: 1.8; }
.resource-featured p { color: rgba(7,19,33,.7); }
.resource-card strong { margin-top: auto; font-size: .59rem; letter-spacing: .1em; text-transform: uppercase; }

.final-cta { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; color: var(--white); }
.final-cta-image { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(4,11,19,.96), rgba(4,11,19,.72) 50%, rgba(4,11,19,.3)), url("assets/approved-aerial-jet.jpg"); background-size: cover; background-position: center 42%; }
.final-cta-image::after { content: ""; position: absolute; inset: 30px; border: 1px solid rgba(255,255,255,.13); pointer-events: none; }
.final-cta-content { position: relative; z-index: 2; width: min(1120px, calc(100vw - 100px)); text-align: center; }
.final-cta-content .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(3.6rem, 6.4vw, 7rem); }
.final-cta-content > p:not(.eyebrow) { max-width: 650px; margin: 32px auto 0; color: rgba(255,255,255,.68); }
.cta-actions { margin-top: 42px; display: flex; justify-content: center; align-items: center; gap: 35px; }
.contact-link { display: grid; text-align: left; color: var(--white); font-family: var(--serif); font-size: 1.18rem; }
.contact-link small { color: var(--gold-light); font-family: var(--sans); font-size: .49rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.site-footer { padding: 80px max(40px, calc((100vw - 1380px) / 2)) 25px; color: var(--white); background: var(--navy-950); }
.footer-main { padding-bottom: 65px; display: grid; grid-template-columns: 1fr 1.25fr; gap: 100px; }
.footer-brand { display: flex; gap: 25px; align-items: center; }
.footer-brand img { flex: 0 0 auto; }
.footer-brand strong { font-family: var(--serif); font-size: 1.7rem; letter-spacing: .11em; }
.footer-brand p { max-width: 410px; margin: 9px 0 0; color: rgba(255,255,255,.45); font-size: .72rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links div { display: flex; flex-direction: column; gap: 8px; }
.footer-links p { margin: 0 0 12px; color: var(--gold); font-size: .53rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.55); font-size: .68rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 22px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; border-top: 1px solid var(--line); color: rgba(255,255,255,.35); font-size: .56rem; letter-spacing: .05em; }
.footer-bottom p { margin: 0; }
.footer-bottom strong { color: var(--gold-light); }
.footer-bottom a { justify-self: end; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.service-card:nth-child(2), .resource-card:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3), .resource-card:nth-child(3) { transition-delay: .16s; }
.service-card:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1100px); }
  .primary-nav { gap: 20px; }
  .primary-nav > a:not(.button) { font-size: .61rem; }
  .hero-shell { grid-template-columns: 1fr 300px; gap: 45px; }
  .flight-card { padding: 20px; }
  .why { grid-template-columns: .9fr 1.1fr; }
  .why-copy { padding-inline: 55px; }
  .trust-track { grid-template-columns: repeat(3, 1fr); }
  .trust-track article:nth-child(4) { border-left: 1px solid #ddd9d0; }
  .trust-track article { border-bottom: 1px solid #ddd9d0; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100vw - 40px); }
  .header-shell { height: 78px; }
  .brand img { width: 52px; height: 52px; }
  .brand-type strong { font-size: 1.4rem; }
  .menu-toggle { position: relative; z-index: 3; width: 48px; height: 48px; padding: 0; display: grid; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.25); background: transparent; }
  .menu-toggle span { width: 21px; height: 1px; background: var(--white); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; padding: 130px 34px 45px; flex-direction: column; align-items: flex-start; gap: 8px; background: rgba(4,11,19,.98); transform: translateX(100%); visibility: hidden; transition: transform .35s ease, visibility .35s; }
  .primary-nav.is-open { transform: none; visibility: visible; }
  .primary-nav > a:not(.button) { width: 100%; padding: 13px 0; font-family: var(--serif); font-size: 2rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .primary-nav .button { margin-top: 20px; }
  .hero { min-height: 850px; height: auto; padding: 170px 0 160px; }
  .hero-background { background-position: 65% center; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(4rem, 12vw, 6.5rem); }
  .flight-card { display: none; }
  .promise-bar { grid-template-columns: 1fr; padding: 0 20px; }
  .promise-bar p { min-height: 48px; padding: 0 !important; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .96rem; }
  .promise-bar p:last-child { border-bottom: 0; }
  .trust-track { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .trust-track article, .trust-track article:nth-child(4) { min-height: 105px; border-left: 0; }
  .trust-track article:nth-child(odd) { border-left: 1px solid #ddd9d0; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-heading > p { max-width: 570px; }
  .service-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .why-image { width: calc(100% - 48px); min-height: 0; aspect-ratio: 16 / 10; margin: 55px auto 15px; justify-self: center; }
  .why-image::after { background: linear-gradient(0deg, rgba(4,11,19,.35), transparent 45%); }
  .experience-seal { bottom: -48px; right: 20px; }
  .why-copy { padding: 80px 30px 100px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 410px; }
  .resource-icon { margin-block: 38px 28px; }
  .cta-actions { flex-wrap: wrap; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom a { justify-self: start; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100vw - 30px); }
  .brand-type small { display: none; }
  .hero { min-height: 800px; padding-top: 135px; }
  .hero-background { background-image: linear-gradient(90deg, rgba(4,11,19,.95), rgba(4,11,19,.5)), linear-gradient(0deg, rgba(4,11,19,.9), transparent 45%), url("assets/approved-g700-clouds.png"); background-position: 58% center; }
  .hero h1 { font-size: clamp(3.65rem, 17.5vw, 5rem); }
  .hero-lede { font-size: .92rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; padding-inline: 18px; }
  .trust-track article { padding: 18px 13px; }
  .trust-track strong { font-size: 1.45rem; }
  .trust-track span { font-size: .49rem; }
  .services, .resources { padding: 90px 0; }
  .section-heading { margin-bottom: 45px; }
  .section-heading h2, .why h2 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .service-card { min-height: 560px; padding: 36px 28px; }
  .service-card > a { left: 28px; bottom: 35px; }
  .why-image { width: calc(100% - 30px); min-height: 0; aspect-ratio: 4 / 3; margin-top: 35px; }
  .experience-seal { width: 150px; height: 150px; }
  .experience-seal strong { font-size: 3rem; }
  .experience-seal span { font-size: .45rem; }
  .image-coordinates { left: 18px; top: 18px; }
  .why-copy { padding: 70px 22px 85px; }
  .resource-card { padding: 27px; }
  .final-cta { min-height: 760px; padding: 100px 0; }
  .final-cta-image::after { inset: 14px; }
  .final-cta-content { width: calc(100vw - 44px); }
  .final-cta h2 { font-size: clamp(3.15rem, 14vw, 4.8rem); }
  .cta-actions { flex-direction: column; gap: 22px; }
  .contact-link { text-align: center; }
  .site-footer { padding: 65px 20px 25px; }
  .footer-brand { align-items: flex-start; }
  .footer-brand img { width: 72px; height: 72px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links div:last-child { grid-column: 1 / -1; }
}

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