/* Sunshine Air Repairs — static site system */
:root {
  --navy-950: #061521;
  --navy-900: #0a1d2b;
  --navy-800: #123044;
  --graphite: #20272d;
  --slate: #5f6b73;
  --steel: #d9dddf;
  --mist: #eef0f1;
  --warm-white: #f7f6f2;
  --white: #ffffff;
  --amber: #c98200;
  --amber-dark: #8a5600;
  --success: #17663a;
  --error: #a52a2a;
  --max: 1240px;
  --shadow: 0 18px 50px rgba(6, 21, 33, 0.12);
  --heading: "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--graphite);
  background: var(--white);
  font: 400 1.0625rem/1.65 var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--navy-800);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover { color: var(--amber-dark); }

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

button { cursor: pointer; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  color: var(--navy-950);
  background: var(--white);
  border: 2px solid var(--navy-950);
}

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow { max-width: 780px; }

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--amber-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  /* Even out the ragged edge instead of leaving one orphaned word on the last
     line, and never hyphenate a part number or a designation like DHC-6. */
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.65rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.15rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.8rem); letter-spacing: -0.02em; }

p { margin: 0 0 1.2rem; }

.lead {
  max-width: 780px;
  color: #44515a;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.utility-bar {
  color: #dce4e9;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,0.13);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-inner a { color: var(--white); text-decoration: none; }
.utility-inner a span { color: #ffb42e; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--steel);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  width: min(260px, 68vw);
  align-items: center;
}

.brand img { width: 240px; height: auto; display: block; }

.menu-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy-950);
  background: transparent;
  border: 1px solid var(--steel);
}

.menu-toggle::before { content: "Menu"; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }
.menu-toggle[aria-expanded="true"]::before { content: "Close"; }

.site-nav {
  display: none;
  grid-column: 1 / -1;
  padding: 0 0 1rem;
}

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

.nav-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 0.75rem 0;
  color: var(--navy-950);
  border-bottom: 1px solid var(--mist);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-list a[aria-current="page"] { color: var(--amber-dark); }

.nav-list .nav-quote {
  margin-top: 0.75rem;
  padding: 0.72rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  text-align: center;
}

.button-row { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.15rem;
  color: var(--white);
  background: var(--navy-950);
  border: 2px solid var(--navy-950);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover { color: var(--white); background: var(--navy-800); }
.button--amber { color: #101820; background: #f0a51b; border-color: #f0a51b; }
.button--amber:hover { color: #101820; background: #ffc151; border-color: #ffc151; }
.button--outline { color: var(--navy-950); background: transparent; }
.button--outline:hover { color: var(--white); }
.button--light { color: var(--white); border-color: rgba(255,255,255,0.65); background: transparent; }
.button--aog {
  color: #101820;
  background: #ffb020;
  border-color: #ffb020;
  box-shadow: 0 0 0 1px rgba(255,176,32,0.18), 0 10px 28px rgba(0,0,0,0.2);
}
.button--aog:hover { color: #101820; background: #ffc151; border-color: #ffc151; }

.aog-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  background: #c62828;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-grid {
  display: grid;
  min-height: 660px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(3.2rem, 8vw, 7rem) 0 3.4rem;
}

.hero h1 { max-width: 880px; color: var(--white); }
.hero .eyebrow { color: #f2ae30; }
.hero .lead { margin: 1.4rem 0 2rem; color: #d7e0e5; }

.hero-media {
  position: relative;
  min-height: 280px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,21,33,0.45), rgba(6,21,33,0.08));
  pointer-events: none;
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-aog {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem 1.05rem;
  color: var(--white);
  background: rgba(6,21,33,0.94);
  border-top: 4px solid #ffb020;
  box-shadow: 0 18px 45px rgba(0,0,0,0.34);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.hero-aog:hover { color: var(--white); background: rgba(10,29,43,0.98); }
.hero-aog-status { display: flex; align-items: center; gap: 0.55rem; color: #ffc151; font-size: 0.68rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-aog strong { margin-top: 0.3rem; color: var(--white); font-family: var(--heading); font-size: clamp(1.35rem, 2.5vw, 2rem); letter-spacing: -0.02em; line-height: 1; }
.hero-aog-phone { color: #ffc151; font-family: var(--heading); font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 850; letter-spacing: -0.025em; line-height: 1.05; }
.hero-aog-note { color: #d7e0e5; font-size: 0.78rem; }

.part-search {
  max-width: 700px;
  margin-top: 2.2rem;
  padding: 1rem;
  color: var(--graphite);
  background: var(--white);
  border-top: 4px solid var(--amber);
  box-shadow: var(--shadow);
}

.part-search label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy-950);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-row { display: grid; gap: 0.55rem; }
.search-row input {
  width: 100%;
  min-height: 50px;
  padding: 0.72rem 0.85rem;
  color: var(--navy-950);
  background: var(--warm-white);
  border: 1px solid #adb5ba;
}

.trust-bar {
  padding-top: 1.4rem;
  color: var(--white);
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.proof-rail-heading {
  display: flex;
  min-height: 42px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  color: #d8e1e6;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-rail-heading p { margin: 0; }
.proof-rail-heading a { color: #ffc151; text-decoration: none; }

.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,0.16);
  border-left: 1px solid rgba(255,255,255,0.16);
}

.authority-mark {
  display: grid;
  min-height: 148px;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  text-decoration: none;
  transition: background-color 160ms ease;
}

.authority-mark:hover { color: var(--white); background: rgba(255,255,255,0.055); }
.authority-mark--government { background: rgba(255,176,32,0.08); }
.authority-mark--government:hover { background: rgba(255,176,32,0.14); }

.authority-emblem {
  display: grid !important;
  width: 62px;
  height: 62px;
  margin: 0 !important;
  place-items: center;
  color: #ffc151 !important;
  background: rgba(255,255,255,0.035);
  border: 2px solid rgba(255,193,81,0.72);
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 0.76rem !important;
  font-weight: 850;
  letter-spacing: 0.03em;
  line-height: 1;
}

.authority-copy { min-width: 0; }

.authority-copy small {
  display: block;
  overflow: hidden;
  color: #93a5af;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.authority-copy strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.authority-copy > span { display: block; margin-top: 0.42rem; color: #c4cfd5; font-size: 0.72rem; line-height: 1.35; }

.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section--tight { padding: clamp(2.8rem, 6vw, 4.6rem) 0; }
.section--mist { background: var(--mist); }
.section--warm { background: var(--warm-white); }
.section--dark { color: var(--white); background: var(--navy-950); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .lead { color: #d0dae0; }
.section--dark .eyebrow,
.gov-band .eyebrow,
.photo-band-copy .eyebrow,
.page-hero .eyebrow,
.contact-card--aog .eyebrow { color: #f2ae30; }

.section-heading {
  display: grid;
  gap: 1.2rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading > :last-child { margin-bottom: 0; }

.section-heading--manifesto {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-left: 6px solid #f0a51b;
  box-shadow: var(--shadow);
}

.section-heading--manifesto::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(255,255,255,0.025), 0 0 0 7rem rgba(255,255,255,0.018);
  pointer-events: none;
}

.section-heading--manifesto > * { position: relative; z-index: 1; }
.section-heading--manifesto h2 { max-width: 820px; color: var(--white); }
.section-heading--manifesto .eyebrow { color: #ffc151; }
.section-heading--manifesto .lead { max-width: 560px; color: #d7e0e5; }

.metrics-section {
  padding: clamp(2.8rem, 6vw, 5.5rem) 0;
  background-color: #e9edef;
  background-image:
    linear-gradient(rgba(6,21,33,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,21,33,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.proof-summary {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
  align-items: end;
}

.proof-summary h2 { max-width: 820px; font-size: clamp(2.1rem, 4vw, 3.7rem); }
.proof-summary > p { max-width: 510px; margin: 0; color: #485761; }

.metrics-grid {
  display: grid;
  gap: 0.75rem;
}

.metric {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  overflow: hidden;
  background: rgba(255,255,255,0.96);
  border: 1px solid #cbd2d6;
  border-top: 4px solid var(--navy-800);
  box-shadow: 0 16px 36px rgba(6,21,33,0.08);
}

.metric::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 16px;
  height: 16px;
  border-top: 1px solid #aeb8bd;
  border-right: 1px solid #aeb8bd;
}

.metric--turn { border-top-color: var(--amber); }
.metric--aog { color: var(--white); background: var(--navy-950); border-color: var(--navy-950); border-top-color: #f0a51b; }
.metric--aog::after { border-color: rgba(255,255,255,0.38); }

.metric-kicker {
  color: var(--amber-dark) !important;
  font-size: 0.66rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.09em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.metric--aog .metric-kicker { color: #ffc151 !important; }

.metric strong {
  display: block;
  margin: 1rem 0 0;
  color: var(--navy-950);
  font-family: var(--heading);
  font-size: clamp(3rem, 6vw, 4.9rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.metric strong sup { color: var(--amber-dark); font-size: 0.42em; vertical-align: top; }
.metric--aog strong { color: var(--white); }
.metric > span:not(.metric-kicker) { display: block; max-width: 18rem; margin-top: 0.75rem; color: var(--slate); font-size: 0.88rem; font-weight: 680; line-height: 1.45; }
.metric--aog > span:not(.metric-kicker) { color: #c9d4da; }

.metric-link {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--navy-800);
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.metric--aog .metric-link { color: #ffc151; }

.platform-grid, .route-grid, .cap-grid, .family-grid, .cert-grid, .partner-grid, .contact-routes {
  display: grid;
  gap: 1rem;
}

.platform-card, .route-card, .cap-card, .family-card, .cert-card, .contact-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--steel);
}

.platform-card { min-height: 190px; }
.platform-card--primary { color: var(--white); background: var(--navy-950); border-color: var(--navy-950); }
.platform-card--primary h3 { color: var(--white); }
.platform-card p, .route-card p, .family-card p, .cert-card p { margin-top: 0.8rem; color: var(--slate); }
.platform-card--primary p { color: #d5e0e6; }
.platform-card--primary .text-link { color: #ffc151; }
.platform-card a::after, .route-card a::after, .cap-card > a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.text-link { font-size: 0.78rem; font-weight: 850; letter-spacing: 0.055em; text-transform: uppercase; }

.capability-section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  background: var(--warm-white);
}

.capability-layout {
  display: grid;
  padding: 0;
  overflow: hidden;
  border: 1px solid #cbd2d6;
  box-shadow: 0 24px 60px rgba(6,21,33,0.12);
}

.capability-intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background-color: var(--navy-950);
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  border-top: 5px solid var(--amber);
}

.capability-intro .eyebrow { color: #f2ae30; }
.capability-intro h2 { max-width: 650px; color: var(--white); }
.capability-intro .lead { margin-top: 1.35rem; color: #d1dce2; font-size: 1.08rem; }
.capability-intro .button { margin-top: 2rem; }

.capability-total {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.capability-total strong {
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.055em;
  line-height: 0.85;
}

.capability-total span { color: #aebdc5; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1.45; text-transform: uppercase; }

.cap-grid {
  gap: 1px;
  background: #cbd2d6;
}

.cap-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: rgba(255,255,255,0.97);
  border: 0;
  transition: background-color 160ms ease;
}

.cap-card:hover { background: #fffdf7; }

.cap-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--slate);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cap-card strong {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--navy-950);
  font-family: var(--heading);
  font-size: clamp(3rem, 6vw, 4.6rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.cap-unit { margin-left: 0.45rem; color: var(--slate); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.cap-card h3 { margin-top: 0.8rem; font-size: 1.5rem; }
.cap-card p { min-height: 3.9em; margin: 0.7rem 0 0; color: var(--slate); font-size: 0.86rem; line-height: 1.5; }

.cap-distribution { height: 3px; margin-top: 1.1rem; overflow: hidden; background: #e1e5e7; }
.cap-distribution span { display: block; min-width: 6px; height: 100%; background: var(--navy-800); }
.cap-card--accessories .cap-distribution span { width: 50.3%; }
.cap-card--instruments .cap-distribution span { width: 47.6%; }
.cap-card--airframe .cap-distribution span { width: 1.4%; background: var(--amber); }
.cap-card--radio .cap-distribution span { width: 0.7%; background: var(--amber); }

.cap-card .cap-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--steel);
}

.cap-actions a {
  color: var(--navy-800);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
}

.photo-band {
  display: grid;
  background: var(--navy-950);
}

.photo-band picture, .photo-band img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.photo-band-copy { padding: clamp(2rem, 6vw, 5rem); color: var(--white); }
.photo-band-copy h2 { color: var(--white); }
.photo-band-copy p { margin-top: 1.2rem; color: #d4dee4; }
.photo-band-copy p a { color: #ffc151; }

.gov-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  border-top: 6px solid var(--amber);
}

.gov-band::after {
  content: "9XEX9";
  position: absolute;
  right: -0.04em;
  bottom: -0.25em;
  color: rgba(255,255,255,0.095);
  font: 800 clamp(7rem, 22vw, 20rem)/1 var(--heading);
  letter-spacing: -0.08em;
  pointer-events: none;
}

.gov-band .lead { color: #d0dae0; }

.gov-grid { position: relative; z-index: 1; display: grid; gap: 2.3rem; align-items: end; }
.credential-strip { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,0.24); border-left: 1px solid rgba(255,255,255,0.24); }
.credential { padding: 1rem; border-right: 1px solid rgba(255,255,255,0.24); border-bottom: 1px solid rgba(255,255,255,0.24); }
.credential strong { display: block; color: #fff; font-family: var(--heading); font-size: 1.6rem; line-height: 1; }
.credential span { display: block; margin-top: 0.4rem; color: #b9c6cd; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; }
.credential-strip--light .credential strong { color: var(--navy-950); }
.credential-strip--light .credential span { color: var(--slate); }

.partner-grid { border-top: 1px solid var(--steel); }
.partner { padding: 1.25rem 0; border-bottom: 1px solid var(--steel); }
.partner strong { display: block; color: var(--navy-950); font-family: var(--heading); font-size: 1.35rem; }
.partner span { color: var(--slate); font-size: 0.85rem; }

.page-hero { padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 7vw, 5.5rem); color: var(--white); background: var(--navy-950); }
.page-hero h1 { max-width: 1040px; color: var(--white); }
.page-hero .lead { margin-top: 1.4rem; color: #d3dde3; }
.page-hero--photo { display: grid; padding: 0; }
.page-hero-copy { padding: clamp(4rem, 9vw, 8rem) max(1rem, calc((100vw - var(--max)) / 2)); }
.page-hero-media { min-height: 350px; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-media--contain {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  overflow: hidden;
  background: var(--warm-white);
}
.page-hero-media--contain picture { display: grid; width: 100%; height: 100%; place-items: center; }
.page-hero-media--contain img { width: 100%; height: 100%; max-height: 720px; object-fit: contain; object-position: center; }
.page-hero-media--focus-machine img { object-position: 48% center; }

.fact-callout {
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--white);
  background: var(--navy-800);
  border-left: 6px solid var(--amber);
}
.fact-callout strong { display: block; max-width: 900px; font-family: var(--heading); font-size: clamp(1.75rem, 4vw, 3.2rem); letter-spacing: -0.03em; line-height: 1.15; }

.turntime-grid { display: grid; gap: 1rem; }
.turntime { padding: 1.5rem; background: var(--white); border-top: 4px solid var(--amber); }
.turntime strong { display: block; color: var(--navy-950); font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; }
.turntime span { display: block; margin-top: 0.6rem; color: var(--slate); }

.release-table, .code-table { width: 100%; border-collapse: collapse; background: var(--white); }
.release-table th, .release-table td, .code-table th, .code-table td { padding: 0.9rem; text-align: left; vertical-align: top; border: 1px solid var(--steel); }
.release-table th, .code-table th { color: var(--navy-950); background: var(--mist); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; }

.download-list { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; }
.download-list a { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0.9rem; color: var(--navy-950); background: var(--white); border: 1px solid var(--steel); font-weight: 750; text-decoration: none; }
.download-list a::after { content: "PDF"; color: var(--amber-dark); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; }

.cap-controls {
  position: sticky;
  z-index: 20;
  top: 79px;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(247,246,242,0.97);
  border: 1px solid var(--steel);
  box-shadow: 0 12px 24px rgba(6,21,33,0.07);
  backdrop-filter: blur(10px);
}

.field { display: grid; gap: 0.35rem; }
.field label { color: var(--navy-950); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.045em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.8rem;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid #9ea8ae;
  border-radius: 0;
}
.field textarea { min-height: 150px; resize: vertical; }
.field .hint { margin: 0; color: var(--slate); font-size: 0.78rem; }

.cap-summary { align-self: end; margin: 0; color: var(--slate); font-size: 0.88rem; font-weight: 650; }
.table-wrap { margin-top: 1rem; overflow-x: auto; border: 1px solid var(--steel); }
.cap-table { width: 100%; min-width: 900px; border-collapse: collapse; background: var(--white); }
.cap-table th { position: sticky; top: 0; z-index: 2; padding: 0.85rem; color: var(--white); background: var(--navy-950); font-size: 0.72rem; letter-spacing: 0.07em; text-align: left; text-transform: uppercase; }
.cap-table td { padding: 0.8rem 0.85rem; border-bottom: 1px solid var(--mist); vertical-align: top; }
.cap-table tr:hover td { background: #f8f4ea; }
.cap-part { color: var(--navy-950); font-weight: 800; font-variant-numeric: tabular-nums; }
.cap-category { display: inline-block; padding: 0.18rem 0.45rem; color: var(--navy-800); background: var(--mist); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.cap-rfq { width: 220px; }
.cap-rfq-controls { display: flex; align-items: center; gap: 0.5rem; }
.cap-rfq-controls .rowqty { flex: 0 0 58px; }
.cap-rfq-controls .rfq-add { flex: 1 1 auto; }
.cap-table tr[hidden] { display: none; }
.load-more { margin-top: 1rem; }
.empty-state { display: none; padding: 2rem; text-align: center; background: var(--warm-white); border: 1px solid var(--steel); }
.empty-state.is-visible { display: block; }

/* Cards in this grid line up row for row: description block, spec list, then
   button, so the eye can scan across the four approvals instead of down each
   one. Subgrid does it properly; the flex rule below is the fallback. */
.cert-card { display: flex; flex-direction: column; gap: 1rem; border-top: 5px solid var(--navy-800); }
@supports (grid-template-rows: subgrid) {
  .cert-grid > .cert-card { display: grid; grid-row: span 3; grid-template-rows: subgrid; align-content: start; }
}
.cert-card dl { display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 0.8rem; margin: 0; font-size: 0.85rem; }
.cert-card dt { color: var(--slate); }
.cert-card dd { margin: 0; color: var(--navy-950); font-weight: 700; }
.cert-card .button { justify-self: start; align-self: start; margin-top: auto; }

.content-grid { display: grid; gap: 2rem; }
.content-grid ul { padding-left: 1.2rem; }
.content-grid li + li { margin-top: 0.45rem; }
.aside-panel { padding: 1.4rem; background: var(--warm-white); border-top: 5px solid var(--navy-950); }
.aside-panel h3 { margin-bottom: 1rem; }
.section--dark .aside-panel { color: var(--graphite); }
.section--dark .aside-panel h3 { color: var(--navy-950); }

.contact-card--aog { color: var(--white); background: var(--navy-950); border-top: 6px solid var(--amber); }
.contact-card--aog h2, .contact-card--aog h3 { color: var(--white); }
.contact-card--aog p a { color: #ffc151; }
.direct-contacts { display: grid; gap: 1px; background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .18); }
.direct-contacts article { min-width: 0; padding: clamp(1.35rem, 3vw, 2rem); background: var(--navy-900); }
.direct-contacts h3 { margin-bottom: .4rem; color: var(--white); }
.direct-contacts a { color: #ffc151; overflow-wrap: anywhere; }
.aog-number { display: inline-block; margin: 1rem 0; color: #ffc151; font-family: var(--heading); font-size: clamp(2rem, 7vw, 4.2rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; text-decoration: none; }
.aog-number:hover { color: var(--white); }

.quote-layout { display: grid; gap: 2rem; }
.quote-form { display: grid; gap: 1rem; }
.form-grid { display: grid; gap: 1rem; }
.form-status { display: none; margin: 0; padding: 0.8rem; border-left: 4px solid; }
.form-status.is-success { display: block; color: var(--success); background: #eef8f2; }
.form-status.is-error { display: block; color: var(--error); background: #fff2f2; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.cta-band { color: var(--white); background: var(--navy-800); }
.cta-grid { display: grid; gap: 1.5rem; align-items: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { margin-top: 0.8rem; color: #d4dfe4; }

.site-footer { color: #d1dbe1; background: #030e16; }
.footer-grid { display: grid; gap: 2rem; padding: 3.5rem 0 2.5rem; }
.footer-brand img { width: 260px; max-width: 100%; filter: invert(1); opacity: 0.95; }
.footer-brand p { max-width: 510px; margin-top: 1rem; color: #aebcc4; }
.footer-title { margin: 0 0 0.7rem; color: var(--white); font-size: 0.74rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 0.35rem; }
.footer-links a { color: #dce4e9; text-decoration: none; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem 1.4rem; padding: 1.1rem 0 1.6rem; color: #8fa0a9; border-top: 1px solid rgba(255,255,255,0.13); font-size: 0.75rem; }
.footer-base a { color: #b7c3ca; }

.legal-copy h2 { margin: 2.2rem 0 0.8rem; font-size: 1.75rem; }
.legal-copy ul { padding-left: 1.2rem; }

@media (min-width: 480px) {
  .search-row { grid-template-columns: minmax(0, 1fr) auto auto; }
  .search-row .button { min-width: 132px; }
  .metrics-grid, .turntime-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .field--wide { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
  .container { width: min(calc(100% - 3rem), var(--max)); }
  .authority-grid { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-summary { grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr); }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .platform-card--primary { grid-column: span 2; grid-row: span 2; min-height: 400px; display: grid; align-content: end; }
  .route-grid, .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-grid { border-left: 1px solid var(--steel); }
  .partner { padding: 1.5rem; border-right: 1px solid var(--steel); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .family-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .gov-grid { grid-template-columns: 1.15fr 0.85fr; }
  .photo-band { grid-template-columns: 1.05fr 0.95fr; }
  .photo-band--reverse picture { order: 2; }
  .page-hero--photo { grid-template-columns: 1.1fr 0.9fr; }
  .content-grid { grid-template-columns: minmax(0, 1fr) 340px; }
  .contact-routes { grid-template-columns: repeat(2, 1fr); }
  .contact-routes .contact-card:last-child { grid-column: 1 / -1; }
  .direct-contacts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-layout { grid-template-columns: minmax(0, 1fr) 350px; }
  .cap-controls { grid-template-columns: minmax(260px, 1fr) 220px auto; align-items: end; }
  .cta-grid { grid-template-columns: minmax(0, 1fr) auto; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .header-inner { min-height: 84px; grid-template-columns: 260px 1fr; }
  .menu-toggle { display: none; }
  .site-nav { display: block; grid-column: auto; padding: 0; }
  .nav-list { display: flex; align-items: center; justify-content: flex-end; gap: clamp(0.65rem, 1.4vw, 1.25rem); }
  .nav-list a { padding: 0.5rem 0; border: 0; white-space: nowrap; }
  .nav-list .nav-quote { margin: 0 0 0 0.3rem; padding: 0.72rem 1rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr); }
  .hero-copy { padding-right: clamp(2rem, 5vw, 5rem); }
  .hero-media { min-height: 660px; border-top: 0; border-left: 1px solid rgba(255,255,255,0.15); }
  .hero-media::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, var(--navy-950) 0, rgba(6,21,33,0.28) 22%, transparent 55%); }
  .hero-aog { right: 2rem; bottom: 2rem; left: 2rem; padding: 1.25rem 1.4rem 1.35rem; }
  .authority-grid { grid-template-columns: repeat(5, 1fr); }
  .authority-mark { min-height: 172px; grid-template-columns: 1fr; align-content: center; justify-items: start; }
  .capability-layout { grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-routes { grid-template-columns: repeat(3, 1fr); }
  .contact-routes .contact-card:last-child { grid-column: auto; }
  .direct-contacts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .platform-card--primary { grid-column: span 2; }
  .family-grid { grid-template-columns: repeat(4, 1fr); }
  .cert-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1440px) {
  body { font-size: 1.125rem; }
  .container { width: min(calc(100% - 5rem), var(--max)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media print {
  .utility-bar, .site-header, .button, .site-footer, .cap-controls, .load-more { display: none !important; }
  body { color: #000; font-size: 10pt; }
  .section, .page-hero { padding: 1rem 0; color: #000; background: #fff; }
  .page-hero h1 { color: #000; }
  .cap-table tr[hidden] { display: table-row; }
}

/* ============================================================
   Additions only. Nothing above this line was modified.
   ============================================================ */

/* --- Aircraft dropdown --- */
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.75rem 0; color: var(--navy-950); background: transparent; border: 0; border-bottom: 1px solid var(--mist); font-size: 0.86rem; font-weight: 750; text-align: left; }
.nav-item-dropdown.is-active > .nav-dropdown-toggle { color: var(--amber-dark); }
.nav-caret { width: 0.5rem; height: 0.5rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform 0.18s ease; }
.nav-dropdown-toggle[aria-expanded="true"] .nav-caret { transform: translateY(1px) rotate(-135deg); }
.nav-dropdown { display: none; margin: 0; padding: 0 0 0 0.9rem; list-style: none; }
.nav-dropdown.is-open { display: block; }
.nav-dropdown a { font-weight: 650; }
@media (min-width: 900px) {
  .nav-dropdown-toggle { width: auto; padding: 0.5rem 0; border-bottom: 0; white-space: nowrap; cursor: pointer; }
  .nav-dropdown { position: absolute; z-index: 120; top: calc(100% + 0.55rem); left: -1rem; min-width: 250px; padding: 0.35rem 0; background: var(--white); border: 1px solid var(--steel); border-top: 3px solid var(--amber); box-shadow: var(--shadow); }
  .nav-dropdown a { padding: 0.62rem 1.1rem; border-bottom: 0; white-space: nowrap; }
  .nav-dropdown a:hover, .nav-dropdown a:focus-visible { color: var(--amber-dark); background: var(--mist); }
  .nav-item-dropdown:hover .nav-dropdown, .nav-item-dropdown:focus-within .nav-dropdown { display: block; }
}

/* --- Tagline: deliberately a different face from the headline --- */
.hero-tagline {
  max-width: 880px;
  margin: 1rem 0 0;
  color: #f2ae30;
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.3;
}

/* --- Instant quote card --- */
.hero-quote { position: relative; z-index: 3; display: grid; gap: 0.6rem; margin: 1rem; padding: 1.15rem 1.15rem 1.25rem; color: var(--white); background: rgba(6,21,33,0.94); border-top: 4px solid #ffb020; box-shadow: 0 18px 45px rgba(0,0,0,0.34); backdrop-filter: blur(10px); }
.hero-quote-title { color: #ffc151; font-family: var(--heading); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 850; letter-spacing: -0.03em; line-height: 1; }
.hero-quote-sub { margin: 0; color: #d7e0e5; font-size: 0.88rem; line-height: 1.45; }
.hero-quote-field { display: grid; gap: 0.3rem; }
.hero-quote-field label { color: #d7e0e5; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-quote-field select, .hero-quote-field input { width: 100%; min-height: 46px; padding: 0.55rem 0.7rem; color: var(--graphite); background: var(--white); border: 1px solid var(--steel); border-radius: 0; }
.hero-quote-price { display: grid; gap: 0.15rem; margin: 0; padding: 0.7rem 0.85rem; background: rgba(255,176,32,0.14); border-left: 4px solid #ffb020; }
.hero-quote-price[hidden] { display: none; }
.hero-quote-price span { color: #ffc151; font-family: var(--heading); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 850; letter-spacing: -0.025em; line-height: 1.05; }
.hero-quote-price small { color: #d7e0e5; font-size: 0.76rem; }
.hero-quote-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; }
.hero-quote-actions .button { width: 100%; padding-inline: 0.7rem; }
.hero-quote-fine { margin: 0; color: #adbcc5; font-size: 0.72rem; line-height: 1.45; }
@media (min-width: 900px) {
  /* dropped down so the card starts level with the headline, not the top of the photo */
  .hero-quote { position: absolute; top: clamp(3.2rem, 8vw, 7rem); right: 2rem; left: 2rem; margin: 0; }
  .hero-media--quote { min-height: 880px; }
}


/* --- Plane logo, header and footer --- */
.brand { width: min(300px, 72vw); }
.brand img { width: 100%; height: auto; }
.footer-brand img { width: 260px; max-width: 100%; filter: invert(1); opacity: 0.95; }
.footer-wordmark { margin: 1.1rem 0 0.2rem; color: var(--white); font-family: var(--heading); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.015em; }
.footer-brand p:not(.footer-wordmark) { margin-top: 0.35rem; }

/* --- US flag --- */
.gov-flagline { display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.gov-flagline span { color: #ffc151; font-size: 0.7rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.gov-flag { width: 58px; height: auto; border: 1px solid rgba(255,255,255,0.35); box-shadow: 0 4px 14px rgba(0,0,0,0.3); }

/* --- Partner notes, matching the 814 treatment --- */
.partner-note { display: block; margin-top: 0.35rem; color: var(--amber-dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }

/* --- AOG red flashing light, including the top bar --- */
.aog-dot { position: relative; background: #e02b2b; box-shadow: 0 0 0 3px rgba(224,43,43,0.22); }
.aog-dot::after { content: ""; position: absolute; inset: -2px; border: 2px solid #e02b2b; border-radius: 50%; animation: aog-pulse 2.1s cubic-bezier(0.24,0.5,0.4,1) infinite; pointer-events: none; }
@keyframes aog-pulse { 0% { transform: scale(0.85); opacity: 0.9; } 70% { transform: scale(2.2); opacity: 0; } 100% { transform: scale(2.2); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .aog-dot::after { animation: none; } }

/* --- Twin Otter cursor --- */
body { cursor: url("../img/cursor-plane.png") 24 24, auto; }

/* --- Government band heading was navy on navy, i.e. invisible --- */
.gov-band h2, .gov-band h3 { color: var(--white); }

/* --- Partner logos --- */
.partner img { max-width: 170px; height: auto; margin-bottom: 0.7rem; display: block; }

/* --- Photos filling the empty panels --- */
.platform-card--primary { display: flex; flex-direction: column; gap: 1rem; overflow: hidden; }
.platform-card-photo { width: calc(100% + 2px); flex: 1 1 auto; min-height: 190px; max-height: 340px; object-fit: cover; margin: -0.2rem -1px 0; }
.platform-card-photo--contain { padding: clamp(0.65rem, 2vw, 1.25rem); object-fit: contain; background: var(--white); }
.capability-support {
  width: 100%;
  margin-top: 1.8rem;
  padding: 1.2rem 1.25rem;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.2);
  border-left: 4px solid var(--amber);
}
.capability-support .eyebrow { margin: 0 0 0.55rem; color: #f2ae30; }
.capability-support h3 { margin: 0; color: var(--white); font-size: 1.45rem; }
.capability-support p:not(.eyebrow) { margin: 0.65rem 0 0; color: #d1dce2; font-size: 0.86rem; line-height: 1.55; }
.capability-support-actions { display: flex; flex-wrap: wrap; gap: 0.7rem 1.2rem; margin-top: 1rem; }
.capability-support-actions a { display: inline-flex; align-items: center; gap: 0.55rem; color: #ffc151; font-size: 0.7rem; font-weight: 850; letter-spacing: 0.055em; text-transform: uppercase; }
.capability-support small { display: block; margin-top: 1rem; padding-top: 0.8rem; color: #9fb0ba; font-size: 0.65rem; font-weight: 750; letter-spacing: 0.07em; text-transform: uppercase; border-top: 1px solid rgba(255,255,255,0.16); }

/* Product photography should remain complete rather than being cropped to the panel. */
.photo-band-media--contain { display: grid; place-items: center; overflow: hidden; background: var(--white); }
.photo-band-media--contain img { width: 100%; height: 100%; padding: clamp(0.75rem, 2.5vw, 2rem); object-fit: contain; object-position: center; }

/* --- Quote card sits a little lower again --- */
@media (min-width: 900px) {
  .hero-quote { top: clamp(4.6rem, 10vw, 9rem); }
  .hero-media--quote { min-height: 920px; }
}

/* --- Full-bleed photo strip --- */
.photo-strip { position: relative; background: var(--navy-950); }
.photo-strip img { width: 100%; max-width: 1100px; height: auto; margin: 0 auto; display: block; }

/* --- Status ticker: a dark break in a run of light sections --- */
.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  border-top: 3px solid var(--amber);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 46s linear infinite; }
.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track { animation-play-state: paused; }
.ticker-run { display: flex; flex: 0 0 auto; align-items: center; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-sep { width: 5px; height: 5px; background: #ffc151; border-radius: 50%; opacity: 0.75; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; width: 100%; overflow-x: auto; }
  .ticker-run[aria-hidden="true"] { display: none; }
}
@media print { .ticker { display: none; } }

/* --- Aircraft pages: full-width photo band under the copy, so the whole
       aircraft is visible instead of being cropped into a tall side column.
       All copy is retained; only the arrangement changes. --- */
@media (min-width: 900px) {
  .page-hero--stack { grid-template-columns: 1fr; }
  .page-hero--stack .page-hero-copy { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
  .page-hero--stack .page-hero-media { min-height: 0; }
  .page-hero--stack .page-hero-media img { width: 100%; height: clamp(340px, 40vw, 560px); object-fit: cover; object-position: center; }
}
.page-hero--stack .page-hero-media { background: var(--navy-950); }
.page-hero--stack .page-hero-media img { height: clamp(240px, 52vw, 420px); object-fit: cover; object-position: center; }
.page-hero--stack .page-hero-media--contain { min-height: 0; background: var(--warm-white); }
.page-hero--stack .page-hero-media--contain picture { height: auto; }
.page-hero--stack .page-hero-media--contain img { width: min(100%, 1024px); height: auto; max-height: none; object-fit: contain; object-position: center; }

/* --- Capability download list: rating icons --- */
.download-list a { display: flex; align-items: center; gap: 0.95rem; }
.dl-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--amber-dark);
  background: var(--warm-white);
  border: 1px solid var(--steel);
  border-radius: 50%;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.dl-icon svg { width: 21px; height: 21px; }
.download-list a:hover .dl-icon,
.download-list a:focus-visible .dl-icon { color: var(--white); background: var(--navy-950); border-color: var(--navy-950); }
.dl-text { flex: 1 1 auto; }

/* ============================================================
   Sales tools restored from the approved 8797 prototype
   ============================================================ */

/* Dedicated component pages */
.process-grid {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.process-step {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--white);
}
.process-num {
  display: block;
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  color: var(--amber-dark);
  border-bottom: 3px solid var(--amber);
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 850;
  line-height: 1;
  align-self: flex-start;
}
.process-step h3 { font-size: 1.3rem; }
.process-step p { margin: 0.75rem 0 0; color: var(--slate); font-size: 0.92rem; }
.process-step .text-link { margin-top: auto; padding-top: 1.1rem; align-self: flex-start; }
.empty-state { padding: clamp(1.6rem, 4vw, 2.6rem); border-top: 5px solid var(--amber); text-align: left; }
.empty-state h3 { margin-bottom: 0.9rem; }
.empty-state [data-empty-term] { color: var(--amber-dark); overflow-wrap: anywhere; }
.empty-state p { color: var(--slate); }
.empty-actions { margin: 1.4rem 0 1rem; }
.empty-state .hint { margin: 0; color: var(--slate); font-size: 0.82rem; }
.faq-list { border-top: 1px solid var(--steel); }
.faq-item { border-bottom: 1px solid var(--steel); }
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  color: var(--navy-950);
  font-family: var(--heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; color: var(--amber-dark); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-answer { padding: 0 0 1.3rem; }
.faq-answer p { max-width: 70ch; margin: 0; color: var(--slate); }

/* Approved part-number indexes */
.sg-facts { grid-template-columns: repeat(2, 1fr); }
.pn-search { max-width: 520px; margin-bottom: 2rem; }
.pn-search label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy-950);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pn-search input {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.85rem;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid #9ea8ae;
}
.pn-status { margin: 0.55rem 0 0; color: var(--slate); font-size: 0.85rem; font-weight: 650; }
.pn-groups { display: grid; gap: 1px; background: var(--steel); border: 1px solid var(--steel); }
.pn-group { padding: clamp(1.2rem, 3vw, 1.8rem); background: var(--white); }
.pn-group[hidden], .pn-list li[hidden] { display: none; }
.pn-group h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--amber);
  font-size: 1.3rem;
}
.pn-count { color: var(--slate); font-family: var(--body); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.pn-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  background: var(--mist);
}
.pn-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  /* Two rows so a description can sit under the part number without pushing
     the quantity box or the button onto a line of their own. Rows without a
     description simply leave the second area empty. */
  grid-template-areas:
    "id   qty add"
    "desc qty add";
  align-items: center;
  gap: 0.15rem 0.5rem;
  padding: 0.5rem 0.6rem;
  background: var(--white);
}
.pn-row:hover { background: #fffdf6; }
.pn-id { grid-area: id; color: var(--navy-950); font-size: 0.9rem; font-weight: 750; font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
.pn-desc { grid-area: desc; color: var(--slate); font-size: 0.76rem; line-height: 1.35; overflow-wrap: anywhere; }
.pn-row .rowqty { grid-area: qty; }
.pn-row .rfq-add { grid-area: add; }
.rowqty {
  width: 62px;
  min-height: 36px;
  padding: 0.3rem 0.4rem;
  border: 1px solid #9ea8ae;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
[data-pn-empty] { display: none; margin-top: 1.5rem; }
[data-pn-empty].is-visible { display: block; }

/* Persistent multi-line RFQ */
.rfq-add {
  padding: 0.42rem 0.7rem;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--navy-800);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.rfq-add:hover { color: #101820; background: #ffc151; border-color: #ffc151; }
.rfq-launcher {
  position: fixed;
  z-index: 95;
  right: 1rem;
  bottom: 74px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.05rem;
  color: #101820;
  background: #f0a51b;
  border: 2px solid #f0a51b;
  box-shadow: 0 14px 34px rgba(6, 21, 33, 0.34);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rfq-launcher:hover { background: #ffc151; border-color: #ffc151; }
.rfq-launcher.is-empty { background: #ffb020; border-color: #ffb020; }
.rfq-count {
  display: inline-grid;
  min-width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  padding: 0 0.35rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 999px;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}
.rfq-drawer {
  position: fixed;
  z-index: 130;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(430px, 100%);
  max-height: 86vh;
  flex-direction: column;
  color: var(--graphite);
  background: var(--white);
  border-top: 5px solid var(--amber);
  border-left: 1px solid var(--steel);
  box-shadow: -18px 0 60px rgba(6, 21, 33, 0.28);
}
.rfq-drawer[hidden] { display: none; }
.rfq-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.25rem 1rem; border-bottom: 1px solid var(--steel); }
.rfq-head h2 { font-size: 1.6rem; }
.rfq-head .eyebrow { margin-bottom: 0.35rem; }
.rfq-close {
  padding: 0.45rem 0.7rem;
  color: var(--navy-950);
  background: transparent;
  border: 1px solid var(--steel);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rfq-body { flex: 1 1 auto; padding: 0.4rem 1.25rem 0.9rem; overflow-y: auto; }
.rfq-quick-add {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px auto;
  gap: 0.55rem;
  align-items: end;
  padding: 1rem 1.25rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--steel);
}
.rfq-quick-field { display: grid; gap: 0.25rem; }
.rfq-quick-field label { color: var(--navy-950); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.rfq-quick-field input { width: 100%; min-height: 42px; padding: 0.45rem 0.55rem; color: var(--graphite); background: var(--white); border: 1px solid #9ea8ae; }
.rfq-quick-add .button { min-height: 42px; padding: 0.55rem 0.75rem; }
.rfq-empty { margin: 1.2rem 0; color: var(--slate); font-size: 0.9rem; }
.rfq-line { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.5rem 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid var(--mist); align-items: center; }
.rfq-line-id strong { display: block; color: var(--navy-950); font-size: 0.98rem; font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
.rfq-line-id span { display: block; margin-top: 0.15rem; color: var(--slate); font-size: 0.8rem; }
.rfq-qty { display: inline-flex; align-items: center; border: 1px solid #9ea8ae; }
.rfq-qty button { width: 34px; height: 38px; color: var(--navy-950); background: var(--mist); border: 0; font-size: 1rem; font-weight: 800; }
.rfq-qty button:hover { background: #e2e6e8; }
.rfq-qty input { width: 52px; height: 38px; padding: 0 0.3rem; border: 0; border-inline: 1px solid #9ea8ae; font-variant-numeric: tabular-nums; text-align: center; }
.rfq-remove {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 0;
  color: var(--slate);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rfq-remove:hover { color: var(--error); }
.rfq-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; padding: 1rem 1.25rem 1.15rem; background: var(--warm-white); border-top: 1px solid var(--steel); }
.rfq-foot .button { flex: 1 1 auto; }
.rfq-clear {
  padding: 0.4rem 0.2rem;
  color: var(--slate);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rfq-live {
  position: fixed;
  z-index: 140;
  right: 1rem;
  bottom: 140px;
  max-width: 300px;
  padding: 0.75rem 0.95rem;
  color: var(--white);
  background: var(--navy-950);
  border-left: 4px solid var(--amber);
  box-shadow: 0 14px 34px rgba(6, 21, 33, 0.3);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}
.rfq-live.is-visible { opacity: 1; transform: translateY(0); }
.rfq-summary { padding: 1.1rem 1.2rem; background: var(--warm-white); border-top: 5px solid var(--amber); }
.rfq-summary[hidden] { display: none; }
.rfq-summary ul { margin: 0 0 0.8rem; padding-left: 1.1rem; }
.rfq-summary li { margin-bottom: 0.3rem; font-size: 0.9rem; }
.rfq-summary li span { color: var(--slate); font-variant-numeric: tabular-nums; }
.linkish { padding: 0; color: var(--navy-800); background: none; border: 0; border-bottom: 1px solid currentColor; font: inherit; }

/* Whole-list matcher */
.matcher-section { background: var(--mist); }
.matcher-grid { display: grid; gap: 2rem; }
.matcher-label { display: block; margin-bottom: 0.5rem; color: var(--navy-950); font-size: 0.75rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.matcher-grid textarea {
  width: 100%;
  min-height: 240px;
  padding: 0.85rem;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid #9ea8ae;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92rem;
  line-height: 1.6;
  resize: vertical;
}
.matcher-grid .hint { margin: 0.6rem 0 1rem; color: var(--slate); font-size: 0.82rem; }
.matcher-grid code { padding: 0.1rem 0.3rem; background: var(--white); border: 1px solid var(--steel); font-size: 0.85em; }
.matcher-results { margin-top: 2rem; }
.matcher-results[hidden] { display: none; }

/* Work-order drop zone */
.wo-pitch { position: relative; margin-bottom: 0.75rem; text-align: center; }
.wo-pitch-eyebrow {
  margin: 0 0 0.4rem;
  color: var(--amber-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wo-pitch-title {
  margin: 0 0 0.5rem;
  color: var(--navy-950);
  font-family: var(--heading);
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.wo-pitch-sub { margin: 0 auto; max-width: 44ch; color: var(--slate); font-size: 0.95rem; line-height: 1.5; }
.wo-plane { display: block; width: min(340px, 88%); height: auto; margin: 0.5rem auto -0.75rem; overflow: visible; }
.wo-plane-trail { stroke: var(--amber); }
/* The base transform lives on the element, not only in the keyframes, so the
   plane still sits at the end of the trail when animation is switched off. */
.wo-plane-body {
  fill: var(--navy-800);
  transform: translate(230px, 84px) rotate(128deg) scale(1.35);
  animation: wo-plane-drift 3.4s ease-in-out infinite;
}
@keyframes wo-plane-drift {
  0%, 100% { transform: translate(230px, 84px) rotate(128deg) scale(1.35); }
  50%      { transform: translate(236px, 92px) rotate(128deg) scale(1.35); }
}
.wo-drop {
  padding: 2.25rem 1.5rem;
  background: var(--white);
  border: 2px dashed var(--steel);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.wo-drop.is-over { border-color: var(--amber); background: #fffaf0; }
.wo-drop.is-busy { border-style: solid; border-color: var(--navy-800); }
.wo-drop-title {
  margin: 0 0 0.35rem;
  color: var(--navy-950);
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 700;
}
.wo-drop-sub { margin: 0 auto 1rem; max-width: 46ch; color: var(--slate); font-size: 0.85rem; line-height: 1.5; }
.wo-drop-sub strong { color: var(--navy-950); }
.wo-drop-btn { margin: 0; }
.wo-status {
  margin: 1rem auto 0;
  max-width: 60ch;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: left;
}
.wo-status[hidden] { display: none; }
.wo-status.is-ok { color: var(--success); background: #edf6f1; border-left: 3px solid var(--success); }
.wo-status.is-error { color: var(--error); background: #fbefef; border-left: 3px solid var(--error); }
.wo-status.is-busy { color: var(--navy-800); background: var(--mist); border-left: 3px solid var(--navy-800); }
.wo-or {
  margin: 1rem 0 0.75rem;
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .wo-drop { transition: none; }
  .wo-plane-body { animation: none; }
}
.match-empty { padding: 1.2rem; background: var(--white); border-left: 4px solid var(--amber); }
.match-block { margin-bottom: 1.2rem; padding: clamp(1.2rem, 3vw, 1.9rem); background: var(--white); border-top: 5px solid var(--success); }
.match-block--no { border-top-color: var(--amber); }
.match-head { display: grid; gap: 1rem; align-items: start; margin-bottom: 1.2rem; }
.match-head h3 { margin-bottom: 0.5rem; }
.match-head .hint { margin: 0; max-width: 60ch; color: var(--slate); font-size: 0.85rem; }
.match-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--mist); }
.match-list li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 0.9rem; padding: 0.6rem 0; border-bottom: 1px solid var(--mist); }
.match-pn { color: var(--navy-950); font-weight: 800; font-variant-numeric: tabular-nums; }
.match-desc { flex: 1 1 12rem; color: var(--slate); font-size: 0.88rem; }
.match-qty { color: var(--navy-800); font-weight: 750; font-variant-numeric: tabular-nums; }
.match-note { color: var(--amber-dark); font-size: 0.75rem; font-style: italic; }
.match-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }

/* Keep AOG and quote access one thumb away on mobile. */
.mobile-action-bar {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  /* minmax(0, 1fr), not 1fr: a plain fr will not shrink below the content's
     own minimum, and the AOG phone number is wide enough to push this bar
     past the viewport and give the whole page a sideways scroll. */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--navy-950);
  border-top: 3px solid var(--amber);
  box-shadow: 0 -10px 30px rgba(6, 21, 33, 0.32);
}
.mobile-action-bar a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.mab-aog { color: #101820; background: #ffb020; }
.mab-quote { color: var(--white); background: transparent; }
.mobile-action-bar.is-hidden { transform: translateY(110%); }

/* Desktop AOG contact panel */
body.aog-modal-open { overflow: hidden; }
.aog-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.aog-modal[hidden] { display: none; }
.aog-modal-backdrop { position: absolute; inset: 0; background: rgba(6, 21, 33, 0.78); backdrop-filter: blur(4px); }
.aog-dialog {
  position: relative;
  width: min(100%, 590px);
  padding: clamp(1.6rem, 5vw, 2.6rem);
  color: var(--graphite);
  background: var(--white);
  border-top: 6px solid #ffb020;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}
.aog-dialog:focus { outline: none; }
.aog-dialog .eyebrow { display: flex; align-items: center; gap: 0.55rem; }
.aog-dialog h2 { max-width: 14ch; font-size: clamp(2rem, 6vw, 3.5rem); line-height: 0.98; }
.aog-dialog > p:not(.eyebrow) { margin: 1rem 0 1.2rem; color: var(--slate); }
.aog-dialog-number {
  display: inline-block;
  margin-top: 1rem;
  color: var(--amber-dark);
  font-family: var(--heading);
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}
.aog-dialog-number:hover { color: var(--navy-950); }
.aog-dialog small { display: block; margin-top: 1.1rem; color: var(--slate); line-height: 1.5; }
.aog-dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.65rem;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--steel);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Component-page navigation submenu */
.sub-list { margin: 0; padding: 0 0 0 0.9rem; list-style: none; }
.sub-list a { padding: 0.55rem 0; color: var(--slate); border-bottom: 1px solid var(--mist); font-size: 0.8rem; font-weight: 700; }
.sub-list a[aria-current="page"] { color: var(--amber-dark); }

@media (max-width: 559px) {
  .rfq-quick-add { grid-template-columns: minmax(0, 1fr) 72px; }
  .rfq-quick-add .button { grid-column: 1 / -1; }
  .pn-list { grid-template-columns: 1fr; }
  .pn-row {
    grid-template-columns: minmax(0, 1fr) 58px;
    grid-template-areas:
      "id   qty"
      "desc qty"
      "add  add";
  }
  .pn-row .rfq-add { grid-area: add; margin-top: 0.35rem; }
}
@media (max-width: 767px) {
  body { padding-bottom: 58px; }
  .aog-modal { display: none !important; }
}
@media (min-width: 768px) {
  .sg-facts { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .matcher-grid { grid-template-columns: minmax(0, 1fr) 340px; }
  .match-head { grid-template-columns: minmax(0, 1fr) auto; }
  .rfq-launcher { right: 1.6rem; bottom: 1.6rem; }
  .rfq-live { right: 1.6rem; bottom: 6rem; }
  .rfq-drawer { top: 0; bottom: 0; max-height: 100vh; }
  .mobile-action-bar { display: none; }
}
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) {
  .has-sub { position: relative; }
  .has-sub > a::after {
    content: "";
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    margin-left: 0.42em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-0.15em) rotate(45deg);
    opacity: 0.65;
  }
  .sub-list {
    position: absolute;
    z-index: 120;
    top: 100%;
    left: -0.9rem;
    display: grid;
    min-width: 250px;
    padding: 0.35rem 0;
    background: var(--white);
    border: 1px solid var(--steel);
    border-top: 3px solid var(--amber);
    box-shadow: 0 18px 40px rgba(6, 21, 33, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 130ms ease, transform 130ms ease, visibility 130ms;
  }
  .has-sub:hover .sub-list,
  .has-sub:focus-within .sub-list { opacity: 1; visibility: visible; transform: translateY(0); }
  .sub-list a { padding: 0.6rem 1rem; color: var(--navy-950); border: 0; white-space: nowrap; }
  .sub-list a:hover { color: var(--navy-950); background: #fff5e0; box-shadow: inset 3px 0 0 var(--amber); }
}
@media print { .rfq-launcher, .rfq-drawer, .rfq-live, .mobile-action-bar, .rfq-add { display: none !important; } }
