:root {
  --blue: #296a9f;
  --blue-dark: #184769;
  --green: #2e7d5b;
  --copper: #b66a2c;
  --ink: #111827;
  --text: #263241;
  --muted: #5b6777;
  --line: #d8e0e8;
  --soft: #f4f7f8;
  --soft-blue: #edf5f9;
  --soft-green: #eef7f3;
  --surface: #ffffff;
  --steel: #e9eef1;
  --shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  --max: 1180px;
  --radius: 8px;
  --font:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, Helvetica, sans-serif;
  --font-brand:
    Bahnschrift, "Aptos Display", "Arial Narrow", "Segoe UI Semibold",
    "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 224, 232, 0.9);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.1);
}

.header-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  line-height: 1.1;
  text-decoration: none;
}

.brand__logo {
  width: 52px;
  height: 31.2px;
  aspect-ratio: 5 / 3;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 1px;
  max-width: 300px;
  font-family: var(--font-brand);
  text-transform: uppercase;
}

.brand__name {
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 700;
}

.brand__division {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: var(--radius);
  padding: 9px 12px;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--steel);
  outline: none;
}

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

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: var(--steel);
}

.site-nav .nav-cta {
  gap: 8px;
  margin-left: 8px;
  background: var(--blue);
  color: #ffffff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--blue-dark);
}

.nav-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(41, 106, 159, 0.34);
  border-radius: var(--radius);
  background: #f8fbfd;
  color: var(--blue-dark);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(41, 106, 159, 0.62);
  background: var(--soft-blue);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
  outline: none;
}

.menu-toggle:active {
  transform: translateY(1px);
}

.site-header.is-open .menu-toggle {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #0b1320;
  color: #ffffff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: clamp(170px, 31vh, 340px);
  background: linear-gradient(
    180deg,
    rgba(17, 21, 27, 0) 0%,
    rgba(17, 21, 27, 0.42) 36%,
    rgba(17, 21, 27, 0.84) 72%,
    #11151b 100%
  );
  content: "";
  pointer-events: none;
}

.hero picture,
.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  display: block;
}

.hero__media {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(13, 25, 38, 0.9), rgba(13, 25, 38, 0.62) 48%, rgba(13, 25, 38, 0.26)),
    linear-gradient(0deg, rgba(13, 25, 38, 0.62), rgba(13, 25, 38, 0.08));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 800px) minmax(260px, 292px);
  gap: clamp(30px, 4vw, 62px);
  align-items: end;
  padding-top: 138px;
  padding-bottom: 74px;
}

.hero__main {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero .eyebrow {
  color: #f4b57b;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 3.4rem;
}

.hero__intro {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.button:focus-visible,
.footer-download:focus-visible,
.footer-links a:focus-visible,
.site-nav a:focus-visible {
  box-shadow: 0 0 0 3px rgba(41, 106, 159, 0.22);
}

.button--primary {
  background: var(--blue);
  color: #ffffff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--blue-dark);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button--light:hover,
.button--light:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.hero__capability {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
  width: min(100%, 292px);
  justify-self: end;
  padding: 0;
}

.hero__capability-preview {
  display: grid;
  align-self: start;
  justify-items: center;
  width: 100%;
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.hero__capability-preview:hover,
.hero__capability-preview:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.hero__capability-preview picture {
  position: static;
  display: block;
  width: min(100%, 224px);
  height: auto;
}

.hero__capability-preview img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34),
    0 0 24px rgba(255, 255, 255, 0.28),
    0 0 36px rgba(91, 156, 207, 0.24),
    0 14px 30px rgba(2, 6, 23, 0.36);
}

.hero__download {
  min-height: 40px;
  width: 100%;
  padding: 9px 11px;
  font-size: 0.78rem;
}

.hero--infrastructure .hero__content {
  grid-template-columns: minmax(0, 780px) minmax(260px, 292px);
}

.hero--landing .hero__content {
  grid-template-columns: minmax(0, 830px);
}

.hero--landing .hero__shade {
  background:
    linear-gradient(90deg, rgba(13, 25, 38, 0.9), rgba(13, 25, 38, 0.68) 48%, rgba(13, 25, 38, 0.24)),
    linear-gradient(0deg, rgba(13, 25, 38, 0.62), rgba(13, 25, 38, 0.08));
}

.hero--infrastructure .hero__shade {
  background:
    linear-gradient(90deg, rgba(13, 25, 38, 0.92), rgba(13, 25, 38, 0.66) 46%, rgba(13, 25, 38, 0.22)),
    linear-gradient(0deg, rgba(13, 25, 38, 0.54), rgba(13, 25, 38, 0.02));
}

.intro-band {
  background:
    linear-gradient(180deg, #f7fafb 0%, #eef4f6 100%);
  padding: 48px 0 58px;
}

.intro-grid,
.split-grid,
.photo-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

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

.proof-grid article {
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
}

.proof-grid img {
  display: block;
  width: 46px;
  height: 46px;
  padding: 9px;
  border: 1px solid #c8d8e5;
  border-radius: 10px;
  background: #f1f7fb;
  box-sizing: border-box;
  object-fit: contain;
  margin-bottom: 14px;
}

.proof-grid h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.intro-grid h2,
.section-heading h2,
.split-copy h2,
.photo-copy h2,
.contact-section h2 {
  margin-bottom: 14px;
  font-size: 2.15rem;
}

.intro-grid p:last-child,
.section-heading p,
.split-copy p,
.photo-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  padding: 72px 0;
}

#services,
#approach,
#capability-statement,
#certifications,
#connected-systems,
#infrastructure-scope,
#field-plan,
#construction-fit,
#contact {
  scroll-margin-top: 88px;
}

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

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

.service-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.045);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.service-item:hover {
  border-color: rgba(41, 106, 159, 0.38);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.service-item--status {
  grid-column: 1 / -1;
}

.service-item__media {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1px solid #c8d8e5;
  border-radius: 10px;
  background: #f1f7fb;
  place-items: center;
}

.service-item__media img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.service-item--feature {
  align-items: start;
}

.service-item__actions {
  margin-top: 20px;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.service-item p {
  margin-bottom: 14px;
  color: var(--muted);
}

.service-item ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-item li,
.check-list li {
  position: relative;
  padding-left: 22px;
}

.service-item li + li,
.check-list li + li {
  margin-top: 8px;
}

.service-item li::before,
.check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  content: "";
  transform: rotate(45deg);
}

.section--split {
  background:
    linear-gradient(180deg, #f6f9fa 0%, #eef6f2 100%);
}

.split-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
}

.process-marker {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid #c8d8e5;
  border-radius: 10px;
  background: #f1f7fb;
  place-items: center;
}

.process-marker img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.process-list h3 {
  margin: 3px 0 6px;
  font-size: 1.12rem;
}

.process-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.certifications-section {
  background: #ffffff;
}

.certifications-heading {
  max-width: 860px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.cert-item {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.045);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.cert-item:hover {
  border-color: rgba(41, 106, 159, 0.38);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.cert-logo-wrap {
  display: flex;
  width: 100%;
  min-height: 112px;
  align-items: center;
  justify-content: center;
}

.cert-item img {
  width: 100%;
  max-width: 210px;
  max-height: 96px;
  height: auto;
  object-fit: contain;
}

.cert-item h3 {
  max-width: 240px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.18;
}

.cert-item p {
  max-width: 230px;
  margin: -4px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.photo-band {
  padding: 72px 0;
  background: #102232;
  color: #ffffff;
}

.photo-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
}

.photo-copy h2 {
  color: #ffffff;
}

.photo-copy p,
.photo-copy li {
  color: rgba(255, 255, 255, 0.82);
}

.secure-note {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
}

.secure-note strong {
  color: #ffffff;
}

.secure-note span {
  color: rgba(255, 255, 255, 0.78);
}

.photo-frame {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.photo-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fafb 100%);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
}

.contact-main {
  display: grid;
  gap: 18px;
}

.contact-intro {
  max-width: 720px;
}

.project-form {
  display: grid;
  gap: 18px;
  max-width: 790px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--ink);
  font-weight: 800;
}

.form-field label span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c8d8e5;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 11px 12px;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(41, 106, 159, 0.16);
}

.form-field [aria-invalid="true"] {
  border-color: #b42318;
}

.field-error,
.project-form .field-error,
.form-helper,
.project-form .form-helper,
.form-status,
.project-form .form-status {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-helper,
.project-form .form-helper {
  color: var(--muted);
}

.field-error,
.project-form .field-error {
  color: #b42318;
  font-weight: 700;
}

.form-submit {
  display: grid;
  gap: 10px;
  align-items: start;
}

.project-form .button {
  width: fit-content;
  cursor: pointer;
}

.project-form .button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.4em;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #b42318;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-page {
  background: var(--soft);
}

.form-hero {
  min-height: calc(100vh - 260px);
  padding: 146px 0 72px;
}

.form-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 34px;
  align-items: start;
}

.form-page-copy {
  display: grid;
  gap: 14px;
}

.form-page-copy h1 {
  margin-bottom: 4px;
  font-size: 2.7rem;
}

.form-page-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.form-page-contact {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 16px 18px;
}

.form-page-contact span {
  color: var(--ink);
  font-weight: 900;
}

.form-page-contact a {
  width: fit-content;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.form-page-contact a:hover,
.form-page-contact a:focus-visible {
  text-decoration: underline;
}

.contact-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 26px;
  color: var(--text);
  font-style: normal;
}

.contact-panel__heading {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-panel__heading > span {
  color: var(--copper);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-panel__heading strong {
  color: var(--ink);
  font-size: 1.28rem;
}

.contact-panel__heading small {
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-panel a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-link img {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid #c8d8e5;
  border-radius: 9px;
  background: #f1f7fb;
  box-sizing: border-box;
  object-fit: contain;
}

.contact-panel a:hover span,
.contact-panel a:focus-visible span {
  text-decoration: underline;
}

.contact-panel__note {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 14px;
}

.contact-panel__note span {
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-panel__note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 32px 0;
}

.footer-grid {
  grid-template-columns: minmax(260px, 1fr) minmax(220px, auto) minmax(220px, auto);
  align-items: start;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand .brand__name,
.footer-brand .brand__division {
  color: #ffffff;
}

.footer-brand__text {
  display: grid;
  gap: 1px;
  font-family: var(--font-brand);
  text-transform: uppercase;
}

.footer-brand img {
  width: 44px;
  height: 26.4px;
  aspect-ratio: 5 / 3;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-footer p {
  max-width: 580px;
  margin: 12px 0 0;
}

.footer-facility h2,
.footer-resources h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.2;
}

.footer-facility strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
}

.footer-facility address {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.45;
}

.footer-facility address a {
  color: inherit;
  text-decoration: none;
}

.footer-facility address a:hover,
.footer-facility address a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.footer-download {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.footer-download:hover,
.footer-download:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
}

.footer-links a {
  border-radius: var(--radius);
  padding: 8px 10px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.footer-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-shell {
    min-height: 68px;
  }

  .brand__text {
    max-width: 240px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-left: 0;
  }

  .hero {
    min-height: 570px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(13, 25, 38, 0.92), rgba(13, 25, 38, 0.62)),
      linear-gradient(0deg, rgba(13, 25, 38, 0.68), rgba(13, 25, 38, 0.08));
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 112px;
    padding-bottom: 44px;
  }

  .hero--landing .hero__content,
  .hero--infrastructure .hero__content {
    grid-template-columns: 1fr;
  }

  .hero__capability {
    grid-template-columns: 1fr;
    width: min(100%, 250px);
    justify-self: start;
  }

  .hero__download {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero__intro {
    font-size: 1.05rem;
  }

  .form-hero {
    padding-top: 112px;
  }

  .intro-grid,
  .proof-grid,
  .split-grid,
  .photo-grid,
  .contact-grid,
  .form-page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid,
  .contact-grid,
  .form-page-grid {
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand__text {
    max-width: 190px;
  }

  .brand__name {
    font-size: 0.9rem;
  }

  .brand__division {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero__content {
    padding-bottom: 24px;
  }

  .form-page-copy h1 {
    font-size: 2rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .intro-grid h2,
  .section-heading h2,
  .split-copy h2,
  .photo-copy h2,
  .contact-section h2 {
    font-size: 1.72rem;
  }

  .section,
  .photo-band {
    padding: 56px 0;
  }

  .hero__capability {
    gap: 12px;
    width: 100%;
    padding: 0;
  }

  .hero__capability-preview {
    display: none;
  }

  .hero__capability-preview img {
    width: 100%;
  }

  .hero__capability-preview picture {
    width: min(100%, 136px);
  }

  .hero__download {
    min-width: 0;
    font-size: 0.72rem;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .project-form {
    padding: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .process-list p {
    grid-column: auto;
  }
}
