:root {
  --ink: #071d3b;
  --muted: #51647d;
  --line: #dfe8f4;
  --soft: #f4f8fd;
  --brand: #0077e6;
  --brand-dark: #001f45;
  --brand-deep: #00142f;
  --accent: #1f91ff;
  --white: #ffffff;
  --panel: #ffffff;
  --panel-solid: #f7fbff;
  --panel-light: #eaf4ff;
  --shadow: 0 18px 42px rgba(4, 35, 79, 0.13);
}

* {
  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.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  content: "";
  background: rgba(0, 20, 47, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.menu-open::before {
  opacity: 1;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 0;
  box-shadow: 0 5px 18px rgba(3, 30, 66, 0.12);
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  padding: 7px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(55deg, transparent 0 0, transparent calc(50% - 145px), var(--brand-deep) calc(50% - 144px)),
    var(--brand-deep);
  font-size: 12px;
  line-height: 1;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 66px;
  padding: 10px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  max-width: 100%;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 19px;
  align-items: center;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid #b8dcff;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--brand-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.brand-hero {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--brand-deep);
}

.brand-hero::before,
.brand-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.brand-hero::before {
  inset: 0;
  z-index: 2;
  width: auto;
  background: linear-gradient(90deg, rgba(0, 10, 28, 0.14) 0%, rgba(0, 14, 34, 0.06) 44%, transparent 68%);
}

.brand-hero::after {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 36%;
  background: linear-gradient(0deg, rgba(0, 13, 31, 0.12), transparent);
}

.brand-hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 52%;
  height: 100%;
  min-height: 0;
  margin-left: 0;
  padding: 18.2% 32px 7.4% 4%;
}

.brand-hero-logo {
  display: none;
}

.brand-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 5.6vw, 90px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 3px 12px rgba(0, 9, 28, 0.48);
}

.brand-hero h1 span {
  color: #13b9ff;
}

.brand-hero h1::after {
  display: block;
  width: 88%;
  height: 2px;
  margin: 28px 0 0;
  content: "";
  background: linear-gradient(90deg, transparent, #11a8ff 46%, transparent);
  box-shadow: 0 0 14px rgba(31, 145, 255, 0.9);
}

.brand-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.brand-background,
.brand-machine {
  position: absolute;
  object-fit: cover;
  object-position: center;
}

.brand-background {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  filter: none;
}

.brand-machine {
  z-index: 2;
  top: 13%;
  left: -2%;
  width: min(38vw, 500px);
  height: 68%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(0.6) hue-rotate(178deg) brightness(1.18) contrast(1.42);
  opacity: 0.92;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(520px, 1.02fr);
  align-items: stretch;
  max-width: none;
  min-height: 553px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(108deg, rgba(0, 20, 47, 0.98) 0%, rgba(0, 32, 73, 0.98) 53.6%, rgba(0, 32, 73, 0.3) 53.8%, transparent 54%),
    radial-gradient(circle at 6% 15%, rgba(30, 145, 255, 0.16) 0 1px, transparent 2px) 0 0 / 15px 15px,
    linear-gradient(135deg, #001127 0%, #002a62 62%, #001b3d 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 0;
  bottom: 0;
  left: 51%;
  width: 220px;
  background:
    linear-gradient(104deg, transparent 0 34%, rgba(12, 100, 203, 0.55) 34.3% 42%, transparent 42.3% 100%);
}

.hero::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background: linear-gradient(180deg, rgba(0, 25, 58, 0.28), rgba(0, 25, 58, 0.18));
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 710px;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding: 63px 42px 83px 20px;
}

.hero-copy h1,
.section h2,
.contact-section h2,
.image-feature h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

.hero-copy h1 {
  max-width: 670px;
  color: var(--white);
  font-size: clamp(25px, 2.9vw, 42px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(0, 12, 32, 0.36);
}

.hero-copy h1::after {
  display: block;
  width: 76px;
  height: 5px;
  margin-top: 28px;
  border-radius: 99px;
  content: "";
  background: var(--accent);
}

.hero-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.45;
  text-shadow: 0 1px 10px rgba(0, 12, 32, 0.28);
}

.hero-visuals {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 123px;
  min-width: 0;
  min-height: 553px;
  padding: 0 0 46px;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-main-image,
.hero-thumbnails img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-main-image {
  min-height: 0;
}

.hero-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  padding: 7px 0 0 24px;
  background: var(--brand-dark);
}

.hero-thumbnails img {
  min-height: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  bottom: 39px;
  left: max(20px, calc((100vw - 1180px) / 2 + 280px));
  display: flex;
  gap: 14px;
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dots .is-active {
  background: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #006de0, var(--accent));
  box-shadow: 0 16px 32px rgba(0, 119, 230, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 650px;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--brand-deep);
}

.hero-media img {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(0.78) hue-rotate(176deg) brightness(0.72) contrast(1.16);
  mix-blend-mode: screen;
}

.hero-card {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  max-width: 340px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 18px;
}

.hero-card span {
  color: var(--muted);
  font-size: 14px;
}

.stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1180px;
  margin: 34px auto 54px;
  padding: 0 20px;
}

.stats div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 126px;
  padding: 24px 16px;
  border: 2px solid #9fd0ff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.96));
  box-shadow: 0 12px 28px rgba(4, 35, 79, 0.1);
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--brand-dark);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.1;
}

.stats span {
  display: block;
  max-width: 150px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.section,
.contact-section,
.image-feature {
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 20px;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
}

.section h2,
.contact-section h2,
.image-feature h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 900;
}

.section-text,
.why-list,
.image-feature p {
  color: var(--muted);
  font-size: 17px;
}

.band {
  max-width: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(235, 246, 255, 0.92) 55.2%),
    var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.services-copy {
  max-width: none;
}

.services-copy h2 {
  margin-bottom: 22px;
}

.services-copy p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}

.services-images {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  min-height: 430px;
}

.services-images img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(4, 35, 79, 0.13);
}

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

.service-grid article,
.process-grid article {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 14px 32px rgba(4, 35, 79, 0.09);
}

.card-number,
.process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--brand);
  font-weight: 900;
}

.service-grid h3,
.contact-cards h3,
.process-grid h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 20px;
}

.service-grid p,
.contact-cards p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.image-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
}

.image-feature img {
  height: 440px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.feature-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.feature-metrics span {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: var(--soft);
}

.feature-metrics strong {
  display: block;
  color: var(--brand-dark);
}

.process {
  padding-top: 34px;
}

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

.principals .section-heading {
  max-width: none;
}

.principal-logo-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.principal-logo-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(4, 35, 79, 0.08);
  font-weight: 800;
}

.principal-logo-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.principal-logo-list img {
  width: auto;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.customers-heading {
  max-width: 1180px;
  text-align: left;
}

.logo-grid,
.customer-list {
  display: grid;
  gap: 12px;
}

.logo-grid {
  grid-template-columns: repeat(3, 1fr);
}

.customer-list {
  grid-template-columns: repeat(4, 1fr);
}

.logo-grid span,
.customer-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(4, 35, 79, 0.08);
  font-weight: 800;
}

.customer-list span {
  min-height: 118px;
}

.customer-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.customer-list img {
  width: auto;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(4, 35, 79, 0.12);
}

.gallery img {
  height: 285px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 16px;
  color: var(--brand-dark);
  font-weight: 800;
}

.showcase-block h3 {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.showcase-block + .showcase-block {
  margin-top: 56px;
}

.showcase-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(3, 180px);
  gap: 14px;
}

.showcase-collage img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(4, 35, 79, 0.13);
}

.showcase-collage .showcase-main {
  grid-row: span 3;
  min-height: 0;
}

.showcase-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.showcase-videos video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--brand-dark);
  box-shadow: 0 16px 34px rgba(4, 35, 79, 0.13);
}

.showcase-collage-three {
  grid-template-rows: repeat(2, 250px);
}

.showcase-collage-three .showcase-main {
  grid-row: span 2;
}

.showcase-collage-two-by-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 300px);
  gap: 14px;
}

.showcase-collage-two-by-two img {
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(4, 35, 79, 0.13);
}

.why {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, transparent 0%, transparent 58%, rgba(235, 246, 255, 0.9) 58.2%),
    var(--white);
}

.why .section-heading {
  max-width: none;
}

.why .section-heading p:not(.eyebrow) {
  text-align: justify;
}

.why-list p {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.why-list strong {
  color: var(--brand-dark);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 20, 47, 0.98) 0%, rgba(0, 39, 91, 0.98) 56%, rgba(0, 119, 230, 0.9) 56.2%),
    var(--brand-dark);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-section h2,
.contact-section p,
.contact-section .eyebrow {
  color: var(--white);
}

.contact-header {
  max-width: 820px;
}

.contact-intro p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.contact-section .button.primary {
  color: var(--brand-dark);
  background: var(--white);
  box-shadow: none;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-details article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-details span {
  display: block;
  margin-bottom: 6px;
  color: #8dccff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 20px;
}

.contact-details p {
  margin: 0;
}

.contact-details a {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-cards article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
}

.contact-cards a {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  color: #8dccff;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  max-width: none;
  margin: 72px auto 0;
  padding: 42px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.76);
  background: var(--brand-deep);
}

.footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.footer a {
  display: block;
  margin-top: 6px;
}

@media (max-width: 920px) {
  .nav {
    align-items: center;
    flex-direction: row;
    gap: 14px;
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 94px;
    right: 20px;
    left: 20px;
    z-index: 30;
    display: grid;
    gap: 0;
    max-width: 420px;
    margin-left: auto;
    padding: 12px;
    border: 2px solid #b8dcff;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 22px 54px rgba(4, 35, 79, 0.22);
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .brand img {
    height: 42px;
  }

  .hero,
  .split,
  .services-layout,
  .image-feature,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .brand-hero {
    min-height: 0;
  }

  .brand-hero-content {
    width: 58%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 18% 24px 7% 4%;
  }

  .brand-hero h1 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(31px, 5.4vw, 52px);
    text-align: left;
  }

  .brand-hero-media {
    inset: 0;
    height: auto;
    opacity: 1;
  }

  .brand-machine {
    top: 2%;
    left: 20%;
    width: 300px;
    height: 84%;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-copy {
    max-width: none;
    margin: 0;
    padding: 64px 20px 42px;
  }

  .hero-visuals {
    grid-template-rows: minmax(260px, 48vw) 110px;
    min-height: 0;
    padding: 0;
    clip-path: none;
  }

  .hero-thumbnails {
    padding-left: 0;
  }

  .hero-dots {
    position: static;
    justify-content: center;
    padding: 0 0 24px;
    background: var(--brand-deep);
  }

  .service-grid,
  .stats,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    margin: 30px auto 42px;
    padding: 0 20px;
  }

  .stats div:last-child {
    grid-column: span 2;
  }

  .logo-grid,
  .principal-logo-list,
  .customer-list,
  .gallery,
  .showcase-collage,
  .showcase-videos,
  .showcase-collage-two-by-two,
  .contact-details,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-collage {
    grid-template-rows: 360px 220px 220px;
  }

  .showcase-collage-three {
    grid-template-rows: 360px 220px;
  }

  .showcase-collage .showcase-main {
    grid-column: span 2;
    grid-row: auto;
    min-height: 0;
  }

  .services-copy {
    max-width: none;
  }

  .services-images {
    min-height: auto;
  }

  .services-images img {
    height: 360px;
    min-height: 360px;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .brand img {
    height: 38px;
  }

  .nav {
    min-height: 60px;
    padding: 9px 16px;
  }

  .nav-links {
    top: 104px;
    right: 16px;
    left: 16px;
    max-width: none;
  }

  .hero,
  .section,
  .contact-section,
  .image-feature {
    padding: 52px 16px;
  }

  .hero {
    padding: 0;
  }

  .brand-hero {
    padding: 0;
  }

  .brand-hero-content {
    width: 62%;
    height: 100%;
    min-height: 0;
    padding: 18% 14px 7% 4%;
  }

  .brand-hero h1 {
    max-width: 260px;
    font-size: clamp(18px, 5.2vw, 34px);
    text-align: left;
  }

  .brand-hero h1::after {
    width: 88%;
    margin-left: 0;
  }

  .brand-hero-media {
    height: auto;
  }

  .brand-background {
    object-position: 60% center;
  }

  .brand-machine {
    left: 10%;
    width: 220px;
    height: 84%;
  }

  .hero-copy {
    padding: 42px 16px 28px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-visuals {
    grid-template-rows: 240px 76px;
  }

  .hero-thumbnails {
    gap: 4px;
    padding-top: 4px;
  }

  .image-feature img {
    min-height: 240px;
    height: 240px;
  }

  .service-grid,
  .stats,
  .process-grid,
  .services-images,
  .logo-grid,
  .principal-logo-list,
  .customer-list,
  .gallery,
  .showcase-collage,
  .showcase-videos,
  .showcase-collage-two-by-two,
  .contact-details,
  .contact-cards,
  .feature-metrics {
    grid-template-columns: 1fr;
  }

  .stats {
    margin: 26px auto 34px;
    padding: 0 16px;
  }

  .stats div:last-child {
    grid-column: auto;
  }

  .showcase-collage-two-by-two img {
    height: 280px;
  }

  .showcase-collage-two-by-two {
    grid-template-rows: repeat(4, 280px);
  }

  .showcase-collage .showcase-main {
    grid-column: auto;
  }

  .showcase-collage {
    grid-template-rows: repeat(4, 280px);
  }

  .showcase-collage-three {
    grid-template-rows: repeat(3, 280px);
  }

  .services-images img {
    height: 330px;
    min-height: 330px;
  }

  .contact-section {
    border-radius: 0;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    margin-top: 48px;
  }
}
