:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.12);
  --font-body: "Outfit", system-ui, sans-serif;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --cookie-bar-h: 0px;
  --fab-clearance: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-bottom: var(--cookie-bar-h);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.section-pad {
  padding-inline: clamp(1.25rem, 5.5vw, 5.5rem);
}

.page-pad {
  padding-top: 8.5rem;
  padding-bottom: 2.5rem;
}

body.home .page-pad {
  padding-top: 7.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.muted {
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

.muted-sm {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.narrow {
  max-width: 28rem;
}

.lede {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.62rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-sm {
  height: 2.25rem;
  padding-inline: 0.9rem;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: #e8e8e8;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

body.home .site-header:not(.is-solid) {
  background: transparent;
  border-bottom: 1px solid transparent;
}

body.home .site-header:not(.is-solid) .monitor-bar {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: transparent;
}

body.home .site-header:not(.is-solid) .nav-bar {
  background: transparent;
}

body:not(.home) .site-header,
.site-header.is-solid {
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.monitor-bar {
  border-bottom: 1px solid var(--line);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.monitor-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2rem;
}

.monitor-bar__left {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.rec {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.rec-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: #fff;
  animation: recBlink 1.4s ease-in-out infinite;
}

@keyframes recBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.timecode {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
  gap: 1rem;
}

.brand img {
  height: 2.65rem;
  width: auto;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.08em;
}

.primary-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  gap: 0.15rem;
}

.primary-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid transparent;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: none;
  gap: 0.5rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.45rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.58rem;
  cursor: pointer;
}

.menu-toggle__icon {
  width: 0.9rem;
  height: 1px;
  background: #fff;
  box-shadow: 0 4px 0 #fff, 0 -4px 0 #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: #000;
  padding: 6rem 1.25rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0 2rem;
}

.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: 0.04em;
}

.hide-sm {
  display: none;
}
.show-sm {
  display: block;
  margin: 0;
}
.hide-md {
  display: none;
}

@media (min-width: 640px) {
  .hide-sm {
    display: inline;
  }
  .show-sm {
    display: none;
  }
}

@media (min-width: 768px) {
  .hide-md {
    display: inline;
  }
}

/* Desktop nav only when there is room for brand + links + actions */
@media (min-width: 1180px) {
  .primary-nav,
  .header-actions {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-bar {
    height: 4rem;
  }
}

/* Hero parallax */
.hero-parallax {
  position: relative;
  height: 180vh;
  background: #000;
}

.hero-parallax__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
}

@supports (height: 100dvh) {
  .hero-parallax__sticky {
    height: 100dvh;
  }
}

.hero-parallax__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: center;
  will-change: transform;
}

.hero-parallax__media {
  position: absolute;
  /* Extra overscan: video blijft edge-to-edge onder de header, ook bij parallax */
  inset: -8%;
  width: 116%;
  height: 116%;
  will-change: transform;
}

.hero-parallax__media .hero-video,
.hero-parallax__media .hero-fallback,
.hero-parallax__media .giga-hero-yt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  filter: grayscale(0.18) contrast(1.06) saturate(0.92) brightness(0.92);
  will-change: transform;
}

@media (max-width: 768px) {
  .hero-parallax__media {
    inset: -12%;
    width: 124%;
    height: 124%;
  }

  .hero-video {
    object-position: center 42%;
  }
}

.hero-fallback {
  background: radial-gradient(ellipse at 50% 30%, #1a1a1a, #000 70%);
}

.hero-grade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.5) 100%),
    /* Lichtere top — video zichtbaar achter monitor-bar */
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 22%, transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 32%, transparent 58%),
    linear-gradient(135deg, rgba(8, 12, 22, 0.28) 0%, transparent 45%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-scroll-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

.cinema-bar {
  position: absolute;
  inset-inline: 0;
  z-index: 15;
  height: clamp(0.4rem, 1vw, 0.7rem);
  background: #000;
  pointer-events: none;
}
.cinema-bar--top {
  top: 0;
}
.cinema-bar--bottom {
  bottom: 0;
}

.hero-parallax__ui {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-block: 5.5rem 2.5rem;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-meta p {
  margin: 0;
}

.hero-parallax__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__logo {
  will-change: transform;
}

.hero__logo img {
  width: min(72vw, 22rem);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.45));
}

@media (min-width: 768px) {
  .hero__logo img {
    width: min(60vw, 26rem);
  }
}

.hero-copy {
  margin-top: 1.75rem;
  max-width: 28rem;
}

.hero-copy__title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
}

.hero-copy .muted {
  margin: 0.75rem auto 0;
  max-width: 22rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.scroll-cue {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Film marquee */
.film-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #050505;
  padding-block: 0.85rem;
}

.film-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.film-marquee__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.film-marquee .dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .film-marquee__track {
    animation: none;
  }
  .scroll-line {
    animation: none;
  }
}

/* Sections */
.section-block {
  padding-block: 4.5rem;
}
@media (min-width: 768px) {
  .section-block {
    padding-block: 6rem;
  }
}
.section-border {
  border-top: 1px solid var(--line);
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.section-intro {
  max-width: 28rem;
  margin-bottom: 2.75rem;
}

.service-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-tile {
  position: relative;
  min-height: 18rem;
  border: 1px solid var(--line);
  overflow: hidden;
  display: block;
  transition: border-color 0.3s ease;
}
.service-tile:hover {
  border-color: rgba(255, 255, 255, 0.35);
}
.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7);
  opacity: 0.5;
  transition: 0.45s ease;
}
.service-tile:hover img {
  transform: scale(1.05);
  filter: grayscale(0.35);
  opacity: 0.7;
}
.service-tile__body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 18rem;
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 70%);
}
.service-tile__top {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.display-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}
.service-tile h3 {
  font-size: 2.4rem;
}
.service-tile p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.more {
  margin-top: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .process-section .section-intro {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 2rem;
  }
  .process-grid {
    gap: 0;
    max-width: 19.5rem;
    margin-inline: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.015);
  }
  .process-grid li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 1.2rem 1.1rem 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .process-grid li:last-child {
    border-bottom: 0;
  }
  .process-grid li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.4rem;
    z-index: 1;
    width: 0.45rem;
    height: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: #000;
    transform: translateX(-50%) rotate(45deg);
  }
  .process-step {
    margin-bottom: 0.65rem;
  }
  .process-grid h3 {
    font-size: 1.55rem;
    line-height: 1;
  }
  .process-grid p {
    margin-top: 0.35rem;
    max-width: 14rem;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .process-grid::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0.7rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
  }
}
.process-step {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #000;
  font-family: ui-monospace, monospace;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.85rem;
}
.process-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.process-grid p {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Why */
.why-section {
  position: relative;
  overflow: hidden;
}
.why-watermark {
  position: absolute;
  right: -0.5rem;
  top: 1rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 16rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}
.why-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }
}
.why-intro .dim {
  color: rgba(255, 255, 255, 0.45);
}
.why-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.why-meta dt {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.why-meta dd {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: ui-monospace, monospace;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.why-list li {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto 1fr;
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
@media (min-width: 768px) {
  .why-list li {
    grid-template-columns: 4.5rem 1fr 1.1fr;
    align-items: center;
  }
}
.why-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.why-list p {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  max-width: 28rem;
}
@media (min-width: 768px) {
  .why-list p {
    grid-column: auto;
  }
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.faq-list details {
  border: 1px solid var(--line);
  margin-bottom: 0.25rem;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq-list details[open] .faq-plus {
  transform: rotate(45deg);
}
.faq-list details[open] {
  border-color: rgba(255, 255, 255, 0.3);
}
.faq-list details p {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.home-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: 5.5rem;
}
.home-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-cta__bg .hero-video,
.home-cta__bg .giga-hero-yt {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-cta__veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.home-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
}

/* Portfolio hero — call-sheet / set-monitor slate */
.pf-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: clamp(22rem, 58vh, 34rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #050505;
}
.pf-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.pf-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  filter: grayscale(1) contrast(1.15) brightness(0.55);
  animation: pf-hero-drift 28s ease-in-out infinite alternate;
}
.pf-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}
.pf-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.pf-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 2rem;
}
.pf-hero__slate {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: pf-hero-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pf-hero__rail {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pf-hero__rail p {
  margin: 0;
}
.pf-hero__rail p:nth-child(2) {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}
.pf-hero__rail p:nth-child(3) {
  text-align: right;
}
.pf-hero__rail--bottom {
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.pf-hero__rail-rec {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.7) !important;
}
.pf-hero__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #e10600;
  box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.55);
  animation: pf-hero-pulse 1.6s ease-out infinite;
}
.pf-hero__body {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  align-items: end;
}
@media (min-width: 900px) {
  .pf-hero__body {
    grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.7fr);
    gap: 2.5rem;
  }
}
.pf-hero__eyebrow {
  margin-bottom: 0.65rem;
  opacity: 0.85;
}
.pf-hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
}
.pf-hero__title span {
  display: block;
}
.pf-hero__title span:last-child {
  color: rgba(255, 255, 255, 0.78);
}
.pf-hero__lede {
  margin: 1.1rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.98rem;
  line-height: 1.55;
}
.pf-hero__meter {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: clamp(1rem, 2.5vw, 1.75rem);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 899px) {
  .pf-hero__meter {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 0;
    padding-top: 1.25rem;
  }
}
.pf-hero__meter-label {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.24em;
  font-size: 0.58rem;
  text-transform: uppercase;
}
.pf-hero__meter-value {
  margin: 0;
  font-family: var(--font-display, "Bebas Neue", Impact, sans-serif);
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  line-height: 0.8;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}
.pf-hero__meter-sub {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  text-transform: uppercase;
}
.pf-hero__meter-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.28rem;
  margin-top: 1.1rem;
  height: 1.6rem;
}
.pf-hero__meter-bars span {
  display: block;
  width: 0.28rem;
  background: rgba(255, 255, 255, 0.35);
  transform-origin: bottom;
  animation: pf-hero-eq 1.1s ease-in-out infinite;
}
.pf-hero__meter-bars span:nth-child(1) { height: 35%; animation-delay: 0s; }
.pf-hero__meter-bars span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.pf-hero__meter-bars span:nth-child(3) { height: 48%; animation-delay: 0.3s; }
.pf-hero__meter-bars span:nth-child(4) { height: 90%; animation-delay: 0.45s; }

@keyframes pf-hero-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pf-hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, 1%, 0); }
}
@keyframes pf-hero-pulse {
  0% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.55); }
  70% { box-shadow: 0 0 0 0.45rem rgba(225, 6, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0); }
}
@keyframes pf-hero-eq {
  0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .pf-hero__bg img,
  .pf-hero__dot,
  .pf-hero__meter-bars span,
  .pf-hero__slate {
    animation: none;
  }
}

.pf-grid-wrap {
  padding-bottom: 4rem;
}

.pf-filters {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.pf-filters__group {
  display: grid;
  gap: 0.65rem;
}
.pf-filters__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
}
.pf-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
@media (max-width: 640px) {
  .pf-filters__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .pf-chip {
    flex: 0 0 auto;
  }
}
.pf-chip {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}
.pf-chip:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.pf-chip.is-active {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.pf-empty {
  text-align: center;
  padding: 2rem 0 1rem;
}
.portfolio-card__date {
  color: rgba(255, 255, 255, 0.65);
}

.portfolio-grid {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
@media (min-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

.portfolio-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  background: #0a0a0a;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s ease;
}
.portfolio-card:hover,
.portfolio-card:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  outline: none;
}
.portfolio-card.is-hero {
  aspect-ratio: 16 / 10;
}
@media (min-width: 640px) {
  .portfolio-card.is-hero { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .portfolio-card.is-hero {
    grid-row: span 2;
    min-height: 22rem;
    aspect-ratio: auto;
  }
}

.portfolio-card__media {
  position: absolute;
  inset: 0;
  display: block;
}
.portfolio-card__media img,
.portfolio-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.04);
  transition: transform 0.6s ease, filter 0.45s ease;
}
.portfolio-card__placeholder {
  display: block;
  background: radial-gradient(circle at 40% 30%, #222, #050505);
}
.portfolio-card:hover .portfolio-card__media img,
.portfolio-card:focus-visible .portfolio-card__media img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05);
}
.portfolio-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 70%);
  pointer-events: none;
}
.portfolio-card__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.portfolio-card:hover .portfolio-card__play,
.portfolio-card:focus-visible .portfolio-card__play {
  opacity: 1;
}
.portfolio-card__play-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.65);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
}
.portfolio-card__play-icon::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.75rem;
  border-color: transparent transparent transparent #fff;
}
.portfolio-card__meta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  padding: 1rem 1rem 1.1rem;
  pointer-events: none;
}
.portfolio-card.is-hero .portfolio-card__meta {
  padding: 1.25rem 1.35rem 1.4rem;
}
.portfolio-card__title {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}
.portfolio-card.is-hero .portfolio-card__title {
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.portfolio-card__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.portfolio-card__dur {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.2rem 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.12em;
  pointer-events: none;
}
.portfolio-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.2rem 0.45rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.16em;
  pointer-events: none;
}

.portfolio-more {
  margin-top: 2rem;
  text-align: center;
}
.portfolio-more__rest {
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.4);
}

.portfolio-modal[hidden] { display: none; }
.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.portfolio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}
.portfolio-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(100dvh - 1rem, 100%);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000;
  overflow: auto;
}
.portfolio-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0.85rem;
}
.portfolio-modal__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}
.portfolio-modal__close {
  background: transparent;
  border: 0;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.62rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.7;
}
.portfolio-modal__close:hover { opacity: 1; }
.portfolio-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}
.portfolio-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.portfolio-modal__info {
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--line);
}
.portfolio-modal__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.portfolio-modal__sub {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.4);
}

.pf-cta {
  margin-top: 3.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .pf-cta { padding: 2.5rem; }
}
.pf-cta .headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.pf-cta .muted {
  margin: 0.85rem auto 0;
  max-width: 28rem;
}
.pf-cta .muted a:hover { color: #fff; }
.pf-cta .btn { margin-top: 1.5rem; }

/* Contact */
.contact-shell {
  margin-top: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), transparent);
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.contact-wizard {
  max-width: 48rem;
  margin-inline: auto;
}
.wizard-steps {
  text-align: center;
  margin-bottom: 2rem;
}
.wizard-steps ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.wizard-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.wizard-steps li span {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: ui-monospace, monospace;
}
.wizard-steps li.is-active {
  color: #fff;
}
.wizard-steps li.is-active span {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.wizard-steps li.is-done span {
  border-color: rgba(255, 255, 255, 0.5);
}
.step-count {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.35);
}
.panel-title {
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
}
.wizard-panel > .muted {
  text-align: center;
}
.topic-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .topic-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.topic {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
  padding: 1rem;
  min-height: 5.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.topic[aria-checked="true"] {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.topic-radio {
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.topic[aria-checked="true"] .topic-radio {
  border-color: #000;
  box-shadow: inset 0 0 0 3px #000;
}
.topic strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
}
.topic small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  opacity: 0.55;
}
.wizard-panel label {
  display: block;
  margin-top: 1rem;
}
.wizard-panel label span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.wizard-panel input,
.wizard-panel textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
  color: #fff;
  padding: 0.75rem 0.9rem;
  outline: none;
  font-size: 16px;
}
.wizard-panel input:focus,
.wizard-panel textarea:focus {
  border-color: #fff;
}
.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.wizard-actions .btn {
  flex: 1 1 auto;
  min-width: 8rem;
}
.wizard-error {
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.875rem;
}
.wizard-success {
  padding: 1.5rem 0 0.5rem;
}
.wizard-success .headline {
  margin-bottom: 0.5rem;
}
.contact-details {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-details {
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact-details .label {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 0.4rem;
}

.legal-page {
  max-width: 48rem;
}
.legal-updated {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.35);
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0 0;
  padding-block: 1rem;
  border-block: 1px solid var(--line);
}
.legal-nav a {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.45rem 0.75rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.2s ease;
}
.legal-nav a:hover {
  border-color: #fff;
  color: #fff;
}
.legal-nav a[aria-current="page"] {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.legal-prose {
  max-width: 42rem;
  margin-top: 2.25rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  font-size: 0.925rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.legal-prose > *:first-child {
  margin-top: 0;
}
.legal-prose p {
  margin: 0 0 1rem;
}
.legal-prose a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}
.legal-prose a:hover {
  text-decoration-color: #fff;
}
.legal-prose h2 {
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin: 2.5rem 0 0.75rem;
}
.legal-prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.legal-prose ul,
.legal-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-prose li {
  margin-bottom: 0.45rem;
}
.legal-prose strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.legal-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.7);
}
.legal-prose table {
  width: 100%;
  min-width: 32rem;
  margin: 1rem 0 1.25rem;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}
.legal-prose th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 0.75rem 0.55rem 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.legal-prose td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0.75rem 0.75rem 0;
  vertical-align: top;
  word-break: break-word;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #000;
}
.footer-sprockets {
  height: 0.75rem;
  border-bottom: 1px solid var(--line);
  background-image: radial-gradient(circle at 10px 50%, #1c1c1c 0 3px, transparent 3.5px);
  background-size: 24px 100%;
  background-color: #050505;
}
.footer-cta {
  padding-block: 2.75rem 3rem;
}
@media (min-width: 768px) {
  .footer-cta {
    padding-block: 3.5rem;
  }
}
.end-slate {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%),
    rgba(255, 255, 255, 0.02);
}
.end-slate__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-family: ui-monospace, monospace;
}
.end-slate__body {
  display: grid;
  gap: 1.65rem;
  padding: 2rem 1.25rem 2.15rem;
  justify-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .end-slate__body {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    justify-items: stretch;
    text-align: left;
    gap: 2rem;
    padding: 3rem 2rem;
  }
}
.end-slate__copy {
  max-width: 22rem;
}
.end-slate__copy .headline {
  margin: 0.35rem 0 0.7rem;
  line-height: 0.95;
}
.end-slate__copy .muted {
  margin: 0 auto;
  max-width: 20rem;
  line-height: 1.45;
}
@media (min-width: 1024px) {
  .end-slate__copy {
    max-width: none;
  }
  .end-slate__copy .muted {
    margin: 0;
    max-width: 28rem;
  }
}
.end-slate__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 20rem;
}
@media (min-width: 1024px) {
  .end-slate__actions {
    align-items: flex-end;
    max-width: none;
    width: auto;
  }
}
.end-slate__actions .btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 1024px) {
  .end-slate__actions .btn {
    width: auto;
    min-width: 12.5rem;
  }
}
.end-slate__mail {
  margin: 0.35rem 0 0;
  word-break: break-word;
}
.footer-credits {
  padding-block: 2rem 2.25rem;
  border-top: 1px solid var(--line);
}
.footer-credits__slate {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%),
    rgba(255, 255, 255, 0.015);
  overflow: hidden;
}
.footer-credits__slate::before,
.footer-credits__slate::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0.7rem;
  pointer-events: none;
  background-image: radial-gradient(circle at 50% 10px, #1a1a1a 0 2.5px, transparent 3px);
  background-size: 100% 18px;
  background-color: #050505;
  border-color: rgba(255, 255, 255, 0.1);
}
.footer-credits__slate::before {
  left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-credits__slate::after {
  right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-credits__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.85rem;
  padding: 0.65rem 1.35rem 0.65rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.footer-credits__rec {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-credits__top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1.5rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer-credits {
    padding-block: 3rem;
  }
  .footer-credits__top {
    justify-content: flex-start;
    padding: 1.65rem 1.75rem 1.75rem 1.85rem;
  }
}
.footer-credits__logo-link {
  display: inline-block;
  line-height: 0;
}
.footer-logo {
  height: 4.25rem;
  width: auto;
  max-width: min(78vw, 17rem);
}
@media (min-width: 768px) {
  .footer-logo {
    height: 4.75rem;
    max-width: 20rem;
  }
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1024px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.1rem 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col:nth-child(even) {
  border-right: 0;
}
.footer-col:nth-last-child(-n + 2) {
  border-bottom: 0;
}
@media (min-width: 768px) {
  .footer-col {
    align-items: flex-start;
    text-align: left;
    padding: 1.35rem 1.25rem 1.5rem 1.5rem;
  }
  .footer-col:nth-child(even) {
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-col {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.75rem 1.35rem;
  }
  .footer-col:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.35rem;
  }
  .footer-col:last-child {
    border-right: 0;
  }
  .footer-col:first-child {
    padding-left: 1.85rem;
  }
  .footer-col:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}
.col-label {
  color: rgba(255, 255, 255, 0.32);
  margin: 0 0 0.65rem;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
}
@media (min-width: 768px) {
  .col-label {
    margin-bottom: 1rem;
  }
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 768px) {
  .footer-col ul {
    align-items: flex-start;
    gap: 0;
  }
}
.footer-col li + li {
  margin-top: 0;
}
@media (min-width: 768px) {
  .footer-col li + li {
    margin-top: 0.55rem;
  }
}
.footer-col a {
  display: inline-block;
  padding: 0.1rem 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.58);
  }
}
.footer-col a:hover {
  color: #fff;
}
.footer-bar {
  padding-block: 1.15rem 1.35rem;
  border-top: 1px solid transparent;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 18%, rgba(255, 255, 255, 0.12) 82%, transparent 100%) top / 100% 1px no-repeat;
}
.footer-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12px 50%, rgba(255, 255, 255, 0.12) 0 1.5px, transparent 2px),
    radial-gradient(circle at calc(100% - 12px) 50%, rgba(255, 255, 255, 0.12) 0 1.5px, transparent 2px),
    rgba(255, 255, 255, 0.02);
  background-size: 100% 14px, 100% 14px, auto;
  background-repeat: repeat-y, repeat-y, no-repeat;
}
.footer-bar__mark {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.footer-bar__rec {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-bar__sep {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}
.footer-bar__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-bar__legal a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bar__legal a:hover {
  color: #fff;
}
.footer-bar__slash {
  color: rgba(255, 255, 255, 0.22);
}
@media (min-width: 768px) {
  .footer-bar__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.35rem;
    text-align: left;
  }
  .footer-bar__mark {
    justify-content: flex-start;
  }
  .footer-bar__legal {
    justify-content: flex-end;
  }
}

.site-main {
  min-height: 60vh;
}

/* —— Over Ons —— */
.about-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #000;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}
.about-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45) 45%, #000);
}
.about-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 3.5rem;
}
.about-hero__sheet {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.45);
}
.about-hero__sheet p {
  margin: 0;
}
.about-hero__title {
  font-size: clamp(2.6rem, 14vw, 8.5rem);
  max-width: 100%;
}
.about-hero__claim {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.about-manifest {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .about-manifest {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    padding-block: 6rem;
    align-items: start;
  }
}
.about-manifest__copy .headline {
  font-size: clamp(2rem, 5vw, 3.6rem);
}
.about-manifest__body {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}
.about-manifest__body p {
  margin: 0;
}
.about-manifest__base {
  margin-top: 0.5rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 0.2em;
}
.about-manifest__media {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-manifest__media {
    min-height: 32rem;
    position: sticky;
    top: 7rem;
  }
}
.about-manifest__parallax {
  position: absolute;
  inset-inline: 0;
  top: -10%;
  height: 120%;
  will-change: transform;
}
.about-manifest__parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
}
.about-manifest__ring {
  pointer-events: none;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.about-manifest__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.about-credits {
  border-block: 1px solid var(--line);
  background: #050505;
}
.about-credits__rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-block: 0;
  overflow: visible;
}
@media (min-width: 900px) {
  .about-credits__rail {
    display: flex;
    overflow-x: auto;
  }
}
.about-credits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 0.85rem 1.45rem;
  border-left: 1px solid transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.about-credits__item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.about-credits__item:nth-last-child(-n + 2) {
  border-bottom: 0;
}
@media (min-width: 900px) {
  .about-credits__item {
    flex: 1;
    align-items: flex-start;
    text-align: left;
    min-width: 11rem;
    padding: 2rem 1.25rem;
    border-right: 0;
    border-bottom: 0;
  }
  .about-credits__item:nth-child(odd) {
    border-right: 0;
  }
  .about-credits__item:not(:first-child) {
    border-left-color: var(--line);
  }
}
.about-credits__item .mono {
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}
.about-credits__role {
  margin: 0.45rem 0 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.about-credits__item > p:last-child {
  margin: 0;
  max-width: 11rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.42);
}
@media (min-width: 900px) {
  .about-credits__item > p:last-child {
    max-width: none;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
  }
}

.about-stills {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
  .about-stills {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-stills__item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}
.about-stills__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.7s ease;
}
.about-stills__item:hover img {
  transform: scale(1.05);
}
.about-stills__item figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.about-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.about-process li {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--line);
  background: #080808;
  padding: 1.25rem;
  transition: border-color 0.25s ease;
}
.about-process li:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  .about-process li {
    grid-template-columns: 5.5rem 10rem 1fr;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
  }
}
.about-process__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}
.about-process li:hover .about-process__num {
  color: rgba(255, 255, 255, 0.5);
}
.about-process h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-process p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.about-end {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.about-end__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(1) contrast(1.05);
}
.about-end__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.78) 45%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(ellipse 70% 55% at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
}
.about-end__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  padding-block: 4.25rem;
  justify-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .about-end__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: stretch;
    text-align: left;
    gap: 2rem;
    padding-block: 7rem;
  }
}
.about-end__copy {
  max-width: 22rem;
}
@media (min-width: 768px) {
  .about-end__copy {
    max-width: none;
  }
}
.about-end__copy .headline {
  margin: 0.35rem 0 0.7rem;
}
.about-end__lede {
  margin: 0 auto;
  max-width: 18rem;
  line-height: 1.45;
}
@media (min-width: 768px) {
  .about-end__lede {
    margin: 0;
    max-width: 24rem;
  }
}
.about-end__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 22rem;
  padding: 1.25rem 1.15rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (min-width: 768px) {
  .about-end__actions {
    align-items: flex-end;
    text-align: right;
    max-width: none;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.about-end__mail {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5.2vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  word-break: break-word;
  transition: opacity 0.2s ease;
}
.about-end__mail:hover {
  opacity: 0.7;
}
.about-end__phone {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.about-end__phone:hover {
  color: #fff;
}
.about-end__actions .btn {
  margin-top: 0.85rem;
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-end__actions .btn {
    margin-top: 1.25rem;
    width: auto;
  }
}

/* —— Diensten —— */
.dept-hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #000;
}
.dept-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}
.dept-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.55) 45%, #000);
}
.dept-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
}
.dept-hero__sheet {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.45);
}
.dept-hero__sheet p { margin: 0; }
.dept-hero__title {
  font-size: clamp(2.6rem, 14vw, 7.5rem);
  max-width: 100%;
}
.dept-hero__title .dim { color: rgba(255, 255, 255, 0.25); }
.dept-hero__lead {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.dept-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.dept-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s ease;
}
.dept-jump a:hover {
  border-color: #fff;
  color: #fff;
}
.dept-jump .mono { color: rgba(255, 255, 255, 0.4); }

.dept-chapter {
  border-top: 1px solid var(--line);
  scroll-margin-top: 6.5rem;
}
.dept-chapter__grid {
  display: grid;
}
@media (min-width: 1024px) {
  .dept-chapter__grid {
    grid-template-columns: 5fr 7fr;
  }
  .dept-chapter.is-flip .dept-chapter__media { order: 2; }
  .dept-chapter.is-flip .dept-chapter__copy { order: 1; }
}
.dept-chapter__media {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  background: #0a0a0a;
}
@media (min-width: 1024px) {
  .dept-chapter__media {
    min-height: min(80svh, 40rem);
  }
}
.dept-chapter__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.7s ease;
  position: absolute;
  inset: 0;
}
.dept-chapter__media:hover img {
  transform: scale(1.03);
}
.dept-chapter__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}
@media (min-width: 1024px) {
  .dept-chapter__media::after {
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.4));
  }
  .dept-chapter.is-flip .dept-chapter__media::after {
    background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.4));
  }
}
.dept-chapter__media-meta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}
.dept-chapter__big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}
.dept-chapter__media-meta .mono {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.28em;
}

.dept-chapter__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .dept-chapter__copy { padding-block: 4rem; }
}
@media (min-width: 1024px) {
  .dept-chapter__copy { padding-block: 5rem; }
}
.dept-chapter__kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.dept-chapter__kicker .mono { color: rgba(255, 255, 255, 0.35); letter-spacing: 0.24em; }
.dept-chapter__kicker .rule {
  display: block;
  height: 1px;
  width: 4rem;
  max-width: 4rem;
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
}
.dept-chapter__copy .headline {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}
.dept-chapter__heading {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.dept-chapter__body {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

.dept-points {
  list-style: none;
  margin: 2.5rem 0 2rem;
  padding: 0;
  border-block: 1px solid var(--line);
}
.dept-points li {
  display: grid;
  gap: 0.5rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.dept-points li:last-child { border-bottom: 0; }
@media (min-width: 640px) {
  .dept-points li {
    grid-template-columns: 7rem 1fr;
    gap: 1.5rem;
  }
}
.dept-points .mono { color: rgba(255, 255, 255, 0.35); letter-spacing: 0.2em; }
.dept-points h3 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dept-points p {
  margin: 0.4rem 0 0;
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

.dept-approach {
  border-top: 1px solid var(--line);
  background: #050505;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .dept-approach { padding-block: 5rem; }
}
.dept-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) {
  .dept-values { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .dept-values { grid-template-columns: repeat(4, 1fr); }
}
.dept-values li {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .dept-values li {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .dept-values li:nth-child(2n) { border-right: 0; padding-right: 0; }
  .dept-values li:nth-child(2n-1) { padding-left: 0; }
  .dept-values li:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 1100px) {
  .dept-values li {
    border-bottom: 0;
  }
  .dept-values li:nth-child(2n) { border-right: 1px solid var(--line); padding-right: 1.5rem; }
  .dept-values li:nth-child(2n-1) { padding-left: 1.5rem; }
  .dept-values li:first-child { padding-left: 0; }
  .dept-values li:last-child { border-right: 0; padding-right: 0; }
  .dept-values li:nth-last-child(-n+2) { border-bottom: 0; }
}
.dept-values .mono { color: rgba(255, 255, 255, 0.3); margin: 0; }
.dept-values h3 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dept-values p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

.dept-faq {
  max-width: 48rem;
  margin-inline: auto;
  border-block: 1px solid var(--line);
}
.dept-faq details {
  border-bottom: 1px solid var(--line);
}
.dept-faq details:last-child { border-bottom: 0; }
.dept-faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding-block: 1.25rem;
}
.dept-faq summary::-webkit-details-marker { display: none; }
.dept-faq__q {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.dept-faq__q .mono { color: rgba(255, 255, 255, 0.3); }
.dept-faq__q > span:last-child {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dept-faq details p {
  margin: 0;
  padding: 0 0 1.25rem 2.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}
.dept-faq details[open] .faq-plus { transform: rotate(45deg); }

.dept-cta {
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
}
.dept-cta-bar {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .dept-cta-bar {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
  }
}
.dept-cta-bar__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dept-cta-bar .muted { margin: 0.4rem 0 0; }

/* WhatsApp FAB — compact brand green */
.wa-fab {
  --wa-green: #25d366;
  --wa-green-deep: #128c7e;
  --wa-fab-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px) + 1rem);
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: var(--wa-fab-bottom);
  z-index: 45;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  background: var(--wa-green);
  color: #fff;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.45),
    0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, bottom 0.2s ease;
}
.wa-fab:hover,
.wa-fab:focus-visible {
  background: var(--wa-green-deep);
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 6px 18px rgba(18, 140, 126, 0.5),
    0 14px 32px rgba(0, 0, 0, 0.4);
  outline: none;
}
.wa-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.wa-fab[hidden] {
  display: none;
}
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  animation: wa-fab-pulse 2.2s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}
.wa-fab__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
}
.wa-fab__icon svg {
  display: block;
}
@keyframes wa-fab-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab__pulse {
    animation: none;
    display: none;
  }
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem clamp(1.25rem, 5.5vw, 5.5rem);
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}
.cookie-bar[hidden] {
  display: none;
}
.cookie-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 72rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .cookie-bar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.cookie-bar__text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
.cookie-bar__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.cookie-bar__text a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* —— Responsive refinements —— */
.site-main {
  padding-bottom: var(--fab-clearance);
}

.contact-details a {
  overflow-wrap: anywhere;
}

.cookie-bar__actions .btn {
  min-height: 2.75rem;
}
@media (max-width: 479px) {
  .cookie-bar__actions {
    flex-direction: column;
  }
  .cookie-bar__actions .btn {
    width: 100%;
  }
}

@media (hover: none) {
  .portfolio-card__play {
    opacity: 0.8;
  }
}

@media (max-width: 640px) {
  .page-pad {
    padding-top: 7.25rem;
    padding-bottom: 2rem;
  }
  .pf-hero {
    min-height: auto;
  }
  .pf-hero__inner {
    padding-top: 6.75rem;
  }
  .pf-hero__rail {
    letter-spacing: 0.12em;
    font-size: 0.52rem;
    padding-inline: 0.75rem;
  }
  .hero-parallax__ui {
    padding-block: 5rem 1.75rem;
  }
  .hero-meta {
    letter-spacing: 0.16em;
    font-size: 0.55rem;
  }
  .hero-copy__title {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }
  .dept-chapter__copy .headline {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
  .dept-chapter__copy {
    padding-block: 2.25rem;
  }
  .footer-bar > .mono {
    letter-spacing: 0.1em;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .wizard-steps ol {
    gap: 0.5rem;
    justify-content: space-between;
  }
  .wizard-steps li {
    flex: 1;
    min-width: 0;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }
  .topic {
    padding: 0.85rem;
    min-height: 0;
  }
  .topic strong {
    font-size: 1.2rem;
  }
  .dept-faq details p {
    padding-left: 0;
  }
  .section-pad {
    padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
  }
}

@media (max-height: 700px) {
  .hero-parallax__ui {
    padding-block: 4.5rem 1.25rem;
  }
  .hero__logo img {
    width: min(56vw, 16rem);
  }
  .hero-copy {
    margin-top: 1rem;
  }
  .scroll-cue {
    display: none;
  }
}

@media (min-width: 640px) {
  :root {
    --fab-clearance: 5rem;
  }
}

/* ——— Nieuws ——— */
.nieuws-hero {
  padding-top: 7.5rem;
  padding-bottom: 2rem;
}
.nieuws-hero__sheet {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.nieuws-hero__title {
  margin: 0.35rem 0 0.75rem;
  max-width: 12ch;
}
.nieuws-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.nieuws-chip {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s ease;
}
.nieuws-chip:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.nieuws-chip.is-active {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.nieuws-grid-wrap {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}
.nieuws-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .nieuws-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 1100px) {
  .nieuws-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.nieuws-card {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nieuws-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding-top: 1rem;
}
.nieuws-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #141414;
  margin-bottom: 1rem;
}
.nieuws-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.nieuws-card__link:hover .nieuws-card__media img {
  transform: scale(1.04);
}
.nieuws-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d 60%, #222);
}
.nieuws-card__meta {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.nieuws-card__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 0.55rem;
  font-weight: 400;
}
.nieuws-card__excerpt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 0.85rem;
}
.nieuws-card .more {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.nieuws-card__link:hover .more {
  color: #fff;
}
.nieuws-empty {
  padding: 2rem 0 1rem;
}
.nieuws-pagination {
  margin-top: 2.5rem;
}
.nieuws-pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.nieuws-pagination a,
.nieuws-pagination .current {
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 2.5rem;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.75rem;
}
.nieuws-pagination .current,
.nieuws-pagination a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.nieuws-single__hero {
  position: relative;
  min-height: min(72vh, 40rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nieuws-single__hero--plain {
  min-height: auto;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    #050505;
}
.nieuws-single__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.nieuws-single__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.96) 8%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, transparent 40%);
}
.nieuws-single__grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.nieuws-single__hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 2.75rem;
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 900px) {
  .nieuws-single__hero-inner {
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 2.5rem;
    align-items: end;
  }
}
.nieuws-single__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .nieuws-single__rail {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 0.35rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 1rem;
  }
}
.nieuws-single__back {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nieuws-single__back:hover {
  color: #fff;
}
.nieuws-single__intro {
  max-width: 46rem;
}
.nieuws-single__cat {
  text-decoration: none;
  color: inherit;
}
.nieuws-single__cat:hover {
  color: #fff;
}
.nieuws-single__title {
  margin: 0.55rem 0 0;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.95;
  max-width: 18ch;
}
.nieuws-single__lede {
  margin: 1.15rem 0 0;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.nieuws-single__meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.nieuws-single__layout {
  display: grid;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
@media (min-width: 960px) {
  .nieuws-single__layout {
    grid-template-columns: 8.5rem minmax(0, 42rem);
    justify-content: center;
    gap: 3rem;
    padding-top: 3.25rem;
    padding-bottom: 3rem;
  }
}
.nieuws-single__aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 960px) {
  .nieuws-single__aside {
    position: sticky;
    top: 6.5rem;
    align-self: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-bottom: 0;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 1rem;
  }
}
.nieuws-single__aside-label {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.nieuws-single__share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}
@media (min-width: 960px) {
  .nieuws-single__share {
    flex-direction: column;
    gap: 0.55rem;
  }
}
.nieuws-single__share a,
.nieuws-single__copy {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  transition: color 0.2s ease;
}
.nieuws-single__share a:hover,
.nieuws-single__copy:hover,
.nieuws-single__copy.is-copied {
  color: #fff;
}
.nieuws-single__main {
  min-width: 0;
}
.nieuws-prose {
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.4vw, 1.125rem);
  line-height: 1.75;
}
.nieuws-prose > *:first-child {
  margin-top: 0;
}
.nieuws-prose p {
  margin: 0 0 1.25rem;
}
.nieuws-prose a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.nieuws-prose a:hover {
  text-decoration-color: #fff;
}
.nieuws-prose h2 {
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1.05;
  margin: 2.75rem 0 0.9rem;
  font-weight: 400;
}
.nieuws-prose h3 {
  margin: 2rem 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.nieuws-prose ul,
.nieuws-prose ol {
  margin: 0 0 1.35rem;
  padding-left: 1.25rem;
}
.nieuws-prose li {
  margin-bottom: 0.55rem;
}
.nieuws-prose strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}
.nieuws-prose blockquote {
  margin: 2rem 0;
  padding: 1.15rem 0 1.15rem 1.25rem;
  border-left: 2px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15em;
  line-height: 1.5;
}
.nieuws-prose blockquote p:last-child {
  margin-bottom: 0;
}
.nieuws-prose figure {
  margin: 2rem 0;
}
.nieuws-prose img,
.nieuws-prose .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nieuws-prose figcaption,
.nieuws-prose .wp-element-caption {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.nieuws-prose hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 2.5rem 0;
}
.nieuws-prose .alignwide,
.nieuws-prose .alignfull {
  margin-inline: 0;
}
.nieuws-single__tags {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nieuws-single__tags a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nieuws-single__tags a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.nieuws-single__pager {
  display: grid;
  gap: 1rem;
  padding-block: 1.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 720px) {
  .nieuws-single__pager {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.nieuws-single__pager-link {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nieuws-single__pager-link:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.nieuws-single__pager-link .mono {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}
.nieuws-single__pager-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
}
.nieuws-single__pager-link--next {
  text-align: right;
  align-items: flex-end;
}
.nieuws-related {
  padding-block: 2.5rem 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nieuws-single__end {
  padding-block: 0 4rem;
}
.nieuws-single__end-slate {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 45%),
    rgba(255, 255, 255, 0.02);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.nieuws-single__end-slate .headline {
  margin: 0.4rem 0 0.75rem;
  max-width: 14ch;
}
.nieuws-single__end-slate .muted {
  max-width: 32rem;
  margin: 0;
}
.nieuws-single__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (max-width: 640px) {
  .nieuws-hero {
    padding-top: 6.75rem;
  }
  .nieuws-single__hero {
    min-height: 24rem;
  }
  .nieuws-single__hero--plain {
    min-height: auto;
  }
  .nieuws-single__pager-link--next {
    text-align: left;
    align-items: flex-start;
  }
}
