:root {
  --red: #d71920;
  --red-dark: #9c1118;
  --ink: #111418;
  --steel: #2f3741;
  --ash: #68727d;
  --line: #dce1e6;
  --paper: #f3f5f7;
  --white: #ffffff;
  --nav-font: "Aptos", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.utility-bar {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.utility-bar div {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 9px 0;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
  color: #ff7077;
  outline: none;
}

.site-header {
  position: relative;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr auto;
  gap: 26px;
  align-items: stretch;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  align-self: center;
  width: min(365px, 100%);
  padding: 10px 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  gap: 4px;
  overflow: visible;
  color: var(--steel);
  font-family: var(--nav-font);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 3px solid transparent;
}

.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  outline: none;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 80;
  display: grid;
  gap: 9px;
  width: max-content;
  min-width: 270px;
  max-width: 330px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transform-origin: top center;
  transition: opacity .16s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
}

.nav-item:first-child .submenu {
  left: 0;
  transform: translate(0, 12px);
}

.nav-item:last-child .submenu {
  right: 0;
  left: auto;
  transform: translate(0, 12px);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-item:first-child:hover .submenu,
.nav-item:first-child:focus-within .submenu,
.nav-item:last-child:hover .submenu,
.nav-item:last-child:focus-within .submenu {
  transform: translate(0, 0);
}

.submenu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 14px;
  color: var(--white);
  background: #b00008;
  border: 1px solid #860007;
  border-radius: 0;
  box-shadow: 0 14px 24px rgba(17, 20, 24, .26);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(-34px) scale(.98);
}

.nav-item:hover .submenu a,
.nav-item:focus-within .submenu a {
  animation: menuCardDrop .46s cubic-bezier(.2, .82, .2, 1) both;
}

.submenu a:nth-child(1) { animation-delay: 0s; }
.submenu a:nth-child(2) { animation-delay: .12s; }
.submenu a:nth-child(3) { animation-delay: .24s; }
.submenu a:nth-child(4) { animation-delay: .36s; }
.submenu a:nth-child(5) { animation-delay: .48s; }

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--white);
  background: #860007;
  border-color: #640005;
  box-shadow: 0 16px 30px rgba(17, 20, 24, .32);
  outline: none;
}

@keyframes menuCardDrop {
  0% {
    opacity: 0;
    transform: translateY(-38px) scale(.96);
  }
  72% {
    opacity: 1;
    transform: translateY(5px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.menu-toggle {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 900;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
}

.header-cta {
  align-self: center;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  outline: none;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--red-dark);
  border-color: var(--red);
  outline: none;
}

.hero-slider {
  position: relative;
  min-height: clamp(680px, calc(100vh - 120px), 860px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, .18);
}

.slider-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes slideProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.slides {
  position: relative;
  min-height: clamp(680px, calc(100vh - 120px), 860px);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: start;
  min-height: clamp(680px, calc(100vh - 120px), 860px);
  transform: translateX(100%);
  transition: transform .72s cubic-bezier(.22, .61, .36, 1);
  isolation: isolate;
}

.slide.is-active {
  transform: translateX(0);
}

.slide img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, .92) 0%, rgba(8, 9, 11, .76) 38%, rgba(8, 9, 11, .28) 72%, rgba(8, 9, 11, .1) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, .28), rgba(8, 9, 11, .72));
}

.slide-content {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 8vh, 92px) 0 150px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: .95;
  letter-spacing: 0;
}

.slide-content h2 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: .96;
  letter-spacing: 0;
}

.slide-content p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.6vw, 20px);
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 48px, var(--max));
  transform: translateX(-50%);
}

.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .36);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: var(--red);
  border-color: var(--red);
  outline: none;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.slider-dots button {
  width: 38px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, .38);
  border: 0;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--red);
}

.quick-links span,
.service-grid span,
.technical-board span,
.operations-main span,
.operations-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-links a {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  background: var(--paper);
  outline: none;
}

.quick-links span {
  display: block;
  margin-bottom: 50px;
}

.quick-links strong {
  display: block;
  font-size: 21px;
  line-height: 1.14;
}

.services,
.operations,
.standards,
.contact,
.site-footer {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.services {
  padding: clamp(72px, 9vw, 122px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 82px);
  margin-bottom: 40px;
}

.section-intro h2,
.technical h2,
.standards h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.7vw, 60px);
  line-height: 1.02;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 330px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid span {
  display: block;
  margin-bottom: 66px;
}

.service-grid h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.1;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--ash);
}

.technical {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, .72fr);
  gap: clamp(34px, 7vw, 100px);
  padding: clamp(72px, 9vw, 122px) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 20, 24, .98), rgba(47, 55, 65, .92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 82px);
}

.technical .section-label,
.technical-board span {
  color: #ff7279;
}

.technical-copy p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.technical-board {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.technical-board article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.technical-board span {
  display: block;
  margin-bottom: 16px;
}

.technical-board strong {
  display: block;
  font-size: 24px;
  line-height: 1.16;
}

.operations {
  padding: clamp(72px, 9vw, 122px) 0;
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(340px, .58fr);
  gap: 24px;
}

.operations-main {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .58fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.operations-main img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.operations-main div {
  padding: 30px;
  align-self: end;
}

.operations-main span {
  display: block;
  margin-bottom: 46px;
}

.operations-main h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.02;
}

.operations-main p {
  margin-bottom: 0;
  color: var(--ash);
  font-size: 18px;
}

.operations-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.operations-list article {
  min-height: 154px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.operations-list span {
  display: block;
  margin-bottom: 26px;
}

.operations-list strong {
  display: block;
  font-size: 23px;
  line-height: 1.12;
}

.standards {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .72fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(72px, 9vw, 122px) 0;
  border-top: 1px solid var(--line);
}

.standards-list {
  border-top: 1px solid var(--ink);
}

.standards-list div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.standards-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.standards-list p {
  margin-bottom: 0;
  color: var(--ash);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(72px, 9vw, 122px) 0;
  border-top: 1px solid var(--line);
}

.contact p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ash);
  font-size: 19px;
}

address {
  display: grid;
  align-self: start;
  margin: 0;
  border-top: 1px solid var(--ink);
  font-style: normal;
}

address a {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 18px;
  font-weight: 900;
}

address a:hover,
address a:focus-visible {
  color: var(--red-dark);
  outline: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 44px;
  color: var(--ash);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .section-intro,
  .technical,
  .operations-layout,
  .operations-main,
  .standards,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .quick-links a:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .utility-bar div,
  .site-header,
  .slide-content,
  .quick-links,
  .services,
  .operations,
  .standards,
  .contact,
  .site-footer {
    width: min(100% - 30px, var(--max));
  }

  .utility-bar div {
    display: flex;
    justify-content: flex-start;
    gap: 22px;
    width: max-content;
    margin: 0;
    padding: 8px 0;
    white-space: nowrap;
    animation: mobileUtilityScroll 16s linear infinite;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0 14px;
    padding: 0;
  }

  .brand {
    width: min(350px, 100%);
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-self: center;
    justify-self: end;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--ink);
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 2px;
  }

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

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

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

  .header-cta {
    grid-column: 1 / -1;
    justify-self: stretch;
    max-height: 0;
    min-height: 0;
    padding: 0 12px;
    overflow: hidden;
    font-size: 13px;
    opacity: 0;
    transition: max-height .24s ease, padding .24s ease, opacity .18s ease;
  }

  .primary-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    background: var(--white);
    border-top: 0 solid var(--line);
    transition: max-height .24s ease, border-top-width .24s ease;
  }

  .nav-link {
    min-height: 48px;
    padding: 0 14px;
    margin-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .submenu {
    position: static;
    display: none;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 8px 0 10px 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-item:hover .submenu,
  .nav-item:focus-within .submenu,
  .nav-item.is-submenu-open .submenu {
    display: grid;
  }

  .submenu a {
    min-height: 36px;
    padding: 8px 12px;
    color: var(--white);
    background: #b00008;
    border-color: #860007;
    font-size: 12.5px;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .site-header.is-nav-open .primary-nav {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    border-top-width: 1px;
  }

  .site-header.is-nav-open .header-cta {
    max-height: 54px;
    min-height: 38px;
    margin: 12px 0 14px;
    padding: 9px 12px;
    opacity: 1;
  }

  h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .hero-slider,
  .slides,
  .slide {
    min-height: 760px;
  }

  .slide-content {
    padding: 46px 0 126px;
  }

  .slide-content h2 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .button {
    width: 100%;
  }

  .slider-controls {
    bottom: 22px;
    width: min(100% - 30px, var(--max));
    gap: 10px;
  }

  .slider-arrow {
    min-width: 58px;
    min-height: 38px;
    font-size: 10px;
  }

  .slider-dots {
    gap: 6px;
  }

  .slider-dots button {
    width: 24px;
  }

  .quick-links,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .quick-links a,
  .quick-links a:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-links span,
  .service-grid span {
    margin-bottom: 28px;
  }

  .service-grid article {
    min-height: auto;
  }

  .technical {
    padding-right: 15px;
    padding-left: 15px;
  }

  .operations-main img {
    min-height: 280px;
  }

  .site-footer {
    display: grid;
  }
}

@keyframes mobileUtilityScroll {
  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(-100%);
  }
}


/* Redesigned frontpage sections */
.section-shell {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.lead-copy {
  color: var(--steel);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.58;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 48px, var(--max));
  margin: clamp(30px, 4vw, 56px) auto 0;
  position: relative;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 24px 54px rgba(17, 20, 24, .16);
}

.capability-strip a {
  min-height: 205px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7f9fb);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.capability-strip a:last-child {
  border-right: 0;
}

.capability-strip span,
.service-list span,
.project-grid span,
.compliance-list span,
.service-feature span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.capability-strip strong {
  display: block;
  margin: 36px 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.capability-strip p {
  margin: 0;
  color: var(--ash);
  font-size: 15px;
  line-height: 1.45;
}

.capability-strip a:hover,
.capability-strip a:focus-visible {
  color: var(--white);
  background: #b00008;
  transform: translateY(-8px);
  outline: none;
}

.capability-strip a:hover span,
.capability-strip a:hover strong,
.capability-strip a:hover p,
.capability-strip a:focus-visible span,
.capability-strip a:focus-visible strong,
.capability-strip a:focus-visible p {
  color: var(--white);
}

.company-band,
.service-band,
.projects-band,
.assets-band,
.compliance-band,
.contact-band {
  padding: clamp(86px, 9vw, 138px) 0;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, .92fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.company-copy h2,
.premium-intro h2,
.assets-copy h2,
.compliance-layout h2,
.contact-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.company-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .64fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
  min-height: 560px;
}

.company-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-main-image {
  grid-row: 1 / 3;
  min-height: 560px;
}

.company-secondary-image {
  min-height: 310px;
}

.company-note {
  align-self: end;
  padding: 24px;
  color: var(--white);
  background: #111418;
}

.company-note span {
  display: block;
  margin-bottom: 18px;
  color: #ff7279;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.company-note strong {
  display: block;
  font-size: 22px;
  line-height: 1.18;
}

.company-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.company-metrics div {
  padding: 22px;
  background: var(--paper);
}

.company-metrics strong,
.company-metrics span {
  display: block;
}

.company-metrics strong {
  margin-bottom: 8px;
  color: #b00008;
  font-size: 28px;
  line-height: 1;
}

.company-metrics span {
  color: var(--ash);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-band {
  background: #f7f9fb;
}

.premium-intro {
  display: grid;
  grid-template-columns: 180px minmax(0, .9fr) minmax(280px, .52fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
  margin-bottom: 46px;
}

.premium-intro p:last-child {
  color: var(--ash);
  font-size: 18px;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .78fr);
  gap: 24px;
}

.service-feature {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.service-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 20, 24, .08), rgba(17, 20, 24, .92));
}

.service-feature div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(28px, 4vw, 48px);
}

.service-feature span {
  color: #ff7279;
}

.service-feature h3 {
  max-width: 620px;
  margin: 24px 0 16px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: .98;
}

.service-feature p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

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

.service-list article {
  min-height: 344px;
  padding: 28px;
  background: var(--white);
}

.service-list article:nth-child(2),
.service-list article:nth-child(3) {
  background: #111418;
  color: var(--white);
}

.service-list article:nth-child(2) p,
.service-list article:nth-child(3) p {
  color: rgba(255, 255, 255, .68);
}

.service-list span {
  margin-bottom: 70px;
}

.service-list h3 {
  margin-bottom: 14px;
  font-size: 27px;
  line-height: 1.05;
}

.service-list p {
  margin: 0;
  color: var(--ash);
}

.projects-band {
  background: var(--white);
}

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

.project-grid article {
  display: grid;
  grid-template-rows: 320px 1fr;
  min-height: 610px;
  background: #f3f5f7;
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
}

.project-grid article:hover,
.project-grid article:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 28px 52px rgba(17, 20, 24, .15);
}

.project-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-grid div {
  padding: 28px;
}

.project-grid h3 {
  margin: 30px 0 16px;
  font-size: 31px;
  line-height: 1.03;
}

.project-grid p {
  margin: 0;
  color: var(--ash);
  font-size: 17px;
}

.assets-band {
  color: var(--white);
  background: #111418;
}

.assets-layout {
  display: grid;
  grid-template-columns: minmax(420px, .78fr) minmax(0, .86fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.assets-band .section-label,
.compliance-band .section-label,
.assets-band .lead-copy,
.compliance-band .lead-copy {
  color: rgba(255, 255, 255, .72);
}

.assets-band .section-label,
.compliance-band .section-label {
  color: #ff7279;
}

.assets-image-stack {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 16px;
  align-items: end;
}

.assets-image-stack img {
  width: 100%;
  object-fit: cover;
}

.assets-image-stack img:first-child {
  min-height: 580px;
}

.assets-image-stack img:last-child {
  min-height: 380px;
  transform: translateY(38px);
  border: 12px solid #111418;
}

.readiness-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, .18);
}

.readiness-board article {
  min-height: 190px;
  padding: 24px;
  background: #191e24;
}

.readiness-board strong,
.readiness-board span {
  display: block;
}

.readiness-board strong {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 22px;
}

.readiness-board span {
  color: rgba(255, 255, 255, .68);
}

.compliance-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 20, 24, .95), rgba(17, 20, 24, .76)),
    url("assets/hero-marine-inspection.jpg") center / cover fixed;
}

.compliance-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .78fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

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

.compliance-list article {
  padding: 24px 0 24px 24px;
  border-left: 5px solid #b00008;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.compliance-list span {
  color: #ff7279;
  margin-bottom: 14px;
}

.compliance-list strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.18;
}

.contact-band {
  background: #f7f9fb;
}

.contact,
.site-footer {
  width: auto;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .58fr);
  gap: clamp(34px, 6vw, 78px);
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 20, 24, .94), rgba(17, 20, 24, .72)),
    url("assets/hero-operations-room.jpg") center / cover;
}

.contact-panel .section-label {
  color: #ff7279;
}

.contact-panel p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
}

.contact-panel address {
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, .26);
}

.contact-panel address a {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, .26);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 54px 0 64px;
  color: var(--steel);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.footer-brand img {
  width: min(320px, 100%);
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 420px;
  color: var(--ash);
  font-size: 16px;
}

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

.footer-columns div,
.footer-columns a,
.footer-columns span,
.footer-columns strong {
  display: block;
}

.footer-columns strong {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-columns a,
.footer-columns span {
  margin-bottom: 10px;
  color: var(--ash);
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--red-dark);
  outline: none;
}

@media (max-width: 1040px) {
  .capability-strip,
  .project-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-layout,
  .service-showcase,
  .assets-layout,
  .compliance-layout,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .premium-intro {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .premium-intro p:last-child {
    grid-column: 2;
  }

  .service-feature {
    min-height: 560px;
  }

  .assets-image-stack img:last-child {
    transform: none;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .capability-strip,
  .contact-panel,
  .site-footer {
    width: min(100% - 30px, var(--max));
  }

  .capability-strip,
  .company-metrics,
  .service-list,
  .project-grid,
  .readiness-board,
  .footer-columns,
  .premium-intro {
    grid-template-columns: 1fr;
  }

  .capability-strip {
    margin-top: 0;
  }

  .capability-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-media,
  .assets-image-stack {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .company-main-image,
  .company-secondary-image,
  .assets-image-stack img:first-child,
  .assets-image-stack img:last-child {
    min-height: 300px;
  }

  .premium-intro p:last-child {
    grid-column: auto;
  }

  .service-feature,
  .project-grid article {
    min-height: auto;
  }

  .service-feature {
    min-height: 520px;
  }

  .project-grid article {
    grid-template-rows: 250px 1fr;
  }

  .contact-panel {
    padding: 30px 22px;
  }
}

.services.service-band {
  width: auto;
  margin: 0;
}

/* Final layout fixes */
.capability-strip {
  margin: clamp(30px, 4vw, 56px) auto 0;
  z-index: 1;
}

.contact.contact-band {
  display: block;
  grid-template-columns: none;
  gap: 0;
  width: auto;
  margin: 0;
  padding: clamp(86px, 9vw, 138px) 0;
  border-top: 0;
}

.contact.contact-band .contact-panel {
  box-sizing: border-box;
}

.contact.contact-band .contact-panel > div,
.contact.contact-band address {
  min-width: 0;
}

@media (max-width: 680px) {
  .capability-strip {
    margin-top: 24px;
  }

  .contact.contact-band {
    padding: 72px 0;
  }
}


/* Simple stretched call CTA */
.contact.call-band {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: #b00008;
  border: 0;
}

.call-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 52px);
  width: min(100% - 48px, var(--max));
  min-height: 220px;
  margin: 0 auto;
  padding: 44px 0;
  text-align: center;
}

.call-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.call-band-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 56px;
  padding: 16px 24px;
  color: #b00008;
  background: var(--white);
  border: 2px solid var(--white);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 900;
}

.call-band-button:hover,
.call-band-button:focus-visible {
  color: var(--white);
  background: #111418;
  border-color: #111418;
  outline: none;
}

@media (max-width: 760px) {
  .call-band-inner {
    flex-direction: column;
    width: min(100% - 30px, var(--max));
    min-height: 240px;
  }

  .call-band-button {
    width: 100%;
  }
}


.projects-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.projects-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 28px;
  color: var(--white);
  background: #b00008;
  border: 2px solid #b00008;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 900;
}

.projects-action a:hover,
.projects-action a:focus-visible {
  color: #b00008;
  background: var(--white);
  outline: none;
}

@media (max-width: 680px) {
  .projects-action a {
    width: 100%;
  }
}


.project-grid small {
  display: block;
  margin: -6px 0 16px;
  color: var(--ash);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-grid article:nth-child(2) small,
.project-grid article:nth-child(3) small {
  color: rgba(255, 255, 255, .58);
}

.projects-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 42px;
  color: var(--ash);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 18px;
  text-align: center;
}

.projects-page-hero {
  padding: clamp(92px, 10vw, 150px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 20, 24, .95), rgba(17, 20, 24, .66)),
    url("assets/hero-port-terminal.jpg") center / cover;
}

.projects-page-hero .section-label {
  color: #ff7279;
}

.projects-page-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: .94;
}

.projects-page-hero p:not(.section-label) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 1.7vw, 22px);
}

.projects-page-list {
  padding-top: clamp(72px, 8vw, 118px);
}
