/* === Avenir LT Std (self-hosted). Drop the font files in  ./fonts/  next to index.html.
   Mulish (Google Fonts) is the official brandbook fallback while files load/if absent. === */
@font-face {
  font-family: "Avenir LT Std";
  src: url(../fonts/avenir-300.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url(../fonts/avenir-400.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url(../fonts/avenir-500.woff2) format("woff2");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url(../fonts/avenir-700.woff2) format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url(../fonts/avenir-900.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --navy: #1b3a61;
  --navy-deep: #0f2238;
  --navy-night: #08131f;
  --black: #020a0a;
  --gold: #ffd500;
  --silver: #bdbcbc;
  --paper: #efeee9;
  --ink: #0c1c2e;
  --sans:
    "Avenir LT Std", "Mulish", system-ui, -apple-system, Segoe UI, sans-serif;
  --mono: var(--sans);
  --pad: clamp(20px, 6vw, 90px);
  --maxw: 1480px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  font-family: var(--sans);
  background: var(--navy-night);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.lock {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.92;
  paint-order: stroke fill;
}
.wrap {
  max-width: 1660px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* film grain + vignette */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* mono label */
.tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tag::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.tag.ink {
  color: var(--navy);
}
.tag.ink::before {
  background: var(--navy);
}
.idx {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.85;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: 100px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  will-change: transform;
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: #fff;
}
.btn-line {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.btn-line:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-line.ink {
  border-color: rgba(27, 58, 97, 0.3);
  color: var(--navy);
}
.btn-line.ink:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.text-white{
  color: #ffffff;
}

/* reveal */
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.rv2 {
  transition-delay: 0.12s;
}
.rv3 {
  transition-delay: 0.24s;
}
.line-mask {
  display: block;
  overflow: hidden;
}
.line-mask > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.in .line-mask > span {
  transform: none;
}
.in .line-mask:nth-child(2) > span {
  transition-delay: 0.08s;
}
.in .line-mask:nth-child(3) > span {
  transition-delay: 0.16s;
}
@media (prefers-reduced-motion: reduce) {
  .rv,
  .line-mask > span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* progress bar */
.scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  width: 0;
  z-index: 9001;
}

/* ===== NAV ===== */
header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 8000;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.4vw, 40px);
  padding: 20px var(--pad);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: navIn 0.9s 0.2s both;
}
@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
header.shr .nav {
  padding: 13px var(--pad);
  background: rgba(8, 19, 31, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255, 213, 0, 0.16);
  box-shadow: 0 18px 50px -30px rgba(0, 0, 0, 0.75);
}
/* Menu open: the bar sits above the overlay (z-index 8000 vs 7900) but is
   transparent until .shr kicks in, so at the top of the page the overlay's
   own content scrolls visibly through the logo. Give the bar a backdrop for
   as long as the menu is open, at any scroll position. The size stays as it
   is — only the background appears, so nothing jumps on opening. */
header.navopen .nav {
  background: rgba(8, 19, 31, 0.94);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
}
.logo {
  display: flex;
  align-items: center;
  height: 58px;
  transition:
    height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s;
  flex: 0 0 auto;
}
.logo:hover {
  opacity: 0.86;
}
header.shr .logo {
  height: 44px;
}
.logo-svg {
  height: 100%;
  width: auto;
  display: block;
}
.menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}
.nav-sep {
  width: 1px;
  height: 20px;
  background: linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0)
  );
  flex: 0 0 auto;
  margin: 0 2px;
}
.menu .ml {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  transition: color 0.25s;
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.menu .ml::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu .ml:hover {
  color: #fff;
}
.menu .ml:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.ml-caret {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  transition: transform 0.3s;
  opacity: 0.85;
}
.has-d {
  position: relative;
}
.has-d:hover .ml-caret {
  transform: rotate(180deg);
}
.dd {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(13, 33, 56, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 10px;
  min-width: 294px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    transform 0.3s,
    visibility 0.3s;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}
.dd::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px;
  height: 13px;
  background: rgba(13, 33, 56, 0.97);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.has-d:hover .dd {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}
.dd a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border-radius: 9px;
  transition:
    background 0.25s,
    padding 0.32s;
}
.dd a .ddf {
  width: 5px;
  height: 30px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
  flex: 0 0 auto;
  opacity: 0;
  transition: opacity 0.25s;
}
.dd a:hover {
  background: rgba(255, 213, 0, 0.09);
  padding-left: 18px;
}
.dd a:hover .ddf {
  opacity: 1;
}
.dd a .dd-tx {
  display: flex;
  flex-direction: column;
}
.dd a b {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.01em;
}
.dd a span {
  display: block;
  font-size: 11px;
  color: #8fa3bd;
  margin-top: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.navvid {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s;
}
.navvid:hover {
  color: var(--gold);
}
.navvid svg {
  width: 30px;
  height: 30px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navvid:hover svg {
  transform: scale(1.08);
}
.navvid svg circle {
  transition: fill 0.3s;
}
.navvid:hover svg circle {
  fill: rgba(255, 213, 0, 0.16);
}
.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
.lang button,
.lang a {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 999px;
  transition: 0.25s;
}
.lang button:hover,
.lang a:hover {
  color: #fff;
}
.lang button.on,
.lang a.on {
  color: var(--black);
  background: var(--gold);
}
.menutog {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  z-index: 8100;
  padding: 10px 17px;
  transition: 0.3s;
}
.menutog:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 213, 0, 0.06);
}
.menutog.on {
  border-color: var(--gold);
}
.menutog .mplus {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--gold);
}
.menutog.on .mplus {
  transform: rotate(135deg);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 8100;
}
.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.burger.x span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.x span:nth-child(2) {
  opacity: 0;
}
.burger.x span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== fullscreen overlay menu (Wolverine-style) ===== */
.menutog {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  z-index: 8100;
  padding: 11px 18px;
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.menutog .mplus {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--gold);
}
.menutog.on .mplus {
  transform: rotate(135deg);
}
.menutog:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 213, 0, 0.07);
}
.navover {
  position: fixed;
  inset: 0;
  background: var(--navy-night);
  z-index: 7900;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.navover::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    120% 90% at 82% 8%,
    rgba(255, 213, 0, 0.07),
    transparent 60%
  );
  pointer-events: none;
}
.navover.open {
  opacity: 1;
  visibility: visible;
}
.navover-inner {
  position: relative;
  min-height: 100%;
  width: 100%;
  padding: clamp(104px, 15vh, 148px) var(--pad) clamp(46px, 8vh, 72px);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(40px, 5vw, 90px);
  align-content: center;
}
.no-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.no-links a {
  font-size: clamp(34px, 7.4vw, 98px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
  display: block;
  overflow: hidden;
  position: relative;
  -webkit-text-stroke: 0.017em currentColor;
  paint-order: stroke fill;
}
.no-links a > span {
  display: inline-block;
  transform: translateY(112%);
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.25s;
}
.navover.open .no-links a > span {
  transform: translateY(0);
}
.no-links a:hover > span {
  color: var(--gold);
}
.no-links a .no-idx {
  position: absolute;
  top: 0.22em;
  left: -1.7em;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.5s 0.4s;
}
.navover.open .no-links a .no-idx {
  opacity: 0.7;
}
.navover.open .no-links a:nth-child(1) > span {
  transition-delay: 0.06s;
}
.navover.open .no-links a:nth-child(2) > span {
  transition-delay: 0.12s;
}
.navover.open .no-links a:nth-child(3) > span {
  transition-delay: 0.18s;
}
.navover.open .no-links a:nth-child(4) > span {
  transition-delay: 0.24s;
}
.navover.open .no-links a:nth-child(5) > span {
  transition-delay: 0.3s;
}
.no-side {
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 2.6vw, 36px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s 0.42s,
    transform 0.6s 0.42s;
  min-width: 0;
}
.navover.open .no-side {
  opacity: 1;
  transform: none;
}
.no-block h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #637b96;
  margin-bottom: 14px;
}
.no-mail {
  display: inline-block;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  word-break: break-word;
  transition: color 0.25s;
}
.no-mail:hover {
  color: var(--gold);
}
.no-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 13px;
}
.no-line {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #9fb1c7;
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
a.no-line:hover {
  color: var(--gold);
}
.no-line svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
  opacity: 0.9;
}
.no-film {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 18px;
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--sans);
}
.no-film:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 213, 0, 0.06);
}
.no-film svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.no-cos {
  display: flex;
  flex-direction: column;
}
.no-co {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.no-co:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.no-co .co-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 16px;
  flex-wrap: wrap;
}
.no-co .co-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.012em;
  transition: color 0.25s;
}
.no-co .co-name:hover {
  color: var(--gold);
}
.no-co .co-name svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  opacity: 0.7;
  transition: transform 0.35s;
}
.no-co .co-name:hover svg {
  transform: translate(2px, -2px);
  opacity: 1;
}
.no-co .co-spec {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #637b96;
  white-space: nowrap;
}
.no-co .co-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin-top: 9px;
}
.no-co .co-lines a,
.no-co .co-lines span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9fb1c7;
  transition: color 0.25s;
}
.no-co .co-lines a:hover {
  color: var(--gold);
}
.no-co .co-lines svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
  opacity: 0.85;
}
.no-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.no-lang {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
.no-lang button,
.no-lang a {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 11px;
  border-radius: 999px;
  transition: 0.25s;
}
.no-lang button:hover,
.no-lang a:hover {
  color: #fff;
}
.no-lang button.on,
.no-lang a.on {
  color: var(--black);
  background: var(--gold);
}
.no-social {
  display: flex;
  gap: 18px;
}
.no-social a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9fb1c7;
  transition: color 0.25s;
}
.no-social a:hover {
  color: var(--gold);
}
@media (max-width: 1080px) {
  .navover-inner {
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 52px);
    align-content: start;
  }
  .no-links a .no-idx {
    display: none;
  }
  .no-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 48px;
    align-items: start;
  }
  .no-contact {
    grid-column: 1;
  }
  .no-companies {
    grid-column: 2;
  }
  .no-foot {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .navover-inner {
    padding-top: clamp(96px, 13vh, 118px);
  }
  .no-side {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .no-contact,
  .no-companies,
  .no-foot {
    grid-column: 1;
  }
  .no-co .co-spec {
    flex-basis: 100%;
    text-align: left;
  }
  .no-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 1080px) {
  .nav-sep {
    display: none;
  }
}
@media (max-width: 480px) {
  .menutog {
    padding: 9px 14px;
    letter-spacing: 0.1em;
  }
  .menutog .mtxt {
    font-size: 11px;
  }
}

/* ===== HERO (frame sequence) ===== */
.hero {
  height: 600vh;
  position: relative;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--navy-night);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-canvas canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 19, 31, 0.5) 0%,
    rgba(8, 19, 31, 0.1) 35%,
    rgba(8, 19, 31, 0.92) 100%
  );
  z-index: 1;
}
.hero-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) clamp(50px, 7vw, 90px);
}
.hero-top {
  position: absolute;
  top: clamp(100px, 13vh, 150px);
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: clamp(48px, 9.5vw, 160px);
  line-height: 0.86;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-lead {
  max-width: 57ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: #cdd8e6;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #8fa3bd;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll .ln {
  width: 1px;
  height: 34px;
  background: linear-gradient(#8fa3bd, transparent);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@media (max-width: 760px) {
  .hero-top {
    display: none;
  }
}

/* marquee */
.marq {
  background: var(--gold);
  color: #000;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marq .track {
  display: inline-flex;
  gap: 50px;
  animation: scrollx 26s linear infinite;
  font-weight: 900;
  font-size: clamp(16px, 2vw, 26px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.marq .track span {
  display: inline-flex;
  align-items: center;
  gap: 50px;
}
.marq .track span::after {
  content: "●";
  font-size: 10px;
  vertical-align: middle;
}
@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}

/* ===== INTRO / GROEP ===== */
.intro {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.intro h2.big {
  font-size: clamp(34px, 5.6vw, 90px);
  max-width: 15ch;
  line-height: 0.97;
  letter-spacing: -0.028em;
}
.intro h2.big em {
  color: var(--gold);
  font-style: normal;
}
.intro-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: start;
    margin-top: clamp(38px, 5vw, 68px);
    margin-bottom: clamp(38px, 5vw, 68px);
}

.intro-2 > div:nth-child(2){
      align-self: center;
}

.intro-2 .body {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.62;
  color: #cdd7e4;
  font-weight: 500;
  max-width: 60ch;
}
.intro-2 .body p + p {
  margin-top: 18px;
}
.brandlist {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.brandlist a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    padding 0.3s,
    background 0.3s;
}
.brandlist a:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(255, 213, 0, 0.06), transparent);
}
.brandlist .bname {
  flex: 1;
  font-weight: 900;
  font-size: clamp(18px, 1.8vw, 23px);
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
}
.brandlist .bspec {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9fb1c7;
  text-align: right;
}
.brandlist .arr {
  width: 20px;
  height: 20px;
  color: #fff;
  opacity: 0.45;
  transform: translateX(-4px);
  transition: 0.3s;
  flex: 0 0 auto;
}
.brandlist a:hover .arr {
  opacity: 1;
  transform: none;
}
.statsband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(50px, 7vw, 90px);
  border-top: 2px solid var(--navy);
}
.sb {
  padding: clamp(28px, 3vw, 46px) clamp(14px, 2vw, 28px)
    clamp(22px, 2.5vw, 32px);
  border-right: 1px solid rgba(12, 28, 46, 0.16);
  position: relative;
}
.sb:last-child {
  border-right: 0;
}
.sb .num {
  font-size: clamp(44px, 6.2vw, 96px);
  font-weight: 900;
  color: var(--navy);
  line-height: 0.82;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  -webkit-text-stroke: 0.017em currentColor;
  paint-order: stroke fill;
}
.sb .lab {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d6b7c;
  margin-top: 15px;
}
.sb .sub {
  font-size: 13px;
  color: #9aa6b3;
  font-weight: 500;
  margin-top: 7px;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .intro-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .statsband {
    grid-template-columns: repeat(2, 1fr);
  }
  .sb:nth-child(2) {
    border-right: 0;
  }
  .sb:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(12, 28, 46, 0.16);
  }
}
@media (max-width: 480px) {
  .statsband {
    grid-template-columns: 1fr;
  }
  .sb {
    border-right: 0;
    border-bottom: 1px solid rgba(12, 28, 46, 0.16);
  }
}
/* ===== STAT CARD MARQUEE (constant scroll, theoboons-style) ===== */
.cardmarq {
  position: relative;
  width: 100%;
  margin-top: clamp(30px, 4vw, 54px);
  overflow: hidden;
}
.cijfers {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    color: #fff;
    padding: clamp(20px, 10vw, 0px) 0 clamp(0px, 10vw, 120px);
}
.cijfers-head {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: clamp(56px, 8vw, 104px);
}
.cijfers-head h2 {
  font-size: clamp(28px, 4vw, 56px);
  max-width: 20ch;
  color: #fff;
}
.cardmarq-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 9vw, 150px);
  z-index: 3;
  pointer-events: none;
}
.cardmarq-fade-l {
  left: 0;
  background: linear-gradient(90deg, var(--navy-deep), transparent);
}
.cardmarq-fade-r {
  right: 0;
  background: linear-gradient(270deg, var(--navy-deep), transparent);
}
.cardmarq-track {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  width: max-content;
  padding: 6px clamp(7px, 0.8vw, 11px);
  animation: cardScroll 56s linear infinite;
  will-change: transform;
}
.cardmarq:hover .cardmarq-track {
  animation-play-state: paused;
}
/* JS drives the strip so it can also be dragged; the keyframes stay as the no-JS fallback */
.cardmarq.js-drag .cardmarq-track {
  animation: none;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.cardmarq.js-drag .cardmarq-track img {
  -webkit-user-drag: none;
}
@keyframes cardScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.3333%);
  }
}
.fcard {
    position: relative;
    flex: 0 0 auto;
    width: clamp(264px, 24vw, 410px);
    aspect-ratio: 3.5 / 5;
    border-radius: 20px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 24px 50px -34px rgba(8, 19, 31, 0.6);
}
.fcard-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fcard:hover .fcard-img {
  transform: scale(1.08);
}
.fcard-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 19, 31, 0.62) 0%,
    rgba(8, 19, 31, 0.12) 34%,
    rgba(8, 19, 31, 0.2) 52%,
    rgba(8, 19, 31, 0.9) 100%
  );
}
.fcard-top {
  position: absolute;
  top: clamp(20px, 2.4vw, 28px);
  left: clamp(20px, 2.4vw, 28px);
  right: clamp(20px, 2.4vw, 28px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.fcard-big {
    font-size: clamp(25px, 3.4vw, 33px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
}
.fcard-lab {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.fcard-bot {
  position: absolute;
  left: clamp(20px, 2.4vw, 28px);
  right: clamp(20px, 2.4vw, 28px);
  bottom: clamp(20px, 2.4vw, 26px);
  z-index: 2;
}
.fcard-head {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.06;
  color: #fff;
  -webkit-text-stroke: 0.014em #fff;
  paint-order: stroke fill;
}
.fcard-desc {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  max-width: 34ch;
}
.fcard-swoosh {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: clamp(30px, 3vw, 40px);
  height: auto;
  z-index: 2;
  opacity: 0.92;
}
@media (max-width: 560px) {
  .fcard {
    width: 78vw;
  }
  .cardmarq-track {
    animation-duration: 42s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cardmarq-track {
    animation: none;
    transform: none;
  }
}

/* ===== sec heading util ===== */
.shead {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(34px, 4vw, 56px);
}
.shead .idx {
  padding-top: 4px;
}

/* ===== SUBSIDIARIES (accordion) ===== */
.subs {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(80px, 11vw, 150px) 0;
}
.subs h2 {
  font-size: clamp(30px, 4.2vw, 62px);
  color: #fff;
}
.subtop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.subtop p {
  max-width: 38ch;
  color: #aebccd;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}
.companies {
  border-top: 1px solid rgba(12, 28, 46, 0.16);
}
.crow {
  border-bottom: 1px solid rgba(12, 28, 46, 0.16);
}
.crow-head {
  display: grid;
  grid-template-columns: 54px 1fr auto 40px;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  padding: clamp(22px, 3vw, 40px) 6px;
  cursor: pointer;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.crow-head:hover {
  padding-left: 18px;
}
.crow .cnum {
  font-family: var(--mono);
  font-size: 13px;
  color: #9aa6b3;
  letter-spacing: 0.05em;
}
.crow .cname {
  font-size: clamp(26px, 4vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 0.95;
  transition: color 0.3s;
}
.crow.open .cname,
.crow-head:hover .cname {
  color: var(--navy);
}
.crow .cspec {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8593a2;
  text-align: right;
}
.crow .cgo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(12, 28, 46, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  transition: 0.35s;
}
.crow .cgo svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy);
  fill: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.crow.open .cgo {
  background: var(--navy);
  border-color: var(--navy);
}
.crow.open .cgo svg {
  stroke: #fff;
  transform: rotate(180deg);
}
.crow-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.crow.open .crow-panel {
  max-height: 560px;
}
.crow-inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(30px, 4vw, 56px);
  padding: 4px 6px clamp(34px, 4vw, 52px);
  align-items: center;
}
.crow-img {
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
}
.crow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.crow.open .crow-img img {
  transform: scale(1);
}
.crow-txt .ll {
  margin-bottom: 22px;
}
.crow-txt p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: #52606f;
  font-weight: 500;
  max-width: 42ch;
}
.crow-txt .visit {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
  transition: gap 0.3s;
}
.crow-txt .visit:hover {
  gap: 16px;
}
.crow-txt .visit svg {
  width: 15px;
  height: 15px;
}
.ll {
  display: flex;
  align-items: center;
  gap: 13px;
}
.ll .llf {
  flex: 0 0 auto;
}
.ll-main {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
}
.ll-sub {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8593a2;
  margin-top: 6px;
}
.ll-bcs .ll-main {
  font-size: clamp(30px, 3vw, 40px);
  text-transform: lowercase;
}
.ll-swinton .ll-main {
  font-size: clamp(28px, 2.8vw, 38px);
  text-transform: lowercase;
}
.ll-dp .ll-main {
  font-size: clamp(22px, 2.2vw, 30px);
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 5px;
  display: inline-block;
}
.ll-dp .ll-sub {
  letter-spacing: 0.38em;
}
/* ===== GROUP STRUCTURE — full-bleed band with hover-reactive imagery ===== */
.gxf {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(64px, 9vw, 128px) var(--pad) clamp(58px, 8vw, 116px);
  /* background: var(--navy-deep); */
  color: #fff;
}
.gxf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gxf-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.07);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 7s linear;
}
.gxf-img[data-co="bcs"] {
  opacity: 0.4;
}
.gxf:has(.gxf-co:hover) .gxf-img {
  opacity: 0;
}
.gxf:has(.gxf-co[data-co="bcs"]:hover) .gxf-img[data-co="bcs"] {
  opacity: 0.62;
  transform: scale(1);
}
.gxf:has(.gxf-co[data-co="swinton"]:hover) .gxf-img[data-co="swinton"] {
  opacity: 0.62;
  transform: scale(1);
}
.gxf:has(.gxf-co[data-co="pels"]:hover) .gxf-img[data-co="pels"] {
  opacity: 0.62;
  transform: scale(1);
}
.gxf-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 34, 56, 0.9) 0%,
    rgba(15, 34, 56, 0.72) 42%,
    rgba(8, 19, 31, 0.86) 100%
  );
}
.gxf::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    125% 95% at 50% 28%,
    transparent 38%,
    rgba(8, 19, 31, 0.6) 100%
  );
}
.gxf-watermark {
  position: absolute;
  top: 0.02em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-weight: 900;
  font-size: clamp(150px, 27vw, 430px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.gxf-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.4;
  pointer-events: none;
}
.gxf-inner {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
}
.gxf-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gx-kick {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.92;
  font-weight: 700;
  margin-bottom: clamp(24px, 3vw, 38px);
}
.flagtick {
  width: 5px;
  height: 17px;
  background: var(--gold);
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}
.gxf-master {
  width: min(460px, 74vw);
}
.gxf-master .gx-group-logo {
  width: 100%;
  height: auto;
  display: block;
}
.gxf-lead {
  margin-top: clamp(22px, 2.6vw, 32px);
  max-width: 56ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.62;
  color: #cfdbea;
  font-weight: 500;
}
.gxf-co-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  margin-top: clamp(44px, 5.2vw, 72px);
}
.gxf-co {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(32px, 3.2vw, 46px) clamp(20px, 2vw, 32px)
    clamp(24px, 2.6vw, 34px);
  background: rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.45s,
    border-color 0.45s,
    box-shadow 0.45s;
}
.gxf-co-num {
  position: absolute;
  top: 15px;
  left: 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0.42;
  font-weight: 700;
}
.gxf-co::before,
.gxf-co::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  opacity: 0;
  transition:
    opacity 0.4s,
    inset 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.gxf-co::before {
  top: 13px;
  right: 13px;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 4px;
}
.gxf-co::after {
  bottom: 13px;
  left: 13px;
  border-right: 0;
  border-top: 0;
  border-bottom-left-radius: 4px;
}
.gxf-co:hover {
  transform: translateY(-9px);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 213, 0, 0.5);
  box-shadow: 0 34px 64px -32px rgba(0, 0, 0, 0.7);
}
.gxf-co:hover::before {
  top: 10px;
  right: 10px;
}
.gxf-co:hover::after {
  bottom: 10px;
  left: 10px;
}
.gxf-co:hover::before,
.gxf-co:hover::after {
  opacity: 0.9;
}
.gxf-co-frame {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(80px, 7vw, 80px);
    width: 85%;
    margin-top: 20px;
}
.gxf-co-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.gxf-co:hover .gxf-co-logo {
  transform: scale(1.06);
}
.gxf-co-spec {
  margin-top: clamp(18px, 2vw, 26px);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #aebfd2;
  font-weight: 600;
  line-height: 1.5;
}
.gxf-co-go {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
  transition:
    gap 0.3s,
    color 0.3s;
}
.gxf-co-go svg {
  width: 14px;
  height: 14px;
}
.gxf-co:hover .gxf-co-go {
  gap: 13px;
  color: var(--gold);
}
@media (max-width: 860px) {
  .gxf-co-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .gxf-co {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 22px;
    padding: 22px 24px 22px 50px;
  }
  .gxf-co-frame {
    width: 130px;
    flex: 0 0 130px;
    height: 54px;
    margin-top: 0;
  }
  .gxf-co-num {
    top: 50%;
    transform: translateY(-50%);
  }
  .gxf-co-spec {
    margin-top: 0;
    flex: 1;
  }
  .gxf-co-go {
    margin-top: 0;
    margin-left: auto;
    white-space: nowrap;
  }
  .gxf-co::before,
  .gxf-co::after {
    display: none;
  }
}
@media (max-width: 520px) {
  .gxf-co {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 26px 22px;
  }
  .gxf-co-frame {
    flex: none;
    width: 100%;
  }
  .gxf-co-num {
    position: static;
    transform: none;
    margin-bottom: 6px;
  }
  .gxf-co-spec {
    margin-top: 12px;
  }
  .gxf-co-go {
    margin-left: 0;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .crow-head {
    grid-template-columns: 38px 1fr 36px;
  }
  .crow .cspec {
    display: none;
  }
  .crow-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .crow.open .crow-panel {
    max-height: 820px;
  }

 
}

/* ===== SYNERGY (horizontal pin) ===== */
.synh {
  position: relative;
  background: #0c1420; /* match footer (.ft-b) dark blue */
}
.synh-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.synh-head {
    flex: 0 0 38%;
    max-width: 580px;
    padding: clamp(64px, 12vh, 130px) clamp(24px, 3vw, 50px) clamp(54px, 12vh, 130px) var(--pad);
    display: flex;
    flex-direction: column;
  flex-direction: column;
}
.synh-head .idx {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.synh-head .tag {
  margin-top: auto;
  color: var(--gold);
}
.synh-head h2 {
  font-size: clamp(30px, 3.4vw, 56px);
  margin-top: 16px;
  max-width: 14ch;
}
.synh-head h2 em {
  color: var(--gold);
  font-style: normal;
}
.synh-progress {
  margin-top: 34px;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  max-width: 300px;
}
.synh-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.synh-count {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 13px;
  color: #9fb1c7;
  letter-spacing: 0.1em;
}
.synh-count span {
  color: var(--gold);
  font-size: 22px;
}
.synh-vp {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.synh-track {
  display: flex;
  gap: 24px;
  padding-right: var(--pad);
  will-change: transform;
}
.hpanel {
  flex: 0 0 min(520px, 60vw);
  height: min(72vh, 640px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hp-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hpanel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 19, 31, 0.08) 32%,
    rgba(8, 19, 31, 0.92)
  );
  z-index: 1;
}
.hp-txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(28px, 2.4vw, 40px);
  z-index: 2;
}
.hp-n {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.hp-txt h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  text-transform: none;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 10px 0 12px;
}
.hp-txt p {
  font-size: 15px;
  line-height: 1.55;
  color: #dde5ef;
  font-weight: 500;
  max-width: 40ch;
}
@media (max-width: 900px) {
  .synh-sticky {
    position: static;
    height: auto;
    flex-direction: column;
    overflow: visible;
    padding-bottom: clamp(70px, 6vw, 60px);
  }
  .synh-head {
    flex: none;
    max-width: none;
    padding: clamp(70px, 10vw, 90px) var(--pad) 22px;
    gap: 14px;
  }
  .synh-head .tag {
    margin-top: 18px;
  }
  .synh-progress {
    display: none;
  }
  .synh-vp {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-left: var(--pad);
  }
  .synh-track {
    transform: none !important;
    gap: 16px;
  }
  .hpanel {
    flex: 0 0 82vw;
    height: 62vh;
    scroll-snap-align: start;
  }
}

/* ===== PRODUCTION (welder sequence) ===== */
.prod {
  position: relative;
  height: 560vh; /* 100 frames: same per-frame scroll pace as before (420vh @ 75 frames); crane 2x and final scene 3x longer */
  background: #000;
}
.prod-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.prod-canvas {
  position: absolute;
  inset: 0;
}
.prod-canvas canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    transparent 70%
  );
  z-index: 1;
}
.prod-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
}
.prod-ui .in2 {
  max-width: 42ch;
}
.prod-ui h2 {
  font-size: clamp(34px, 5.4vw, 80px);
}
.prod-ui h2 em {
  color: var(--gold);
  font-style: normal;
}
.prod-ui p {
  margin-top: 20px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: #d6dee9;
  font-weight: 500;
  max-width: 40ch;
}

/* ===== EMPLOYER ===== */
/* ===== WERKEN BIJ — merged: content + living team-wall ===== */
.emp {
  background: var(--navy-deep);
  padding: clamp(80px, 10vw, 120px) 0 clamp(64px, 8vw, 92px);
  overflow: hidden;
  position: relative;
}
.emp .wrap {
  max-width: 1680px;
}
.emp2 {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}
.emp2-left {
  min-width: 0;
}
.emp2-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  background: var(--gold);
  color: #000;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: clamp(22px, 2.6vw, 30px);
}
.emp2-badge b {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.emp2-badge i {
  font-style: normal;
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.emp2-badge i::before {
  content: "\2014\00a0"; /* em dash + nbsp: "3 bedrijven — één familie" */
  font-weight: 500;
  opacity: 0.6;
}
.emp2-left h2 {
  font-size: clamp(32px, 4.6vw, 64px);
  max-width: 13ch;
  line-height: 0.98;
}
.emp2-left h2 em {
  color: var(--gold);
  font-style: normal;
}
.emp2-lead {
  margin-top: 22px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.62;
  color: #cdd7e4;
  font-weight: 500;
  max-width: 48ch;
}
.emp-rows {
  margin-top: clamp(28px, 3.4vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.emp-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(18px, 2.2vw, 26px) 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s;
}
.emp-row:hover {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(255, 213, 0, 0.08), transparent);
}
.emp-row .er-flag {
  flex: 0 0 auto;
}
.emp-row .er-main b {
  display: block;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
}
.emp-row .er-main span {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9fb1c7;
  margin-top: 4px;
  display: block;
}
.emp-row .er-go {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.emp-row .er-go svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}
.emp-row:hover .er-go svg {
  transform: translateX(6px);
}
/* living team wall */
.emp2-wall {
  position: relative;
  height: clamp(520px, 78vh, 860px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.2vw, 16px);
  overflow: hidden;
  border-radius: 20px;
  -webkit-mask: linear-gradient(
    180deg,
    transparent 0,
    #000 11%,
    #000 89%,
    transparent 100%
  );
  mask: linear-gradient(
    180deg,
    transparent 0,
    #000 11%,
    #000 89%,
    transparent 100%
  );
}
.ew-col {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 16px);
  will-change: transform;
}
.ew-up {
  animation: ewUp 60s linear infinite;
}
.ew-down {
  animation: ewDown 60s linear infinite;
}
@keyframes ewUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes ewDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
.emp2-wall:hover .ew-col {
  animation-play-state: paused;
}
.ew-ph {
  position: relative;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 20px 44px -32px rgba(0, 0, 0, 0.7);
}
.ew-ph img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.03);
  transition:
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s;
  filter: saturate(0.97);
}
.ew-ph:hover img {
  transform: scale(1.09);
  filter: saturate(1.06);
}
.ew-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .ew-up,
  .ew-down {
    animation: none;
  }
}
@media (max-width: 920px) {
  .emp2 {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .emp2-wall {
    height: clamp(440px, 60vh, 600px);
  }
  .emp-row .er-go {
    font-size: 0;
  }
  .emp-row .er-go svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .emp2-wall {
    height: 440px;
  }
}

/* ===== TESTIMONIALS ===== */
.test {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 11vw, 160px) 0;
}
.test h2 {
  font-size: clamp(30px, 4.2vw, 60px);
  color: var(--ink);
}
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.tcard {
  background: #fff;
  border: 1px solid rgba(12, 28, 46, 0.08);
  border-radius: 14px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.tcard .q {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 600;
  flex: 1;
}
.tcard .q::before {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  background: var(--gold);
  margin-bottom: 22px;
}
.tcard .w {
  margin-top: 26px;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--navy);
}
.tcard .w span {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  color: #8593a2;
  margin-top: 3px;
}
@media (max-width: 920px) {
  .tcards {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT ===== */
.contact {
  background: var(--navy);
  padding: clamp(64px, 9vw, 96px) 0 clamp(72px, 9vw, 108px);
  overflow: hidden;
}
.cgrid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.cleft h2 {
  font-size: clamp(34px, 5vw, 72px);
  max-width: 11ch;
}
.cleft h2 em {
  color: var(--gold);
  font-style: normal;
}
.clead {
  margin-top: 22px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: #cdd7e4;
  font-weight: 500;
  max-width: 42ch;
}
.cinfo {
  margin-top: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.cinfo .crow {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: padding 0.25s;
}
a.crow:hover {
  padding-left: 8px;
}
.cinfo .cl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.cinfo .cv {
  font-size: 16px;
  color: #e4ebf3;
  font-weight: 600;
}
.ccompanies {
  margin-top: 30px;
}
.cc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fa3bd;
}
.cc-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.cc-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 9px 16px;
  transition: 0.25s;
}
.cc-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: clamp(26px, 3vw, 40px);
}
.form .fhead {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form .fhead::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
.cf-status {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 600;
  min-height: 1.2em;
}
.cf-status.err {
  color: #ffb3b3;
}
.cf-status.ok {
  color: var(--gold);
}
/* honeypot: invisible to people, filled in by bots — see send.php */
.cf-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form button[type="submit"]:disabled {
  cursor: default;
  opacity: 0.62;
  transform: none !important;
}
.form button[type="submit"].is-busy svg {
  animation: cf-pulse 1s ease-in-out infinite;
}
@keyframes cf-pulse {
  0%, 100% { opacity: 1; transform: translateX(0); }
  50% { opacity: 0.35; transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .form button[type="submit"].is-busy svg { animation: none; }
}
/* mobile: stop the <select>'s longest option (intrinsic width) from blowing the grid open */
.cgrid > *,
.cleft,
.form,
.frow,
.field {
  min-width: 0;
}
.field input,
.field textarea,
.field select,
.cf-select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aebccd;
}
.field input,
.field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font: inherit;
  font-size: 15px;
  transition: 0.25s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #7e8ea1;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px 44px 14px 16px;
  color: #fff;
  font: inherit;
  font-size: 15px;
  transition: 0.25s;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD500' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.09);
}
.field select option {
  background: var(--navy-deep);
  color: #fff;
}
@media (max-width: 920px) {
  .cgrid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .frow {
    grid-template-columns: 1fr;
  }
}

/* ===== preloader + load animation ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy-night);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition:
    opacity 0.7s cubic-bezier(0.7, 0, 0.3, 1),
    visibility 0.7s;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
}
.pl-logo {
  width: min(346px, 72vw);
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  animation: plIn 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.pl-logo .logo-svg {
  width: 100%;
  height: auto;
  display: block;
}
.pl-bar {
  width: clamp(140px, 22vw, 220px);
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  overflow: hidden;
}
.pl-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: plFill 1.05s 0.2s cubic-bezier(0.65, 0, 0.2, 1) forwards;
}
.pl-cap {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6f819a;
  font-weight: 600;
  text-align: center;
  max-width: min(80vw, 520px);
  padding: 0 16px;
  line-height: 1.6;
  text-wrap: balance;
  opacity: 0;
  animation: plIn 0.9s 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@media (max-width: 480px) {
  .pl-logo {
    width: min(346px, 64vw);
  }
  .pl-cap {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
}
@keyframes plIn {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes plFill {
  to {
    width: 100%;
  }
}
/* hero entrance gated on body.loaded */
.nav {
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    background 0.35s,
    padding 0.35s;
}
body.loaded .nav {
  opacity: 1;
  transform: none;
}
.hero-top,
.hero-scroll {
  opacity: 0;
  transition: opacity 1s ease;
}
body.loaded .hero h1 .line-mask > span {
  transform: none;
}
body.loaded .hero h1 .line-mask:nth-child(1) > span {
  transition-delay: 0.32s;
}
body.loaded .hero h1 .line-mask:nth-child(2) > span {
  transition-delay: 0.44s;
}
body.loaded .hero h1 .line-mask:nth-child(3) > span {
  transition-delay: 0.56s;
}
body.loaded .hero .hero-lead {
  opacity: 1;
  transform: none;
  transition-delay: 0.7s;
}
body.loaded .hero .hero-cta {
  opacity: 1;
  transform: none;
  transition-delay: 0.82s;
}
body.loaded .hero-top {
  opacity: 1;
  transition-delay: 0.58s;
}
body.loaded .hero-scroll {
  opacity: 1;
  transition-delay: 1.05s;
}

/* ===== FOOTER (editorial B) ===== */
.ft-b {
  background: #0c1420;
  color: #fff;
  padding-top: clamp(60px, 8vw, 108px);
  overflow: hidden;
  position: relative;
}

.ft-b-wrap{
    width: 100%;
    max-width: 100%;
}

.fb-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}
.fb-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.big-mail {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.16em;
  font-size: clamp(24px, 5.4vw, 84px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-top: 18px;
  line-height: 0.95;
  transition: color 0.35s;
  white-space: nowrap;
  max-width: 100%;
  -webkit-text-stroke: 0.017em currentColor;
  paint-order: stroke fill;
}



@media (max-width: 600px) {
  .big-mail {
    white-space: normal;
    word-break: break-word;
    font-size: clamp(22px, 7.7vw, 40px);
  }
}


.big-mail:hover {
  color: var(--gold);
}
.big-mail svg {
  width: 0.5em;
  height: 0.5em;
  stroke: var(--gold);
  fill: none;
  flex: 0 0 auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.big-mail:hover svg {
  transform: translate(0.1em, -0.1em);
}
.fb-sub {
  margin-top: 24px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: #8b97a6;
  font-weight: 500;
  max-width: 50ch;
  line-height: 1.55;
}
.fb-marq {
  margin-top: clamp(46px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
}
.fb-marq .track {
  display: inline-flex;
  gap: 44px;
  animation: fbmarq 26s linear infinite;
  font-weight: 900;
  font-size: clamp(16px, 2.1vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #24364c;
}
.fb-marq .track span {
    display: inline-flex;
    gap: 44px;
    align-items: center;
    color: #183659;
}
.fb-marq .track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 13px;
}
@keyframes fbmarq {
  to {
    transform: translateX(-50%);
  }
}
.fb-cols {
  display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding: clamp(50px, 6vw, 84px) var(--pad) clamp(40px, 4vw, 56px);
    width: 100%;
    max-width: 100%;
}

.gxf-head .logo-svg{
  margin-bottom:40px
}

.fb-brand .logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  font-size: 20px;
  line-height: 0.9;
}
.fb-brand .logo small {
  display: block;
}
.fb-brand p {
  margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #76808d;
    font-weight: 500;
    max-width: 58ch;
    text-wrap: balance;
}
.fb-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5f6b78;
  margin-bottom: 16px;
}
.fb-col a {
  display: block;
  font-size: 14.5px;
  color: #aab4c0;
  font-weight: 600;
  padding: 6px 0;
  transition: 0.25s;
  cursor: pointer;
}
.fb-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}
/* address column */
.fb-addr .fb-addr-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.fb-addr .fb-addr-row svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fb-addr .fb-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
}
.fb-addr .fb-map svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fb-addr .fb-map .fb-ext {
  width: 13px;
  height: 13px;
  transition: transform 0.25s;
}
/* keep the icon-rows from jumping on hover */
.fb-addr .fb-addr-row:hover,
.fb-addr .fb-map:hover {
  padding-left: 0;
}
.fb-addr .fb-map:hover .fb-ext {
  transform: translate(2px, -2px);
}
.fb-bot {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: clamp(30px, 6vw, 40px) var(--pad) clamp(30px, 4vw, 40px);
}
.fb-bot .cpy,
.fb-bot .meta span,
.fb-bot .pol a,
.fb-bot .fb-dev {
  font-family: var(--mono);
  font-size: 12px;
  color: #5f6772;
}
.fb-bot .fb-dev {
  transition: color 0.25s;
}
.fb-bot .fb-dev:hover {
  color: var(--gold);
}
.fb-bot .meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.fb-bot .meta b {
  color: var(--gold);
  font-weight: 400;
}
.fb-bot .pol {
  display: flex;
  gap: 22px;
}
.fb-bot .pol a:hover {
  color: #fff;
}
@media (max-width: 920px) {
  .fb-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .fb-cols {
    grid-template-columns: 1fr;
  }
  .fb-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* comfortable touch targets */
  .fb-col a {
    padding: 10px 0;
  }
  .fb-bot .pol {
    gap: 18px;
  }
  .fb-bot .pol a {
    display: inline-block;
    padding: 8px 0;
  }
}

/* ===== custom cursor ===== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9600;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  margin: -3.5px 0 0 -3.5px;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.4px solid #fff;
  margin: -20px 0 0 -20px;
  transition:
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.35s,
    margin 0.35s;
}
.cursor-ring.hover {
  width: 74px;
  height: 74px;
  margin: -37px 0 0 -37px;
}
@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea,
  .card,
  .chip {
    cursor: none;
  }
}
@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ===== cinematic image reveal + parallax ===== */
.reveal-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-img.in {
  clip-path: inset(0 0 0 0);
}
.reveal-img img {
  transform: scale(1.2);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-img.in img {
  transform: scale(1);
}
[data-parallax] {
  will-change: transform;
}

/* ===== full-bleed parallax break ===== */
.fullbleed {
  position: relative;
  height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.fb-img {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}
.fb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fb-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 19, 31, 0.85) 0%,
    rgba(8, 19, 31, 0.45) 50%,
    rgba(8, 19, 31, 0.2) 100%
  );
}
.fb-content {
  position: relative;
  z-index: 2;
}
.fb-content .tag {
  color: var(--gold);
}
.fb-content h2 {
  font-size: clamp(38px, 6vw, 108px);
  margin-top: 20px;
  max-width: 16ch;
}
.fb-content h2 em {
  color: var(--gold);
  font-style: normal;
}

/* ===== QUOTES (centered editorial) ===== */
/* ===== MENSEN / FAMILIE ===== */
.people {
  background:
    radial-gradient(120% 90% at 85% -10%, #244a76 0%, rgba(36, 74, 118, 0) 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, #0b1a2b 100%);
  color: #fff;
  padding: clamp(74px, 10vw, 128px) 0;
}
.people .cijfers-head {
  margin-top: 0;
}
.people .cijfers-head h2 em {
  color: var(--gold);
  font-style: normal;
}
.people-lead {
  max-width: 114ch;
  margin: clamp(18px, 2.4vw, 30px) 0 0;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.6;
  font-weight: 500;
  color: #a9b6c6;
}
.ppl-grid {
  margin-top: clamp(44px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 40px);
}
.ppl-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ppl-card:hover {
  transform: translateY(-8px);
}
.ppl-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(155deg, #33506f 0%, #1d3450 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.4s ease;
}
.ppl-card:hover .ppl-media {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 213, 0, 0.5);
}
.ppl-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: grayscale(0.45) contrast(1.02) brightness(0.96);
  transition:
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}
.ppl-card:hover .ppl-media img {
  transform: scale(1.07);
  filter: grayscale(0) contrast(1) brightness(1);
}
/* soft scrim so an overlaid index number stays readable on any photo */
.ppl-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 19, 31, 0.5) 0%, rgba(9, 19, 31, 0) 32%);
  pointer-events: none;
  z-index: 1;
}
.ppl-idx {
  position: absolute;
  top: 12px;
  left: 15px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s ease;
}
.ppl-card:hover .ppl-idx {
  color: var(--gold);
}
/* decorative gold arc, top-left of each photo */
.ppl-arc {
  position: absolute;
  top: -48px;
  left: -30px;
  width: 104px;
  height: 104px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}
.ppl-ph {
  width: 40%;
  height: 40%;
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ppl-txt {
  padding: clamp(16px, 1.3vw, 22px) 4px 0;
}
.ppl-role {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}
.ppl-name {
  margin-top: 8px;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.ppl-bio {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 500;
  color: #98a5b5;
}
/* forward-looking statement band */
.ppl-statement {
  margin-top: clamp(48px, 6vw, 92px);
  padding-top: clamp(34px, 4vw, 54px);
  border-top: 1px solid rgba(255, 213, 0, 0.28);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  column-gap: clamp(30px, 5vw, 80px);
  row-gap: 18px;
  align-items: end;
}
.pst-kicker {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.pst-line {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
}
.pst-line em {
  color: var(--gold);
  font-style: normal;
}
.pst-sub {
  margin: 0;
  max-width: 70ch;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.62;
  font-weight: 500;
  color: #a9b6c6;
}
@media (max-width: 820px) {
  .ppl-statement {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
@media (max-width: 720px) {
  .ppl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(60px, 2.2vw, 40px);
  }

  .hero-row{
    margin-bottom: 60px;
  }
}
@media (max-width: 460px) {
  .ppl-grid {
    grid-template-columns: 1fr;
    max-width: 340px;

  }
}

.clients {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(64px, 9vw, 96px) 0;
  overflow: hidden;
}
.clients .shead {
  justify-content: center;
}
.clients-h {
  max-width: 20ch;
  margin: clamp(16px, 2.4vw, 30px) auto 0;
  text-align: center;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
}
.clients-h em {
  color: var(--gold);
  font-style: normal;
}
.clients-lead {
  max-width: 70ch;
  margin: 18px auto 0;
  text-align: center;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.55;
  font-weight: 500;
  color: #5c6875;
}
.logos {
  margin-top: clamp(40px, 5vw, 66px);
  overflow: hidden;
  /* soft fade at both edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.logos-track {
  display: flex;
  width: max-content;
  gap: clamp(16px, 2.4vw, 30px);
  animation: logos-scroll 130s linear infinite;
}
.logos:hover .logos-track {
  animation-play-state: paused;
}
/* JS drives the strip so it can also be dragged; the keyframes stay as the no-JS fallback */
.logos.js-drag .logos-track {
  animation: none;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
/* the site draws its own cursor, so only devices without one get a grab hint */
@media (hover: none) {
  .logos.js-drag .logos-track {
    cursor: grab;
  }
  .logos.js-drag.dragging .logos-track {
    cursor: grabbing;
  }
}
.logos.js-drag .logos-track img {
  -webkit-user-drag: none;
}
/* while dragging, the chips must not fight the pointer with their own hover lift */
.logos.js-drag.dragging .logo:hover {
  transform: none;
  box-shadow: 0 10px 26px rgba(12, 28, 46, 0.08);
}
.logos .logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 15vw, 200px);
  height: clamp(84px, 9vw, 108px);
  padding: 0 clamp(18px, 2vw, 30px);
  background: #fff;
  border: 1px solid rgba(12, 28, 46, 0.07);
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(12, 28, 46, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.logos .logo img {
  max-width: 100%;
  max-height: 56%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}
.logos .logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(12, 28, 46, 0.12);
}
.logos .logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}
/* logos that are white / neon on transparent: render as dark silhouette on the white chip */
.logos .logo--mono img {
  filter: brightness(0);
}
.logos .logo--mono:hover img {
  filter: brightness(0);
  opacity: 1;
}
@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - clamp(8px, 1.2vw, 15px)));
  }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
  .logos {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(2, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}
.modal.open {
  display: flex;
}
.mbox {
  width: min(960px, 100%);
  aspect-ratio: 16/9;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mbox p {
  color: #aebccd;
  text-align: center;
  padding: 30px;
  font-weight: 600;
  line-height: 1.6;
}
.mclose {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}


.subs .tag{
  margin-bottom: 40px;
}


/* mobile menu */
@media (max-width: 1080px) {
  .menu,
  .burger {
    display: none !important;
  }
}

/* ====== WIE DOET WAT ====== */
.wdw {
  position: relative;
    background: var(--paper);
    color: var(--navy);
    padding: clamp(50px, 12vh, 120px) 0 clamp(60px, 12vh, 120px);
    overflow: hidden;
}
.wdw::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      120% 80% at 50% -10%,
      rgba(27, 58, 97, 0.05),
      transparent 60%
    ),
    linear-gradient(rgba(27, 58, 97, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 58, 97, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    46px 46px,
    46px 46px;
}
.wdw-wrap {
  position: relative;
  max-width: 1720px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}
.wdw-head {
  text-align: center;
  margin-bottom: clamp(46px, 6vw, 88px);
}
.wdw-head .tag {
  color: #b08e00;
  justify-content: center;
}
.wdw-h {
  font-size: clamp(42px, 7vw, 104px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--navy-deep);
  margin-top: 18px;
}
.wdw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.2vw, 38px);
}

.wdw-card {
  position: relative;
  perspective: 1100px;
}
.wdw-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s;
  box-shadow: 0 18px 40px -24px rgba(8, 19, 31, 0.5);
}
.wdw-card.is-live .wdw-inner {
  transition: box-shadow 0.6s;
}
.wdw-card:hover .wdw-inner {
  box-shadow: 0 50px 90px -40px rgba(8, 19, 31, 0.7);
}

.wdw-media {
  position: relative;
  aspect-ratio: 4/3.3;
  overflow: hidden;
}
.wdw-img {
  position: absolute;
  top: -4%;
  left: -1%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transform: translate3d(var(--ix, 0), var(--iy, 0), 0) scale(1.02);
  filter: saturate(0.96);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s;
}
.wdw-card:hover .wdw-img {
  transform: translate3d(var(--ix, 0), var(--iy, 0), 0) scale(1.07);
  filter: saturate(1.05);
}
.wdw-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 19, 31, 0.45));
}

.wdw-tab {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: clamp(15px, 1.2vw, 21px);
  letter-spacing: -0.01em;
  padding: 13px 28px 16px;
  border-radius: 0 0 24px 0;
  transform: translateZ(60px);
}
.wdw-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wdw-card:hover .wdw-tab::after {
  transform: scaleX(1);
}

.wdw-frame {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: -1px;
  width: 60%;
  height: 72%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 70px 0;
  pointer-events: none;
  transform: translateZ(40px);
  transition:
    right 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.wdw-card:hover .wdw-frame {
  right: 9px;
  width: 63%;
}

.wdw-info {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(22px, 1.8vw, 32px) clamp(22px, 1.9vw, 34px)
    clamp(26px, 2.2vw, 36px);
  transform: translateZ(24px);
}
.wdw-tagrow {
  display: flex;
  gap: 13px;
  margin-bottom: 15px;
}
.wdw-tick {
  flex: 0 0 auto;
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
  align-self: stretch;
  min-height: 22px;
}
.wdw-tag {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.2;
}
.wdw-desc {
  color: #bccbdc;
  font-size: 14px;
  line-height: 1.62;
  margin-bottom: 22px;
}
.wdw-meta {
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}
.wdw-meta a,
.wdw-meta span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: #dbe5f0;
  text-decoration: none;
}
.wdw-meta a {
  transition: color 0.35s;
}
.wdw-meta a:hover {
  color: var(--gold);
}
.wdw-meta svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
}
.wdw-site {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}
.wdw-site:hover {
  color: var(--gold);
}
.wdw-site svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.4s;
}
.wdw-site:hover svg {
  transform: translate(3px, -3px);
}

.wdw-glow {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  transform: translateZ(70px);
  mix-blend-mode: screen;
  background: radial-gradient(
    360px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 213, 0, 0.2),
    rgba(255, 213, 0, 0.06) 30%,
    transparent 62%
  );
}
.wdw-card:hover .wdw-glow {
  opacity: 1;
}
.wdw-ring {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  transform: translateZ(72px);
  padding: 1.5px;
  background: radial-gradient(
    300px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 213, 0, 0.9),
    rgba(255, 213, 0, 0.15) 40%,
    transparent 60%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.wdw-card:hover .wdw-ring {
  opacity: 1;
}

@media (max-width: 1000px) {
  .wdw-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .wdw-card {
    perspective: none;
  }
  .wdw-inner {
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wdw-inner,
  .wdw-img,
  .wdw-frame,
  .wdw-glow,
  .wdw-ring {
    transition: none !important;
  }
  .wdw-inner {
    transform: none !important;
  }
}

/* ====== LIGHTBOX ====== */
.fcard-img,
.ew-ph img {
  cursor: zoom-in;
}
.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 9, 16, 0.92);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: clamp(20px, 5vw, 70px);
}
.lb.open {
  opacity: 1;
  visibility: visible;
}
.lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.lb.open .lb-img {
  transform: scale(1);
}
.lb-close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.lb-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: rotate(90deg);
}
@media (prefers-reduced-motion: reduce) {
  .lb,
  .lb-img,
  .lb-close,
  .wdw-img,
  .wdw-frame {
    transition: none;
  }
}

/* ===== IN BEELD * zoom parallax ===== */
.zp {
  position: relative;
  background: var(--navy-night);
  color: #fff;
}
.zp-intro {
    position: relative;
    z-index: 2;
    padding-top: clamp(72px, 10vw, 120px);
    padding-bottom: clamp(44px, 10vw, 120px);
}
.zp-intro .tag {
  color: var(--gold);
}
.zp-title {
  font-size: clamp(40px, 8vw, 118px);
  margin: 22px 0 0;
  color: #fff;
  line-height: 0.96;
}
.zp-title em {
  font-style: normal;
  color: var(--gold);
}
.zp-sub {
  margin-top: clamp(18px, 2.2vw, 26px);
  max-width: 52ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.62;
  color: #c2d0e0;
  font-weight: 500;
}
.zp-scroll {
  position: relative;
  height: 300vh;
  overflow: clip; /* clip (not hidden): keeps sticky working, stops scaled layers widening the page */
}
.zp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh; /* stable on mobile while the browser UI shows/hides */
  margin-top: 6vh;
  overflow: clip;
  contain: layout paint;
}
.zp-el {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  will-change: transform;
  transform-origin: 50% 50%;
}
.zp-imgwrap {
  position: relative;
  width: 25vw;
  height: 25vh;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.85);
}
.zp-imgwrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transform: translateZ(0);
}
.zp-imgwrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.zp-el:nth-child(1) .zp-imgwrap {
  width: 25vw;
  height: 25vh;
}
.zp-el:nth-child(2) .zp-imgwrap {
  top: -30vh;
  left: 5vw;
  width: 35vw;
  height: 30vh;
}
.zp-el:nth-child(3) .zp-imgwrap {
  top: -10vh;
  left: -25vw;
  width: 20vw;
  height: 45vh;
}
.zp-el:nth-child(4) .zp-imgwrap {
  left: 27.5vw;
  width: 25vw;
  height: 25vh;
}
.zp-el:nth-child(5) .zp-imgwrap {
  top: 27.5vh;
  left: 5vw;
  width: 20vw;
  height: 25vh;
}
.zp-el:nth-child(6) .zp-imgwrap {
  top: 27.5vh;
  left: -22.5vw;
  width: 30vw;
  height: 25vh;
}
.zp-el:nth-child(7) .zp-imgwrap {
  top: 22.5vh;
  left: 25vw;
  width: 15vw;
  height: 15vh;
}
.zp-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fa3bd;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.zp-hint i {
  width: 1px;
  height: 26px;
  background: linear-gradient(var(--gold), transparent);
  display: block;
}
@media (max-width: 760px) {
  /* Mobile: one hero tile in the centre that zooms to full-screen, four small corner tiles that grow & fade out (see JS) */
  .zp-scroll {
    height: 200vh;
  }
  .zp-el .zp-imgwrap {
    border-radius: 10px;
    box-shadow: 0 16px 34px -22px rgba(0, 0, 0, 0.8);
  }
  /* hero: the "Bouw jij mee?" team photo (8th layer) */
  .zp-el:nth-child(8) { z-index: 2; }
  .zp-el:nth-child(8) .zp-imgwrap { top: 2vh; left: 0; width: 64vw; height: 40vh; }
  /* corners */
  .zp-el:nth-child(1) .zp-imgwrap { top: -30vh; left: -30vw; width: 30vw; height: 17vh; }
  .zp-el:nth-child(2) .zp-imgwrap { top: -30vh; left:  30vw; width: 30vw; height: 17vh; }
  .zp-el:nth-child(4) .zp-imgwrap { top:  33vh; left: -30vw; width: 30vw; height: 17vh; }
  .zp-el:nth-child(6) .zp-imgwrap { top:  33vh; left:  30vw; width: 30vw; height: 17vh; }
  /* not used on small screens */
  .zp-el:nth-child(3),
  .zp-el:nth-child(5),
  .zp-el:nth-child(7) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .zp-scroll {
    height: auto;
  }
  .zp-sticky {
    position: static;
    height: auto;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 10px 0 30px;
  }
  .zp-el {
    position: relative;
    inset: auto;
    display: block;
    width: clamp(220px, 30vw, 360px);
    transform: none !important;
  }
  .zp-el .zp-imgwrap {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 220px !important;
  }
  .zp-hint {
    display: none;
  }
}

/* ----- GROEP + BEDRIJVEN merged on light ----- */
.intro#groep {
  background: var(--paper);
  color: var(--ink);
  padding-bottom: clamp(26px, 3.4vw, 48px);
}
.intro#groep .idx {
  color: #b08e00 !important;
}
.intro#groep h2.big {
  color: var(--navy);
}
.intro#groep h2.big em {
  color: var(--gold);
}
.intro#groep .intro-2 .body {
  color: #4a5663;
}
.intro#groep .brandlist {
  border-top-color: rgba(12, 28, 46, 0.16);
}
.intro#groep .brandlist a {
  border-bottom-color: rgba(12, 28, 46, 0.12);
}
.intro#groep .brandlist a:hover {
  background: linear-gradient(90deg, rgba(255, 213, 0, 0.14), transparent);
}
.intro#groep .brandlist .bname {
  color: var(--navy);
}
.intro#groep .brandlist .bspec {
  color: #7a8696;
}
.intro#groep .brandlist .arr {
  color: var(--navy);
}
.subs#bedrijven {
  background: var(--paper);
  color: var(--ink);
  padding-top: 0;
  padding-bottom: 0;
}

.subs#bedrijven .subtop p {
  color: #4a5663;
}
.subs#bedrijven .idx {
  color: #b08e00 !important;
}

/* ----- text gradient scroll (word fill) ----- */
.tgs {
  --tgs-dim: 0.2;
}
.tgs .tgs-w {
  opacity: var(--tgs-dim);
  will-change: opacity;
  transition: opacity 0.12s linear;
}
@media (prefers-reduced-motion: reduce) {
  .tgs .tgs-w {
    opacity: 1 !important;
  }
}

@media (max-width: 768px) {
  .zp-intro {
      padding-bottom: clamp(0px, 10vw, 0px);
  }

   .wdw {
    padding: clamp(60px, 12vh, 70px) 0 clamp(60px, 12vh, 70px);
  }

  .zp-sticky {
      margin-top: 0vh;
  }
}

/* ===== groepsfilm modal video ===== */
.mvid{width:100%;height:100%;object-fit:cover;border-radius:14px;display:block;background:#000}
.mplay{position:absolute;inset:0;margin:auto;width:clamp(64px,9vw,92px);height:clamp(64px,9vw,92px);padding:0;border:0;background:none;cursor:pointer;display:grid;place-items:center;transition:transform .25s ease,opacity .25s ease}
.mplay svg{width:100%;height:100%;overflow:visible;filter:drop-shadow(0 10px 30px rgba(0,0,0,.45))}
.mplay circle{fill:#FFD500;opacity:.96;transition:fill .2s}
.mplay path{fill:#08131f}
.mplay:hover{transform:scale(1.08)}
.mbox.playing .mplay{opacity:0;pointer-events:none;transform:scale(.55)}

/* film modal — блокуємо скрол, суцільний фон замість блюру, більший відео-бокс */
html.lock, body.lock{overflow:hidden}
.modal{background:rgba(2,10,10,.96);backdrop-filter:none;-webkit-backdrop-filter:none}
.mbox{width:min(1280px,92vw)}