:root {
  --ink: #071a2a;
  --deep: #0b2538;
  --blue: #108da3;
  --aqua: #2fc6d7;
  --orange: #f26a21;
  --orange-dark: #c24c14;
  --gold: #c49a45;
  --paper: #f5f6f2;
  --white: #ffffff;
  --muted: #5d6b73;
  --line: #d9e0df;
  --shadow: 0 18px 45px rgba(7, 26, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(245, 246, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 32%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: var(--deep);
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 15px;
  color: var(--white) !important;
  background: var(--deep);
  border-radius: 6px;
}

.nav-toggle {
  display: none !important;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 64px) 42px;
  gap: clamp(32px, 7vw, 88px);
  background:
    linear-gradient(112deg, rgba(245, 246, 242, 0.97) 0%, rgba(245, 246, 242, 0.9) 48%, rgba(47, 198, 215, 0.16) 100%),
    radial-gradient(circle at 88% 18%, rgba(242, 106, 33, 0.22), transparent 28%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-right: 9px;
  vertical-align: middle;
  background: var(--orange);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 840px;
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-text,
.page-hero p {
  max-width: 720px;
  color: #31434d;
  font-size: 1.12rem;
}

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

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.credential-row span {
  padding: 9px 12px;
  color: var(--deep);
  background: #d8f6fa;
  border: 1px solid rgba(16, 141, 163, 0.28);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--deep);
}

.button.primary,
.button.accent,
.nav-cta {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary:hover,
.button.accent:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(7, 26, 42, 0.18);
}

.button.accent {
  color: var(--white);
  background: var(--orange);
}

.button.secondary {
  color: var(--deep);
  background: var(--white);
  border-color: var(--line);
}

.button.light {
  color: var(--deep);
  background: var(--white);
}

.hero-logo {
  padding: clamp(12px, 2.4vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-logo img {
  width: 100%;
  border-radius: 6px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-photo > img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-photo div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: var(--white);
  background: rgba(7, 26, 42, 0.88);
  border-radius: 8px;
}

.hero-photo div img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.hero-photo span {
  font-weight: 900;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--deep), #123c52);
  color: var(--white);
}

.signal-strip span {
  padding: 16px 12px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.global-reach {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  background: var(--white);
}

.global-reach.compact-band {
  background: #eaf6f7;
}

.global-feature {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 26, 42, 0.94), rgba(11, 37, 56, 0.92)),
    url("ops-yard-coordination.jpeg") center / cover;
}

.global-feature .eyebrow,
.global-feature p {
  color: #cce9ee;
}

.global-feature .country-grid span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.global-feature .country-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--orange);
  border-radius: 50%;
}

.global-reach p {
  max-width: 720px;
  color: #31434d;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.country-grid span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--deep);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--deep);
}

.impact-strip article {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.impact-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 1;
}

.impact-strip span {
  color: #d2e4e9;
  font-weight: 800;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.why-grid article:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 106, 33, 0.34);
  box-shadow: 0 16px 34px rgba(7, 26, 42, 0.12);
}

.why-grid span {
  color: var(--orange);
  font-weight: 900;
}

.why-grid p {
  color: var(--muted);
}

.work-history {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  background: var(--paper);
}

.work-history p {
  color: #31434d;
}

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

.logo-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 18px;
  color: var(--deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 28px rgba(7, 26, 42, 0.07);
}

.gov-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 26, 42, 0.96), rgba(11, 37, 56, 0.9)),
    url("ops-field-inventory.jpeg") center / cover;
}

.gov-teaser .eyebrow,
.gov-teaser p {
  color: #cce9ee;
}

.gov-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gov-hero {
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(245, 246, 242, 0.98) 0%, rgba(245, 246, 242, 0.94) 56%, rgba(245, 246, 242, 0.68) 100%),
    url("ops-team-completed-load.jpeg") center right / cover;
}

.gov-hero .eyebrow,
.gov-hero p {
  color: #31434d;
}

.gov-hero h1,
.gov-hero p {
  max-width: 820px;
}

.gov-profile,
.capability-columns,
.codes-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--white);
}

.profile-grid,
.capability-list,
.code-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-grid article,
.capability-list article,
.code-grid article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-grid strong,
.code-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 1.25rem;
}

.profile-grid span,
.code-grid span,
.capability-list p {
  color: var(--muted);
}

.codes-section {
  background: #eaf6f7;
}

.capability-page {
  background: #d8dde0;
}

.print-action {
  width: min(980px, calc(100% - 24px));
  margin: 18px auto 0;
  text-align: right;
}

.capability-sheet {
  width: min(980px, calc(100% - 24px));
  margin: 24px auto;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.capability-header {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 4px solid var(--deep);
}

.capability-header img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}

.capability-header h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.capability-summary,
.capability-two,
.capability-footer-note {
  margin-top: 22px;
}

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

.capability-two > div,
.capability-footer-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capability-sheet h2 {
  font-size: 1.35rem;
}

.capability-sheet ul {
  margin: 0;
  padding-left: 20px;
}

.capability-sheet li + li {
  margin-top: 7px;
}

.capability-sheet dl {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 8px 12px;
  margin: 0;
}

.capability-sheet dt {
  color: var(--deep);
  font-weight: 900;
}

.capability-sheet dd {
  margin: 0;
  color: var(--muted);
}

.section,
.page-hero {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.page-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--white), rgba(47, 198, 215, 0.14));
}

.page-hero.compact {
  min-height: 42vh;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 7vw, 88px);
  background: var(--white);
}

.copy-stack p {
  color: #344751;
  font-size: 1.06rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.values-grid article,
.process article,
.contact-panel,
.setup-steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 260px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card .text-link {
  display: inline-block;
  margin-top: 10px;
}

.service-card span,
.service-number,
.process span {
  color: var(--gold);
  font-weight: 900;
}

.service-card p,
.values-grid p,
.process p,
.setup-steps p {
  color: var(--muted);
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr) auto;
  align-items: center;
  gap: 28px;
  color: var(--white);
  background: var(--deep);
}

.vibrant-cta {
  background:
    linear-gradient(120deg, rgba(7, 26, 42, 0.96), rgba(11, 37, 56, 0.9)),
    url("ops-loading-container.jpeg") center / cover;
}

.founder-band {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  background: #eaf6f7;
}

.founder-band img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.founder-band p {
  max-width: 860px;
  color: #31434d;
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-points span {
  padding: 9px 12px;
  color: var(--deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.dark-band .eyebrow,
.dark-band p {
  color: #b9eff6;
}

.operations-preview {
  background: var(--white);
}

.operations-preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
  margin-bottom: 22px;
}

.operations-preview-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 220ms ease, filter 220ms ease;
}

.operations-preview-grid img:hover {
  transform: scale(1.015);
  filter: saturate(1.1) contrast(1.04);
}

.operations-preview-grid img:first-child {
  height: 360px;
}

.operations-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
  min-height: calc(100vh - 82px);
  background: var(--deep);
  color: var(--white);
}

.operations-hero > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.operations-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 76px);
}

.operations-hero p {
  color: #d2e4e9;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
}

.operations-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.operations-grid .feature-photo {
  grid-column: span 2;
  grid-row: span 2;
}

.operations-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.operations-grid .feature-photo img {
  height: 632px;
}

.operations-grid figcaption {
  padding: 14px 16px;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.experience-snapshots {
  background: var(--white);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.snapshot-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: 8px;
}

.snapshot-grid p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.service-list .text-link {
  display: inline-block;
  margin-top: 8px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: calc(100vh - 82px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 64px);
  background: linear-gradient(135deg, var(--white), #eaf6f7);
}

.service-hero p {
  max-width: 720px;
  color: #31434d;
  font-size: 1.1rem;
}

.service-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  background: var(--white);
}

.service-detail ul {
  margin: 0;
  padding-left: 20px;
  color: #344751;
  font-size: 1.06rem;
}

.service-detail li + li {
  margin-top: 10px;
}

.service-detail aside {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-number {
  font-size: 1.4rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}

.cta-band p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.process article,
.values-grid article,
.setup-steps article {
  padding: 26px;
}

.process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--deep);
  background: #d8f6fa;
  border-radius: 50%;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 430px);
  align-items: center;
  gap: 36px;
}

.about-hero img {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.field-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  background: #eaf6f7;
}

.field-story img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.field-story p {
  color: #31434d;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--deep);
}

.metrics-grid article {
  padding: 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.metrics-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--aqua);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1;
}

.metrics-grid span {
  color: #d2e4e9;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bdc9cb;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

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

.contact-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-checklist {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.contact-checklist span {
  padding: 10px 12px;
  color: var(--deep);
  background: #eaf6f7;
  border-radius: 6px;
  font-weight: 800;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .button.primary,
  .button.accent,
  .nav-cta,
  .why-grid article,
  .service-card,
  .operations-preview-grid img {
    transition: none;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: #061521;
}

.site-footer p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #b9c7ce;
}

.site-footer div:last-child {
  display: grid;
  justify-items: end;
  gap: 8px;
}

@media (max-width: 920px) {
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px 14px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    font-size: 0.88rem;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav a {
    padding: 0;
  }

  .hero,
  .two-column,
  .dark-band,
  .founder-band,
  .operations-hero,
  .field-story,
  .gov-teaser,
  .gov-profile,
  .capability-columns,
  .codes-section,
  .service-hero,
  .service-detail,
  .global-reach,
  .work-history,
  .about-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-hero {
    min-height: auto;
  }

  .card-grid,
  .card-grid.three,
  .impact-strip,
  .why-grid,
  .profile-grid,
  .capability-list,
  .code-grid,
  .snapshot-grid,
  .process,
  .values-grid,
  .metrics-grid,
  .operations-grid,
  .setup-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operations-preview-grid {
    grid-template-columns: 1fr;
  }

  .operations-preview-grid img,
  .operations-preview-grid img:first-child,
  .operations-hero > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .operations-grid .feature-photo {
    grid-column: span 2;
    grid-row: auto;
  }

  .operations-grid .feature-photo img {
    height: 360px;
  }

  .signal-strip,
  .country-grid,
  .logo-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div:last-child {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 74px;
    padding: 12px 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    gap: 8px 10px;
    font-size: 0.8rem;
  }

  .nav-cta {
    padding: 8px 10px;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.02;
  }

  .card-grid,
  .card-grid.three,
  .impact-strip,
  .why-grid,
  .profile-grid,
  .capability-list,
  .code-grid,
  .snapshot-grid,
  .process,
  .values-grid,
  .metrics-grid,
  .operations-grid,
  .setup-steps,
  .signal-strip,
  .country-grid,
  .logo-list {
    grid-template-columns: 1fr;
  }

  .operations-grid .feature-photo {
    grid-column: span 1;
  }

  .operations-grid img,
  .operations-grid .feature-photo img {
    height: 280px;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .capability-sheet {
    width: 100%;
    margin: 0;
    padding: 18px;
  }

  .capability-header,
  .capability-two,
  .capability-sheet dl {
    grid-template-columns: 1fr;
  }
}

@media print {
  .capability-page {
    background: var(--white);
  }

  .print-action {
    display: none;
  }

  .capability-sheet {
    width: 100%;
    margin: 0;
    padding: 0.35in;
    box-shadow: none;
  }

  .capability-header h1 {
    font-size: 2rem;
  }

  .capability-sheet h2 {
    font-size: 1.05rem;
  }

  .capability-sheet,
  .capability-sheet p,
  .capability-sheet li,
  .capability-sheet dd {
    font-size: 0.86rem;
    line-height: 1.35;
  }
}
