/* Working identity tokens. Provenance and approval: docs/brand-assets.md. */
:root {
  color-scheme: light;
  --paper: #f6f5ef;
  --white: #fdfcf8;
  --ink: #272d22;
  --olive: #4d5739;
  --deep: #303927;
  --sage: #dfe3d4;
  --muted: #606458;
  --line: #d6d8cc;
  --sand: #e9e4d7;
  --font: Arial, Helvetica, sans-serif;
  --width: 1320px;
  --gutter: clamp(22px, 5vw, 76px);
  --section: clamp(72px, 8vw, 120px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.06;
}
p + p {
  margin-top: 16px;
}
h1 {
  font-size: clamp(52px, 6.45vw, 94px);
  letter-spacing: -0.062em;
}
h2 {
  font-size: clamp(36px, 4vw, 57px);
  letter-spacing: -0.052em;
}
h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
}
em {
  font-style: normal;
  color: var(--olive);
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--sage);
  color: var(--deep);
}
:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 6px;
  border-radius: 2px;
}
.wrap {
  width: min(calc(100% - var(--gutter) * 2), var(--width));
  margin-inline: auto;
}
.section {
  padding-block: var(--section);
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 13px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 20px;
  background: var(--deep);
  color: var(--paper);
  z-index: 100;
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 20px;
}
.eyebrow > span {
  font-weight: 400;
  color: var(--muted);
}
.section > .eyebrow,
.section > .wrap > .eyebrow {
  margin-bottom: 36px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  line-height: 1.5;
}
.text-link span[aria-hidden] {
  transition: transform 0.2s;
  font-size: 20px;
  line-height: 1;
}
.text-link:hover span[aria-hidden] {
  transform: translate(3px, -3px);
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  background: var(--deep);
  color: var(--paper);
  padding: 15px 24px;
}
.button:hover {
  background: var(--olive);
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  gap: 36px;
}
.brand {
  flex-shrink: 0;
  display: block;
}
.brand img {
  width: 158px;
  height: auto;
}
.site-header nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 13px;
}
.site-header nav a {
  padding-block: 12px;
}
.site-header nav a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.site-header .nav-contact {
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--deep);
  padding: 11px 20px;
  color: var(--paper);
}
.nav-contact span {
  font-size: 19px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 14px;
  color: var(--ink);
}
.hero {
  padding-top: 45px;
}
.hero > .eyebrow {
  margin-bottom: 30px;
}
.hero-heading {
  display: grid;
  grid-template-columns: 1fr 270px;
  align-items: end;
  gap: 50px;
  margin-bottom: 46px;
}
.hero h1 {
  font-size: clamp(49px, 5.6vw, 82px);
}
.hero-aside {
  padding-bottom: 6px;
}
.hero-aside p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.hero-aside .text-link {
  margin-top: 20px;
}
.hero-image {
  position: relative;
  height: clamp(320px, 32vw, 470px);
  overflow: hidden;
  background: var(--sand);
}
.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.hero-image:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(32, 36, 22, 0.45));
  pointer-events: none;
}
.hero-image figcaption {
  position: absolute;
  bottom: 26px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #fff;
  z-index: 1;
}
.hero-image figcaption > span {
  font-size: 11px;
  letter-spacing: 0.13em;
  line-height: 1.75;
}
.hero-image figcaption a {
  border: 1px solid #ffffff99;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
}
.hero-foot {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  padding-top: 15px;
}
.hero-foot span:last-child {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}
.section-heading > p,
.section-heading > div {
  max-width: 320px;
  color: var(--muted);
  font-size: 15px;
}
.section-heading > div > .text-link {
  margin-top: 16px;
  color: var(--ink);
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.capabilities article {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  display: flex;
  flex-direction: column;
}
.capability-number {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
  color: var(--muted);
}
.capability-number span {
  font-size: 24px;
  color: var(--olive);
  line-height: 1;
}
.capabilities h3 {
  margin-bottom: 20px;
}
.capabilities article > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 335px;
}
.capabilities article .capability-tags {
  margin-top: auto;
  padding-top: 36px;
  font-size: 10px;
  letter-spacing: 0.02em;
}
.ventures-section {
  background: var(--sand);
}
.venture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.venture-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.venture-content {
  padding: 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.venture-content > .eyebrow {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 26px;
}
.venture-content h3 {
  height: 53px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.venture-logo {
  width: 150px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}
.venture-fabriq .venture-logo {
  width: 160px;
}
.venture-reah .venture-logo {
  width: 190px;
}
.venture-line {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.venture-content .muted {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 0;
}
.venture-units {
  font-size: 10px;
  color: var(--muted);
  margin-top: 15px;
}
.venture-content .text-link {
  margin-top: auto;
  padding-top: 26px;
  align-self: flex-start;
  font-size: 12px;
  gap: 24px;
}
.wordmark-hangr {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.wordmark-aircraft-parts {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.art-index {
  color: var(--ink);
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 8px;
  letter-spacing: 0.13em;
}
.next-venture {
  padding: 30px;
  background: var(--deep);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 420px;
}
.next-venture .eyebrow {
  color: #cbd0bd;
}
.next-symbol {
  font-size: 120px;
  font-weight: 400;
  line-height: 1.2;
  color: #b4c19b;
  margin: 30px 0 20px;
}
.next-venture h3 {
  font-size: 38px;
  line-height: 1.08;
}
.next-venture .text-link {
  margin-top: auto;
  padding-top: 28px;
  font-size: 12px;
}
.people-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.section-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 570px;
  margin-top: 26px;
}
.people-layout > div > .text-link {
  margin-top: 28px;
}
.leader {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}
.leader-portrait {
  aspect-ratio: 4/5;
  background: var(--sage);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-portrait:before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid #abb49a;
}
.leader-monogram {
  font-size: 74px;
  letter-spacing: -0.07em;
  color: #4d5b3e;
}
.leader-caption {
  position: absolute;
  bottom: 31px;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.leader-details h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.leader-details .eyebrow {
  font-size: 10px;
}
.leader-details > p:last-child {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 22px;
}
.leader-list {
  display: grid;
  gap: 30px;
}
.sun {
  position: absolute;
  width: 53%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #b4ae83;
  right: -4%;
  top: 8%;
}
.career-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.venture-names {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.venture-names > span {
  font-size: 12px;
  color: #929984;
}
.career-strip > a {
  font-size: 12px;
  display: flex;
  gap: 26px;
  white-space: nowrap;
}
.contact-section {
  background: #e3e7d9;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.contact-grid article {
  border-top: 1px solid #bec6b0;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.small-index {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 25px;
}
.contact-grid h3 {
  font-size: 24px;
  line-height: 1.2;
}
.contact-question {
  font-size: 14px;
  margin-top: 24px;
}
.contact-grid article > p:not(.contact-question) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-grid .text-link {
  margin-top: auto;
  padding-top: 30px;
  align-self: flex-start;
}
.contact-grid .channel-status {
  margin-top: auto;
  padding-top: 30px;
  font-size: 11px !important;
}
.contact-email {
  display: inline-flex;
  gap: 60px;
  font-size: clamp(23px, 4vw, 48px);
  letter-spacing: -0.04em;
  border-bottom: 1px solid var(--olive);
  margin-top: 50px;
}
.site-footer {
  background: var(--deep);
  color: var(--paper);
  padding-top: 52px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 52px;
}
.footer-top p {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-right: auto;
  margin-left: 60px;
}
.footer-top > a:last-child {
  font-size: 11px;
  display: flex;
  gap: 35px;
}
.footer-bottom {
  border-top: 1px solid #ffffff26;
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #c8cfbd;
  font-size: 10px;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.page-hero {
  padding-block: 76px 70px;
}
.page-hero .eyebrow {
  margin-bottom: 34px;
}
.page-hero .text-link {
  margin-top: 24px;
}
.jobs-section {
  padding-bottom: 80px;
}
.jobs-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.jobs-heading h2 {
  font-size: 30px;
  letter-spacing: -0.04em;
}
.job-count {
  font-size: 12px;
  color: var(--muted);
}
.job-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 30px;
}
.job-filters button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  border-radius: 30px;
  min-height: 44px;
}
.job-filters button:hover {
  border-color: var(--olive);
}
.job-filters button[aria-pressed="true"] {
  background: var(--deep);
  color: var(--paper);
  border-color: var(--deep);
}
.jobs-empty {
  padding: 60px 35px;
  background: var(--sand);
  text-align: center;
  margin-top: 30px;
}
.empty-symbol {
  display: inline-block;
  font-size: 54px;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 25px;
}
.jobs-empty h3 {
  font-size: 29px;
}
.jobs-empty p {
  max-width: 490px;
  margin: 20px auto;
  color: var(--muted);
  font-size: 14px;
}
.job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.job-row h3 {
  margin-top: 10px;
}
.job-row h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.job-row p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.round-link {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.career-values {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.career-values .eyebrow {
  margin-bottom: 30px;
}
.career-values > div > h3 {
  font-size: 23px;
  margin-bottom: 14px;
}
.career-values > div > p + h3 {
  margin-top: 34px;
}
.career-values > div > p {
  color: var(--muted);
  font-size: 15px;
}
.prose {
  max-width: 800px;
  padding-block: 80px 110px;
  min-height: 70vh;
}
.prose > h1 {
  font-size: clamp(48px, 6vw, 76px);
  margin: 22px 0 40px;
}
.prose > h2 {
  font-size: 27px;
  letter-spacing: -0.03em;
  margin: 35px 0 15px;
}
.prose > p,
.prose li {
  color: var(--muted);
  line-height: 1.8;
}
.prose p a,
.prose li a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.prose .button {
  margin: 25px 0;
}
.prose > .eyebrow {
  margin-top: 30px;
}
.legal-details,
.job-facts {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px 30px;
  margin: 30px 0;
}
.legal-details dt,
.job-facts dt {
  font-size: 13px;
  color: var(--muted);
}
.legal-details dd,
.job-facts dd {
  margin: 0;
  white-space: pre-line;
}
.prose li {
  margin-bottom: 10px;
}
.error-page {
  min-height: 65vh;
}
.error-page > p:not(.eyebrow) {
  margin-block: 25px;
}
@media (min-width: 1600px) {
  .hero h1 {
    font-size: 86px;
  }
}
@media (max-width: 1100px) {
  .site-header nav {
    gap: 20px;
  }
  .hero-heading {
    grid-template-columns: 1fr 235px;
    gap: 28px;
  }
  .hero h1 {
    font-size: 5.4vw;
  }
  .venture-grid {
    gap: 16px;
  }
  .venture-content {
    padding: 24px;
  }
  .venture-content h3 {
    height: 45px;
  }
  .venture-content .text-link {
    gap: 12px;
  }
  .people-layout {
    gap: 55px;
  }
  .leader {
    grid-template-columns: 1fr;
    align-items: start;
    max-width: 300px;
    margin-left: auto;
  }
  .leader-portrait {
    aspect-ratio: 1.2;
  }
  .leader-details > p:last-child {
    margin-top: 12px;
  }
  .contact-grid {
    gap: 30px;
  }
  .venture-names {
    gap: 12px;
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .site-header {
    min-height: 90px;
    position: relative;
    flex-wrap: wrap;
    padding-block: 20px;
    gap: 20px;
  }
  .brand img {
    width: 139px;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
    gap: 22px;
    align-items: center;
  }
  .site-header nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 10px;
  }
  .site-header:has(.menu-toggle:not([hidden])) nav:not(.is-open) {
    display: none;
  }
  .site-header nav a {
    padding: 14px 0;
  }
  .site-header nav .nav-contact {
    margin-top: 10px;
    justify-content: space-between;
    padding: 14px 20px;
  }
  .hero {
    padding-top: 32px;
  }
  .hero-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 30px;
  }
  .hero h1 {
    font-size: clamp(43px, 7.6vw, 66px);
  }
  .hero-aside {
    display: flex;
    gap: 30px;
    align-items: end;
    justify-content: space-between;
  }
  .hero-aside p {
    max-width: 390px;
    font-size: 14px;
  }
  .hero-aside .text-link {
    margin: 0;
    flex-shrink: 0;
    font-size: 12px;
    gap: 15px;
  }
  .hero-image {
    height: 350px;
  }
  .section-heading {
    gap: 28px;
    align-items: start;
    flex-direction: column;
    margin-bottom: 34px;
  }
  .section-heading > p,
  .section-heading > div {
    max-width: 500px;
  }
  .capabilities {
    gap: 25px;
  }
  .capabilities h3 {
    font-size: 23px;
  }
  .capabilities article > p {
    font-size: 13px;
  }
  .capability-tags {
    line-height: 1.8;
  }
  .venture-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .venture-content {
    padding: 25px;
  }
  .people-layout {
    gap: 50px;
    grid-template-columns: 1.15fr 1fr;
  }
  .leader {
    max-width: none;
  }
  .leader-monogram {
    font-size: 66px;
  }
  .career-strip {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .contact-grid {
    gap: 24px;
  }
  .contact-grid h3 {
    font-size: 22px;
  }
  .footer-top p {
    margin-left: 20px;
    font-size: 22px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
  .career-values {
    gap: 50px;
  }
  .prose {
    padding-top: 50px;
  }
}
@media (max-width: 560px) {
  .hero > .eyebrow {
    font-size: 8px;
    gap: 12px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(38px, 9.6vw, 53px);
    line-height: 1.05;
  }
  .hero h1 br {
    display: none;
  }
  .hero-aside {
    display: block;
  }
  .hero-aside p {
    font-size: 14px;
    max-width: 340px;
  }
  .hero-aside .text-link {
    margin-top: 16px;
  }
  .hero-image {
    height: 310px;
  }
  .hero-image > img {
    object-position: 65% center;
  }
  .hero-image figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .hero-image figcaption > span {
    font-size: 8px;
  }
  .hero-image figcaption a {
    width: 42px;
    height: 42px;
  }
  .hero-foot {
    font-size: 10px;
  }
  .hero-foot > span:last-child {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    gap: 16px;
  }
  .section > .eyebrow,
  .section > .wrap > .eyebrow {
    margin-bottom: 26px;
  }
  h2 {
    font-size: 37px;
  }
  .capabilities {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .capability-number {
    margin-bottom: 20px;
  }
  .capabilities h3 {
    font-size: 27px;
    margin-bottom: 14px;
  }
  .capabilities article > p {
    font-size: 14px;
    max-width: none;
  }
  .capabilities article .capability-tags {
    padding-top: 20px;
    font-size: 10px;
  }
  .venture-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .venture-content {
    padding: 27px;
  }
  .venture-content > .eyebrow {
    margin-bottom: 20px;
  }
  .venture-content h3 {
    margin-bottom: 20px;
  }
  .venture-content .muted {
    font-size: 14px;
  }
  .next-venture {
    min-height: 355px;
  }
  .next-symbol {
    font-size: 95px;
    margin: 16px 0;
  }
  .people-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .leader {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .leader-portrait {
    aspect-ratio: 0.8;
  }
  .leader-monogram {
    font-size: 62px;
  }
  .leader-details h3 {
    font-size: 24px;
  }
  .leader-portrait:before {
    inset: 14px;
  }
  .leader-caption {
    font-size: 7px;
    bottom: 22px;
  }
  .venture-names {
    gap: 12px;
    font-size: 14px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-grid article {
    padding-top: 20px;
  }
  .small-index {
    margin-bottom: 17px;
  }
  .contact-grid h3 {
    font-size: 27px;
  }
  .contact-question {
    margin-top: 20px;
  }
  .contact-grid article > p:not(.contact-question) {
    font-size: 14px;
  }
  .contact-grid .text-link,
  .contact-grid .channel-status {
    padding-top: 20px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 35px;
  }
  .footer-top p {
    width: 100%;
    order: 2;
    margin: 0;
    font-size: 25px;
  }
  .footer-top > a:last-child {
    margin-left: auto;
    padding-top: 10px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 18px;
  }
  .footer-bottom > div {
    gap: 24px;
  }
  .page-hero {
    padding-block: 50px;
  }
  .page-hero h1 {
    font-size: 50px;
  }
  .page-hero .eyebrow {
    font-size: 8px;
    gap: 12px;
  }
  .section-intro {
    font-size: 16px;
  }
  .jobs-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .job-filters {
    gap: 8px;
  }
  .job-filters button {
    padding: 9px 12px;
    font-size: 11px;
  }
  .jobs-empty {
    padding: 35px 24px;
  }
  .jobs-empty h3 {
    font-size: 26px;
  }
  .career-values {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .job-row h3 {
    font-size: 22px;
    line-height: 1.2;
  }
  .legal-details,
  .job-facts {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .legal-details dd,
  .job-facts dd {
    margin-bottom: 17px;
  }
  .prose > h1 {
    font-size: 47px;
  }
  .prose > h2 {
    font-size: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Dedicated pages share the original brand tokens and static layout. */
.site-header nav a[aria-current="page"] {
  color: var(--olive);
  box-shadow: inset 0 -2px var(--olive);
}
.hero-image > img {
  object-position: center;
}
.home-paths,
.advisory-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding-block: 65px 80px;
}
.home-paths article,
.advisory-services article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.home-paths h2,
.advisory-services h2,
.capabilities h2 {
  font-size: 30px;
  margin: 24px 0 18px;
  letter-spacing: -0.04em;
}
.home-paths p,
.advisory-services p {
  color: var(--muted);
}
.home-paths .text-link {
  margin-top: 18px;
}
.portfolio-section {
  padding-bottom: 80px;
}
.venture-media {
  position: relative;
  height: 220px;
  background: var(--sage);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.venture-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venture-media .art-index {
  color: var(--ink);
  background: var(--paper);
  padding: 3px 7px;
}
.venture-reah .venture-media {
  background: #0f172a;
  color: #e2e8f0;
}
.reah-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reah-lockup > img {
  width: 70px;
  height: auto;
}
.reah-lockup > span {
  font: 600 30px monospace;
  letter-spacing: 0.18em;
}
.reah-lockup small {
  display: block;
  font:
    500 10px Arial,
    sans-serif;
  letter-spacing: 0.28em;
  margin-top: 8px;
}
.portfolio-lettering {
  font-size: 30px;
  letter-spacing: -0.04em;
}
.venture-fabriq .venture-media {
  background: #e4ded2;
}
.venture-hangr .venture-media {
  background: var(--deep);
  color: var(--paper);
}
.venture-aircraft-parts .venture-media {
  background: #d9dedf;
}
.advisory-lead {
  border-left: 3px solid var(--olive);
  padding: 8px 0 8px 30px;
}
.advisory-lead > p:not(.eyebrow) {
  font-size: 21px;
  max-width: 780px;
  margin-top: 18px;
}
.advisory-lead .text-link {
  margin-top: 14px;
}
.advisory-outcome {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 28px;
}
.advisory-outcome span {
  display: block;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 48px;
}
.contact-section h1 {
  font-size: clamp(44px, 5vw, 72px);
}
.emirate-picker {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.emirate-picker label {
  font-weight: 500;
}
.emirate-picker select {
  font: inherit;
  padding: 13px 42px 13px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--olive);
  border-radius: 0;
  min-width: 220px;
}
.emirate-picker > span {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.emirate-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
}
.emirate-title {
  background: var(--deep);
  color: var(--paper);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}
.emirate-title h2 {
  margin-block: 40px;
  font-size: clamp(40px, 4vw, 60px);
}
.emirate-title > p:last-child {
  font-size: 21px;
  max-width: 250px;
}
.emirate-detail h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.emirate-detail > p {
  color: var(--muted);
  margin-bottom: 28px;
}
.emirate-detail .text-link {
  font-size: 13px;
  gap: 12px;
}
.source-note {
  display: block;
  text-decoration: underline;
  font-size: 12px;
  margin-top: 16px;
}
.relocation-note {
  padding-block: 42px 70px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px 65px;
}
.relocation-note h2 {
  font-size: 31px;
}
.relocation-note p {
  color: var(--muted);
}
.relocation-note .text-link {
  grid-column: 2;
  justify-self: start;
}
@media (max-width: 800px) {
  .home-paths,
  .advisory-services {
    gap: 24px;
  }
  .home-paths h2,
  .advisory-services h2 {
    font-size: 26px;
  }
  .emirate-panel {
    gap: 24px;
  }
  .emirate-title {
    padding: 26px;
  }
  .emirate-picker {
    flex-wrap: wrap;
  }
  .emirate-picker > span {
    display: none;
  }
  .relocation-note {
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .home-paths,
  .advisory-services {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 44px 55px;
  }
  .home-paths h2 {
    margin-top: 16px;
  }
  .hero-image {
    height: 280px;
  }
  .hero-image > img {
    object-position: 63% center;
  }
  .contact-grid,
  .emirate-panel,
  .relocation-note {
    grid-template-columns: 1fr;
  }
  .emirate-picker {
    gap: 12px;
  }
  .emirate-picker select {
    width: 100%;
  }
  .emirate-title {
    min-height: 260px;
  }
  .emirate-title h2 {
    margin-block: 30px;
  }
  .emirate-title > p:last-child {
    max-width: none;
  }
  .relocation-note .text-link {
    grid-column: auto;
  }
  .advisory-lead {
    padding-left: 20px;
  }
  .advisory-lead > p:not(.eyebrow) {
    font-size: 18px;
  }
}

/* REAH uses its own current wordmark, fonts and navy within the studio portfolio. */
@font-face {
  font-family: "REAH Plex Mono";
  src: url("/assets/fonts/reah-ibm-plex-mono-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "REAH Inter";
  src: url("/assets/fonts/reah-inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
.venture-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.venture-flagship {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}
.venture-flagship .venture-media {
  height: 100%;
  min-height: 320px;
  background: #060b16;
  color: white;
}
.venture-flagship .venture-content {
  padding: 40px;
}
.venture-flagship .venture-content > .eyebrow {
  color: var(--olive);
}
.reah-lockup {
  gap: 15px;
  padding: 24px;
}
.reah-lockup > img {
  width: 42px;
}
.reah-lockup .reah-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: "REAH Plex Mono", monospace;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.reah-lockup small {
  display: inline;
  margin: 0;
  font-family: "REAH Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  opacity: 0.7;
}
.venture-grid .next-venture {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
}
.venture-grid .next-symbol {
  display: none;
}
.venture-grid .next-venture h2 {
  font-size: 32px;
  margin: 0;
}
.venture-grid .next-venture .text-link {
  margin-left: auto;
}
@media (max-width: 800px) {
  .venture-flagship {
    grid-template-columns: 1fr;
  }
  .venture-flagship .venture-media {
    min-height: 220px;
  }
  .venture-grid .next-venture {
    flex-wrap: wrap;
  }
  .venture-grid .next-venture .text-link {
    margin-left: 0;
  }
}
@media (max-width: 560px) {
  .venture-grid {
    grid-template-columns: 1fr;
  }
  .venture-flagship .venture-content {
    padding: 25px;
  }
  .reah-lockup {
    gap: 10px;
    padding: 18px;
  }
  .reah-lockup > img {
    width: 28px;
  }
  .reah-lockup .reah-wordmark {
    font-size: 18px;
    gap: 8px;
  }
  .reah-lockup small {
    font-size: 12px;
  }
}

.advisor-portrait {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  margin-bottom: 24px;
}
.advisor-section .eyebrow {
  margin-block: 14px;
}
.advisor-section .text-link {
  margin-top: 20px;
}
