:root {
  --red: #d80000;
  --red-dark: #a60000;
  --ink: #1e1e1e;
  --muted: #5b5b5b;
  --silver: #b3b3b3;
  --line: #ddd;
  --paper: #f5f5f3;
  --white: #fff;
  --max: 1800px;
  --body: Inter, Arial, sans-serif;
  --heading: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: white;
  color: var(--ink);
  font: 16px/1.7 var(--body);
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
button,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
:focus-visible {
  outline: 3px solid #0674c4;
  outline-offset: 5px;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1.05;
}
h1 {
  font-size: clamp(48px, 5.5vw, 82px);
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.015em;
}
h3 {
  font-size: 29px;
}
p + p {
  margin-top: 18px;
}
ul {
  padding-left: 22px;
}
.wrap {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
.section-tight {
  padding-block: 58px;
}
.soft {
  background: var(--paper);
}
.dark {
  background: var(--ink);
  color: white;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
  display: block;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  background: var(--red);
  width: 22px;
  height: 2px;
  vertical-align: middle;
  margin-right: 12px;
}
.muted {
  color: var(--muted);
}
.lead {
  font-size: 18px;
  line-height: 1.7;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}
.section-head > div {
  max-width: 690px;
}
.section-head p {
  max-width: 380px;
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--red);
  color: white;
  border: 1px solid var(--red);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition: background 0.2s;
}
.btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.btn::after {
  content: "↗";
  font-size: 20px;
  line-height: 1;
}
.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: #aaa;
}
.dark .btn.secondary,
.hero .btn.secondary {
  color: white;
  border-color: #888;
}
.btn.secondary:hover {
  background: #e8e8e8;
  color: var(--ink);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}
.text-link::after {
  content: " ↗";
  color: var(--red);
  font-size: 19px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  background: white;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.utility {
  background: var(--ink);
  color: #d4d4d4;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.utility .wrap {
  display: flex;
  justify-content: space-between;
  padding-block: 8px;
}
.utility a {
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 94px;
}
.logo {
  flex-shrink: 0;
  width: 142px;
}
.logo img {
  width: 142px;
  height: 77px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-nav > a,
.nav-group > summary {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  list-style: none;
  padding-block: 24px;
  cursor: pointer;
  white-space: nowrap;
}
.nav-group > summary::-webkit-details-marker {
  display: none;
}
.nav-group > summary::after {
  content: "⌄";
  margin-left: 7px;
  color: #777;
}
.nav-group[open] > summary {
  color: var(--red);
}
.nav-group {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -22px;
  width: 290px;
  max-height: 70vh;
  overflow: auto;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px #0001;
}
.dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 12px;
  text-decoration: none;
  line-height: 1.6;
}
.dropdown a:hover,
.dropdown a[aria-current="page"] {
  background: var(--paper);
  color: var(--red);
}
.main-nav > .btn {
  padding: 12px 18px;
  color: white;
  font-size: 11px;
  gap: 16px;
}
.menu-toggle {
  display: none;
  background: white;
  border: 1px solid var(--line);
  min-height: 44px;
  padding: 8px 14px;
  font-size: 13px;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #202624;
  color: white;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(8, 15, 18, 0.91),
    rgba(8, 15, 18, 0.65) 48%,
    rgba(8, 15, 18, 0.08)
  );
}
.home-hero .wrap {
  padding-top: 86px;
  padding-bottom: 68px;
  min-height: 620px;
}
.hero h1 {
  max-width: 800px;
}
.hero .lead {
  max-width: 560px;
  margin-top: 25px;
  color: #e2e2e2;
}
.hero .eyebrow {
  color: #e5e5e5;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 68px;
  padding-top: 24px;
  border-top: 1px solid #ffffff40;
  color: #d4d4d4;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.hero-bottom a {
  color: white;
}
.capability-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.capability-bar .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.capability-bar a {
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 23px 12px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.capability-bar a:first-child {
  border-left: 1px solid var(--line);
}
.capability-bar a:hover {
  color: var(--red);
}
.grid {
  display: grid;
  gap: 24px;
}
.grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.service-card {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: 26px 0 12px;
  position: relative;
  text-decoration: none;
}
.service-card .number {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 26px;
}
.service-card h3 {
  margin-bottom: 15px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  max-width: 340px;
}
.service-card .card-link {
  font-size: 12px;
  font-weight: 600;
  margin-top: auto;
  padding-top: 23px;
}
.service-card:hover h3,
.service-card:hover .card-link {
  color: var(--red);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split .copy p {
  margin-top: 24px;
  color: var(--muted);
}
.split.dark .copy p,
.dark .copy p {
  color: #cfcfcf;
}
.image-frame {
  position: relative;
}
.image-frame > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.image-caption {
  background: var(--ink);
  color: #ddd;
  font-size: 10px;
  letter-spacing: 0.09em;
  padding: 14px 20px;
}
.image-badge {
  position: absolute;
  bottom: 50px;
  left: -24px;
  background: var(--red);
  color: white;
  padding: 25px;
  font-family: var(--heading);
  font-size: 30px;
  line-height: 1.1;
  max-width: 210px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  font-size: 13px;
}
.check-list li {
  border-top: 1px solid var(--line);
  padding-top: 11px;
}
.check-list li::before {
  content: "+";
  margin-right: 10px;
  color: var(--red);
}
.maritime-feature {
  position: relative;
  background: #172126;
  color: white;
  overflow: hidden;
}
.maritime-feature .split {
  gap: 0;
  grid-template-columns: 1.05fr 1fr;
}
.maritime-photo {
  width: 100%;
  height: 660px;
  object-fit: cover;
}
.maritime-copy {
  padding: 60px;
  max-width: 670px;
}
.maritime-copy p {
  color: #d0d5d7;
  margin-top: 24px;
}
.maritime-copy .mini-links {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-links a {
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid #ffffff35;
  padding-bottom: 10px;
}
.mini-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.photo-card {
  text-decoration: none;
  display: block;
}
.photo-card .photo {
  overflow: hidden;
  background: #ddd;
}
.photo-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.4s;
}
.photo-card:hover img {
  transform: scale(1.025);
}
.photo-card h3 {
  margin-top: 20px;
  font-size: 28px;
}
.photo-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.photo-card .tag {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.integration {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 42px;
  border: 1px solid #555;
}
.integration > div {
  padding: 32px;
  border-right: 1px solid #555;
}
.integration > div:last-child {
  border: 0;
}
.integration span {
  font-size: 10px;
  color: #bbb;
  letter-spacing: 0.14em;
}
.integration h3 {
  margin-top: 20px;
  font-size: 31px;
}
.integration p {
  margin-top: 15px;
  color: #ccc;
  font-size: 13px;
}
.integration a {
  color: #fff;
}
.cta-band {
  background: var(--red);
  color: white;
  padding-block: 60px;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-size: 48px;
  max-width: 650px;
}
.cta-band p {
  margin-top: 15px;
  color: #fff;
}
.cta-band .btn {
  background: white;
  color: var(--ink);
  border-color: white;
  flex-shrink: 0;
}
.site-footer {
  background: #171717;
  color: #c0c0c0;
  padding: 66px 0 24px;
  font-size: 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand img {
  width: 175px;
  background: white;
  padding: 12px;
  margin-bottom: 20px;
}
.footer-brand p {
  max-width: 260px;
}
.site-footer h3 {
  color: white;
  font-family: var(--body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.site-footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
}
.site-footer a:hover {
  color: white;
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid #444;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
}
.footer-bottom a {
  display: inline;
  margin-left: 20px;
}
.page-hero .wrap {
  padding-block: 28px 66px;
  min-height: 440px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  font-size: 10px;
  color: #d2d2d2;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 10px;
  color: #999;
}
.page-hero h1 {
  max-width: 830px;
}
.page-hero .lead {
  max-width: 610px;
}
.page-hero .eyebrow {
  margin-bottom: 18px;
}
.detail-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: start;
}
.detail-intro p {
  color: var(--muted);
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.scope-item {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.scope-item h3 {
  font-size: 27px;
  margin-bottom: 18px;
}
.scope-item p {
  font-size: 14px;
  color: var(--muted);
}
.scope-item .number {
  font-size: 10px;
  color: var(--red);
  display: block;
  margin-bottom: 20px;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 42px;
}
.process div {
  min-width: 0;
  overflow-wrap: anywhere;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.process span {
  font-size: 11px;
  color: var(--red);
}
.process h3 {
  font-size: 26px;
  margin: 16px 0;
}
.process p {
  font-size: 13px;
  color: var(--muted);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  padding: 22px 36px 22px 0;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  list-style: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  color: var(--red);
}
.faq[open] summary::after {
  content: "−";
}
.faq p {
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
}
.related-card {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--heading);
  font-size: 26px;
  line-height: 1.2;
}
.related-card::after {
  content: "↗";
  color: var(--red);
  margin-left: 20px;
}
.related-card:hover {
  border-color: var(--red);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.contact-aside p {
  margin-top: 20px;
  color: var(--muted);
}
.contact-aside > a {
  display: block;
  font-family: var(--heading);
  font-size: 28px;
  margin-top: 24px;
}
.contact-aside .note {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 30px;
  font-size: 13px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  border: 1px solid #aaa;
  background: white;
  border-radius: 0;
  padding: 12px;
  font-size: 14px;
  color: var(--ink);
  min-height: 48px;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field small {
  font-size: 11px;
  color: var(--muted);
}
.form-note {
  font-size: 11px;
  color: var(--muted);
  margin: 20px 0;
}
.form-status {
  padding: 16px;
  background: var(--paper);
  border-left: 3px solid var(--red);
  margin-top: 20px;
  font-size: 14px;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.prose {
  max-width: 800px;
}
.prose h2 {
  font-size: 36px;
  margin: 38px 0 20px;
}
.prose p,
.prose li {
  color: var(--muted);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.gallery figure {
  margin: 0;
}
.gallery figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin-top: 25px;
}
.coverage-list div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.coverage-list strong {
  font-family: var(--heading);
  font-size: 24px;
  display: block;
}
.coverage-list span {
  font-size: 12px;
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
@media (min-width: 1600px) {
  .home-hero .wrap {
    min-height: 690px;
    padding-top: 105px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .main-nav {
    gap: 15px;
  }
  .main-nav > a,
  .nav-group > summary {
    font-size: 11px;
  }
  .header-inner {
    gap: 16px;
  }
  .logo,
  .logo img {
    width: 115px;
  }
  .split,
  .detail-intro,
  .contact-layout {
    gap: 45px;
  }
  .maritime-copy {
    padding: 40px;
  }
  .footer-grid {
    gap: 30px;
  }
}
@media (max-width: 980px) {
  .navigation-ready .menu-toggle {
    display: block;
  }
  .header-inner {
    height: 80px;
  }
  .logo,
  .logo img {
    width: 128px;
  }
  .logo img {
    height: 68px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    max-height: calc(100dvh - 80px);
    overflow: auto;
    padding: 12px 28px 26px;
    border-bottom: 1px solid var(--line);
  }
  html:not(.navigation-ready) .site-header {
    position: relative;
  }
  html:not(.navigation-ready) .header-inner {
    height: auto;
    flex-wrap: wrap;
  }
  html:not(.navigation-ready) .main-nav {
    display: block;
    position: static;
    width: 100%;
    max-height: none;
  }
  .main-nav.is-open {
    display: block;
  }
  .main-nav > a,
  .nav-group > summary {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }
  .main-nav > .btn {
    display: inline-flex;
    margin-top: 18px;
    padding: 14px 20px;
  }
  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--red);
    max-height: none;
    padding: 0 0 0 10px;
  }
  .dropdown a {
    font-size: 13px;
  }
  .grid.four {
    grid-template-columns: 1fr 1fr;
  }
  .maritime-feature .split {
    grid-template-columns: 1fr 1fr;
  }
  .maritime-photo {
    height: 700px;
  }
  .maritime-copy {
    padding: 32px;
  }
  .scope-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-layout {
    gap: 40px;
  }
  .home-hero .wrap {
    min-height: 610px;
  }
  .utility {
    font-size: 9px;
  }
}
@media (max-width: 680px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .utility .wrap {
    justify-content: center;
  }
  .utility .utility-note {
    display: none;
  }
  .section {
    padding-block: 58px;
  }
  .section-tight {
    padding-block: 40px;
  }
  .home-hero .wrap {
    padding-top: 54px;
    padding-bottom: 28px;
    min-height: 640px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero .lead {
    font-size: 16px;
  }
  .hero::after {
    background: linear-gradient(90deg, #081012e8, #08101294);
  }
  .hero-bottom {
    margin-top: 45px;
    align-items: start;
    flex-direction: column;
    gap: 12px;
    font-size: 9px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .capability-bar .wrap {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
  .capability-bar a {
    padding: 15px 6px;
    font-size: 9px;
    border-bottom: 1px solid var(--line);
  }
  .capability-bar a:nth-child(4),
  .capability-bar a:nth-child(5) {
    grid-column: auto;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-head p {
    margin-top: 20px;
  }
  .section-head > a {
    margin-top: 20px;
  }
  .grid.three,
  .grid.two,
  .split,
  .detail-intro,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .grid.four {
    gap: 24px 16px;
  }
  .photo-card img {
    height: 210px;
  }
  .photo-card h3 {
    font-size: 25px;
  }
  .image-frame > img {
    height: 340px;
  }
  .image-badge {
    left: 0;
    bottom: 45px;
    font-size: 25px;
    padding: 18px;
  }
  .maritime-feature .split {
    grid-template-columns: 1fr;
  }
  .maritime-photo {
    height: 320px;
  }
  .maritime-copy {
    padding: 38px 20px 48px;
  }
  .maritime-copy h2 {
    font-size: 44px;
  }
  .integration {
    grid-template-columns: 1fr;
  }
  .integration > div {
    border-right: 0;
    border-bottom: 1px solid #555;
    padding: 26px;
  }
  .cta-band {
    padding-block: 44px;
  }
  .cta-band .wrap {
    display: block;
  }
  .cta-band h2 {
    font-size: 39px;
  }
  .cta-band .btn {
    margin-top: 26px;
  }
  .footer-grid {
    gap: 35px 22px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom div {
    margin-top: 14px;
  }
  .footer-bottom a {
    margin: 0 20px 0 0;
  }
  .page-hero .wrap {
    padding-bottom: 45px;
    min-height: 470px;
  }
  .breadcrumbs {
    margin-bottom: 32px;
    font-size: 9px;
  }
  .page-hero h1 {
    font-size: 48px;
  }
  .scope-grid {
    grid-template-columns: 1fr;
  }
  .scope-item {
    padding: 24px;
  }
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .gallery img {
    height: 190px;
  }
  .lead {
    font-size: 16px;
  }
  .check-list {
    font-size: 12px;
  }
  .actions .btn {
    font-size: 12px;
    padding: 13px 18px;
    gap: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* Final page-specific refinements keep the underlying type and spacing system shared. */
.scope-item .text-link {
  margin-top: 20px;
}
.contact-hero .wrap {
  min-height: 350px;
  padding-bottom: 40px;
}
.contact-hero .breadcrumbs {
  margin-bottom: 26px;
}
.contact-hero h1 {
  font-size: clamp(42px, 5vw, 70px);
}
.contact-hero .lead {
  margin-top: 18px;
}
.contact-hero .actions {
  margin-top: 22px;
}
.field:focus-within label {
  color: var(--red-dark);
}

/* IT-led homepage: show the existing infrastructure photograph at a useful scale. */
.home-hero {
  background: #141c21;
}
.home-hero::after {
  display: none;
}
.home-hero .wrap {
  padding-top: 64px;
  padding-bottom: 34px;
  min-height: 0;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}
.home-hero h1 {
  font-size: clamp(38px, 4.3vw, 66px);
  line-height: 1.07;
  max-width: 700px;
}
.hero-infrastructure {
  margin: 0;
  min-width: 0;
  border: 1px solid #53606a;
  background: #1d2931;
}
.hero-infrastructure .infrastructure-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 650 / 365;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero-infrastructure figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  color: #e5e9ec;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.home-hero .hero-bottom {
  margin-top: 40px;
  line-height: 1.8;
}
.capability-bar .wrap {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.deployment-feature h3 {
  font-size: 29px;
  margin-bottom: 16px;
}
.deployment-summary {
  margin-top: 35px;
  max-width: 850px;
}
.delivery-flow {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 20px;
}
.delivery-flow li {
  position: relative;
  min-width: 0;
  padding: 20px 14px;
  background: #fff;
  border-top: 3px solid var(--red);
}
.delivery-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 21px;
  color: var(--red);
}
.delivery-flow .step-number {
  font-size: 13px;
  color: var(--red-dark);
  display: block;
  margin-bottom: 20px;
}
.delivery-flow h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}
.delivery-flow p {
  font-size: 13px;
  line-height: 1.7;
}
.evidence-links h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 18px;
}
.evidence-links p {
  max-width: 850px;
}
@media (max-width: 1100px) {
  .delivery-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .delivery-flow li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 20px;
    padding: 22px;
  }
  .delivery-flow .step-number {
    grid-row: 1 / 3;
    margin: 0;
  }
  .delivery-flow p {
    grid-column: 2;
  }
  .delivery-flow h3 {
    margin-bottom: 8px;
  }
  .delivery-flow li:not(:last-child)::after {
    content: "↓";
    top: auto;
    bottom: -21px;
    right: auto;
    left: 25px;
  }
}
@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-infrastructure {
    order: -1;
    max-width: 650px;
  }
  .home-hero .wrap {
    padding-top: 32px;
  }
  .home-hero h1 {
    max-width: 720px;
    font-size: clamp(36px, 6vw, 56px);
  }
  .home-hero .hero-bottom {
    margin-top: 32px;
  }
  .capability-bar .wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .home-hero .wrap {
    padding-top: 24px;
    padding-bottom: 26px;
  }
  .hero-infrastructure figcaption {
    gap: 8px;
    padding: 12px;
    font-size: 8px;
  }
  .home-hero h1 {
    font-size: clamp(34px, 9.5vw, 46px);
  }
  .home-hero .hero-bottom {
    font-size: 9px;
  }
  .hero-layout {
    gap: 24px;
  }
}
.deployment-feature .section-head > p {
  color: #dedede;
}
