:root {
  --red: #f11618;
  --red-dark: #b4090d;
  --ink: #050505;
  --coal: #0c0c0d;
  --graphite: #171719;
  --steel: #62646b;
  --line: #e7e7e9;
  --paper: #f7f7f4;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.4vw, 24px);
  width: min(100% - 32px, 1440px);
  min-height: 82px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 20px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.46), rgba(5, 5, 5, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px) saturate(142%);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease, opacity 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.48));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 16px 50px rgba(0, 0, 0, 0.28);
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 24px));
}

.opening-at-top .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.35vw, 26px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--red);
  border-color: rgba(241, 22, 24, 0.72);
  transform: translateY(-1px);
}

.social-links img {
  width: 17px;
  height: 17px;
}

.header-social {
  padding-right: 2px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-switcher span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-switcher select {
  min-height: 38px;
  padding: 0 30px 0 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  outline: 0;
}

.language-switcher select:focus {
  border-color: rgba(241, 22, 24, 0.82);
}

.language-switcher option {
  color: var(--ink);
  background: var(--white);
}

.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(241, 22, 24, 0.28);
}

.install-app-button {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.82), rgba(24, 24, 26, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(140%);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.install-app-button:hover,
.install-app-button:focus-visible {
  background: var(--red);
  border-color: rgba(241, 22, 24, 0.72);
  transform: translateY(-1px);
}

.install-app-button[hidden] {
  display: none;
}

.install-app-note {
  position: fixed;
  left: 24px;
  bottom: 78px;
  z-index: 90;
  width: min(320px, calc(100vw - 48px));
  padding: 12px 14px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(24, 24, 26, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(140%);
  font-size: 13px;
  line-height: 1.4;
}

.install-app-note[hidden] {
  display: none;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--white);
}

.hero {
  --reveal: 0;
  --image-scale: 1.28;
  --veil-opacity: 0.2;
  --graphic-opacity: 0;
  --content-opacity: 0;
  --panel-opacity: 0;
  --cards-opacity: 0;
  --content-shift: 42px;
  --panel-shift: 52px;
  --cards-shift: 44px;
  --cue-opacity: 1;
  position: relative;
  min-height: 210svh;
  padding: 0 24px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: clip;
}

.hero-stage {
  position: sticky;
  top: 0;
  min-height: 720px;
  height: 100svh;
  margin: 0 -24px;
  padding: 132px 24px 0;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #050505;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(circle at 72% 36%, rgba(241, 22, 24, 0.22), transparent 34%),
    linear-gradient(100deg, rgba(0, 0, 0, 0.1), transparent 42%, rgba(0, 0, 0, 0.2));
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.09) translate3d(var(--hero-pan-x-start, 0), var(--hero-pan-y-start, 0), 0);
  transform-origin: center;
  transition: opacity 1500ms ease;
  will-change: opacity, transform;
}

.hero-media img.is-active {
  z-index: 2;
  opacity: 1;
  animation: hero-slide-drift 8200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-media img.is-leaving {
  z-index: 1;
  opacity: 0;
  transform: scale(1.045) translate3d(var(--hero-pan-x-end, 0), var(--hero-pan-y-end, 0), 0);
}

.hero-slide-site {
  --hero-pan-x-start: -1.2%;
  --hero-pan-y-start: -0.4%;
  --hero-pan-x-end: 0.8%;
  --hero-pan-y-end: 0.4%;
}

.hero-slide-foundations {
  --hero-pan-x-start: 1%;
  --hero-pan-y-start: -0.8%;
  --hero-pan-x-end: -0.7%;
  --hero-pan-y-end: 0.5%;
  object-position: center 58%;
}

.hero-slide-crew {
  --hero-pan-x-start: -0.6%;
  --hero-pan-y-start: 0.6%;
  --hero-pan-x-end: 0.8%;
  --hero-pan-y-end: -0.6%;
  object-position: center 46%;
}

.hero-slide-finished {
  --hero-pan-x-start: 0.8%;
  --hero-pan-y-start: 0.4%;
  --hero-pan-x-end: -0.7%;
  --hero-pan-y-end: -0.3%;
  object-position: center 52%;
}

.hero-slide-completed {
  --hero-pan-x-start: -0.7%;
  --hero-pan-y-start: -0.3%;
  --hero-pan-x-end: 0.7%;
  --hero-pan-y-end: 0.4%;
  object-position: center 50%;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: var(--veil-opacity);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.74) 100%);
  transition: opacity 80ms linear;
}

.hero-graphic {
  position: absolute;
  inset: 96px 0 112px 38%;
  z-index: 0;
  opacity: var(--graphic-opacity);
  pointer-events: none;
  transform: translate3d(calc(var(--mx, 0) * 12px), calc(var(--my, 0) * 10px), 0);
  transition: opacity 120ms linear, transform 300ms ease-out;
  will-change: opacity, transform;
}

.hero-blueprint-grid {
  position: absolute;
  inset: 2% 0 0 10%;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 46%, rgba(241, 22, 24, 0.24) 46% 47%, transparent 47% 100%);
  background-size: 64px 64px, 64px 64px, 100% 100%;
  clip-path: polygon(22% 0, 100% 0, 100% 82%, 74% 100%, 0 78%, 0 18%);
  mask-image: linear-gradient(90deg, transparent, black 22%, black 72%, transparent);
  animation: grid-drift 18s linear infinite;
}

.engineering-mark {
  position: absolute;
  top: 50%;
  right: max(24px, 4vw);
  width: min(51vw, 680px);
  max-height: 82svh;
  overflow: visible;
  transform: translateY(-50%);
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.54));
}

.engineering-mark path,
.engineering-mark circle {
  vector-effect: non-scaling-stroke;
}

.contour-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2;
  stroke-dasharray: 8 14;
  animation: contour-flow 11s linear infinite;
}

.africa-shell path {
  fill: rgba(0, 0, 0, 0.18);
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.red-truss path {
  fill: none;
  stroke: var(--red);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(241, 22, 24, 0.48));
}

.survey-nodes circle {
  fill: var(--red);
  stroke: rgba(255, 255, 255, 0.74);
  stroke-width: 2;
  animation: node-pulse 2.8s ease-in-out infinite;
}

.survey-nodes circle:nth-child(2) {
  animation-delay: 350ms;
}

.survey-nodes circle:nth-child(3) {
  animation-delay: 700ms;
}

.survey-nodes circle:nth-child(4) {
  animation-delay: 1050ms;
}

.survey-nodes circle:nth-child(5) {
  animation-delay: 1400ms;
}

.draw-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-mark 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
  animation-delay: 180ms;
}

.delay-2 {
  animation-delay: 360ms;
}

.delay-3 {
  animation-delay: 540ms;
}

.delay-4 {
  animation-delay: 720ms;
}

.delay-5 {
  animation-delay: 900ms;
}

.delay-6 {
  animation-delay: 1080ms;
}

.scan-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 2;
  stroke-dasharray: 46 600;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.55));
  animation: scan-pass 4.6s ease-in-out infinite 1.3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(280px, 360px);
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  width: min(100%, var(--max));
  min-height: calc(100svh - 282px);
  margin: 0 auto;
}

.hero-copy {
  opacity: var(--content-opacity);
  padding-bottom: 92px;
  pointer-events: none;
  transform: translateY(var(--content-shift));
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.hero-proof-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.hero-tertiary-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(241, 22, 24, 0.9);
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(241, 22, 24, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff2629;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.hero-panel {
  opacity: var(--panel-opacity);
  margin-bottom: 92px;
  padding: 22px;
  background: rgba(8, 8, 8, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  pointer-events: none;
  transform: translateY(var(--panel-shift));
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.hero-panel > div:first-child {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-panel span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.hero-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hero-panel dl div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.hero-panel dt {
  color: var(--red);
  font-weight: 900;
}

.hero-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--max));
  margin: 0 auto;
  opacity: var(--cards-opacity);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  pointer-events: none;
  transform: translateY(var(--cards-shift));
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.hero.is-content-live .hero-copy,
.hero.is-content-live .hero-panel,
.hero.is-content-live .hero-strip {
  pointer-events: auto;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  width: 34px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  opacity: var(--cue-opacity);
  transform: translateX(-50%);
  transition: opacity 120ms linear;
}

.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 11px;
  background: var(--red);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: cue-drop 1.5s ease-in-out infinite;
}

.hero {
  --image-scale: 1.04;
  min-height: 100svh;
  height: 100svh;
  padding: 0 24px;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  top: auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100svh;
  height: 100svh;
  margin: 0 -24px;
  padding: clamp(104px, 12svh, 132px) 24px 0;
}

.hero-media img.is-active {
  animation: hero-slide-drift 8200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-stage::before {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.56) 43%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.05) 46%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
}

.hero-content.hero-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.72fr);
  align-items: center;
  align-self: stretch;
  gap: clamp(36px, 5vw, 66px);
  width: min(100%, var(--max));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(8px, 2svh, 26px) 0 clamp(14px, 3svh, 30px);
}

.hero-copy {
  opacity: 1;
  padding-bottom: 0;
  pointer-events: auto;
  transform: none;
  animation: hero-copy-in 760ms ease-out 140ms both;
}

.hero-copy h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(38px, min(5.1vw, 7.6svh), 64px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.94);
}

.hero-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy .hero-proof-points {
  margin-top: 22px;
}

.hero-proof-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 14px;
  animation: hero-proof-in 900ms ease-out 320ms both;
}

.proof-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.proof-card-large {
  grid-row: 1 / -1;
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 600ms ease, filter 600ms ease;
}

.proof-card-large img {
  object-position: center;
}

.proof-card:hover img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.045);
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.74) 100%);
}

.proof-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.proof-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}

.hero-icon-showcase {
  position: relative;
  --globe-x: 0px;
  --globe-y: 0px;
  --icon-x: 0px;
  --icon-y: 0px;
  --orbit-x: 0px;
  --orbit-y: 0px;
  --grid-x: 0px;
  --grid-y: 0px;
  min-height: clamp(330px, 47svh, 500px);
  overflow: visible;
  pointer-events: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  animation: hero-proof-in 900ms ease-out 320ms both;
}

.hero-icon-showcase::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: min(76%, 410px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(241, 22, 24, 0.14), rgba(241, 22, 24, 0.04) 36%, transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0.72;
}

.hero-icon-showcase::after {
  content: none;
}

.hero-icon-showcase .hero-blueprint-grid {
  z-index: 0;
  inset: 8% 2%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  opacity: 0.18;
  clip-path: none;
  mask-image: radial-gradient(circle at 50% 45%, black 0 48%, transparent 70%);
  transform: translate3d(var(--grid-x), var(--grid-y), 0);
  transition: transform 420ms ease-out;
}

.hero-globe {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 1;
  width: min(82%, 500px);
  aspect-ratio: 1;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 47% 39%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025) 42%, transparent 74%),
    radial-gradient(circle at 58% 55%, rgba(241, 22, 24, 0.055), transparent 70%);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.04);
  isolation: isolate;
  opacity: 0.74;
  transform: translate(calc(-50% + var(--globe-x)), calc(-50% + var(--globe-y))) rotate(var(--globe-tilt, 0deg));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-globe::before,
.hero-globe::after {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: inherit;
  pointer-events: none;
}

.hero-globe::before {
  inset: -3%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.025);
  opacity: 0.68;
}

.hero-globe::after {
  content: none;
}

.globe-wire {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  opacity: 0.68;
  transform-origin: 50% 50%;
  animation: globe-wire-poise 8s ease-in-out infinite;
}

.globe-body {
  fill: rgba(255, 255, 255, 0.026);
  stroke: rgba(255, 255, 255, 0.055);
  stroke-width: 0.45;
}

.globe-shell {
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 0.92;
}

.globe-line {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 0.62;
  vector-effect: non-scaling-stroke;
}

.globe-line.soft {
  stroke: rgba(255, 255, 255, 0.11);
}

.globe-contour {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 0.56;
}

.globe-axis {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-dasharray: 2 2.8;
}

.globe-front-arc {
  stroke: rgba(255, 255, 255, 0.38);
  stroke-width: 0.88;
  vector-effect: non-scaling-stroke;
}

.globe-red-line {
  stroke: rgba(241, 22, 24, 0.34);
  stroke-width: 0.62;
  vector-effect: non-scaling-stroke;
}

.globe-red-line.dashed {
  stroke-dasharray: 1.5 2.4;
  opacity: 0.52;
}

.globe-node {
  fill: rgba(241, 22, 24, 0.48);
}

.hero-icon-showcase .engineering-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  z-index: 1;
  width: min(92%, 530px);
  max-height: none;
  transform: translate(-50%, -52%);
}

.hero-icon-showcase .africa-shell path {
  stroke: rgba(255, 255, 255, 0.78);
}

.hero-icon-showcase .red-truss path {
  stroke-width: 8;
}

.accurate-brand-icon {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 3;
  width: min(71%, 402px);
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.48));
  transform: translate(calc(-50% + var(--icon-x)), calc(-50% + var(--icon-y))) scale(0.94);
  animation: accurate-icon-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 260ms both, accurate-icon-float 5.6s ease-in-out 1.2s infinite;
  will-change: transform;
}

.icon-orbit {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 2;
  width: min(78%, 450px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 50%;
  transform: translate(calc(-50% + var(--orbit-x)), calc(-50% + var(--orbit-y)));
  opacity: 0.58;
}

.icon-orbit::before,
.icon-orbit::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: inherit;
  border: 1px solid rgba(241, 22, 24, 0.16);
  border-style: dashed;
}

.icon-orbit::after {
  inset: 24%;
  border-color: rgba(255, 255, 255, 0.07);
  border-style: solid;
}

.icon-particles {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 2;
  width: min(82%, 470px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(calc(-50% + var(--orbit-x)), calc(-50% + var(--orbit-y)));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.icon-particles span {
  position: absolute;
  top: var(--top);
  left: var(--left);
  width: var(--size, 7px);
  height: var(--size, 7px);
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
  box-shadow:
    0 0 8px rgba(241, 22, 24, 0.46),
    0 0 16px rgba(241, 22, 24, 0.18);
  transform: translate3d(0, 0, 0) scale(0.45);
  animation: red-particle-flight var(--duration, 7.2s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.icon-particles span:nth-child(1) {
  --top: 17%;
  --left: 62%;
  --tx: 34px;
  --ty: -28px;
  --delay: 200ms;
}

.icon-particles span:nth-child(2) {
  --top: 29%;
  --left: 77%;
  --tx: 44px;
  --ty: 16px;
  --delay: 850ms;
  --size: 6px;
}

.icon-particles span:nth-child(3) {
  --top: 45%;
  --left: 84%;
  --tx: 32px;
  --ty: 38px;
  --delay: 1.45s;
  --duration: 6.2s;
}

.icon-particles span:nth-child(4) {
  --top: 65%;
  --left: 71%;
  --tx: 18px;
  --ty: 46px;
  --delay: 2.1s;
  --size: 5px;
}

.icon-particles span:nth-child(5) {
  --top: 72%;
  --left: 50%;
  --tx: -28px;
  --ty: 36px;
  --delay: 2.65s;
}

.icon-particles span:nth-child(6) {
  --top: 51%;
  --left: 28%;
  --tx: -42px;
  --ty: 18px;
  --delay: 3.15s;
  --size: 6px;
}

.icon-particles span:nth-child(7) {
  --top: 32%;
  --left: 24%;
  --tx: -34px;
  --ty: -24px;
  --delay: 3.75s;
  --duration: 5.9s;
}

.icon-particles span:nth-child(8) {
  --top: 21%;
  --left: 45%;
  --tx: 12px;
  --ty: -44px;
  --delay: 4.3s;
  --size: 5px;
}

.hero-icon-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  gap: 6px;
  padding: 0 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
  animation: icon-caption-rise 900ms ease-out 620ms both;
}

.hero-icon-caption span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-icon-caption strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.15;
}

.hero-strip {
  opacity: 1;
  align-self: end;
  flex: 0 0 auto;
  pointer-events: auto;
  transform: none;
  animation: hero-strip-in 740ms ease-out 500ms both;
}

.scroll-cue {
  display: none;
}

@keyframes hero-settle {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1.04);
  }
}

@keyframes hero-slide-drift {
  from {
    transform: scale(1.09) translate3d(var(--hero-pan-x-start, 0), var(--hero-pan-y-start, 0), 0);
  }

  to {
    transform: scale(1.04) translate3d(var(--hero-pan-x-end, 0), var(--hero-pan-y-end, 0), 0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-proof-in {
  from {
    opacity: 0;
    transform: translateX(26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-strip-in {
  from {
    opacity: 0;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accurate-icon-in {
  from {
    opacity: 0;
    transform: translate(calc(-50% + var(--icon-x)), calc(-48% + var(--icon-y))) scale(0.88);
  }

  to {
    opacity: 1;
    transform: translate(calc(-50% + var(--icon-x)), calc(-50% + var(--icon-y))) scale(0.94);
  }
}

@keyframes accurate-icon-float {
  0%,
  100% {
    transform: translate(calc(-50% + var(--icon-x)), calc(-50% + var(--icon-y))) scale(0.94);
  }

  50% {
    transform: translate(calc(-50% + var(--icon-x)), calc(-52% + var(--icon-y))) scale(0.955);
  }
}

@keyframes icon-halo-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.92);
  }

  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes globe-breathe {
  0%,
  100% {
    opacity: 0.86;
    filter: drop-shadow(0 0 16px rgba(241, 22, 24, 0.1));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 28px rgba(241, 22, 24, 0.2));
  }
}

@keyframes icon-orbit-spin {
  to {
    transform: translate(calc(-50% + var(--orbit-x)), calc(-50% + var(--orbit-y))) rotate(360deg);
  }
}

@keyframes globe-line-drift {
  to {
    transform: rotate(360deg);
  }
}

@keyframes globe-wire-poise {
  0%,
  100% {
    transform: rotate(-1.2deg) scale(0.995);
  }

  50% {
    transform: rotate(1.4deg) scale(1.01);
  }
}

@keyframes icon-scan {
  0%,
  24% {
    opacity: 0;
    transform: translateX(-178px) rotate(18deg);
  }

  38%,
  58% {
    opacity: 0.72;
  }

  76%,
  100% {
    opacity: 0;
    transform: translateX(178px) rotate(18deg);
  }
}

@keyframes icon-caption-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes red-particle-flight {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.45);
  }

  18% {
    opacity: 0.9;
  }

  52% {
    opacity: 0.95;
    transform: translate3d(var(--tx), var(--ty), 0) scale(1);
  }

  78% {
    opacity: 0.18;
    transform: translate3d(calc(var(--tx) * 1.25), calc(var(--ty) * 1.25), 0) scale(0.7);
  }
}

.hero-strip div {
  padding: clamp(15px, 2.2svh, 24px) 24px;
  border-right: 1px solid var(--line);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-strip span {
  display: block;
  color: var(--steel);
  font-size: clamp(12px, 1.35svh, 14px);
}

@keyframes draw-mark {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes scan-pass {
  0%,
  28% {
    stroke-dashoffset: 640;
    opacity: 0;
  }

  42%,
  60% {
    opacity: 1;
  }

  82%,
  100% {
    stroke-dashoffset: -120;
    opacity: 0;
  }
}

@keyframes contour-flow {
  to {
    stroke-dashoffset: -132;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

  45% {
    transform: scale(1.55);
    opacity: 1;
  }
}

@keyframes grid-drift {
  to {
    background-position: 64px 64px, 64px 64px, 0 0;
  }
}

@keyframes cue-drop {
  0%,
  100% {
    opacity: 0.2;
    transform: translate(-50%, 0);
  }

  45% {
    opacity: 1;
    transform: translate(-50%, 14px);
  }
}

.section-grid,
.section,
.route-section,
.dark-band,
.split-section,
.contact-band,
.site-footer {
  padding-left: 24px;
  padding-right: 24px;
}

.route-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 76px;
  padding-bottom: 72px;
}

.route-section h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.route-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.route-card:last-child {
  border-right: 0;
}

.route-card:hover,
.route-card:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}

.route-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.route-card strong {
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.route-card p {
  margin: 0;
  color: #5d626b;
  font-size: 14px;
  line-height: 1.55;
}

.route-card:hover p,
.route-card:focus-visible p {
  color: rgba(255, 255, 255, 0.72);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 38px;
  padding-bottom: 82px;
}

.intro h2,
.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-copy {
  display: grid;
  gap: 22px;
  color: #4a4d53;
  font-size: 18px;
}

.intro-copy p {
  margin: 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 48px, var(--max));
  margin: 0 auto 110px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.metrics div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.metrics div:last-child {
  border-right: 0;
}

.metric-value {
  display: block;
  color: var(--red);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  display: block;
  max-width: 190px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 12px;
  padding-bottom: 116px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 7px;
  color: #50545a;
  font-size: 17px;
}

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

.capability-card {
  min-height: 285px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 22, 24, 0.28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.capability-card span,
.timeline span,
.project-copy span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-card h3,
.timeline h3,
.project-copy h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.capability-card p,
.timeline p,
.project-copy p {
  margin-bottom: 0;
  color: #555961;
}

.proof-led {
  padding-top: 0;
}

.proof-led-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  grid-auto-rows: minmax(202px, auto);
  gap: 16px;
}

.proof-led-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  color: var(--white);
  background: #111112;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  isolation: isolate;
}

.proof-led-card-large {
  grid-row: span 3;
  min-height: 654px;
}

.proof-led-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

[data-lightbox-gallery] img,
[data-lightbox-gallery] article,
[data-lightbox-gallery].before-after-visual {
  cursor: zoom-in;
}

[data-lightbox-gallery] img:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.proof-led-card:hover img {
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.045);
}

.proof-led-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.7)),
    linear-gradient(120deg, rgba(0, 0, 0, 0.5), transparent 62%);
}

.proof-led-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.proof-led-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-led-card h3 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-led-card:not(.proof-led-card-large) h3 {
  max-width: 460px;
  font-size: clamp(21px, 2vw, 29px);
}

.proof-led-card p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 88px;
  align-items: center;
  gap: 18px;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 40%, rgba(241, 22, 24, 0.16), transparent 42%),
    rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(18px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  width: 100%;
  height: min(88vh, 920px);
  margin: 0;
}

.image-lightbox img {
  align-self: center;
  justify-self: center;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.image-lightbox figcaption {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: var(--white);
  text-align: center;
}

.image-lightbox figcaption span,
.image-lightbox figcaption small {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.image-lightbox figcaption strong {
  max-width: 820px;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.08;
  text-transform: uppercase;
}

.image-lightbox-close,
.image-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible,
.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(241, 22, 24, 0.8);
  background: rgba(241, 22, 24, 0.86);
}

.image-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  font-size: 30px;
  line-height: 1;
}

.image-lightbox-nav {
  width: 64px;
  height: 64px;
  font-size: 58px;
  line-height: 1;
}

.image-lightbox-prev {
  justify-self: end;
}

.image-lightbox-next {
  justify-self: start;
}

.dark-band {
  padding-top: 112px;
  padding-bottom: 116px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(241, 22, 24, 0.18), transparent 32%),
    var(--coal);
}

.dark-band .section-heading,
.project-grid {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.inverted p {
  color: rgba(255, 255, 255, 0.66);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.project-card {
  display: grid;
  min-height: 430px;
  background: #111112;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.project-card.large {
  grid-row: span 2;
}

.project-image {
  min-height: 210px;
  background-color: #1d1d1f;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.project-copy {
  padding: 28px;
}

.project-copy span {
  margin-bottom: 18px;
}

.project-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.delivery {
  padding-top: 112px;
}

.delivery .section-heading {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
}

.timeline article {
  position: relative;
  min-height: 310px;
  padding: 34px 26px 0 0;
  border-right: 1px solid #d5d5d7;
}

.timeline article:last-child {
  border-right: 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
}

.timeline span {
  margin-bottom: 70px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto 116px;
}

.split-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 46px;
}

.split-visual img {
  width: min(100%, 420px);
}

.brand-monogram {
  position: relative;
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  background: rgba(241, 22, 24, 0.05);
  border: 2px solid var(--red);
  border-radius: 50%;
  transition: box-shadow 320ms ease;
}

.brand-monogram::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px dashed rgba(241, 22, 24, 0.5);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 320ms ease;
}

.split-visual .brand-monogram img {
  width: 108px;
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.3, 1.1);
}

.brand-monogram:hover {
  box-shadow: 0 0 0 10px rgba(241, 22, 24, 0.05);
}

.brand-monogram:hover::before {
  opacity: 1;
  animation: monogram-spin 8s linear infinite;
}

.brand-monogram:hover img {
  animation: monogram-icon-spin 5s linear infinite;
}

@keyframes monogram-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes monogram-icon-spin {
  to {
    transform: rotate(360deg);
  }
}

.split-copy p {
  color: #4c5057;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #30343a;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 17px;
  height: 9px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 70px;
  width: min(100%, var(--max));
  margin: 0 auto 24px;
  padding-top: 72px;
  padding-bottom: 72px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.contact-copy {
  padding-left: 44px;
}

.contact-copy p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding-right: 44px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--white);
  background: #151516;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 36px;
  padding-bottom: 42px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--paper);
}

.site-footer div:first-child {
  display: grid;
  gap: 12px;
}

.site-footer > div:first-child img {
  width: 260px;
  max-width: min(260px, 72vw);
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.site-footer p {
  margin: 0;
  color: #555961;
}

.footer-panel {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  color: #171719;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-social span {
  color: #555961;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social .social-links a {
  background: #121214;
  border-color: rgba(18, 18, 20, 0.18);
}

.footer-credit {
  margin: 0;
  color: #555961;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: #171719;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 224, 132, 0.7);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-credit a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 8px rgba(0, 224, 132, 0.2));
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #00c978;
  border-color: #00c978;
}

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

.page-main {
  padding-top: 0;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 660px;
  padding: 150px 24px 76px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
}

.page-hero-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
  min-width: 0;
}

.page-hero h1,
.contact-page h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.94);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
}

.page-hero p,
.contact-page-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.page-intro,
.about-story,
.leadership-panel,
.cta-panel,
.service-detail,
.quote-strip,
.case-study-section,
.before-after-section,
.handover-section,
.profile-download-section,
.service-area-section,
.tender-package-section,
.contact-page,
.office-map-section,
.contact-support-grid {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-intro {
  display: grid;
  grid-template-columns: 0.9fr 0.75fr;
  gap: 70px;
  padding-top: 96px;
  padding-bottom: 76px;
}

.page-intro h2,
.project-categories h2,
.service-matrix h2,
.service-detail h2,
.about-story h2,
.values-grid h2,
.leadership-panel h2,
.cta-panel h2,
.quote-strip h2,
.before-after-section h2,
.profile-download-section h2,
.service-area-section h2,
.tender-package-section h2,
.contact-support-grid h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-intro p,
.about-story p,
.leadership-panel p,
.service-detail p,
.profile-download-section p,
.service-area-section p,
.tender-package-section p,
.contact-support-grid p {
  color: #50545a;
  font-size: 18px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px 116px;
}

.portfolio-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--coal);
  border-radius: 8px;
}

.portfolio-card-large {
  grid-row: span 2;
  min-height: 736px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 650ms ease, filter 650ms ease;
}

.portfolio-card:hover img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.035);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.74) 100%);
}

.portfolio-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.portfolio-card span,
.project-categories span,
.service-matrix span,
.values-grid span,
.contact-support-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card h2 {
  max-width: 680px;
  margin-bottom: 10px;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.case-study-section {
  padding-top: 6px;
  padding-bottom: 96px;
}

.case-study-grid,
.handover-grid,
.tender-intake-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-study-card,
.handover-grid article,
.tender-intake-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-study-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04);
}

.case-study-card > div,
.handover-grid article,
.tender-intake-grid article {
  padding: 28px;
}

.case-study-card span,
.handover-grid span,
.tender-intake-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study-card h3,
.handover-grid h3,
.tender-package-list h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.case-study-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.case-study-card dl div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.case-study-card dt {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study-card dd,
.handover-grid p,
.tender-intake-grid p {
  margin: 0;
  color: #555961;
}

.before-after-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 96px;
  padding-top: 34px;
  padding-bottom: 34px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.before-after-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.before-after-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--coal);
  border-radius: 8px;
  isolation: isolate;
}

.before-after-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-image {
  filter: saturate(0.82) contrast(1.05);
}

.after-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
  z-index: 2;
}

.after-image img {
  filter: saturate(1.02) contrast(1.05);
}

.before-after-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 4;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 999px transparent, 0 0 24px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
}

.before-label,
.after-label {
  position: absolute;
  z-index: 5;
  top: 18px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
}

.before-after-visual input {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.handover-section {
  padding-top: 0;
  padding-bottom: 96px;
}

.project-categories,
.service-matrix,
.values-grid,
.tender-intake-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px 116px;
}

.project-categories article,
.service-matrix article,
.values-grid article,
.tender-intake-grid article,
.contact-support-grid article {
  min-width: 0;
  min-height: 285px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-categories p,
.service-matrix p,
.values-grid p,
.tender-intake-grid p {
  margin-bottom: 0;
  color: #555961;
}

.project-categories h2,
.service-matrix h2,
.values-grid h2,
.tender-intake-grid h2,
.contact-support-grid h2 {
  font-size: clamp(26px, 2.4vw, 36px);
  overflow-wrap: break-word;
}

.service-matrix {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 96px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 66px;
  padding-bottom: 116px;
}

.service-detail-grid {
  display: grid;
  gap: 14px;
}

.service-detail-grid article {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.service-detail-grid h3 {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 22px;
  text-transform: uppercase;
}

.service-detail-grid p {
  margin-bottom: 0;
  color: #555961;
  font-size: 16px;
}

.quote-strip,
.cta-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  padding-top: 46px;
  padding-bottom: 46px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.quote-strip img {
  width: 96px;
  max-height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(241, 22, 24, 0.22));
}

.quote-strip h2,
.cta-panel h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.about-logo-panel {
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(241, 22, 24, 0.16), transparent 36%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-logo-panel img {
  width: min(100%, 430px);
}

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

.values-grid article {
  min-height: 250px;
}

.profile-download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  padding-top: 46px;
  padding-bottom: 46px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.profile-download-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.profile-download-section h2 {
  max-width: 820px;
}

.leadership-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding-top: 78px;
  padding-bottom: 78px;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 520px);
  gap: 70px;
  min-height: 720px;
  padding-top: 150px;
  padding-bottom: 86px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.62)),
    url("assets/africardo-masonry-corner.jpg") center / cover;
  border-radius: 0 0 8px 8px;
}

.contact-panel {
  max-width: 640px;
  margin-top: 46px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.contact-panel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-panel-row:last-child {
  border-bottom: 0;
}

a.contact-panel-row {
  transition: background 200ms ease;
}

a.contact-panel-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel-icon {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  font-size: 15px;
  background: rgba(241, 22, 24, 0.16);
  border: 1px solid rgba(241, 22, 24, 0.5);
  border-radius: 50%;
}

.contact-panel-text span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel-text strong {
  font-size: 15px;
  overflow-wrap: anywhere;
}

.contact-panel-social {
  margin-left: auto;
}

@media (max-width: 480px) {
  .contact-panel-row {
    flex-wrap: wrap;
  }

  .contact-panel-social {
    margin-left: 50px;
  }
}

.contact-methods {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin-top: 46px;
}

.contact-methods article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-methods span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 17px;
}

.contact-social {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin-top: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.contact-social span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-social strong {
  font-size: 17px;
}

.contact-page-form {
  align-self: start;
  padding: 28px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.office-map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  gap: 18px;
  padding-top: 96px;
  padding-bottom: 26px;
}

.office-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(241, 22, 24, 0.18), transparent 42%),
    var(--ink);
  border-radius: 8px;
}

.office-map-copy h2 {
  max-width: 560px;
  margin: 12px 0 18px;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.office-map-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.office-address {
  display: grid;
  gap: 6px;
  max-width: 560px;
  margin: 28px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.office-address span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.office-address strong {
  font-size: 18px;
  line-height: 1.35;
}

.office-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
}

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

.office-map-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #dfe3e8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(18, 20, 24, 0.12);
  transition: transform 220ms ease, border-color 220ms ease;
}

.office-map-frame:hover {
  border-color: rgba(241, 22, 24, 0.42);
  transform: translateY(-2px);
}

.office-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-area-section {
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.service-area-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(241, 22, 24, 0.08), transparent 44%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    #edf0f3;
  background-size: auto, 58px 58px, 58px 58px, auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-area-map::before {
  content: "";
  position: absolute;
  left: 28%;
  top: 8%;
  width: 42%;
  height: 78%;
  background: rgba(5, 5, 5, 0.08);
  clip-path: polygon(46% 0, 66% 8%, 72% 34%, 91% 48%, 80% 64%, 78% 91%, 54% 100%, 32% 87%, 28% 64%, 12% 49%, 20% 24%);
}

.area-ring {
  position: absolute;
  left: 50%;
  top: 45%;
  border: 1px solid rgba(241, 22, 24, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.area-ring-one {
  width: 180px;
  height: 180px;
}

.area-ring-two {
  width: 290px;
  height: 290px;
}

.area-route {
  position: absolute;
  height: 4px;
  background: rgba(241, 22, 24, 0.62);
  border-radius: 999px;
  transform-origin: left center;
}

.area-route-one {
  left: 50%;
  top: 45%;
  width: 180px;
  transform: rotate(-28deg);
}

.area-route-two {
  left: 50%;
  top: 45%;
  width: 150px;
  transform: rotate(34deg);
}

.area-pin {
  position: absolute;
  z-index: 2;
  padding: 9px 11px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-pin::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--red);
  border-radius: 50%;
}

.area-pin-office {
  left: 47%;
  top: 39%;
}

.area-pin-khomas {
  left: 57%;
  top: 24%;
}

.area-pin-namibia {
  left: 28%;
  bottom: 18%;
}

.service-area-copy {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-area-list span {
  padding: 10px 12px;
  color: var(--ink);
  background: #f0f0f1;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tender-intake-grid {
  padding-bottom: 96px;
}

.tender-package-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 66px;
  padding-bottom: 116px;
}

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

.tender-package-list article {
  min-height: 230px;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.tender-package-list p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 96px;
  padding-bottom: 116px;
}

.enquiry-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.enquiry-bubble,
.enquiry-panel {
  pointer-events: auto;
}

.enquiry-bubble {
  order: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 10px 14px 10px 18px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(241, 22, 24, 0.32);
  cursor: pointer;
}

.enquiry-bubble span,
.enquiry-bubble strong {
  display: block;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.enquiry-bubble span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 900;
}

.enquiry-bubble strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 16px;
}

.enquiry-panel {
  order: 1;
  display: none;
  width: min(420px, calc(100vw - 32px));
  max-height: min(72vh, 720px);
  overflow: auto;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px) saturate(142%);
}

.enquiry-widget.is-open .enquiry-panel {
  display: block;
}

.enquiry-widget.is-open .enquiry-bubble {
  display: none;
}

.enquiry-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.enquiry-panel-head span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.enquiry-panel-head button,
.enquiry-controls button {
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.enquiry-panel-head button {
  width: 34px;
  height: 34px;
}

.enquiry-progress {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.enquiry-progress > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.enquiry-progress div {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

.enquiry-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  border-radius: inherit;
  transition: width 200ms ease;
}

.enquiry-panel h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.enquiry-panel p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.enquiry-options {
  display: grid;
  gap: 10px;
}

.enquiry-options button {
  width: 100%;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.enquiry-options button:hover,
.enquiry-options button:focus-visible {
  background: rgba(241, 22, 24, 0.18);
  border-color: rgba(241, 22, 24, 0.7);
  transform: translateY(-1px);
}

.enquiry-summary-list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.enquiry-summary-list div {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.enquiry-summary-list span,
.enquiry-summary label span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.enquiry-summary-list strong {
  font-size: 14px;
}

.enquiry-summary label {
  display: grid;
  gap: 8px;
  margin: 4px 0 14px;
}

.enquiry-summary textarea {
  width: 100%;
  min-height: 92px;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  resize: vertical;
  outline: 0;
}

.enquiry-summary textarea:focus {
  border-color: rgba(241, 22, 24, 0.82);
}

.enquiry-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.enquiry-actions .button {
  min-height: 48px;
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}

.enquiry-copy-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.enquiry-controls {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.enquiry-controls button {
  min-height: 38px;
  padding: 0 12px;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
  }

  .header-social {
    display: none;
  }
}

@media (max-width: 1380px) {
  .language-switcher span {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-height: 820px) and (min-width: 981px) {
  .hero-stage {
    padding-top: 104px;
  }

  .hero-content.hero-editorial {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
    gap: 44px;
    padding-top: 0;
    padding-bottom: 14px;
  }

  .hero-copy h1 {
    max-width: 640px;
    margin-bottom: 14px;
    font-size: clamp(36px, min(4.4vw, 6.8svh), 54px);
    line-height: 0.98;
  }

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

  .hero-copy .hero-proof-points {
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-icon-showcase {
    min-height: min(47svh, 430px);
  }

  .hero-icon-caption {
    bottom: 8px;
  }

  .hero-strip div {
    padding: 14px 20px;
  }

  .hero-strip strong {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .hero-strip span {
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    width: 186px;
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    position: fixed;
    top: 98px;
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px;
    background: linear-gradient(145deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 24px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(30px) saturate(142%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 17px 8px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .header-cta {
    display: none;
  }

  .header-social {
    display: none;
  }

  .language-switcher span {
    display: none;
  }

  .language-switcher select {
    min-height: 40px;
    max-width: 118px;
  }

  .hero-content,
  .intro,
  .section-heading,
  .proof-led-grid,
  .project-grid,
  .split-section,
  .contact-band,
  .page-intro,
  .portfolio-grid,
  .service-detail,
  .about-story,
  .leadership-panel,
  .profile-download-section,
  .before-after-section,
  .service-area-section,
  .tender-package-section,
  .contact-page,
  .office-map-section,
  .contact-support-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 100svh;
    height: auto;
  }

  .hero-stage {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-content.hero-editorial {
    grid-template-columns: 1fr;
    gap: 34px;
    align-self: center;
    padding-bottom: 28px;
  }

  .route-section {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

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

  .hero-proof-wall {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(180px, 1fr);
  }

  .hero-icon-showcase {
    min-height: 430px;
  }

  .hero-icon-showcase .engineering-mark {
    width: min(86%, 470px);
  }

  .accurate-brand-icon {
    width: min(66%, 340px);
  }

  .icon-particles {
    width: min(72%, 370px);
  }

  .proof-card-large {
    grid-row: auto;
  }

  .hero-strip,
  .metrics,
  .capability-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-strip {
    display: none;
  }

  .proof-led-card-large {
    grid-row: auto;
    min-height: 430px;
  }

  .hero-strip div:nth-child(2),
  .metrics div:nth-child(2) {
    border-right: 0;
  }

  .hero-strip div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .section-heading {
    gap: 18px;
  }

  .project-card.large {
    grid-row: auto;
  }

  .timeline article:nth-child(2) {
    border-right: 0;
  }

  .contact-copy,
  .contact-form {
    padding-left: 28px;
    padding-right: 28px;
  }

  .page-hero {
    min-height: 590px;
  }

  .project-categories,
  .service-matrix,
  .values-grid,
  .case-study-grid,
  .handover-grid,
  .tender-intake-grid,
  .tender-package-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card-large {
    min-height: 520px;
  }

  .quote-strip,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .contact-page {
    min-height: auto;
  }

  .office-map-copy {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 24px);
    min-height: 68px;
    margin-top: 12px;
    padding: 10px 10px 10px 14px;
    gap: 8px;
  }

  .brand {
    width: 154px;
  }

  .language-switcher select {
    max-width: 96px;
    padding-right: 24px;
    font-size: 11px;
  }

  .install-app-button {
    left: 16px;
    bottom: 16px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 11px;
  }

  .install-app-note {
    left: 16px;
    bottom: 72px;
    width: min(280px, calc(100vw - 32px));
    font-size: 12px;
  }

  .hero {
    padding: 0 16px;
  }

  .hero-stage {
    margin: 0 -16px;
    padding: 96px 16px 0;
  }

  .hero-media img {
    object-position: center;
  }

  h1 {
    font-size: clamp(38px, min(13.4vw, 7.4svh), 54px);
    line-height: 0.98;
  }

  .hero-copy p,
  .intro-copy,
  .split-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    min-height: 46px;
  }

  .hero-proof-points {
    gap: 8px;
  }

  .hero-proof-points span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero-tertiary-link {
    justify-content: center;
    min-height: 40px;
    width: 100%;
  }

  .hero-content.hero-editorial {
    gap: 26px;
    padding-bottom: 18px;
  }

  .hero-copy {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-strip {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    animation: none;
  }

  .hero-proof-wall {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .proof-card {
    min-height: 210px;
  }

  .proof-card:nth-child(n + 2) {
    display: none;
  }

  .hero-icon-showcase {
    display: none;
  }

  .hero-icon-showcase .engineering-mark {
    width: 420px;
    transform: translate(-50%, -57%);
  }

  .accurate-brand-icon {
    top: 34%;
    left: 23%;
    width: min(40%, 156px);
  }

  .hero-globe {
    top: 34%;
    left: 23%;
    width: min(47%, 176px);
  }

  .icon-orbit {
    top: 34%;
    left: 23%;
    width: min(49%, 184px);
  }

  .icon-particles {
    top: 34%;
    left: 23%;
    width: min(51%, 192px);
  }

  .hero-icon-caption {
    display: none;
  }

  .hero-icon-caption strong {
    font-size: 15px;
  }

  .hero-strip,
  .metrics,
  .route-grid,
  .capability-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .route-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

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

  .route-card:last-child {
    border-bottom: 0;
  }

  .hero-strip div,
  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div {
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .hero-strip div:last-child,
  .metrics div:last-child {
    border-bottom: 0;
  }

  .intro,
  .route-section,
  .section,
  .dark-band,
  .delivery,
  .split-section,
  .contact-band,
  .page-intro,
  .portfolio-grid,
  .project-categories,
  .service-matrix,
  .service-detail,
  .quote-strip,
  .about-story,
  .values-grid,
  .leadership-panel,
  .cta-panel,
  .profile-download-section,
  .case-study-section,
  .before-after-section,
  .handover-section,
  .service-area-section,
  .tender-intake-grid,
  .tender-package-section,
  .contact-page,
  .office-map-section,
  .contact-support-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .proof-led-grid {
    grid-template-columns: 1fr;
  }

  .proof-led-card,
  .proof-led-card-large {
    min-height: 320px;
  }

  .proof-led-card div {
    left: 20px;
    right: 20px;
  }

  .image-lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 72px 16px 22px;
  }

  .image-lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
    height: auto;
    min-height: 0;
  }

  .image-lightbox img {
    max-height: 66vh;
  }

  .image-lightbox-close {
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
  }

  .image-lightbox-nav {
    grid-row: 2;
    width: 100%;
    height: 50px;
    font-size: 42px;
  }

  .image-lightbox-prev,
  .image-lightbox-next {
    justify-self: stretch;
  }

  .intro {
    gap: 26px;
    padding-top: 76px;
    padding-bottom: 58px;
  }

  .metrics {
    width: calc(100% - 32px);
    margin-bottom: 78px;
  }

  .section,
  .dark-band,
  .delivery {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .capability-card {
    min-height: auto;
  }

  .project-image.civil {
    min-height: 250px;
  }

  .timeline {
    border-top: 0;
  }

  .timeline article {
    min-height: auto;
    padding: 0 0 34px 28px;
    border-right: 0;
    border-left: 2px solid var(--ink);
  }

  .timeline article::before {
    top: 0;
    left: -7px;
  }

  .timeline span {
    margin-bottom: 30px;
  }

  .split-section {
    gap: 36px;
    margin-bottom: 82px;
  }

  .split-visual {
    min-height: 320px;
    padding: 28px;
  }

  .contact-band {
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .contact-copy,
  .contact-form {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-footer {
    display: grid;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 126px;
  }

  .footer-panel,
  .footer-social {
    justify-items: start;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-credit {
    max-width: 174px;
    text-align: left;
    line-height: 1.45;
  }

  .footer-credit a {
    justify-content: flex-start;
  }

  .page-hero {
    min-height: 540px;
    padding: 122px 16px 58px;
  }

  .page-hero h1,
  .contact-page h1 {
    font-size: clamp(32px, 10.5vw, 46px);
    line-height: 1;
  }

  .page-hero p,
  .contact-page-copy > p,
  .page-intro p,
  .about-story p,
  .leadership-panel p,
  .service-detail p,
  .contact-support-grid p {
    font-size: 16px;
  }

  .page-intro,
  .service-matrix,
  .about-story,
  .contact-support-grid {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .portfolio-grid,
  .project-categories,
  .service-detail,
  .values-grid,
  .case-study-section,
  .handover-section,
  .tender-package-section {
    grid-template-columns: 1fr;
    padding-bottom: 82px;
  }

  .project-categories,
  .service-matrix,
  .values-grid,
  .case-study-grid,
  .handover-grid,
  .tender-intake-grid,
  .tender-package-list,
  .contact-support-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-card,
  .portfolio-card-large {
    min-height: 360px;
  }

  .portfolio-card div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .service-detail {
    gap: 28px;
  }

  .quote-strip,
  .cta-panel,
  .profile-download-section {
    width: calc(100% - 32px);
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .before-after-section {
    gap: 24px;
    margin-bottom: 82px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .before-after-visual {
    min-height: 340px;
  }

  .case-study-card > div,
  .handover-grid article,
  .tender-intake-grid article,
  .tender-package-list article {
    padding: 22px;
  }

  .service-area-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 54px;
    padding-bottom: 22px;
  }

  .service-area-map {
    min-height: 330px;
  }

  .service-area-copy {
    padding: 24px;
  }

  .quote-strip img {
    width: 78px;
  }

  .about-logo-panel {
    min-height: 320px;
    padding: 28px;
  }

  .leadership-panel {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .contact-page {
    gap: 34px;
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 54px;
    border-radius: 0;
  }

  .contact-page-form {
    padding: 20px;
  }

  .office-map-section {
    gap: 14px;
    padding-top: 70px;
    padding-bottom: 22px;
  }

  .office-map-copy {
    padding: 24px;
  }

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

  .office-map-actions,
  .office-map-actions .button {
    width: 100%;
  }

  .office-map-frame {
    min-height: 330px;
  }

  .enquiry-widget {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .enquiry-bubble {
    justify-self: end;
  }

  .enquiry-panel {
    width: 100%;
    max-height: 68vh;
  }

  .enquiry-actions {
    grid-template-columns: 1fr;
  }
}

/* Capabilities spotlight */
.cap-spotlight {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 10px;
  background: var(--ink);
}

.cap-spotlight-media {
  position: absolute;
  inset: 0;
}

.cap-spotlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.cap-spotlight-media img.is-active {
  opacity: 1;
}

.cap-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.88) 32%, rgba(5, 5, 5, 0.3) 100%);
}

.cap-spotlight-list {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  padding: clamp(24px, 4vw, 46px);
  list-style: none;
}

.cap-spotlight-list a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: baseline;
  column-gap: 14px;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.cap-spotlight-list li:last-child a {
  border-bottom: 0;
}

.cap-spotlight-list a span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.cap-spotlight-list a strong {
  font-size: clamp(21px, 2.6vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.cap-spotlight-list a small {
  grid-column: 2;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.cap-spotlight-list a:hover,
.cap-spotlight-list a:focus-visible,
.cap-spotlight-list a.is-active {
  color: var(--white);
  padding-left: 10px;
}

.cap-spotlight-list a.is-active small {
  max-height: 90px;
  margin-top: 7px;
  opacity: 1;
}

@media (max-width: 760px) {
  .cap-spotlight {
    min-height: 0;
  }

  .cap-spotlight-list a strong {
    font-size: 19px;
  }

  .cap-spotlight-list a {
    padding: 11px 0;
  }
}

/* Civils capability photo band */
.civils-band-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 24px 0 96px;
}

.civils-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 340px;
  overflow: hidden;
  border-radius: 12px;
}

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

.civils-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.42) 60%, rgba(5, 5, 5, 0.12) 100%);
}

.civils-band-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 40px 44px;
  color: var(--white);
}

.civils-band-copy .section-kicker {
  display: block;
  margin-bottom: 12px;
}

.civils-band-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--white);
}

.civils-band-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.civils-band-chips i {
  padding: 7px 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.5px;
  font-weight: 700;
  font-style: normal;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

@media (max-width: 760px) {
  .civils-band-section {
    padding-bottom: 70px;
  }

  .civils-band-copy {
    padding: 28px 22px;
  }
}

/* Core services + quick links */
.service-core {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 0 24px;
}

.service-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.service-core-grid article {
  padding: 28px;
  background: var(--white);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-core-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.service-core-grid h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 28px);
  overflow-wrap: break-word;
}

.service-core-grid p {
  margin-bottom: 0;
  color: #555961;
}

.service-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.service-quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 17px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.service-quick-links a:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.service-quick-links a i {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 900px) {
  .service-core {
    padding-top: 70px;
  }

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

/* Pinned hero with curtain scroll (JS counter-scroll keeps hero frozen) */
.page-main .hero {
  position: sticky;
  top: 0;
  z-index: 0;
}

.page-curtain {
  position: relative;
  z-index: 2;
  padding-top: 1px;
  background: var(--paper);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -26px 70px rgba(0, 0, 0, 0.38);
}

.site-footer {
  position: relative;
  z-index: 2;
  background: var(--paper);
}

/* Hero strip rides the curtain */
.page-curtain .hero-strip {
  opacity: 1;
  margin: 48px auto 0;
  transform: none;
  animation: none;
  pointer-events: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

/* Hero fully static under the curtain */
.page-main .hero .hero-copy,
.page-main .hero .hero-editorial {
  opacity: 1;
  transform: none;
}

.page-main .hero .hero-stage::before {
  opacity: 1;
}

/* On The Boards — design visualisation showcase (projects page) */
.boards-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px 116px;
}

.boards-head {
  display: grid;
  grid-template-columns: 0.9fr 0.75fr;
  gap: 70px;
  align-items: end;
  padding: 0 0 42px;
}

.boards-head p {
  color: #50545a;
}

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

.boards-card {
  position: relative;
  margin: 0;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--coal, #101012);
}

.boards-card-wide {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 516px;
}

.boards-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.boards-card:hover img {
  transform: scale(1.04);
}

.boards-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.78));
}

.boards-card figcaption span {
  display: block;
  color: #ff7b7b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.boards-note {
  margin: 18px 0 0;
  color: #8a8d93;
  font-size: 12.5px;
  font-style: italic;
}

@media (max-width: 900px) {
  .boards-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .boards-card-wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 300px;
  }
}

/* Transparent header at top of page */
.site-header:not(.is-scrolled) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

/* Footer procurement links */
.footer-procurement a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.footer-procurement a:hover {
  text-decoration: underline;
}

/* Project anatomy technical band */
.tech-band {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto 110px;
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 60px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.tech-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
}

.tech-band > * {
  position: relative;
  z-index: 2;
}

.tech-band-heading {
  max-width: 640px;
  margin-bottom: 34px;
}

.tech-band-heading .section-kicker {
  display: block;
  margin-bottom: 12px;
}

.tech-band-heading h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
}

.tech-band-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

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

.tech-band-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.tech-band-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.tech-band-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.tech-band-grid h3 {
  margin-bottom: 7px;
  font-size: 16.5px;
}

.tech-band-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.55;
}

.tech-band-note {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 800;
}

.tech-band-note em {
  color: var(--red);
  font-style: normal;
}

.tech-band-heading-centered {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tech-band-note-centered {
  text-align: center;
}

.tech-hub {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.tech-hub-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(400px, 62vw);
  height: min(400px, 62vw);
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  animation: tech-hub-spin 60s linear infinite;
}

@keyframes tech-hub-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.tech-hub-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 3px;
  width: 158px;
  height: 158px;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(241, 22, 24, 0.1);
  border: 2px solid var(--red);
  border-radius: 50%;
}

.tech-hub-core strong {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-hub-core span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tech-sat {
  position: absolute;
  width: 150px;
  text-align: center;
}

.tech-sat i {
  display: block;
  margin-bottom: 3px;
  color: var(--red);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.tech-sat h3 {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.3;
}

.tech-sat p {
  display: none;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.5;
}

.tech-sat-1 { top: 8px; left: 50%; transform: translateX(-50%); }
.tech-sat-2 { top: 24%; right: 4%; }
.tech-sat-3 { bottom: 24%; right: 4%; }
.tech-sat-4 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.tech-sat-5 { bottom: 24%; left: 4%; }
.tech-sat-6 { top: 24%; left: 4%; }

.tech-hub-core {
  transition: opacity 300ms ease, transform 300ms ease;
}

.tech-hub-detail {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: 7px;
  width: 244px;
  height: 244px;
  padding: 28px;
  transform: translate(-50%, -50%) scale(0.78);
  text-align: center;
  background: rgba(8, 8, 8, 0.92);
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(241, 22, 24, 0.07), 0 26px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 340ms cubic-bezier(0.2, 0.8, 0.3, 1.18);
}

.tech-hub-detail i {
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.tech-hub-detail h4 {
  margin: 0;
  color: var(--white);
  font-size: 16.5px;
  line-height: 1.25;
}

.tech-hub-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.hub-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(205px, 31vw);
  height: 2px;
  background: linear-gradient(90deg, rgba(241, 22, 24, 0.9), rgba(241, 22, 24, 0));
  transform-origin: 0 50%;
  transform: rotate(var(--beam-angle, 0deg)) scaleX(0);
  transition: transform 380ms ease;
  pointer-events: none;
}

.hub-beam.is-active {
  transform: rotate(var(--beam-angle, 0deg)) scaleX(1);
}

.hub-beam-1 { --beam-angle: -90deg; }
.hub-beam-2 { --beam-angle: -28deg; }
.hub-beam-3 { --beam-angle: 28deg; }
.hub-beam-4 { --beam-angle: 90deg; }
.hub-beam-5 { --beam-angle: 152deg; }
.hub-beam-6 { --beam-angle: -152deg; }

@media (min-width: 861px) {
  .tech-sat {
    cursor: pointer;
    transition: opacity 300ms ease;
  }

  .tech-sat h3 {
    transition: color 250ms ease;
  }

  .tech-sat.is-active h3 {
    color: var(--red);
  }

  .tech-hub.hub-active .tech-sat:not(.is-active) {
    opacity: 0.32;
  }

  .tech-hub.hub-active .tech-hub-core {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  .tech-hub.hub-active .tech-hub-detail {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .tech-hub-ring::before {
    content: "";
    position: absolute;
    inset: 42px;
    border: 1px dashed rgba(241, 22, 24, 0.28);
    border-radius: 50%;
    animation: tech-hub-spin-reverse 42s linear infinite;
  }

  body.hub-js .tech-band:not(.in-view) .tech-sat {
    opacity: 0;
  }

  body.hub-js .tech-band:not(.in-view) .tech-hub-core {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  body.hub-js .tech-band:not(.in-view) .tech-hub-ring {
    opacity: 0;
  }

  body.hub-js .tech-band .tech-sat {
    transition: opacity 550ms ease var(--sat-delay, 0s);
  }

  body.hub-js .tech-band.in-view .tech-hub.hub-active .tech-sat:not(.is-active) {
    transition: opacity 300ms ease;
  }

  body.hub-js .tech-band .tech-hub-ring {
    transition: opacity 900ms ease 150ms;
  }

  .tech-sat-1 { --sat-delay: 0.05s; }
  .tech-sat-2 { --sat-delay: 0.15s; }
  .tech-sat-3 { --sat-delay: 0.25s; }
  .tech-sat-4 { --sat-delay: 0.35s; }
  .tech-sat-5 { --sat-delay: 0.45s; }
  .tech-sat-6 { --sat-delay: 0.55s; }
}

@keyframes tech-hub-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 860px) {
  .tech-hub {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    place-items: stretch;
  }

  .tech-hub-ring {
    display: none;
  }

  .tech-hub-core {
    position: static;
    width: 100%;
    height: auto;
    padding: 18px;
    transform: none;
    border-radius: 8px;
  }

  .tech-sat {
    position: static;
    width: 100%;
    padding: 16px 18px;
    text-align: left;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    transform: none;
  }

  .tech-sat p {
    display: block;
  }
}

@media (max-width: 900px) {
  .tech-band {
    margin-bottom: 70px;
  }

  .tech-band-grid {
    grid-template-columns: 1fr;
  }
}

/* Page loading splash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--ink) url("assets/africardo-wordmark-light.png") center / min(250px, 62vw) no-repeat;
  opacity: 1;
  pointer-events: none;
  animation: page-loader-fade 500ms ease 1300ms forwards;
}

body::after {
  content: "";
  position: fixed;
  top: calc(50% + 52px);
  left: 50%;
  z-index: 3001;
  width: 132px;
  height: 3px;
  margin-left: -66px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red), rgba(241, 22, 24, 0.3));
  transform-origin: left;
  pointer-events: none;
  animation: page-loader-bar 1.15s cubic-bezier(0.3, 0.7, 0.3, 1) forwards, page-loader-fade 500ms ease 1300ms forwards;
}

@keyframes page-loader-bar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes page-loader-fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Metrics hover photos */
.metrics div {
  position: relative;
  overflow: hidden;
}

.metrics div::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 450ms ease, transform 700ms ease;
}

.metrics div:nth-child(1)::before {
  background-image: url("assets/africardo-wall-sun.jpg");
}

.metrics div:nth-child(2)::before {
  background-image: url("assets/africardo-corner-shadow.jpg");
}

.metrics div:nth-child(3)::before {
  background-image: url("assets/africardo-block-alley.jpg");
}

.metrics div:nth-child(4)::before {
  background-image: url("assets/africardo-corridor-slab.jpg");
}

.metrics div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.35), rgba(5, 5, 5, 0.72));
  opacity: 0;
  transition: opacity 450ms ease;
}

.metrics div:hover::before {
  opacity: 1;
  transform: scale(1.06);
}

.metrics div:hover::after {
  opacity: 1;
}

.metrics .metric-value,
.metrics .metric-label {
  position: relative;
  z-index: 2;
}

/* Hide PWA install button */
.install-app-button,
.install-app-note {
  display: none !important;
}

/* Who we serve chips */
.serve-chips-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-bottom: 96px;
}

.serve-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.serve-chips i {
  padding: 10px 17px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.serve-chips i:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.serve-chips-section p {
  max-width: 720px;
  margin: 0;
  color: #555961;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .serve-chips-section {
    padding-bottom: 70px;
  }
}

/* Values ledger */
.values-ledger {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-bottom: 96px;
}

.values-ledger-row {
  display: grid;
  grid-template-columns: 52px 210px minmax(0, 1fr);
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0dc;
  transition: padding-left 200ms ease;
}

.values-ledger-row:first-child {
  border-top: 2px solid var(--red);
}

.values-ledger-row:hover {
  padding-left: 10px;
}

.values-ledger-row b {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.values-ledger-row strong {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.values-ledger-row p {
  margin: 0;
  color: #555961;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .values-ledger {
    padding-bottom: 70px;
  }

  .values-ledger-row {
    grid-template-columns: 40px minmax(0, 1fr);
    row-gap: 4px;
  }

  .values-ledger-row p {
    grid-column: 2;
  }
}

/* Handover statement band */
.handover-statement {
  width: min(100%, 880px);
  margin: 0 auto;
  text-align: center;
}

.handover-statement .section-kicker {
  display: block;
  margin-bottom: 16px;
}

.handover-statement blockquote {
  margin: 0 0 26px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.3;
}

.handover-statement blockquote em {
  color: var(--red);
  font-style: normal;
}

.handover-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.handover-proof div {
  padding: 16px 18px;
  background: rgba(5, 5, 5, 0.035);
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
}

.handover-proof strong {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.handover-proof span {
  color: #555961;
  font-size: 13.5px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .handover-proof {
    grid-template-columns: 1fr;
  }
}

/* Capability strip */
.capability-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.capability-strip a {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  padding: 13px 18px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.capability-strip a:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.capability-strip a b {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.capability-strip .capability-strip-more {
  color: var(--red);
  border-color: rgba(241, 22, 24, 0.4);
}

/* Capability ticker on the red rail */
.cap-ticker {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 10px 0 12px;
  overflow: hidden;
}

.cap-ticker::before,
.cap-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.cap-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.cap-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.cap-ticker-rail {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(241, 22, 24, 0.12), var(--red), rgba(241, 22, 24, 0.12));
}

.cap-ticker-track {
  position: relative;
  display: flex;
  gap: 14px;
  width: max-content;
  animation: cap-ticker-slide 44s linear infinite;
}

.cap-ticker:hover .cap-ticker-track {
  animation-play-state: paused;
}

@keyframes cap-ticker-slide {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.cap-tick {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 200ms ease;
}

.cap-tick:hover {
  border-color: var(--red);
}

.cap-tick svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.cap-tick .ln {
  fill: none;
  stroke: #2a2c30;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cap-tick .ac {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a.cap-ticker-more {
  display: table;
  margin: 16px auto 0;
  padding: 11px 20px;
  color: var(--red);
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(241, 22, 24, 0.4);
  border-radius: 999px;
  transition: border-color 200ms ease, transform 200ms ease;
}

a.cap-ticker-more:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

/* Industries immersive adaptive ledger */
.ind-immersive {
  position: relative;
  width: min(100%, var(--max));
  min-height: 560px;
  margin: 0 auto 110px;
  padding: clamp(36px, 4.5vw, 56px) clamp(22px, 4vw, 48px);
  overflow: hidden;
  border-radius: 8px;
}

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease;
}

.ind-bg.is-active {
  opacity: 1;
}

.ind-immersive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ind-veil, rgba(5, 5, 5, 0.86)) 32%, rgba(5, 5, 5, 0.24) 100%);
  transition: background 700ms ease;
}

.ind-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.ind-inner .section-kicker {
  display: block;
  margin-bottom: 12px;
}

.ind-inner h2 {
  margin-bottom: 22px;
  color: var(--ind-head, #ffffff);
  font-size: clamp(24px, 2.8vw, 36px);
  transition: color 600ms ease;
}

.ind-rows {
  border-top: 2px solid var(--ind-acc, var(--red));
  transition: border-color 600ms ease;
}

.ind-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: baseline;
  padding: 12px 6px;
  cursor: pointer;
  border-bottom: 1px solid var(--ind-rule, rgba(255, 255, 255, 0.18));
  transition: padding-left 250ms ease, background 250ms ease, border-color 600ms ease;
}

.ind-row:hover,
.ind-row.is-active {
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.ind-row b {
  color: var(--ind-acc, var(--red));
  font-size: 11px;
  font-weight: 900;
  transition: color 600ms ease;
}

.ind-row strong {
  color: var(--ind-txt, #ffffff);
  font-size: 16.5px;
  transition: color 600ms ease;
}

.ind-row small {
  grid-column: 2;
  color: var(--ind-sub, rgba(255, 255, 255, 0.62));
  font-size: 12px;
  transition: color 600ms ease;
}

.ind-immersive[data-tone="ember"] { --ind-acc: #ffb347; --ind-txt: #fff7ec; --ind-head: #fff3e0; --ind-sub: rgba(255, 236, 214, 0.72); --ind-rule: rgba(255, 214, 170, 0.28); --ind-veil: rgba(24, 12, 4, 0.84); }
.ind-immersive[data-tone="steel"] { --ind-acc: #ff5a5a; --ind-txt: #f2f6fa; --ind-head: #ffffff; --ind-sub: rgba(226, 236, 246, 0.7); --ind-rule: rgba(210, 226, 240, 0.26); --ind-veil: rgba(8, 12, 18, 0.86); }
.ind-immersive[data-tone="earth"] { --ind-acc: #ff8a5c; --ind-txt: #fdf3ea; --ind-head: #ffffff; --ind-sub: rgba(250, 231, 214, 0.7); --ind-rule: rgba(244, 214, 186, 0.26); --ind-veil: rgba(22, 14, 8, 0.85); }
.ind-immersive[data-tone="stone"] { --ind-acc: #f11618; --ind-txt: #f5f5f2; --ind-head: #ffffff; --ind-sub: rgba(235, 235, 230, 0.68); --ind-rule: rgba(255, 255, 255, 0.2); --ind-veil: rgba(10, 10, 10, 0.86); }
.ind-immersive[data-tone="dawn"] { --ind-acc: #ffc46b; --ind-txt: #fff9ef; --ind-head: #ffffff; --ind-sub: rgba(255, 241, 219, 0.72); --ind-rule: rgba(255, 226, 180, 0.26); --ind-veil: rgba(26, 16, 6, 0.82); }

.ind-immersive {
  display: flex;
  flex-direction: column;
}

.ind-mega-head {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.ind-mega-head .section-kicker {
  display: block;
  margin-bottom: 12px;
}

.ind-mega-head h2 {
  min-height: 2.1em;
  margin-bottom: 12px;
  color: var(--ind-head, #ffffff);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.05;
  opacity: 1;
  transform: translateY(0);
  transition: color 600ms ease, opacity 260ms ease, transform 260ms ease;
}

.ind-mega-head p {
  margin: 0;
  color: var(--ind-sub, rgba(255, 255, 255, 0.68));
  font-size: 15.5px;
  opacity: 1;
  transition: color 600ms ease, opacity 260ms ease;
}

.ind-mega-head.is-swapping h2 {
  opacity: 0;
  transform: translateY(8px);
}

.ind-mega-head.is-swapping p {
  opacity: 0;
}

.ind-mega-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 40px;
}

.ind-tab {
  padding: 13px 14px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.ind-tab:hover,
.ind-tab:focus-visible,
.ind-tab.is-active {
  background: rgba(5, 5, 5, 0.75);
  border-color: var(--ind-acc, var(--red));
  transform: translateY(-3px);
  outline: none;
}

.ind-tab b {
  display: block;
  color: var(--ind-acc, var(--red));
  font-size: 10px;
  font-weight: 900;
  transition: color 600ms ease;
}

.ind-tab strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

@media (max-width: 1000px) {
  .ind-mega-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ind-immersive {
    min-height: 480px;
    margin-bottom: 70px;
  }

  .ind-row strong {
    font-size: 15px;
  }

  .ind-mega-head h2 {
    min-height: 0;
  }
}

/* Partnerships */
.partner-cta {
  width: min(100%, var(--max));
  margin: 4px auto 0;
}

/* Sector chip cards */
.sector-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.sector-chip-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.sector-chip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.sector-chip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-chip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.06) 30%, rgba(5, 5, 5, 0.82) 100%);
}

.sector-chip-copy {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: var(--white);
}

.sector-chip-copy span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-chip-copy h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.25;
}

.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sector-chips i {
  padding: 5px 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11.5px;
  font-style: normal;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.sector-chip-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-chip-grid-four .sector-chip-copy h3 {
  font-size: 17px;
}

@media (max-width: 1100px) {
  .sector-chip-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sector-chip-grid,
  .sector-chip-grid-four {
    grid-template-columns: 1fr;
  }

  .sector-chip-card {
    min-height: 260px;
  }
}

/* Delivery route line */
.delivery-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 36px;
}

.delivery-route::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 16px;
  right: 3%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(224, 32, 32, 0.22));
}

.delivery-route article {
  position: relative;
  min-width: 0;
  transition: transform 220ms ease;
}

.delivery-route article::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.delivery-route article:hover {
  transform: translateY(-4px);
}

.delivery-route article:hover::before {
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(224, 32, 32, 0.16);
  transform: scale(1.25);
}

.delivery-route article h3 {
  transition: color 220ms ease;
}

.delivery-route article:hover h3 {
  color: var(--red);
}

.delivery-route.route-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-area-route {
  padding-bottom: 96px;
}

.contact-support-grid article {
  border-top: 3px solid var(--red);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-support-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.delivery-route article span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.delivery-route article h3 {
  margin-bottom: 8px;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.delivery-route article p {
  margin-bottom: 0;
  color: #555961;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .delivery-route {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-left: 34px;
  }

  .delivery-route::before {
    top: 8px;
    bottom: 8px;
    left: 15px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--red), rgba(224, 32, 32, 0.22));
  }

  .delivery-route article {
    padding: 14px 0 22px;
  }

  .delivery-route article::before {
    top: 18px;
    left: -25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
