@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy: #061b38;
  --navy-2: #0b294e;
  --blue: #3f79ab;
  --blue-pale: #edf3f7;
  --gold: #d3a53c;
  --gold-deep: #a87b18;
  --white: #fff;
  --ivory: #f7f4ec;
  --ink: #10243d;
  --muted: #526276;
  --line: #d9e0e6;
  --page-gutter: clamp(1rem, 3vw, 4rem);
  --content-max: 90rem;
  --reading-max: 47.5rem;
  --header-height: 5.6rem;
  --section-space: clamp(4.5rem, 8vw, 8rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "Manrope", system-ui, sans-serif;
  --text-xs: clamp(0.72rem, 0.68rem + 0.12vw, 0.82rem);
  --text-sm: clamp(0.86rem, 0.82rem + 0.14vw, 0.96rem);
  --text-base: clamp(1rem, 0.96rem + 0.16vw, 1.12rem);
  --text-lg: clamp(1.1rem, 1.02rem + 0.28vw, 1.32rem);
  --title-card: clamp(1.35rem, 1.15rem + 0.7vw, 2rem);
  --title-section: clamp(2rem, 1.55rem + 1.8vw, 3.6rem);
  --title-page: clamp(2.65rem, 1.9rem + 3vw, 5.1rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  background: var(--navy);
  scroll-behavior: smooth;
  hyphens: none;
  -webkit-hyphens: none;
}
body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 450;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  hyphens: none;
  -webkit-hyphens: none;
}
img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
picture {
  display: block;
  min-width: 0;
}
figure,
h1,
h2,
h3,
p,
ol,
ul {
  margin: 0;
}
a {
  color: inherit;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--font-sans);
}
button {
  color: inherit;
}
h1,
h2,
h3,
strong {
  font-weight: 750;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
span,
li {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
}
h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: 0.003em;
  text-wrap: balance;
}
h1 {
  letter-spacing: 0.005em;
}
p {
  text-wrap: pretty;
}
.section-shell {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  margin-inline: auto;
}
.dark-section {
  background: var(--navy);
  color: var(--white);
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  translate: 0 -180%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  transition: translate 0.2s;
}
.skip-link:focus {
  translate: 0;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgb(6 27 56 / 0.12);
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 10px 30px rgb(6 27 56 / 0.04);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: grid;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  min-height: var(--header-height);
  margin-inline: auto;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}
.brand {
  display: block;
  width: clamp(5.5rem, 7vw, 7.25rem);
  flex: none;
}
.brand picture,
.brand img {
  width: 100%;
}
.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.45vw, 1.8rem);
}
.desktop-nav a {
  position: relative;
  padding: 2rem 0 1.9rem;
  color: var(--ink);
  font-size: clamp(0.72rem, 0.76vw, 0.88rem);
  font-weight: 680;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1.35rem;
  left: 0;
  height: 2px;
  scale: 0 1;
  background: var(--gold);
  content: "";
  transform-origin: left;
  transition: scale 0.25s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  scale: 1;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.language-switcher {
  position: relative;
}
.language-trigger,
.mobile-toggle {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.65rem;
  border: 0;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: transparent;
  cursor: pointer;
}
.language-trigger svg,
.mobile-toggle svg {
  width: 1.1rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.language-trigger span {
  font-size: 0.78rem;
  font-weight: 800;
}
.language-menu {
  position: absolute;
  z-index: 130;
  top: calc(100% + 0.75rem);
  right: 0;
  width: min(13rem, calc(100vw - (2 * var(--page-gutter))));
  padding: 0.55rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgb(6 27 56 / 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.5rem) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 0.16s ease,
    transform 0.16s var(--ease),
    visibility 0s linear 0.16s;
}
.language-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.2s ease,
    transform 0.22s var(--ease),
    visibility 0s;
}
.language-trigger svg:last-child {
  transition: transform 0.22s var(--ease);
}
.language-trigger[aria-expanded="true"] svg:last-child {
  transform: rotate(180deg);
}
.language-menu a {
  display: flex;
  min-height: 2.75rem;
  padding: 0.65rem 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}
.language-menu a:hover,
.language-menu a:focus-visible {
  background: var(--ivory);
}
.mobile-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
}
.mobile-toggle .menu-icon {
  width: 1.25rem;
  height: 1.25rem;
  overflow: visible;
}
.mobile-toggle .menu-line {
  transform-box: view-box;
  transform-origin: center;
  transition:
    transform 0.28s var(--ease),
    opacity 0.18s ease;
}
.mobile-toggle[aria-expanded="true"] .menu-line-top {
  transform: translateY(4.6px) rotate(45deg) scale(1.2);
}
.mobile-toggle[aria-expanded="true"] .menu-line-middle {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle[aria-expanded="true"] .menu-line-bottom {
  transform: translateY(-4.6px) rotate(-45deg) scale(1.2);
}
.mobile-backdrop {
  position: fixed;
  z-index: 108;
  inset: var(--header-height) 0 0;
  background: rgb(6 27 56 / 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu {
  position: fixed;
  z-index: 110;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  width: min(88vw, 26rem);
  max-width: 100%;
  padding: clamp(1.4rem, 5vw, 2.25rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid var(--line);
  background: var(--white);
  box-shadow: -20px 0 50px rgb(6 27 56 / 0.16);
  opacity: 0.98;
  transform: translateX(100%);
  transition:
    transform 0.32s var(--ease),
    opacity 0.22s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu[hidden],
.mobile-backdrop[hidden],
.language-menu[hidden] {
  display: none;
}
.mobile-menu > a {
  position: relative;
  display: flex;
  min-height: 3.25rem;
  padding: 0.85rem 0 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 1.05rem;
  font-weight: 750;
  text-decoration: none;
  opacity: 0;
  transform: translateX(0.35rem);
  transition:
    color 0.2s ease,
    opacity 0.24s ease,
    transform 0.28s var(--ease);
}
.mobile-menu.is-open > a {
  opacity: 1;
  transform: none;
}
.mobile-menu.is-open > a:nth-child(2) {
  transition-delay: 35ms;
}
.mobile-menu.is-open > a:nth-child(3) {
  transition-delay: 70ms;
}
.mobile-menu.is-open > a:nth-child(4) {
  transition-delay: 105ms;
}
.mobile-menu.is-open > a:nth-child(5) {
  transition-delay: 140ms;
}
.mobile-menu > a::before {
  position: absolute;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  content: "";
  scale: 0.5;
  transition:
    opacity 0.2s ease,
    scale 0.24s var(--ease);
}
.mobile-menu > a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 1rem;
  height: 2px;
  background: var(--gold);
  content: "";
  scale: 0 1;
  transform-origin: left;
  transition: scale 0.28s var(--ease);
}
.mobile-menu > a[aria-current="page"] {
  color: var(--gold-deep);
}
.mobile-menu.is-open > a[aria-current="page"]::before {
  opacity: 1;
  scale: 1;
}
.mobile-menu.is-open > a[aria-current="page"]::after {
  scale: 1;
}
body.menu-open {
  overscroll-behavior: none;
}

/* Buttons and icons */
.button {
  display: inline-flex;
  min-height: 3.2rem;
  width: fit-content;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--gold);
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 0.22s,
    color 0.22s,
    transform 0.22s;
}
.button:hover {
  background: #e0b655;
  transform: translateY(-2px);
}
.button-small {
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
}
.button svg,
.division-copy a svg,
.footer-links svg,
.contact-overview svg,
.contact-hero-links svg {
  width: 1.15rem;
  flex: none;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.button svg {
  transition: transform 0.22s var(--ease);
}
.button:hover svg {
  transform: translateX(0.18rem);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Shared graphic grammar */
.network-art,
.connection-motif {
  pointer-events: none;
}
.network-art {
  position: absolute;
}
.network-grid {
  fill: none;
  stroke: rgb(255 255 255 / 0.06);
  stroke-width: 1;
}
.network-routes,
.connection-motif {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}
.network-nodes {
  fill: var(--navy);
  stroke: var(--gold);
  stroke-width: 2;
}
.network-routes path {
  stroke-dasharray: 1;
  animation: draw-line 2.6s 0.2s var(--ease) both;
}
.connection-motif circle {
  fill: var(--navy);
  stroke: var(--gold);
  stroke-width: 2;
}
.connection-motif .motif-blue {
  stroke: #66a8df;
}
@keyframes draw-line {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Home hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(39rem, calc(100svh - var(--header-height)), 49rem);
  overflow: clip;
  grid-template-columns: minmax(22rem, 44%) minmax(0, 56%);
}
.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  padding: clamp(4rem, 7vw, 7rem) clamp(2rem, 4vw, 5rem) clamp(4rem, 7vw, 7rem)
    max(
      var(--page-gutter),
      calc((100vw - var(--content-max)) / 2 + var(--page-gutter))
    );
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.3rem, 5.45vw, 6.1rem);
  line-height: 0.98;
}
.hero-copy h1::first-line {
  color: var(--white);
}
.hero-copy p {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: #d7e0e8;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}
.hero-media {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.2fr 0.95fr;
  grid-template-rows: 1fr 1fr;
}
.hero-media figure,
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}
.hero-media figure {
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid rgb(255 255 255 / 0.16);
}
.hero-media figure:first-child {
  grid-row: 1 / 3;
}
.hero-media img {
  object-fit: cover;
  object-position: center;
}
.hero-media figure:first-child img {
  object-position: 51% center;
}
.hero-media figure:nth-child(2) img {
  object-position: 48% center;
}
.hero-media figure:nth-child(3) img {
  object-position: center;
}
.hero-media::after {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 40%;
  background: linear-gradient(90deg, var(--navy) 0, transparent 22%);
  content: "";
  pointer-events: none;
}
.hero-network {
  z-index: 3;
  right: -4rem;
  bottom: -7rem;
  width: min(58rem, 68vw);
  opacity: 0.45;
}

/* Homepage sections */
.intro-section {
  background: var(--white);
}
.intro-grid {
  position: relative;
  display: grid;
  min-height: 25rem;
  padding-block: clamp(5rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}
.intro-grid h2 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
}
.intro-grid p {
  position: relative;
  z-index: 2;
  max-width: 37rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
}
.intro-motif {
  position: absolute;
  right: 0;
  bottom: -2.5rem;
  width: min(28rem, 48vw);
  opacity: 0.35;
}
.intro-motif circle {
  fill: var(--white);
}
.division-section {
  padding-block: var(--section-space);
  background: var(--blue-pale);
}
.division-heading {
  display: flex;
  margin-bottom: clamp(2.25rem, 4vw, 4rem);
  align-items: end;
  justify-content: space-between;
}
.division-heading h2 {
  max-width: 19ch;
  font-size: clamp(2.35rem, 3.7vw, 4rem);
}
.division-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #cdd7df;
  box-shadow: 0 22px 55px rgb(6 27 56 / 0.08);
}
.division-card {
  min-width: 0;
  background: var(--white);
}
.division-card figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ccd6df;
}
.division-card figure picture,
.division-card figure img {
  width: 100%;
  height: 100%;
}
.division-card figure img {
  object-fit: cover;
  transition: scale 0.7s var(--ease);
}
.division-card:hover figure img {
  scale: 1.025;
}
.division-workforce figure img {
  object-position: center 42%;
}
.division-fiber figure img {
  object-position: center;
}
.division-naval figure img {
  object-position: center 54%;
}
.division-copy {
  position: relative;
  display: flex;
  min-height: 24rem;
  padding: clamp(1.6rem, 3vw, 2.8rem);
  flex-direction: column;
  overflow: hidden;
}
.division-copy > span {
  margin-bottom: 1.35rem;
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.division-copy h3 {
  position: relative;
  z-index: 2;
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
}
html[lang="de"] .division-copy h3,
html[lang="nl"] .division-copy h3 {
  font-size: clamp(1.4rem, 1.8vw, 2.05rem);
}
.division-copy p {
  position: relative;
  z-index: 2;
  max-width: 33rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.division-copy > a {
  display: inline-flex;
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.4rem;
  border-bottom: 1px solid var(--gold);
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}
.division-motif {
  position: absolute;
  right: -8rem;
  bottom: -6rem;
  width: 22rem;
  opacity: 0.12;
}
.division-motif circle {
  fill: var(--white);
}
.map-section {
  padding-block: clamp(4.5rem, 8vw, 8rem);
  overflow: clip;
}
.map-inner {
  display: grid;
  grid-template-columns: minmax(22rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
}
.map-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 3.15vw, 3.5rem);
}
.map-copy p {
  max-width: 33rem;
  color: #cbd6e2;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}
.europe-map {
  min-width: 0;
}
.europe-map svg {
  width: 100%;
}
.map-land {
  fill: #0e315a;
  stroke: #29517a;
  stroke-width: 1.5;
}
.map-land.faint {
  opacity: 0.52;
}
.map-routes {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
}
.map-routes path {
  stroke-dasharray: 1;
  animation: map-route 3.5s linear infinite;
}
@keyframes map-route {
  to {
    stroke-dashoffset: -2;
  }
}
.map-point circle {
  fill: var(--navy);
  stroke: var(--gold);
  stroke-width: 4;
}
.map-point text {
  fill: var(--white);
  font-size: 17px;
  font-weight: 750;
}
.process-section {
  padding-block: var(--section-space);
}
.section-heading {
  display: grid;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
}
.section-heading h2,
.display-title {
  max-width: 19ch;
  font-size: clamp(2.2rem, 3.35vw, 3.65rem);
}
.section-heading p {
  max-width: var(--reading-max);
  color: var(--muted);
  font-size: 1.05rem;
}
.process-line {
  display: grid;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-line li {
  position: relative;
  min-width: 0;
  padding: 2rem clamp(1.25rem, 2.4vw, 2.5rem) 1.5rem 0;
  border-top: 1px solid var(--gold);
}
.process-line li::before {
  position: absolute;
  top: -0.42rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  content: "";
}
.process-line span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
}
.process-line h3 {
  max-width: 14ch;
  margin-bottom: 0.7rem;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  letter-spacing: 0;
}
.process-line p {
  color: var(--muted);
  font-size: 0.93rem;
}
.experience-band {
  position: relative;
  overflow: clip;
  background: var(--navy-2);
  color: var(--white);
}
.experience-inner {
  position: relative;
  display: grid;
  padding-block: clamp(4rem, 7vw, 7rem);
  grid-template-columns: minmax(22rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.experience-copy {
  position: relative;
  z-index: 2;
}
.experience-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 3.05vw, 3.4rem);
}
.experience-copy p {
  color: #cbd6e2;
  font-size: 1.05rem;
}
.experience-images {
  display: grid;
  min-width: 0;
  grid-template-columns: 1fr 1.15fr 0.9fr;
  gap: 0.75rem;
}
.experience-images figure {
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #183755;
}
.experience-images picture,
.experience-images img {
  width: 100%;
  height: 100%;
}
.experience-images img {
  object-fit: cover;
}
.experience-images figure:nth-child(2) img {
  object-position: center;
}
.experience-motif {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 30rem;
  opacity: 0.16;
}

/* Secondary heroes */
.page-hero {
  position: relative;
  overflow: clip;
}
.page-hero-inner {
  position: relative;
  display: grid;
  min-height: clamp(35rem, calc(100svh - var(--header-height) - 2rem), 42rem);
  padding-block: clamp(2.5rem, 4.5vw, 4.5rem);
  grid-template-columns: minmax(21rem, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
}
.page-hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  padding-block: 2rem;
  flex-direction: column;
  justify-content: center;
}
.page-hero-copy h1 {
  max-width: 15ch;
  margin-bottom: 1.35rem;
  font-size: var(--title-page);
  line-height: 1;
}
.page-hero-copy p {
  max-width: 36rem;
  color: #cbd6e2;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.58;
}
.page-hero-image,
.page-hero-collage,
.contact-hero-links {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.page-hero-image {
  overflow: hidden;
  background: #163755;
}
.page-hero-image picture,
.page-hero-image img {
  width: 100%;
  height: 100%;
}
.page-hero-image img {
  object-fit: cover;
}
.page-hero-workforce .page-hero-image img {
  object-position: 52% center;
}
.page-hero-fiber .page-hero-image img {
  object-position: center;
}
.page-hero-fiber .page-hero-image {
  height: min(30rem, 100%);
  align-self: center;
}
.page-hero-collage {
  display: grid;
  gap: 0.7rem;
}
.page-hero-collage figure {
  min-width: 0;
  overflow: hidden;
  background: #163755;
}
.page-hero-collage picture,
.page-hero-collage img {
  width: 100%;
  height: 100%;
}
.page-hero-collage img {
  object-fit: cover;
}
.naval-collage {
  grid-template-columns: 1.35fr 0.65fr;
}
.naval-collage figure:first-child img {
  object-position: center;
}
.naval-collage figure:last-child img {
  object-position: center 62%;
}
.about-collage {
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 1fr 1fr;
}
.about-collage figure:first-child {
  grid-row: 1 / 3;
}
.about-collage figure:first-child img {
  object-position: center;
}
.page-hero-motif {
  position: absolute;
  z-index: 3;
  right: -3rem;
  bottom: -5rem;
  width: min(30rem, 42vw);
  opacity: 0.55;
}
.page-hero-motif circle {
  fill: var(--navy);
}
.page-hero-fiber .page-hero-motif {
  top: 15%;
  right: 22%;
  bottom: auto;
  width: min(34rem, 40vw);
  opacity: 0.48;
}
.page-hero-contact .page-hero-inner {
  min-height: clamp(31rem, calc(100svh - var(--header-height) - 5rem), 36rem);
  grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
}
.contact-hero-links {
  display: grid;
  align-self: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-hero-links a {
  display: flex;
  min-width: 0;
  min-height: 12rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgb(211 165 60 / 0.72);
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  text-decoration: none;
  transition:
    background 0.22s,
    transform 0.22s;
}
.contact-hero-links a:hover {
  background: rgb(255 255 255 / 0.06);
  transform: translateY(-3px);
}
.contact-hero-links svg {
  width: 2.2rem;
  color: var(--gold);
}
.contact-hero-links strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.35rem;
}
html[lang="de"] .page-hero-copy h1,
html[lang="nl"] .page-hero-copy h1 {
  font-size: clamp(2.4rem, 3.75vw, 4.15rem);
}
.page-hero-copy h1.hero-title--long {
  max-width: none;
  font-size: clamp(2.15rem, 2.4vw, 2.35rem);
}

/* Service-page editorial systems */
.service-intro {
  position: relative;
  overflow: clip;
}
.service-intro-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(20rem, 1.05fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 8rem);
}
.service-intro-copy h2,
.service-section-heading h2 {
  max-width: 18ch;
  font-size: var(--title-section);
}
.service-intro-copy p {
  max-width: var(--reading-max);
  color: var(--muted);
  font-size: var(--text-lg);
}
.service-section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.capability-icon {
  width: 2.2rem;
  height: 2.2rem;
  fill: none;
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

/* Workforce: people, coordination and team network */
.workforce-coordination {
  padding-block: var(--section-space);
  background: var(--ivory);
}
.workforce-coordination-grid {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
}
.coordination-diagram {
  position: relative;
  min-height: 28rem;
  border: 1px solid #214264;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.coordination-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.coordination-network path {
  fill: none;
  stroke: rgb(211 165 60 / 0.72);
  stroke-width: 1.2;
}
.coordination-network circle {
  fill: var(--navy);
  stroke: var(--gold);
  stroke-width: 2;
}
.coordination-diagram ol {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 28rem;
  padding: clamp(2rem, 5vw, 4rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 1px;
  list-style: none;
}
.coordination-diagram li {
  min-height: 11rem;
  padding: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.14);
  background: rgb(6 27 56 / 0.88);
  backdrop-filter: blur(5px);
}
.coordination-diagram li:nth-child(even) {
  align-self: start;
}
.coordination-diagram span,
.workforce-capability-rail article > span,
.naval-module-column article > span {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.coordination-diagram h3 {
  max-width: 15ch;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.2;
}
.workforce-support {
  padding-block: var(--section-space);
  background: var(--blue-pale);
}
.workforce-support-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(3rem, 7vw, 7rem);
}
.workforce-support-heading {
  position: relative;
  min-height: 26rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  background: var(--navy-2);
  color: var(--white);
}
.workforce-support-heading h2 {
  position: relative;
  z-index: 2;
  max-width: 13ch;
  font-size: var(--title-section);
}
html[lang="de"] .workforce-support-heading h2,
html[lang="nl"] .workforce-support-heading h2 {
  font-size: clamp(1.8rem, 2.75vw, 2.65rem);
}
html[lang="nl"] .workforce-capability-rail h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
}
.workforce-support-motif {
  position: absolute;
  right: -8rem;
  bottom: -7rem;
  width: 25rem;
  opacity: 0.35;
}
.workforce-support-motif circle {
  fill: var(--navy-2);
}
.workforce-capability-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--navy);
}
.workforce-capability-rail article {
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition:
    border-color 0.25s,
    transform 0.25s var(--ease);
}
.workforce-capability-rail article:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
}
.workforce-capability-rail .capability-icon {
  margin-bottom: 2.25rem;
}
.workforce-capability-rail h3 {
  max-width: 18ch;
  margin-bottom: 0.9rem;
  font-size: var(--title-card);
}
.workforce-capability-rail p {
  color: var(--muted);
  font-size: var(--text-sm);
}
.workforce-process {
  padding-block: var(--section-space);
}
.workforce-process-line {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}
.workforce-process-line li {
  position: relative;
  padding: 2.1rem clamp(1.2rem, 2.5vw, 2.5rem) 1rem 0;
  border-top: 1px solid rgb(211 165 60 / 0.75);
}
.workforce-process-line li::before {
  position: absolute;
  top: -0.45rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--navy);
  content: "";
}
.workforce-process-line span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 800;
}
.workforce-process-line h3 {
  max-width: 16ch;
  margin-bottom: 0.7rem;
  font-size: var(--title-card);
}
.workforce-process-line p {
  color: #cbd6e2;
  font-size: var(--text-sm);
}

/* Fiber: one continuous technical route */
.fiber-intro {
  padding-block: var(--section-space);
  background: #e9f2f8;
}
.fiber-intro-grid {
  position: relative;
  min-height: 19rem;
}
.fiber-intro-grid .service-intro-copy {
  padding-right: min(23vw, 20rem);
}
.fiber-intro-motif {
  position: absolute;
  right: -2rem;
  bottom: -8rem;
  width: min(29rem, 36vw);
  opacity: 0.38;
}
.fiber-intro-motif circle {
  fill: #e9f2f8;
}
.fiber-journey-section {
  padding-block: var(--section-space);
  overflow: clip;
  background: linear-gradient(90deg, var(--white) 0 50%, #f5f8fa 50%);
}
.fiber-journey {
  position: relative;
  display: grid;
  padding: 0;
  gap: clamp(4rem, 8vw, 8rem);
  list-style: none;
}
.fiber-route {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  overflow: visible;
  translate: -50% 0;
}
.fiber-route path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}
.fiber-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 21rem;
  grid-template-columns: minmax(0, 1fr) 4.5rem minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.fiber-step figure {
  width: min(100%, 26rem);
  aspect-ratio: 7 / 5;
  overflow: hidden;
  box-shadow: 0 20px 50px rgb(6 27 56 / 0.14);
}
.fiber-step figure picture,
.fiber-step figure img {
  width: 100%;
  height: 100%;
}
.fiber-step figure img {
  object-fit: cover;
}
.fiber-step:nth-child(even) figure {
  grid-column: 3;
  justify-self: start;
}
.fiber-step:nth-child(even) article {
  grid-row: 1;
  grid-column: 1;
  justify-self: end;
  text-align: right;
}
.fiber-node {
  z-index: 2;
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  grid-column: 2;
  grid-row: 1;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 800;
  box-shadow: 0 0 0 0.65rem var(--white);
  transition:
    background 0.3s,
    scale 0.3s var(--ease);
}
.fiber-step:hover .fiber-node {
  background: var(--blue);
  scale: 1.06;
}
.fiber-step article {
  max-width: 31rem;
}
.fiber-step h3 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: var(--title-card);
}
.fiber-step p {
  color: var(--muted);
  font-size: var(--text-sm);
}

/* Naval: engineered structural modules */
.naval-intro {
  padding-block: var(--section-space);
  background: #e6edf1;
}
.naval-intro-grid {
  position: relative;
  min-height: 20rem;
}
.naval-intro-grid .service-intro-copy {
  padding-right: min(22vw, 19rem);
}
.naval-intro-motif {
  position: absolute;
  right: 0;
  bottom: -7rem;
  width: min(28rem, 36vw);
  opacity: 0.3;
}
.naval-intro-motif circle {
  fill: #e6edf1;
}
.naval-structure-section {
  padding-block: var(--section-space);
  overflow: clip;
  background: var(--ivory);
}
.naval-structure-grid {
  position: relative;
  display: grid;
  min-height: 47rem;
  padding: clamp(1rem, 2vw, 2rem);
  grid-template-columns: minmax(15rem, 0.8fr) minmax(20rem, 1.25fr) minmax(
      15rem,
      0.8fr
    );
  align-items: stretch;
  gap: 1px;
  background: #cfd8df;
}
.structural-frame {
  position: absolute;
  z-index: 2;
  inset: -0.8rem;
  width: calc(100% + 1.6rem);
  height: calc(100% + 1.6rem);
  pointer-events: none;
}
.structural-frame path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.naval-module-column {
  z-index: 3;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1px;
}
.naval-module-column article {
  padding: clamp(1.35rem, 2.2vw, 2.2rem);
  background: var(--white);
}
.naval-module-column article:nth-child(even) {
  background: var(--navy-2);
  color: var(--white);
}
.naval-module-column .capability-icon {
  margin-bottom: 1.35rem;
}
.naval-module-column h3 {
  max-width: 17ch;
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
}
.naval-module-column p {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.naval-module-column article:nth-child(even) p {
  color: #cbd6e2;
}
.naval-module-column article:nth-child(even) .capability-icon {
  stroke: var(--gold);
}
.naval-structure-image {
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  background: var(--navy);
}
.naval-structure-image picture,
.naval-structure-image img {
  width: 100%;
  height: 100%;
}
.naval-structure-image img {
  object-fit: cover;
  object-position: center;
}
.scope-note {
  display: grid;
  margin-block: var(--section-space);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-block: 1px solid var(--gold);
  grid-template-columns: minmax(14rem, 0.6fr) minmax(18rem, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
}
.scope-note h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.65rem);
}
.scope-note p {
  max-width: var(--reading-max);
  color: var(--muted);
}
.gallery-section {
  padding-block: var(--section-space);
  background: var(--ivory);
}
.project-gallery {
  display: grid;
  width: min(100%, 70rem);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--navy);
  cursor: pointer;
}
.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}
.gallery-item picture {
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  object-fit: cover;
  transition:
    opacity 0.25s,
    scale 0.6s var(--ease);
}
.gallery-item:hover img {
  opacity: 0.82;
  scale: 1.025;
}
.gallery-item > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--gold);
  place-items: center;
  background: rgb(6 27 56 / 0.86);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}
.lightbox {
  width: min(92vw, 75rem);
  max-height: 90vh;
  padding: 0;
  border: 0;
  background: var(--navy);
  color: var(--white);
}
.lightbox::backdrop {
  background: rgb(0 10 25 / 0.86);
  backdrop-filter: blur(5px);
}
.lightbox figure {
  display: grid;
  min-height: 70vh;
  place-items: center;
}
.lightbox figure img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
}
.lightbox figcaption {
  padding: 1rem 4rem 1.4rem;
  text-align: center;
}
.lightbox button {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgb(255 255 255 / 0.5);
  place-items: center;
  background: rgb(6 27 56 / 0.8);
  color: var(--white);
  cursor: pointer;
}
.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
}
.lightbox-prev {
  top: 50%;
  left: 1rem;
}
.lightbox-next {
  top: 50%;
  right: 1rem;
}

/* About */
.story-section {
  padding-block: var(--section-space);
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.62fr) minmax(20rem, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
}
.story-grid h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
}
.story-grid p {
  max-width: var(--reading-max);
  color: var(--muted);
  font-size: 1.08rem;
}
.structure-section {
  position: relative;
  padding-block: var(--section-space);
  overflow: clip;
}
.structure-section .display-title {
  position: relative;
  z-index: 2;
  margin-bottom: 3.5rem;
}
.structure-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 0.25);
}
.structure-list article {
  padding: 2rem clamp(1rem, 2.5vw, 2.5rem) 2rem 0;
  border-right: 1px solid rgb(255 255 255 / 0.18);
}
.structure-list article + article {
  padding-left: clamp(1rem, 2.5vw, 2.5rem);
}
.structure-list span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}
.structure-list h3 {
  margin: 1.1rem 0 0.8rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.structure-list p {
  color: #cbd6e2;
}
.structure-motif {
  position: absolute;
  right: -4rem;
  bottom: -7rem;
  width: 34rem;
  opacity: 0.14;
}
.values-section {
  padding-block: var(--section-space);
}
.values-section > h2 {
  margin-bottom: 3rem;
}
.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}
.value-list article {
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--line);
}
.value-list article:nth-child(even) {
  padding-right: 0;
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}
.value-list h3 {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}
.value-list p {
  max-width: 36rem;
  color: var(--muted);
}

/* Contact */
.contact-overview {
  display: grid;
  padding-block: var(--section-space);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.contact-panel {
  position: relative;
  min-width: 0;
  min-height: 25rem;
  padding: clamp(1.5rem, 2.8vw, 2.8rem);
  border-left: 1px solid var(--line);
  overflow: hidden;
}
.contact-panel:last-child {
  border-right: 1px solid var(--line);
}
.contact-panel > svg {
  width: 2.2rem;
  margin-bottom: 2rem;
  color: var(--gold-deep);
}
.contact-panel h2 {
  min-height: 3.8rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  letter-spacing: 0;
}
.contact-panel p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}
.contact-panel > a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.7rem;
  overflow-wrap: anywhere;
  font-weight: 750;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.25rem;
}
.contact-panel ul {
  display: grid;
  padding: 0;
  list-style: none;
  gap: 1rem;
}
.contact-panel li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
}
.contact-panel li svg {
  width: 1.25rem;
  margin-top: 0.2rem;
  color: var(--gold-deep);
}
.contact-panel .region-list {
  gap: 0;
  border-top: 1px solid var(--line);
}
.contact-panel .region-list li {
  min-height: 2.85rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  color: var(--ink);
  font-weight: 650;
}
.contact-panel .region-list li::before {
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  content: "";
}
.contact-divisions nav {
  position: relative;
  z-index: 2;
}
.contact-divisions nav a {
  display: flex;
  min-height: 3.3rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 750;
  text-decoration: none;
}
.contact-panel-motif {
  position: absolute;
  right: -8rem;
  bottom: -5rem;
  width: 24rem;
  opacity: 0.12;
}
.contact-panel-motif circle {
  fill: var(--white);
}

/* CTA and footer */
.cta-section {
  position: relative;
  overflow: clip;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 24rem;
  padding-block: clamp(4rem, 7vw, 7rem);
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta-inner h2 {
  max-width: 19ch;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4.3vw, 4.8rem);
  font-weight: 750;
  letter-spacing: 0.003em;
}
.cta-inner h2.hero-title--long {
  max-width: 24ch;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}
html[lang="de"] .cta-inner h2.hero-title--long,
html[lang="nl"] .cta-inner h2.hero-title--long {
  font-size: clamp(1.75rem, 2.15vw, 2.5rem);
}
.cta-inner p {
  max-width: 40rem;
  color: #cbd6e2;
}
.cta-motif {
  position: absolute;
  right: -4rem;
  bottom: -7rem;
  width: 35rem;
  opacity: 0.16;
}
.site-footer {
  position: relative;
  overflow: clip;
  border-top: 1px solid rgb(211 165 60 / 0.45);
  background: #03152d;
  color: var(--white);
}
.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  grid-template-columns: 1.1fr 1fr 1.1fr 0.65fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.footer-logo {
  width: min(15rem, 100%);
  height: auto;
  margin-bottom: 0.8rem;
}
.footer-brand p {
  max-width: 19rem;
}
.footer-brand .footer-slogan {
  color: var(--ivory);
  font-size: 0.95rem;
  font-weight: 700;
}
.footer-brand .footer-brandline {
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 0.8rem;
}
.footer-links,
.footer-languages {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
.footer-links strong,
.footer-languages strong {
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-links a,
.footer-languages a,
.footer-links span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #d5dee8;
  font-size: 0.86rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer-links a:hover,
.footer-languages a:hover {
  color: var(--gold);
}
.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  margin-inline: auto;
  padding: 1.2rem 0;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  justify-content: space-between;
  gap: 1rem;
  color: #8fa1b4;
  font-size: 0.72rem;
}
.footer-motif {
  position: absolute;
  right: -7rem;
  bottom: -7rem;
  width: 36rem;
  opacity: 0.16;
}
.footer-motif circle {
  fill: #03152d;
}

/* 404 */
.not-found {
  position: relative;
  display: grid;
  min-height: 75svh;
  overflow: clip;
  place-items: center;
  text-align: center;
}
.not-found > div {
  position: relative;
  z-index: 2;
  width: min(90%, 48rem);
}
.not-found > div > span {
  display: block;
  color: var(--gold);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 800;
  line-height: 0.8;
}
.not-found h1 {
  margin: 2rem 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}
.not-found p {
  margin-bottom: 2rem;
  color: #cbd6e2;
}
.not-found-network {
  inset: auto -10rem -13rem auto;
  width: 55rem;
  opacity: 0.2;
}

/* Page and image transitions */
.js main,
.js .site-footer {
  opacity: 0;
  transform: translateY(3px);
  transition:
    opacity 0.2s ease,
    transform 0.24s var(--ease);
}
.js body.page-ready main,
.js body.page-ready .site-footer {
  opacity: 1;
  transform: none;
}
.js body.page-leaving main,
.js body.page-leaving .site-footer {
  opacity: 0;
  transform: scale(0.997);
  transition-duration: 0.14s;
}
.js .hero-media img,
.js .page-hero img {
  opacity: 0;
  scale: 1.012;
  transition:
    opacity 0.34s ease,
    scale 0.6s var(--ease);
}
.js body.page-ready .hero-media img,
.js body.page-ready .page-hero img {
  opacity: 1;
  scale: 1;
}
.js .hero-copy h1,
.js .hero-copy p,
.js .hero-copy .button-row,
.js .page-hero-copy h1,
.js .page-hero-copy p,
.js .contact-hero-links {
  opacity: 0;
  translate: 0 0.85rem;
  transition:
    opacity 0.42s ease,
    translate 0.52s var(--ease);
}
.js .hero-network,
.js .page-hero-motif {
  translate: 0 0.45rem;
  transition: translate 0.68s var(--ease);
}
.js body.page-ready .hero-copy h1,
.js body.page-ready .hero-copy p,
.js body.page-ready .hero-copy .button-row,
.js body.page-ready .page-hero-copy h1,
.js body.page-ready .page-hero-copy p,
.js body.page-ready .contact-hero-links {
  opacity: 1;
  translate: 0;
}
.js body.page-ready .hero-network,
.js body.page-ready .page-hero-motif {
  translate: 0;
}
.js body.page-ready .hero-copy p,
.js body.page-ready .page-hero-copy p {
  transition-delay: 70ms;
}
.js body.page-ready .hero-copy .button-row,
.js body.page-ready .contact-hero-links {
  transition-delay: 135ms;
}
.js body.page-ready .hero-network,
.js body.page-ready .page-hero-motif {
  transition-delay: 170ms;
}
.js.motion-ready [data-reveal].reveal-pending,
.js.motion-ready [data-reveal].reveal-pending [data-reveal-item] {
  opacity: 0;
  translate: 0 1.25rem;
  will-change: opacity, translate;
  transition:
    opacity 0.48s ease,
    translate 0.52s var(--ease);
}
.js.motion-ready [data-reveal].reveal-pending.is-revealed,
.js.motion-ready [data-reveal].reveal-pending.is-revealed [data-reveal-item] {
  opacity: 1;
  translate: 0;
}
.js.motion-ready [data-reveal].reveal-pending [data-reveal-item]:nth-child(2) {
  transition-delay: 55ms;
}
.js.motion-ready [data-reveal].reveal-pending [data-reveal-item]:nth-child(3) {
  transition-delay: 110ms;
}
.js.motion-ready [data-reveal].reveal-pending [data-reveal-item]:nth-child(4) {
  transition-delay: 165ms;
}
.js.motion-ready [data-reveal].reveal-pending [data-reveal-item]:nth-child(5) {
  transition-delay: 220ms;
}
.js.motion-ready [data-reveal].reveal-pending [data-reveal-item]:nth-child(6) {
  transition-delay: 275ms;
}
.js.motion-ready [data-reveal].reveal-pending figure {
  clip-path: inset(0 0 5% 0);
  transition: clip-path 0.56s var(--ease);
}
.js.motion-ready [data-reveal].reveal-pending.is-revealed figure {
  clip-path: inset(0);
}
.js.motion-ready [data-reveal].reveal-pending [data-draw] {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.72s 0.08s var(--ease);
}
.js.motion-ready [data-reveal].reveal-pending.is-revealed [data-draw] {
  stroke-dashoffset: 0;
}
.js.motion-ready [data-reveal].reveal-pending circle {
  opacity: 0;
  transition: opacity 0.3s 0.28s ease;
}
.js.motion-ready [data-reveal].reveal-pending.is-revealed circle {
  opacity: 1;
}
.gallery-item::after {
  position: absolute;
  right: 4.1rem;
  bottom: 2.1rem;
  left: 1rem;
  height: 1px;
  scale: 0 1;
  background: var(--gold);
  content: "";
  transform-origin: right;
  transition: scale 0.28s var(--ease);
}
.gallery-item:hover::after {
  scale: 1;
}

:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 0.2rem;
}
.mobile-menu > a:focus-visible {
  outline: none;
  background: var(--ivory);
  box-shadow: inset 2px 0 0 var(--gold);
}
.language-menu a:focus-visible {
  outline: none;
  box-shadow: inset 2px 0 0 var(--gold);
}
.mobile-toggle:focus-visible,
.language-trigger:focus-visible {
  outline-offset: 1px;
  border-radius: 0.25rem;
}

@media (max-width: 78rem) {
  .header-cta {
    display: none;
  }
  .home-hero {
    grid-template-columns: minmax(21rem, 47%) minmax(0, 53%);
  }
  .hero-media {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .division-copy {
    min-height: 26rem;
  }
  .contact-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-panel {
    min-height: 22rem;
    border-bottom: 1px solid var(--line);
  }
  .contact-panel:nth-child(2) {
    border-right: 1px solid var(--line);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .workforce-support-grid {
    grid-template-columns: minmax(15rem, 0.48fr) minmax(0, 1.52fr);
    gap: 2rem;
  }
  .naval-structure-grid {
    grid-template-columns: minmax(13rem, 0.8fr) minmax(17rem, 1.1fr) minmax(
        13rem,
        0.8fr
      );
  }
  .naval-module-column article {
    padding: 1.4rem;
  }
}

@media (max-width: 70rem) {
  :root {
    --header-height: 4.75rem;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .site-header {
    z-index: 120;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .brand {
    width: 5.3rem;
  }
  .header-actions {
    justify-self: end;
  }
  .home-hero,
  .hero-media,
  .hero-media figure,
  .page-hero-image,
  .page-hero-collage,
  .page-hero-collage figure,
  .division-card,
  .division-card figure,
  .fiber-step,
  .fiber-step figure,
  .naval-structure-grid,
  .naval-structure-image {
    min-width: 0;
    max-width: 100%;
  }
  .hero-media,
  .hero-media figure,
  .page-hero-image,
  .page-hero-collage,
  .division-card figure,
  .fiber-step figure,
  .naval-structure-image {
    overflow: hidden;
  }
  .js main,
  .js .site-footer {
    transform: translateY(4px);
    transition:
      opacity 0.17s ease,
      transform 0.18s var(--ease);
  }
  .js body.page-leaving main,
  .js body.page-leaving .site-footer {
    transform: none;
    transition-duration: 0.11s;
  }
  .js .hero-media img,
  .js .page-hero img {
    scale: 1;
    transition: opacity 0.18s ease;
  }
  .js .hero-copy h1,
  .js .hero-copy p,
  .js .hero-copy .button-row,
  .js .page-hero-copy h1,
  .js .page-hero-copy p,
  .js .contact-hero-links {
    translate: 0 0.55rem;
    transition-duration: 0.3s, 0.34s;
  }
  .js .hero-network,
  .js .page-hero-motif {
    translate: 0 0.3rem;
    transition-duration: 0.36s;
  }
  .js body.page-ready .hero-copy p,
  .js body.page-ready .page-hero-copy p {
    transition-delay: 40ms;
  }
  .js body.page-ready .hero-copy .button-row,
  .js body.page-ready .contact-hero-links {
    transition-delay: 80ms;
  }
  .js body.page-ready .hero-network,
  .js body.page-ready .page-hero-motif {
    transition-delay: 95ms;
  }
  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    min-height: 35rem;
    width: 100%;
    padding: clamp(4rem, 9vw, 6rem) var(--page-gutter);
  }
  .hero-copy::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgb(6 27 56 / 0.97),
      rgb(6 27 56 / 0.68)
    );
    content: "";
  }
  .hero-media {
    position: absolute;
    inset: 0;
    grid-template-columns: 1fr;
  }
  .hero-media figure {
    display: none;
    border: 0;
  }
  .hero-media figure:first-child {
    display: block;
  }
  .hero-media::after {
    inset: 0;
    background: rgb(6 27 56 / 0.18);
  }
  .hero-network {
    right: -12rem;
    width: 48rem;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intro-grid > * {
    min-width: 0;
    max-width: 100%;
  }
  .intro-grid h2 {
    max-width: 18ch;
  }
  .intro-motif {
    bottom: -5rem;
    opacity: 0.18;
  }
  .division-triptych {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .division-card {
    display: grid;
    grid-template-columns: minmax(17rem, 0.9fr) minmax(0, 1.1fr);
  }
  .division-card figure {
    height: 100%;
    aspect-ratio: auto;
  }
  .division-copy {
    min-height: 22rem;
  }
  .map-inner,
  .experience-inner {
    grid-template-columns: 1fr;
  }
  .map-copy {
    max-width: 42rem;
  }
  .map-copy,
  .experience-copy {
    min-width: 0;
    max-width: 100%;
  }
  .workforce-process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .experience-images {
    max-width: 50rem;
  }
  .page-hero-inner {
    min-height: auto;
    padding-block: 3rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .page-hero-copy {
    min-height: 20rem;
    padding-block: 1rem 0;
  }
  .page-hero-copy h1 {
    max-width: 18ch;
  }
  .page-hero-image,
  .page-hero-collage {
    height: clamp(22rem, 52vw, 34rem);
  }
  .page-hero-fiber .page-hero-image {
    height: min(26rem, 52vw);
  }
  .page-hero-contact .page-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .contact-hero-links {
    margin-bottom: 1rem;
  }
  .page-hero-motif {
    right: -8rem;
    bottom: -7rem;
    width: 30rem;
  }
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
  }
  .process-line li:nth-child(2n) {
    padding-right: 0;
  }
  .service-intro-copy {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .fiber-intro-grid .service-intro-copy,
  .naval-intro-grid .service-intro-copy {
    padding-right: min(26vw, 15rem);
  }
  .workforce-support-grid {
    grid-template-columns: 1fr;
  }
  .workforce-support-heading {
    min-height: 20rem;
  }
  .naval-structure-grid {
    min-height: 0;
    grid-template-columns: 1fr 1.25fr;
  }
  .naval-module-right {
    grid-column: 1 / 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .naval-structure-image {
    min-height: 38rem;
  }
}

@media (max-width: 48rem) {
  :root {
    --section-space: clamp(3.5rem, 14vw, 5.5rem);
  }
  .header-inner {
    gap: 0.5rem;
  }
  .language-trigger svg:first-child {
    display: none;
  }
  .hero-copy {
    min-height: min(42rem, calc(100svh - var(--header-height)));
    padding-block: clamp(3rem, 10vw, 4rem);
  }
  .hero-copy h1.hero-title--home {
    max-width: 14ch;
    font-size: clamp(2.55rem, 11vw, 3.25rem);
    line-height: 0.99;
  }
  .hero-copy p {
    font-size: 1rem;
  }
  .button {
    width: 100%;
  }
  .button-row {
    width: 100%;
  }
  .intro-grid {
    min-height: 0;
    padding-block: var(--section-space);
  }
  .intro-grid h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  html[lang="de"] .intro-grid h2,
  html[lang="nl"] .intro-grid h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
  }
  .division-heading h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }
  .division-card {
    display: block;
  }
  .division-card figure {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .division-copy {
    min-height: 21rem;
    padding: 1.7rem;
  }
  .division-copy h3 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
  html[lang="de"] .division-copy h3,
  html[lang="nl"] .division-copy h3 {
    font-size: clamp(1.05rem, 5.3vw, 1.85rem);
  }
  html[lang="de"] .division-copy h3 {
    font-size: clamp(1.15rem, 5.75vw, 1.9rem);
  }
  .map-section {
    padding-bottom: 3rem;
  }
  .map-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
  html[lang="de"] .map-copy h2,
  html[lang="nl"] .map-copy h2,
  html[lang="de"] .experience-copy h2,
  html[lang="nl"] .experience-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }
  .europe-map {
    margin-inline: calc(var(--page-gutter) * -1);
  }
  .map-point text {
    font-size: 21px;
  }
  .section-heading {
    display: block;
    margin-bottom: 2.5rem;
  }
  .section-heading h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .process-line {
    grid-template-columns: 1fr;
    row-gap: 1.7rem;
  }
  .process-line li {
    padding-right: 0;
  }
  .experience-images {
    grid-template-columns: 1fr 1fr;
  }
  .experience-images figure {
    aspect-ratio: 4 / 3;
  }
  .experience-images figure:last-child {
    display: none;
  }
  .page-hero-inner {
    padding-block: 2.2rem 3rem;
  }
  .page-hero-copy {
    min-height: auto;
    padding: 1.5rem 0 0.5rem;
  }
  .page-hero-copy h1,
  html[lang="de"] .page-hero-copy h1,
  html[lang="nl"] .page-hero-copy h1 {
    width: 100%;
    max-width: 18ch;
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    line-height: 1.02;
  }
  .page-hero-copy h1.hero-title--long,
  html[lang="de"] .page-hero-copy h1.hero-title--long,
  html[lang="nl"] .page-hero-copy h1.hero-title--long {
    max-width: none;
    font-size: clamp(1.5rem, 7.5vw, 2rem);
  }
  .cta-inner h2.hero-title--long {
    max-width: none;
    font-size: clamp(1.5rem, 7.5vw, 2rem);
  }
  .page-hero-copy p {
    font-size: 0.98rem;
  }
  .page-hero-image,
  .page-hero-collage {
    height: min(62vh, 27rem);
  }
  .page-hero-fiber .page-hero-image {
    height: auto;
    aspect-ratio: 1300 / 475;
  }
  .naval-collage {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .about-collage {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .contact-hero-links {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .contact-hero-links a {
    min-height: 7.5rem;
    padding: 1.3rem;
  }
  .page-hero-contact .page-hero-motif {
    display: none;
  }
  .service-intro-copy {
    display: block;
  }
  .service-intro-copy h2 {
    margin-bottom: 1.1rem;
  }
  html[lang="nl"] .service-intro-copy h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .fiber-intro-grid .service-intro-copy,
  .naval-intro-grid .service-intro-copy {
    padding-right: 0;
  }
  .fiber-intro-motif,
  .naval-intro-motif {
    right: -10rem;
    opacity: 0.14;
  }
  .coordination-diagram {
    min-height: 0;
  }
  .coordination-diagram ol {
    min-height: 0;
    padding: 1rem;
    grid-template-columns: 1fr;
  }
  .coordination-diagram li,
  .coordination-diagram li:nth-child(even) {
    min-height: 0;
    padding: 1.3rem;
    align-self: auto;
  }
  .coordination-network {
    opacity: 0.28;
  }
  .workforce-capability-rail {
    grid-template-columns: 1fr;
  }
  .workforce-capability-rail article {
    min-height: 0;
  }
  html[lang="de"] .workforce-support-heading h2 {
    font-size: clamp(1.5rem, 6.7vw, 2rem);
  }
  html[lang="nl"] .workforce-support-heading h2 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }
  html[lang="nl"] .workforce-capability-rail h3 {
    font-size: clamp(1.05rem, 5vw, 1.5rem);
  }
  .workforce-process-line {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .workforce-process-line li {
    padding: 1.4rem 0 1.1rem 2.2rem;
    border-top: 0;
    border-left: 1px solid var(--gold);
  }
  .workforce-process-line li::before {
    top: 1.6rem;
    left: -0.45rem;
  }
  .fiber-journey-section {
    background: var(--white);
  }
  .fiber-journey {
    padding-left: 3.5rem;
    gap: 3rem;
  }
  .fiber-route {
    left: 1.05rem;
    translate: 0;
  }
  .fiber-step,
  .fiber-step:nth-child(even) {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .fiber-step figure,
  .fiber-step:nth-child(even) figure {
    width: min(100%, 26rem);
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
  .fiber-step article,
  .fiber-step:nth-child(even) article {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    text-align: left;
  }
  html[lang="de"] .fiber-step h3 {
    font-size: clamp(1.15rem, 5.3vw, 1.55rem);
  }
  html[lang="nl"] .fiber-step h3 {
    font-size: clamp(1.1rem, 5vw, 1.55rem);
  }
  .fiber-node {
    position: absolute;
    top: 1rem;
    left: -4rem;
    width: 3.1rem;
    height: 3.1rem;
    grid-column: auto;
    grid-row: auto;
    box-shadow: 0 0 0 0.45rem var(--white);
  }
  .naval-structure-grid {
    display: grid;
    padding: 0.65rem;
    grid-template-columns: 1fr;
  }
  .naval-module-column,
  .naval-module-right {
    grid-column: 1;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .naval-structure-image {
    min-height: 30rem;
    grid-row: 2;
  }
  .naval-module-right {
    grid-row: 3;
  }
  .structural-frame {
    display: none;
  }
  .scope-note {
    display: block;
  }
  .scope-note h2 {
    margin-bottom: 1rem;
  }
  .project-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .structure-list,
  .value-list {
    grid-template-columns: 1fr;
  }
  .structure-list article,
  .structure-list article + article {
    padding: 1.8rem 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.18);
  }
  .value-list article,
  .value-list article:nth-child(even) {
    padding: 1.6rem 0;
    border-left: 0;
  }
  .contact-overview {
    grid-template-columns: 1fr;
  }
  .contact-panel,
  .contact-panel:nth-child(2),
  .contact-panel:last-child {
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
    border-left: 0;
  }
  .contact-panel h2 {
    min-height: 0;
  }
  .cta-inner {
    display: block;
    min-height: 0;
  }
  .cta-inner .button {
    margin-top: 2rem;
  }
  .cta-inner h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }
  html[lang="nl"] .cta-inner h2.hero-title--long {
    font-size: clamp(1.15rem, 5.8vw, 1.65rem);
  }
  html[lang="de"] .cta-inner h2.hero-title--long {
    font-size: clamp(1.2rem, 5.8vw, 1.7rem);
  }
  .cta-motif {
    right: 0;
    width: 100%;
    max-width: 100%;
  }
  .site-footer {
    text-align: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    justify-items: center;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    margin-inline: auto;
  }
  .footer-links,
  .footer-languages {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-links a,
  .footer-links span,
  .footer-languages a {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom {
    display: grid;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }
  .footer-motif {
    right: 50%;
    bottom: -9rem;
    width: min(28rem, 100vw);
    opacity: 0.13;
    translate: 50% 0;
  }
  .hero-network {
    opacity: 0.58;
  }
  .network-routes,
  .connection-motif {
    stroke-width: 1.75;
  }
  .network-nodes,
  .connection-motif circle {
    stroke-width: 2.5;
  }
  .network-nodes .node-primary,
  .connection-motif .node-primary {
    fill: var(--gold);
    stroke: var(--navy);
    stroke-width: 1.6;
    transform-box: fill-box;
    transform-origin: center;
    scale: 1.12;
  }
  .page-hero-motif {
    opacity: 0.64;
  }
  .intro-motif {
    opacity: 0.28;
  }
  .division-motif {
    opacity: 0.2;
  }
  .experience-motif,
  .cta-motif {
    opacity: 0.23;
  }
  .workforce-support-motif,
  .coordination-network {
    opacity: 0.4;
  }
  .fiber-intro-motif,
  .naval-intro-motif {
    opacity: 0.22;
  }
  .contact-panel-motif {
    opacity: 0.2;
  }
  .js.motion-ready [data-reveal].reveal-pending,
  .js.motion-ready [data-reveal].reveal-pending [data-reveal-item] {
    translate: 0 0.85rem;
    transition-duration: 0.38s, 0.42s;
  }
  .js.motion-ready
    [data-reveal].reveal-pending
    [data-reveal-item]:nth-child(2) {
    transition-delay: 35ms;
  }
  .js.motion-ready
    [data-reveal].reveal-pending
    [data-reveal-item]:nth-child(3) {
    transition-delay: 70ms;
  }
  .js.motion-ready
    [data-reveal].reveal-pending
    [data-reveal-item]:nth-child(4) {
    transition-delay: 105ms;
  }
  .js.motion-ready [data-reveal].reveal-pending [data-reveal-item]:nth-child(5),
  .js.motion-ready
    [data-reveal].reveal-pending
    [data-reveal-item]:nth-child(6) {
    transition-delay: 140ms;
  }
  .js.motion-ready [data-reveal].reveal-pending figure {
    transition-duration: 0.44s;
  }
  .js.motion-ready [data-reveal].reveal-pending [data-draw] {
    transition-duration: 0.58s;
  }
}

@media (max-width: 23rem) {
  .brand {
    width: 4.7rem;
  }
  .language-trigger {
    padding-inline: 0.35rem;
  }
  .hero-copy h1.hero-title--home {
    font-size: 2.55rem;
  }
  .project-gallery {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 100rem) {
  .hero-copy h1.hero-title--home {
    font-size: 5.2rem;
  }
  .page-hero-copy h1:not(.hero-title--long),
  html[lang="de"] .page-hero-copy h1:not(.hero-title--long),
  html[lang="nl"] .page-hero-copy h1:not(.hero-title--long) {
    font-size: 3.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js main,
  .js .site-footer,
  .js .hero-media img,
  .js .page-hero img,
  .js .hero-copy h1,
  .js .hero-copy p,
  .js .hero-copy .button-row,
  .js .page-hero-copy h1,
  .js .page-hero-copy p,
  .js .contact-hero-links,
  .js.motion-ready [data-reveal].reveal-pending,
  .js.motion-ready [data-reveal].reveal-pending [data-reveal-item] {
    opacity: 1;
    transform: none;
    translate: 0;
    scale: 1;
    will-change: auto;
  }
  .js .hero-network,
  .js .page-hero-motif {
    translate: 0;
    transform: none;
  }
  .js.motion-ready [data-reveal].reveal-pending figure {
    clip-path: none;
  }
  .js.motion-ready [data-reveal].reveal-pending [data-draw] {
    stroke-dashoffset: 0;
  }
  .js.motion-ready [data-reveal].reveal-pending circle {
    opacity: 1;
  }
}
