:root {
  --ink: #11171d;
  --navy: #0d1a25;
  --navy-2: #122536;
  --steel: #4d5963;
  --muted: #66717a;
  --line: #d8dde1;
  --paper: #f7f6f2;
  --white: #fff;
  --gold: #a77a27;
  --gold-2: #c49a49;
  --shadow: 0 22px 60px rgba(8, 17, 25, .16);
  --radius: 4px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: var(--gold); color: white; padding: 10px 14px; text-decoration: none; }
.skip-link:focus { top: 16px; }
.container { width: var(--container); margin-inline: auto; }

.topbar { background: #0a1219; color: rgba(255,255,255,.78); font-size: 12px; letter-spacing: .04em; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: var(--gold-2); text-decoration: none; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(17,23,29,.09); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; min-width: 275px; }
.brand img { width: 62px; height: 57px; object-fit: contain; }
.brand__text { display: grid; gap: 0; line-height: 1; }
.brand__text strong { font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif; font-stretch: condensed; font-size: 28px; font-weight: 800; letter-spacing: .105em; color: #151b20; }
.brand__text small { margin-top: 7px; display: flex; align-items: center; gap: 7px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .42em; }
.brand__text i { display: inline-block; width: 25px; height: 1px; background: var(--gold); }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.primary-nav > a { font-size: 12px; font-weight: 750; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.primary-nav > a:not(.button) { position: relative; padding-block: 30px; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 19px; background: var(--gold); transition: right .25s ease; }
.primary-nav > a:not(.button):hover::after, .primary-nav > a:not(.button):focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 42px; border: 1px solid var(--line); background: white; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid var(--gold); border-radius: 2px; background: linear-gradient(135deg, var(--gold), #bc913e); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(164,120,38,.28); }
.button--small { min-height: 42px; padding-inline: 17px; }
.button--outline { background: rgba(8,17,25,.28); border-color: rgba(255,255,255,.7); }
.button--outline:hover { background: rgba(255,255,255,.12); box-shadow: none; }
.button--full { width: 100%; }

.hero { min-height: 600px; position: relative; overflow: hidden; display: grid; align-items: center; color: white; background: var(--navy); }
.hero__media { position: absolute; inset: 0; background: url("assets/hero-aircraft.jpg") center center / cover no-repeat; transform: scale(1.015); }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,15,23,.97) 0%, rgba(8,18,27,.91) 36%, rgba(8,18,27,.45) 62%, rgba(8,18,27,.18) 100%), linear-gradient(0deg, rgba(6,15,23,.35), transparent 45%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .65fr); gap: 70px; align-items: center; padding-block: 76px; }
.eyebrow { margin: 0 0 14px; color: var(--gold-2); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow--dark { color: var(--gold); }
.hero h1 { max-width: 760px; margin: 0; font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif; font-size: clamp(50px, 6.4vw, 88px); font-weight: 800; line-height: .94; letter-spacing: .015em; text-transform: uppercase; text-wrap: balance; }
.hero__lead { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.83); font-size: clamp(16px, 1.5vw, 19px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__micro { margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 13px; display: flex; align-items: center; gap: 10px; }
.hero__micro span { width: 9px; height: 9px; border-radius: 50%; background: #8ec59a; box-shadow: 0 0 0 5px rgba(142,197,154,.15); }
.hero-card { background: rgba(13,26,37,.84); border: 1px solid rgba(255,255,255,.18); border-top: 3px solid var(--gold); padding: 30px; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.hero-card__kicker { margin: 0 0 9px; color: var(--gold-2); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.hero-card h2 { margin: 0; font-size: 27px; line-height: 1.15; }
.hero-card > p:not(.hero-card__kicker) { color: rgba(255,255,255,.7); font-size: 14px; }
.hero-card ol { list-style: none; padding: 0; margin: 22px 0; border-block: 1px solid rgba(255,255,255,.13); }
.hero-card li { display: grid; grid-template-columns: 44px 1fr; align-items: center; min-height: 51px; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card li:last-child { border-bottom: 0; }
.hero-card b { color: var(--gold-2); font-size: 12px; }
.hero-card span { font-size: 13px; }
.hero-card > a { color: white; text-decoration: none; font-size: 13px; font-weight: 750; }
.hero-card > a span { color: var(--gold-2); }

.value-strip { position: relative; z-index: 4; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px rgba(13,26,37,.06); }
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.value-grid article { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; min-height: 116px; padding: 22px 18px; border-right: 1px solid var(--line); }
.value-grid article:last-child { border-right: 0; }
.value-grid .icon { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid #bac2c8; border-radius: 50%; color: var(--navy); font-size: 21px; }
.value-grid h2 { margin: 0 0 4px; color: var(--navy); font-size: 12px; line-height: 1.25; text-transform: uppercase; }
.value-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }

.section { padding: 92px 0; }
.section--light { background: var(--paper); }
.section--dark { color: white; background: var(--navy); }
.section-heading h2 { margin: 0; color: var(--navy); font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif; font-size: clamp(40px, 4.4vw, 64px); font-weight: 800; line-height: .98; text-transform: uppercase; letter-spacing: .015em; text-wrap: balance; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.section--dark .section-heading h2 { color: white; }
.section--dark .section-heading > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.section-heading--row { display: grid; grid-template-columns: 1.15fr .7fr; gap: 80px; align-items: end; margin-bottom: 38px; }
.section-heading--row > p { margin: 0 0 5px; }
.section-heading--center { max-width: 760px; margin: 0 auto 45px; text-align: center; }
.text-link { display: inline-block; margin-top: 16px; color: var(--navy); font-size: 13px; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .04em; }
.text-link span { color: var(--gold); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.about-panel { padding: 42px; background: white; border-left: 4px solid var(--gold); box-shadow: var(--shadow); }
.about-panel__label { color: var(--gold); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.about-panel h3 { margin: 7px 0 22px; color: var(--navy); font-size: 29px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid var(--line); color: #39434b; }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: "✓"; position: absolute; left: 2px; top: 13px; color: var(--gold); font-weight: 900; }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card { min-height: 310px; position: relative; padding: 30px; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); overflow: hidden; }
.capability-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -75px; bottom: -75px; border: 1px solid rgba(196,154,73,.18); transform: rotate(45deg); }
.capability-card > span { color: var(--gold-2); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.capability-card h3 { margin: 19px 0 13px; font-size: 22px; line-height: 1.2; }
.capability-card p { color: rgba(255,255,255,.64); font-size: 14px; }
.capability-card ul { padding-left: 18px; color: rgba(255,255,255,.78); font-size: 13px; }
.capability-card li { margin: 6px 0; }

.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-grid li { min-height: 285px; padding: 31px; background: white; }
.process-grid span { color: var(--gold); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.process-grid h3 { margin: 28px 0 12px; color: var(--navy); font-size: 21px; }
.process-grid p { color: var(--muted); font-size: 14px; }

.execution { padding: 88px 0; color: white; background: linear-gradient(110deg, rgba(13,26,37,.98), rgba(18,37,54,.96)), url("assets/hero-aircraft.jpg") center/cover; }
.execution-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.execution__copy h2 { margin: 0; max-width: 700px; font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif; font-size: clamp(40px, 4.3vw, 63px); font-weight: 800; line-height: .98; text-transform: uppercase; }
.execution__copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.tag-row span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.76); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.execution__matrix { border-top: 3px solid var(--gold); background: rgba(255,255,255,.06); }
.execution__matrix div { display: flex; justify-content: space-between; gap: 30px; padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.execution__matrix span { color: rgba(255,255,255,.54); font-size: 13px; }
.execution__matrix strong { text-align: right; font-size: 13px; }

.audience-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.audience-cards { display: grid; gap: 14px; }
.audience-cards article { padding: 27px 30px; background: white; border-left: 3px solid var(--gold); box-shadow: 0 8px 26px rgba(13,26,37,.07); }
.audience-cards h3 { margin: 0 0 7px; color: var(--navy); }
.audience-cards p { margin: 0; color: var(--muted); }

.contact-section { padding: 94px 0; color: white; background: #09131b; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.contact-copy h2 { margin: 0; font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif; font-size: clamp(44px, 4.8vw, 68px); font-weight: 800; line-height: .98; text-transform: uppercase; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.contact-points { margin-top: 30px; }
.contact-points div { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.13); }
.contact-points span { display: block; margin-bottom: 4px; color: var(--gold-2); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-points strong { display: block; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600; }
.direct-email { display: inline-block; margin-top: 23px; color: white; font-size: 20px; font-weight: 700; text-decoration-color: var(--gold); text-underline-offset: 6px; }
.contact-form { padding: 34px; color: var(--ink); background: white; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 15px; color: #29333b; font-size: 12px; font-weight: 750; }
.contact-form label small { color: var(--muted); font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #cfd5d9; border-radius: 2px; background: #fbfbfa; padding: 12px 13px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(167,122,39,.12); }
.contact-form textarea { min-height: 128px; resize: vertical; }
.checkbox-label { grid-template-columns: 18px 1fr !important; align-items: start; gap: 10px !important; font-weight: 500 !important; line-height: 1.4; }
.checkbox-label input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--gold); }
.checkbox-label a { color: var(--navy); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: 13px; font-weight: 700; }
.form-status.is-success { color: #26733a; }
.form-status.is-error { color: #a62d2d; }
.form-note { margin: 4px 0 0; color: var(--muted); text-align: center; font-size: 11px; }

.site-footer { color: rgba(255,255,255,.7); background: #060d12; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr 1fr .85fr; gap: 52px; padding: 62px 0 45px; }
.brand--footer { min-width: 0; }
.brand--footer .brand__text strong { color: white; }
.footer-brand > p { max-width: 330px; }
.site-footer h2 { margin: 0 0 16px; color: white; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a, .site-footer p { display: block; margin: 8px 0; color: rgba(255,255,255,.58); font-size: 12px; text-decoration: none; }
.site-footer a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; padding: 20px 0 30px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p:last-child { max-width: 620px; text-align: right; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1050px) {
  .primary-nav { gap: 16px; }
  .primary-nav > a { font-size: 11px; }
  .brand { min-width: 240px; }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid article:nth-child(3) { border-right: 0; }
  .value-grid article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 760px); }
  .topbar { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 53px; height: 49px; }
  .brand__text strong { font-size: 22px; }
  .brand__text small { font-size: 8px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; padding: 18px 20px 25px; background: white; border-top: 1px solid var(--line); box-shadow: 0 20px 30px rgba(13,26,37,.12); }
  .primary-nav.is-open { display: grid; }
  .primary-nav > a:not(.button) { padding: 10px 0; }
  .primary-nav > a:not(.button)::after { display: none; }
  .hero { min-height: auto; }
  .hero__media { background-position: 60% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(6,15,23,.97), rgba(6,15,23,.76)); }
  .hero__grid { grid-template-columns: 1fr; gap: 35px; padding: 65px 0; }
  .hero-card { max-width: 540px; }
  .section { padding: 74px 0; }
  .about-grid, .execution-grid, .audience-grid, .contact-grid, .section-heading--row { grid-template-columns: 1fr; gap: 40px; }
  .section-heading--row { align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 24px); }
  body { padding-bottom: 68px; }
  .brand { min-width: 0; gap: 7px; }
  .brand img { width: 45px; height: 42px; }
  .brand__text strong { font-size: 18px; letter-spacing: .1em; }
  .brand__text small { font-size: 6.5px; letter-spacing: .3em; gap: 4px; }
  .brand__text i { width: 14px; }
  .hero__grid { padding: 55px 0; }
  .hero h1 { font-size: 44px; }
  .hero__lead { font-size: 16px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero-card { padding: 24px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 94px; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-grid article:last-child { border-bottom: 0; }
  .section-heading h2, .execution__copy h2, .contact-copy h2 { font-size: 40px; }
  .about-panel { padding: 28px 23px; }
  .capability-grid, .process-grid, .form-row { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto; }
  .contact-form { padding: 25px 19px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { display: block; }
  .footer-bottom p:last-child { text-align: left; }
  .mobile-cta { position: fixed; z-index: 55; left: 0; right: 0; bottom: 0; display: block; padding: 9px 12px; background: rgba(6,13,18,.96); border-top: 1px solid rgba(255,255,255,.12); }
  .mobile-cta .button { width: 100%; min-height: 48px; }
}

.contact-form .button { position: relative; }
.contact-form .button.is-loading { opacity: .92; cursor: wait; }
.contact-form .button.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  display: inline-block;
  animation: spin .7s linear infinite;
}
.form-status.is-loading { color: #7a5b17; }
@keyframes spin { to { transform: rotate(360deg); } }
/* Ordoverum typography update */

body,
input,
textarea,
select {
  font-family: "Montserrat", Arial, sans-serif;
}

/* Logo wordmark */
.brand__text strong {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 800;
}

/* Main industrial headings */
.hero h1,
.section-heading h2,
.execution__copy h2,
.contact-copy h2 {
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
}

/* Secondary headings */
.hero-card h2,
.about-panel h3,
.capability-card h3,
.process-grid h3,
.audience-cards h3,
.value-grid h2,
.site-footer h2 {
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
}

/* Navigation, labels and buttons */
.primary-nav > a,
.button,
.eyebrow,
.hero-card__kicker,
.about-panel__label,
.contact-points span,
.contact-form label {
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
}

/* Readable body text */
.hero__lead,
.hero-card p,
.section-heading p,
.capability-card p,
.process-grid p,
.audience-cards p,
.contact-copy p,
.contact-points strong,
.form-note,
.checkbox-label {
  font-family: "Montserrat", Arial, sans-serif;
}
