/* De Dreu / Editorial craft. One responsive system for all eleven pages. */
@font-face {
  font-family: Archivo;
  src: url("../assets/fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 62% 125%;
  font-display: swap;
}
:root {
  --ground: #f7f6f2;
  --ground-2: #eae9e3;
  --paper: #fff;
  --ink: #172132;
  --deep: #16277a;
  --accent: #1b17ff;
  --mute: #60646a;
  --line: #d4d5d0;
  --on-dark: #f7f6f2;
  --font: Archivo, Arial, sans-serif;
  --gutter: clamp(22px, 4.2vw, 80px);
  --max: 1600px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 100px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 400 17px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
::selection {
  color: #fff;
  background: var(--accent);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-variation-settings: "wdth" 90;
  text-wrap: balance;
}
h1 {
  font-size: clamp(56px, 7.7vw, 124px);
}
h2 {
  font-size: clamp(40px, 4.7vw, 76px);
}
h3 {
  font-size: 27px;
  letter-spacing: -0.035em;
}
p {
  max-width: 65ch;
}
p + p {
  margin-top: 1.15em;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
button,
summary {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  cursor: pointer;
}
svg {
  display: block;
}
ul {
  padding-left: 1.2em;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
main:focus {
  outline: 0;
}
[hidden] {
  display: none !important;
}
.container {
  width: 100%;
  max-width: var(--max);
  padding-inline: var(--gutter);
  margin-inline: auto;
}
section {
  padding-block: 110px;
  scroll-margin-top: 30px;
}
.arrow {
  width: 24px;
  height: 24px;
  flex: none;
  transition: transform 0.35s var(--ease);
}
a:hover > .arrow,
.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}
.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--deep);
}
.btn-outline {
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: white;
}
.btn-ghost {
  border-color: currentColor;
}
.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-block: 7px;
}
.text-link:hover,
.card-link:hover {
  color: var(--accent);
}
.small-label,
.section-label {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.small-label {
  display: block;
  margin-bottom: 28px;
}
.section-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 50px;
}
.section-label > span:first-child:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  margin: 0 10px 2px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: flex-end;
  margin-bottom: 55px;
}
.section-heading > p {
  max-width: 320px;
  color: var(--mute);
  font-size: 17px;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
/* Clear desktop navigation, same content in an accessible mobile overlay. */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ground);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100px;
  max-width: var(--max);
  padding-inline: var(--gutter);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo-link {
  margin-right: auto;
  flex: none;
}
.logo-link img {
  width: 124px;
  height: 78px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 13px;
}
.main-nav > a {
  padding-block: 14px;
  position: relative;
  white-space: nowrap;
}
.main-nav > a:after {
  content: "";
  position: absolute;
  bottom: 6px;
  height: 1px;
  background: var(--accent);
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.main-nav > a:hover:after,
.main-nav > a[aria-current]:after {
  transform: scaleX(1);
}
.nav-services summary {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  padding-block: 14px;
}
.nav-services summary::-webkit-details-marker {
  display: none;
}
.nav-services summary svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}
.nav-services[open] summary svg {
  transform: rotate(180deg);
}
.services-dropdown {
  position: absolute;
  top: 100%;
  right: var(--gutter);
  width: min(620px, 90vw);
  padding: 30px 35px;
  background: var(--ground);
  border: 1px solid var(--line);
  box-shadow: 0 18px 24px #17213210;
}
.services-dropdown > p {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
}
.services-dropdown > a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 18px;
}
.services-dropdown > a:hover {
  color: var(--accent);
}
.services-dropdown > a > span {
  font-size: 11px;
  color: var(--mute);
}
.services-dropdown .arrow {
  margin-left: auto;
}
.header-cta {
  font-size: 12px;
  min-height: 46px;
  padding: 13px 17px;
  gap: 22px;
}
.header-cta .arrow {
  width: 19px;
  height: 19px;
}
.menu-toggle,
.mobile-contact,
.mobile-nav-bottom {
  display: none !important;
}
/* Homepage opening: editorial typography, generous photographic frame. */
.hero {
  padding: 35px 0 0;
}
.hero .section-label {
  border: 0;
  padding: 0;
  margin-bottom: 36px;
}
.hero-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 235px;
  gap: 40px;
  align-items: end;
  margin-bottom: 45px;
}
.hero h1 {
  font-size: clamp(58px, 6.75vw, 108px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.06em;
  white-space: nowrap;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-intro {
  padding-bottom: 5px;
  font-size: 16px;
  line-height: 1.5;
}
.hero-intro .text-link {
  font-size: 12px;
  gap: 15px;
  margin-top: 20px;
}
.hero-stage {
  height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--ground-2);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}
.hero-stage:after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, #10131b70);
  pointer-events: none;
}
.hero-photo-caption {
  position: absolute;
  bottom: 23px;
  left: 28px;
  right: 400px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.hero-card {
  position: absolute;
  right: 35px;
  bottom: 35px;
  z-index: 3;
  width: 315px;
  padding: 32px;
  background: var(--ground);
}
.hero-card .small-label {
  font-size: 10px;
  margin-bottom: 25px;
}
.hero-card h2 {
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.hero-card p {
  font-size: 14px;
  color: var(--mute);
  margin-top: 18px;
}
.hero-card .btn {
  width: 100%;
  margin-top: 26px;
  font-size: 12px;
  gap: 10px;
}
.promise-strip {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.promise-strip > span:before {
  content: "✓";
  color: var(--accent);
  margin-right: 12px;
}
.promise-strip > a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--mute);
  font-size: 10px;
}
.promise-strip .arrow {
  transform: rotate(90deg);
  width: 18px;
  height: 18px;
}
/* Service index remains readable without hover or JavaScript. */
.services-section {
  padding-top: 100px;
}
.services-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: start;
}
.service-row {
  display: flex;
  gap: 25px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: color 0.25s;
}
.service-row:last-child {
  border-bottom: 1px solid var(--line);
}
.service-number {
  font-size: 11px;
  color: var(--mute);
  padding-top: 6px;
}
.service-row > div {
  flex: 1;
}
.service-row h3 {
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.12;
}
.service-row p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mute);
  max-width: 38ch;
  margin-top: 12px;
}
.service-arrow {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition:
    background 0.25s,
    border-color 0.25s;
  color: var(--ink);
  flex: none;
}
.service-arrow .arrow {
  width: 21px;
  height: 21px;
  transform: rotate(-45deg);
}
.service-row:hover,
.service-row:focus-visible {
  color: var(--accent);
}
.service-row:hover .service-arrow,
.service-row:focus-visible .service-arrow {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.service-row:hover .arrow {
  transform: rotate(0deg);
}
.service-visual {
  position: sticky;
  top: 135px;
  margin-top: 0;
  background: var(--ground-2);
}
.service-visual img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.service-visual figcaption {
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
}
.service-visual > p {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  border-top: 1px solid var(--line);
  padding: 25px 25px 30px;
}
.audiences {
  padding-top: 0;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.image-frame {
  overflow: hidden;
  position: relative;
  background: var(--ground-2);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.audience-card:hover img {
  transform: scale(1.035);
}
.audience-card .image-frame {
  aspect-ratio: 1.4;
}
.image-note {
  position: absolute;
  bottom: 15px;
  left: 18px;
  font-size: 10px;
  color: #fff;
  background: #172132b8;
  padding: 3px 8px;
}
.audience-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0 15px;
}
.audience-title h3 {
  font-size: 40px;
  letter-spacing: -0.045em;
}
.audience-title .arrow {
  width: 32px;
  height: 32px;
  transform: rotate(-45deg);
}
.audience-card > p {
  font-size: 15px;
  color: var(--mute);
  max-width: 43ch;
}
.audience-card .small-label {
  font-size: 10px;
  margin: 24px 0 0;
}
.audience-card:nth-child(2) {
  padding-top: 95px;
}
/* Human proof, drawn from the actual business photos. */
.founder {
  background: var(--deep);
  color: var(--on-dark);
  padding-block: 90px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: center;
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 43%;
}
.founder-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 11px;
  padding-top: 18px;
  color: #fff;
}
.founder-photo figcaption > span {
  opacity: 0.72;
}
.founder-copy .small-label {
  opacity: 0.7;
  margin-bottom: 35px;
}
.founder-copy h2 {
  font-size: clamp(44px, 5vw, 79px);
  line-height: 1.03;
}
.founder-copy p {
  font-size: 16px;
  color: #d5d9ed;
  max-width: 39ch;
  margin-top: 28px;
}
.founder-copy .text-link {
  margin-top: 32px;
  color: #fff;
}
.founder-copy .text-link:hover {
  color: #c7c6ff;
}
.founder-signoff {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff35;
  margin-top: 50px;
  padding-top: 25px;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.founder-signoff img {
  width: 100px;
  opacity: 0.7;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.process-intro {
  position: sticky;
  top: 135px;
  align-self: start;
}
.process-intro h2 {
  font-size: clamp(48px, 5.5vw, 88px);
}
.process-intro p {
  font-size: 16px;
  color: var(--mute);
  max-width: 32ch;
  margin-top: 30px;
}
.process-intro .text-link {
  margin-top: 30px;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-steps li {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}
.process-steps li > span {
  font-size: 13px;
  color: var(--accent);
  padding-top: 3px;
}
.process-steps h3 {
  font-size: 29px;
  font-weight: 500;
  line-height: 1.12;
}
.process-steps p {
  font-size: 15px;
  color: var(--mute);
  max-width: 36ch;
  margin-top: 13px;
}
.inspiration {
  background: var(--ground-2);
}
.inspiration .section-label {
  border-color: #c7c8c1;
}
.inspiration-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 65px;
}
.inspiration-grid > figure:first-child .image-frame {
  aspect-ratio: 4/5;
}
.inspiration-grid > figure:nth-child(2) {
  padding-top: 140px;
}
.inspiration-grid > figure:nth-child(2) .image-frame {
  aspect-ratio: 1.1;
}
.inspiration-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 18px;
  font-size: 11px;
}
.inspiration-grid figure > p {
  font-size: 12px;
  color: var(--mute);
  max-width: 40ch;
  margin-top: 40px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 7vw;
}
.faq-grid h2 {
  font-size: clamp(38px, 4vw, 65px);
}
.faq-grid .text-link {
  margin-top: 30px;
}
.faq-list {
  width: 100%;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  font-size: 25px;
  font-weight: 400;
  color: var(--accent);
  flex: none;
  line-height: 1;
}
.faq-item[open] summary:after {
  content: "−";
}
.faq-item p {
  font-size: 15px;
  color: var(--mute);
  padding: 0 35px 25px 0;
}
.closing {
  background: #eae9e3;
  padding-block: 70px 95px;
}
.closing-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 65px;
  align-items: end;
}
.closing h2 {
  font-size: clamp(45px, 5.7vw, 92px);
}
.closing h2 span {
  color: var(--accent);
}
.closing-grid > div {
  max-width: 310px;
  justify-self: end;
}
.closing p {
  font-size: 16px;
  margin-bottom: 25px;
}
.closing-phone {
  display: block;
  margin-top: 22px;
  font-size: 13px;
}
.closing-phone:hover {
  text-decoration: underline;
}
/* Interior pages use the same hierarchy, not a separate template style. */
.service-hero {
  padding: 38px 0 60px;
}
.breadcrumb,
.breadcrumb-current {
  font-size: 11px;
  color: var(--mute);
}
.breadcrumb:hover {
  color: var(--accent);
}
.service-hero > .container + .container {
  margin-top: 45px;
}
.service-hero h1 {
  font-size: clamp(48px, 7vw, 112px);
  max-width: 1050px;
  line-height: 1.01;
}
.lead {
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.5;
  max-width: 65ch;
  margin-top: 30px;
  color: var(--mute);
}
.service-hero .lead {
  max-width: 770px;
}
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 25px;
  margin-top: 45px;
  padding-block: 18px;
  border-block: 1px solid var(--line);
}
.service-nav a {
  padding-block: 8px;
  min-height: 40px;
  font-size: 12px;
}
.service-nav a.active {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.paginabeeld {
  margin: 0;
}
.paginabeeld img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.paginabeeld figcaption {
  font-size: 10px;
  color: var(--mute);
  margin-top: 12px;
}
.paginabeeld--staand img {
  height: 500px;
  object-position: center 42%;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.two-col h2 {
  font-size: clamp(35px, 4vw, 64px);
  margin-bottom: 28px;
}
.two-col p {
  font-size: 17px;
}
.bg-light {
  background: var(--ground-2);
}
.bg-deep {
  background: var(--deep);
  color: #fff;
}
.checklist {
  list-style: none;
  padding: 0;
  margin-top: 35px;
}
.checklist li {
  position: relative;
  padding: 18px 18px 18px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.checklist li:before {
  position: absolute;
  left: 0;
  top: 26px;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
}
.checklist.twee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
}
.grenzen-block {
  border: 1px solid var(--line);
  padding: 35px;
}
.grenzen-block h3 {
  margin-bottom: 20px;
}
.cta-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.pijlers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 45px;
}
.pijler {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.pijler h3 {
  font-size: 29px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.pijler p {
  font-size: 16px;
  color: var(--mute);
}
.pijler-icoon {
  display: none;
}
.over-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8vw;
  align-items: center;
}
.over-block .portrait {
  width: 100%;
  max-height: 630px;
  object-fit: cover;
}
.over-block h2 {
  margin-bottom: 30px;
}
.over-block .card-link {
  margin-top: 25px;
}
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.dienst-card {
  display: block;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.dienst-card h3 {
  margin-bottom: 18px;
  line-height: 1.12;
}
.dienst-card p {
  font-size: 15px;
  color: var(--mute);
}
.dienst-card .card-link {
  margin-top: 18px;
}
.dienst-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--accent);
}
/* Contact: readable field states and explicit user-controlled email draft. */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
}
.contact-grid > div:first-child {
  align-self: start;
}
.contact-grid h2 {
  font-size: clamp(35px, 4vw, 60px);
  margin-bottom: 30px;
}
.contact-portrait {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 50%;
  margin: 30px 0;
}
.contact-channel {
  font-size: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.contact-channel strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--mute);
}
.contact-channel a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.contact-form {
  display: grid;
  gap: 23px;
  margin-top: 30px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  min-height: 50px;
  border: 1px solid #b9bdb9;
  background: transparent;
  border-radius: 0;
  color: var(--ink);
  font-size: 16px;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-note {
  font-size: 12px;
  color: var(--mute);
}
.verplicht {
  color: var(--accent);
}
.fout-melding {
  font-size: 12px;
  color: #a32525;
  margin-top: 7px;
}
.contact-form .veld-fout {
  border-color: #a32525;
}
.form-result {
  padding: 28px;
  background: #e9ecf6;
  border-left: 3px solid var(--deep);
}
.form-result h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.form-result p {
  font-size: 14px;
  margin-bottom: 20px;
}
.form-result .btn {
  font-size: 13px;
  margin-bottom: 20px;
}
/* Closing brand signature. */
footer.site {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 6vw;
  padding-bottom: 50px;
  border-bottom: 1px solid #ffffff28;
}
.footer-logo img {
  width: 145px;
  height: 100px;
  object-fit: contain;
}
.footer-top > p {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  margin-left: auto;
}
.back-top .arrow {
  transform: rotate(-90deg);
  width: 20px;
  height: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 0.8fr 1.2fr;
  gap: 40px;
  padding: 50px 0 65px;
}
.footer-grid h3 {
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #aeb6c2;
  font-weight: 400;
  margin-bottom: 25px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  font-size: 12px;
  margin-bottom: 9px;
}
.footer-grid p {
  font-size: 12px;
  color: #c0c6ce;
  max-width: 27ch;
  margin-top: 18px;
}
.footer-grid > div > a {
  display: block;
  font-size: 12px;
}
.footer-grid a:hover {
  color: #a9acff;
}
.footer-grid .footer-phone {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.footer-grid .text-link {
  display: inline-flex;
  margin-top: 20px;
  font-size: 12px;
  gap: 15px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff28;
  padding-top: 20px;
  color: #aeb6c2;
  font-size: 10px;
}
/* Restraint: one entrance only, native scrolling and reduced-motion support. */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-heading {
  animation: rise 0.9s var(--ease) both;
}
.hero-stage {
  animation: rise 1.1s 0.1s var(--ease) both;
}
.reveal.in {
  animation: rise 0.65s var(--ease) both;
}
@media (min-width: 1700px) {
  .hero-stage {
    height: 600px;
  }
  .hero-heading {
    grid-template-columns: 1fr 290px;
  }
  .hero-intro {
    font-size: 18px;
  }
}
@media (max-width: 1150px) {
  .header-inner {
    gap: 20px;
  }
  .main-nav {
    gap: 17px;
    font-size: 12px;
  }
  .logo-link img {
    width: 105px;
  }
  .header-cta {
    gap: 12px;
  }
  .hero-heading {
    grid-template-columns: 1fr 190px;
    gap: 20px;
  }
  .hero h1 {
    font-size: 6.7vw;
  }
  .hero-intro {
    font-size: 14px;
  }
  .hero-intro .text-link {
    font-size: 11px;
  }
  .hero-stage {
    height: 480px;
  }
  .services-layout {
    gap: 40px;
  }
  .service-row {
    gap: 17px;
  }
  .service-visual img {
    height: 410px;
  }
  .founder-grid {
    gap: 6vw;
  }
  .footer-grid {
    gap: 25px;
  }
  .footer-grid .footer-phone {
    font-size: 21px;
  }
}
@media (max-width: 960px) {
  :root {
    --header-h: 84px;
  }
  html {
    scroll-padding-top: 100px;
  }
  .header-inner {
    height: 84px;
  }
  .logo-link img {
    width: 105px;
    height: 68px;
  }
  .menu-toggle {
    display: flex !important;
    align-items: center;
    gap: 13px;
    border: 0;
    background: none;
    padding: 12px 0 12px 10px;
    font-size: 12px;
    z-index: 2;
  }
  .menu-toggle svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }
  .header-cta {
    margin-left: auto;
  }
  .logo-link {
    margin-right: 0;
  }
  .main-nav {
    display: none;
    position: fixed;
    inset: 84px 0 0;
    padding: 25px var(--gutter) 50px;
    background: var(--ground);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav > a,
  .nav-services summary {
    display: flex;
    align-items: center;
    min-height: 58px;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-services summary {
    justify-content: space-between;
  }
  .nav-services summary svg {
    width: 20px;
    height: 20px;
  }
  .main-nav > a:after {
    display: none;
  }
  .services-dropdown {
    position: static;
    width: auto;
    border: 0;
    box-shadow: none;
    padding: 15px 0;
  }
  .services-dropdown > p {
    display: none;
  }
  .services-dropdown > a {
    font-size: 16px;
    gap: 15px;
    line-height: 1.4;
    padding: 14px 0;
  }
  .services-dropdown .arrow {
    width: 18px;
    height: 18px;
  }
  .mobile-contact {
    display: flex !important;
    justify-content: space-between;
  }
  .mobile-nav-bottom {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    margin-top: 30px;
  }
  .mobile-nav-bottom a {
    font-size: 24px;
    letter-spacing: -0.04em;
  }
  .menu-open {
    overflow: hidden;
  }
  section {
    padding-block: 80px;
  }
  .hero-heading {
    grid-template-columns: 1fr 170px;
  }
  .hero h1 {
    font-size: 6.7vw;
  }
  .hero-stage {
    height: 420px;
  }
  .hero-card {
    width: 270px;
    right: 25px;
    bottom: 25px;
    padding: 25px;
  }
  .hero-card h2 {
    font-size: 38px;
  }
  .hero-card .small-label {
    margin-bottom: 18px;
  }
  .hero-card p {
    font-size: 13px;
  }
  .hero-card .btn {
    margin-top: 20px;
    padding: 13px 15px;
  }
  .hero-photo-caption {
    right: 320px;
    font-size: 10px;
  }
  .promise-strip {
    font-size: 10px;
    gap: 12px;
  }
  .promise-strip > a {
    display: none;
  }
  .section-label {
    margin-bottom: 35px;
  }
  .section-heading > p {
    max-width: 260px;
    font-size: 15px;
  }
  .services-layout {
    grid-template-columns: 1.25fr 1fr;
    gap: 30px;
  }
  .service-row {
    padding: 24px 0;
    gap: 12px;
  }
  .service-row h3 {
    font-size: 23px;
  }
  .service-row p {
    font-size: 13px;
  }
  .service-arrow {
    width: 31px;
    height: 31px;
  }
  .service-visual img {
    height: 380px;
  }
  .service-visual > p {
    font-size: 26px;
  }
  .service-visual figcaption {
    flex-direction: column;
  }
  .audience-grid {
    gap: 25px;
  }
  .audience-title h3 {
    font-size: 33px;
  }
  .audience-card:nth-child(2) {
    padding-top: 65px;
  }
  .founder-copy h2 {
    font-size: 48px;
  }
  .founder-copy p {
    font-size: 14px;
  }
  .founder-signoff {
    margin-top: 30px;
  }
  .founder-photo img {
    aspect-ratio: 3/4;
  }
  .founder-photo figcaption {
    flex-direction: column;
    gap: 3px;
  }
  .process-grid {
    gap: 6vw;
  }
  .process-steps li {
    gap: 20px;
  }
  .process-steps h3 {
    font-size: 25px;
  }
  .closing-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
  }
  .footer-top > p {
    font-size: 19px;
  }
  .contact-grid {
    gap: 5vw;
  }
  .inspiration-grid {
    gap: 35px;
  }
}
@media (max-width: 640px) {
  :root {
    --gutter: 22px;
    --header-h: 78px;
  }
  .header-inner {
    height: 78px;
    gap: 16px;
  }
  .logo-link img {
    width: 92px;
    height: 63px;
  }
  .header-cta {
    font-size: 10px;
    padding: 12px;
    gap: 8px;
    min-height: 42px;
  }
  .header-cta .arrow {
    width: 16px;
    height: 16px;
  }
  .menu-toggle {
    padding-left: 0;
  }
  .menu-toggle > span {
    display: none;
  }
  .menu-toggle svg {
    width: 23px;
  }
  .main-nav {
    top: 78px;
  }
  .hero {
    padding-top: 23px;
  }
  .hero .section-label {
    font-size: 8px;
    letter-spacing: 0.07em;
    margin-bottom: 32px;
  }
  .hero .section-label span:first-child:before {
    display: none;
  }
  .hero .section-label > span:last-child {
    max-width: 85px;
    text-align: right;
  }
  .hero-heading {
    display: block;
    margin-bottom: 30px;
  }
  .hero h1 {
    font-size: clamp(38px, 8.2vw, 54px);
    letter-spacing: -0.055em;
    line-height: 1.05;
    white-space: normal;
  }
  .hero-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
  }
  .hero-intro p {
    font-size: 13px;
    line-height: 1.6;
  }
  .hero-intro .text-link {
    font-size: 10px;
    gap: 8px;
    max-width: 135px;
    line-height: 1.5;
  }
  .hero-intro .arrow {
    width: 17px;
    height: 17px;
  }
  .hero-stage {
    height: auto;
    overflow: visible;
    background: none;
    display: flex;
    flex-direction: column;
  }
  .hero-image {
    height: 310px;
    object-position: center 57%;
  }
  .hero-stage:after {
    display: none;
  }
  .hero-photo-caption {
    top: 280px;
    bottom: auto;
    left: 15px;
    right: 15px;
    font-size: 9px;
    text-shadow: 0 1px 3px #000;
  }
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 25px);
    margin: -20px 0 0 auto;
    padding: 25px;
    background: var(--ground-2);
  }
  .hero-card .small-label {
    font-size: 8px;
    margin-bottom: 14px;
  }
  .hero-card h2 {
    font-size: 34px;
  }
  .hero-card h2 br {
    display: none;
  }
  .hero-card p {
    font-size: 13px;
    max-width: 29ch;
    margin-top: 14px;
  }
  .hero-card .btn {
    width: 100%;
    font-size: 12px;
    margin-top: 20px;
    min-height: 48px;
  }
  .promise-strip {
    min-height: 0;
    padding: 25px 0;
    display: grid;
    gap: 10px;
    font-size: 11px;
    margin-top: 5px;
    grid-template-columns: 1fr;
  }
  .promise-strip > span:before {
    margin-right: 10px;
  }
  section {
    padding-block: 65px;
  }
  .services-section {
    padding-top: 65px;
  }
  .section-label {
    font-size: 9px;
    margin-bottom: 32px;
    padding-top: 15px;
    letter-spacing: 0.07em;
  }
  .section-label > span:last-child {
    text-align: right;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  h2 {
    font-size: 42px;
    line-height: 1.04;
  }
  .section-heading > p {
    font-size: 15px;
    max-width: 31ch;
    margin-top: 23px;
  }
  .services-layout {
    display: block;
  }
  .service-visual {
    display: none;
  }
  .service-row {
    padding: 25px 0;
    gap: 15px;
  }
  .service-number {
    font-size: 10px;
    padding-top: 4px;
  }
  .service-row h3 {
    font-size: 24px;
    line-height: 1.1;
  }
  .service-row p {
    font-size: 13px;
    margin-top: 12px;
  }
  .service-arrow {
    width: 31px;
    height: 31px;
  }
  .service-arrow .arrow {
    width: 17px;
    height: 17px;
  }
  .audience-grid {
    display: block;
  }
  .audience-card {
    display: block;
  }
  .audience-card:nth-child(2) {
    padding-top: 42px;
  }
  .audience-card .image-frame {
    aspect-ratio: 1.2;
  }
  .audience-title {
    margin-top: 20px;
  }
  .audience-title h3 {
    font-size: 35px;
  }
  .audience-title .arrow {
    width: 25px;
    height: 25px;
  }
  .audience-card > p {
    font-size: 14px;
  }
  .audience-card .small-label {
    font-size: 9px;
    margin-top: 20px;
  }
  .founder {
    padding-block: 50px;
  }
  .founder-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .founder-photo {
    width: 100%;
  }
  .founder-photo img {
    aspect-ratio: 4/4.6;
    object-position: 50% 38%;
  }
  .founder-photo figcaption {
    flex-direction: row;
    font-size: 9px;
  }
  .founder-copy h2 {
    font-size: 49px;
    line-height: 1.02;
  }
  .founder-copy .small-label {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .founder-copy p {
    font-size: 15px;
    margin-top: 25px;
  }
  .founder-signoff {
    font-size: 10px;
  }
  .process-grid {
    display: block;
  }
  .process-intro {
    position: static;
  }
  .process-intro h2 {
    font-size: 48px;
  }
  .process-intro h2 br {
    display: none;
  }
  .process-intro p {
    font-size: 15px;
    max-width: 31ch;
    margin-top: 23px;
  }
  .process-intro .text-link {
    margin-top: 20px;
  }
  .process-steps {
    margin-top: 40px;
  }
  .process-steps li {
    padding: 25px 0;
    gap: 25px;
  }
  .process-steps h3 {
    font-size: 25px;
  }
  .process-steps p {
    font-size: 14px;
  }
  .inspiration-grid {
    display: block;
  }
  .inspiration-grid > figure:first-child .image-frame {
    aspect-ratio: 4/4.6;
  }
  .inspiration-grid > figure:nth-child(2) {
    padding-top: 35px;
  }
  .inspiration-grid > figure:nth-child(2) .image-frame {
    aspect-ratio: 1.25;
  }
  .inspiration-grid figcaption {
    font-size: 9px;
  }
  .inspiration-grid figure > p {
    margin-top: 22px;
    font-size: 11px;
  }
  .faq-grid {
    display: block;
  }
  .faq-grid h2 {
    font-size: 43px;
  }
  .faq-grid .small-label {
    font-size: 9px;
  }
  .faq-grid .text-link {
    margin-top: 20px;
  }
  .faq-grid .faq-list {
    margin-top: 35px;
  }
  .faq-item summary {
    font-size: 15px;
    padding: 21px 0;
  }
  .faq-item p {
    font-size: 14px;
    padding-right: 18px;
  }
  .closing {
    padding-block: 45px 60px;
  }
  .closing-grid {
    display: block;
  }
  .closing h2 {
    font-size: 45px;
  }
  .closing-grid > div {
    margin-top: 30px;
    max-width: none;
  }
  .closing-grid p {
    font-size: 15px;
    max-width: 30ch;
  }
  .closing .btn {
    font-size: 13px;
    min-height: 52px;
  }
  .closing-phone {
    font-size: 12px;
  }
  .service-hero {
    padding: 25px 0 40px;
  }
  .service-hero > .container + .container {
    margin-top: 30px;
  }
  .service-hero h1 {
    font-size: 47px;
    overflow-wrap: normal;
    line-height: 1.03;
  }
  .lead {
    font-size: 17px;
    line-height: 1.6;
    margin-top: 25px;
  }
  .service-nav {
    margin-top: 28px;
    gap: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    padding-block: 10px;
  }
  .service-nav a {
    font-size: 12px;
    min-height: 44px;
  }
  .paginabeeld img,
  .paginabeeld--staand img {
    height: 280px;
  }
  .paginabeeld figcaption {
    font-size: 9px;
  }
  .two-col,
  .over-block {
    display: block;
  }
  .two-col > div + div {
    margin-top: 35px;
  }
  .two-col p {
    font-size: 16px;
  }
  .two-col h2 {
    font-size: 37px;
  }
  .checklist.twee {
    display: block;
  }
  .checklist li {
    font-size: 15px;
    padding-block: 16px;
  }
  .checklist li:before {
    top: 24px;
  }
  .grenzen-block {
    padding: 25px;
  }
  .pijlers-grid,
  .diensten-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .over-block > div + div {
    margin-top: 35px;
  }
  .over-block h2 {
    font-size: 39px;
  }
  .over-block p {
    font-size: 16px;
  }
  .dienst-card h3 {
    font-size: 29px;
  }
  .contact-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
  }
  .contact-grid h2 {
    font-size: 38px;
    margin-bottom: 25px;
  }
  .contact-grid .small-label {
    margin-bottom: 18px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .contact-form {
    gap: 23px;
  }
  .contact-grid > div:first-child {
    width: 100%;
  }
  .contact-channel {
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .form-result {
    padding: 23px;
  }
  .form-result .btn {
    width: 100%;
    font-size: 12px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
  }
  .footer-logo img {
    width: 118px;
    height: 90px;
  }
  .footer-top > p {
    font-size: 15px;
    line-height: 1.5;
  }
  .back-top {
    width: 100%;
    margin: 0;
    justify-content: space-between;
    padding-top: 15px;
    font-size: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding: 35px 0;
  }
  .footer-grid > div:nth-child(1) {
    grid-column: 1/-1;
  }
  .footer-grid > div:nth-child(2) {
    grid-column: 1/-1;
  }
  .footer-grid > div:nth-child(2) ul {
    columns: 1;
  }
  .footer-grid > div > a {
    font-size: 12px;
  }
  .footer-grid .footer-phone {
    font-size: 28px;
  }
  .footer-grid h3 {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .footer-grid li,
  .footer-grid p {
    font-size: 11px;
  }
  .footer-grid .text-link {
    font-size: 10px;
    gap: 7px;
  }
  .footer-grid .text-link .arrow {
    width: 17px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 20px;
  }
  .text-link,
  .card-link {
    font-size: 13px;
  }
  footer.site {
    padding-top: 35px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  header.site,
  .closing,
  .back-top,
  .hero-card .btn,
  .menu-toggle {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }
  section {
    padding: 25px 0;
  }
  .container {
    padding: 0;
  }
  .hero-stage {
    height: 250px;
  }
  .hero-card {
    display: none;
  }
  .service-visual,
  .process-intro {
    position: static;
  }
  .founder {
    color: #000;
    background: #fff;
  }
  .founder-copy p {
    color: #222;
  }
  a {
    text-decoration: underline;
  }
  .footer-grid {
    display: none;
  }
  footer.site {
    background: white;
    color: black;
  }
  .hero-heading {
    display: block;
  }
  .hero h1 {
    font-size: 45pt;
    white-space: normal;
  }
  .hero-intro {
    display: none;
  }
}

/* Original roof mark paired with the business name for immediate recognition. */
.logo-link,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}
.logo-link img {
  width: 65px;
  height: 56px;
}
.brand-name {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
}
.brand-name > span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}
.footer-logo img {
  width: 80px;
  height: 65px;
}
.footer-logo .brand-name {
  font-size: 36px;
}
.footer-logo .brand-name > span {
  font-size: 10px;
}
.service-row h3 {
  font-variation-settings: "wdth" 100;
}
.hero-card h2 {
  text-wrap: initial;
}
.contact-portrait {
  border-radius: 0;
}
@media (max-width: 1150px) and (min-width: 961px) {
  .brand-name {
    font-size: 23px;
  }
  .logo-link img {
    width: 52px;
  }
  .logo-link {
    gap: 8px;
  }
  .main-nav {
    gap: 13px;
  }
  .header-inner {
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .logo-link {
    gap: 7px;
  }
  .logo-link img {
    width: 41px;
    height: 43px;
  }
  .brand-name {
    font-size: 21px;
  }
  .brand-name > span {
    font-size: 7px;
    margin-top: 5px;
    letter-spacing: 0.07em;
  }
  .footer-logo img {
    width: 60px;
    height: 55px;
  }
  .footer-logo .brand-name {
    font-size: 28px;
  }
  .footer-top > p {
    font-size: 13px;
  }
  .header-inner {
    gap: 12px;
  }
  .header-cta {
    padding-inline: 10px;
  }
  .hero-card h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .hero-photo-caption {
    top: 260px;
  }
  .hero-card h2 br {
    display: block;
  }
  .hero-card h2 {
    font-size: 34px;
    line-height: 1.03;
  }
  .hero-card {
    padding-block: 23px;
  }
  .hero-card .small-label {
    margin-bottom: 12px;
  }
}

.paginabeeld--staand img[src*="rinze-"] {
  object-position: center 25%;
}

/* Native navigation stays available when JavaScript is disabled. */
@media (max-width: 960px) {
  html:not(.js) header.site {
    position: static;
  }
  html:not(.js) .header-inner {
    height: auto;
    min-height: 84px;
    flex-wrap: wrap;
    padding-block: 12px;
  }
  html:not(.js) .main-nav {
    display: block;
    position: static;
    order: 4;
    width: 100%;
    padding: 12px 0;
  }
  html:not(.js) .menu-toggle {
    display: none !important;
  }
}

/* Framed film, with a poster when motion is unavailable or not requested. */
.hero-media {
  position: absolute;
  inset: 0;
  background: var(--ground-2);
}
.hero-media .hero-image,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.hero-media.video-ready .hero-video {
  opacity: 1;
}
.hero-stage:after {
  pointer-events: none;
}
.video-toggle {
  position: absolute;
  z-index: 4;
  left: 28px;
  bottom: 60px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid #ffffff60;
  background: #172132d9;
  color: white;
  font-size: 11px;
}
.video-toggle svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.video-toggle:hover {
  background: var(--deep);
}
.video-toggle:focus-visible {
  outline-color: white;
}
/* A full-width comparison with a native keyboard- and touch-accessible range. */
.comparison-block {
  margin-bottom: 45px;
}
.comparison {
  position: relative;
  isolation: isolate;
  aspect-ratio: 2/1;
  overflow: hidden;
  background: var(--ground-2);
}
.comparison-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.comparison-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  pointer-events: none;
}
.comparison-label {
  position: absolute;
  top: 24px;
  padding: 8px 16px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ground);
  color: var(--ink);
  pointer-events: none;
}
.comparison-label.is-before {
  left: 24px;
}
.comparison-label.is-after {
  right: 24px;
  background: var(--accent);
  color: white;
}
.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
}
.comparison-divider > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: 4px solid #fff;
  box-shadow: 0 3px 18px #17213235;
}
.comparison-divider svg {
  width: 36px;
  height: 24px;
}
.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}
.comparison:has(.comparison-range:focus-visible) {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
.comparison:has(.comparison-range:focus-visible) .comparison-divider > span {
  box-shadow: 0 0 0 5px var(--deep);
}
.comparison-block > figcaption {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding: 25px 0 0;
}
.comparison-block .small-label {
  font-size: 10px;
  margin: 0 0 12px;
}
.comparison-block h3 {
  font-size: 28px;
  font-weight: 500;
}
.comparison-block figcaption > div:last-child {
  max-width: 280px;
  text-align: right;
}
.comparison-hint {
  font-size: 12px;
  font-weight: 500;
}
.comparison-block figcaption p {
  font-size: 10px;
  color: var(--mute);
  line-height: 1.5;
  margin-top: 9px;
}
.audience-grid--compact {
  gap: 60px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.audience-grid--compact .audience-card:nth-child(2) {
  padding-top: 0;
}
/* Portrait contact shortcut stays discreet and opens real contact choices. */
.contact-widget {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 45;
}
.contact-widget > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 8px 17px 8px 8px;
  background: var(--ground);
  border: 1px solid var(--line);
  box-shadow: 0 6px 35px #17213220;
  cursor: pointer;
  border-radius: 60px;
}
.contact-widget > summary::-webkit-details-marker {
  display: none;
}
.contact-widget > summary > img {
  width: 53px;
  height: 53px;
  object-fit: cover;
  border-radius: 50%;
}
.contact-widget-label {
  display: grid;
  gap: 4px;
  line-height: 1.1;
}
.contact-widget-label small {
  font-size: 10px;
  color: var(--mute);
}
.contact-widget-label strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.contact-widget-icon {
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-left: 7px;
}
.contact-widget-icon svg {
  width: 23px;
  height: 23px;
}
.contact-widget[open] .contact-widget-icon {
  color: var(--ink);
}
.contact-popover {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: 330px;
  padding: 26px;
  background: var(--ground);
  border: 1px solid var(--line);
  box-shadow: 0 8px 45px #17213225;
}
.contact-popover .small-label {
  font-size: 10px;
  margin-bottom: 15px;
}
.contact-popover h2 {
  font-size: 31px;
  line-height: 1.06;
}
.contact-popover p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mute);
  margin: 15px 0 22px;
}
.contact-popover > a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  min-height: 46px;
}
.contact-popover > a:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--accent);
}
.contact-popover > a strong {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.contact-popover > a:hover {
  color: var(--accent);
}
.menu-open .contact-widget {
  display: none;
}
footer.site {
  padding-bottom: 115px;
}
@media (max-width: 640px) {
  .hero-media {
    position: relative;
    height: 310px;
    flex: none;
    width: 100%;
  }
  .hero-media .hero-image {
    height: 100%;
  }
  .video-toggle {
    left: 15px;
    bottom: 55px;
    font-size: 10px;
    padding: 8px 12px;
    min-height: 40px;
  }
  .comparison {
    aspect-ratio: 4/4.3;
  }
  .comparison-label {
    top: 16px;
    font-size: 9px;
    padding: 8px 12px;
  }
  .comparison-label.is-before {
    left: 16px;
  }
  .comparison-label.is-after {
    right: 16px;
  }
  .comparison-divider > span {
    width: 54px;
    height: 54px;
    border-width: 3px;
  }
  .comparison-divider svg {
    width: 30px;
  }
  .comparison-block > figcaption {
    display: block;
    padding-top: 22px;
  }
  .comparison-block h3 {
    font-size: 26px;
    max-width: 260px;
    line-height: 1.12;
  }
  .comparison-block figcaption > div:last-child {
    text-align: left;
    margin-top: 17px;
    max-width: 280px;
  }
  .comparison-block figcaption p {
    font-size: 10px;
    margin-top: 7px;
  }
  .comparison-block {
    margin-bottom: 30px;
  }
  .audience-grid--compact .audience-card {
    padding-bottom: 30px;
  }
  .audience-grid--compact .audience-card:nth-child(2) {
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .audience-grid--compact .audience-title {
    margin-top: 20px;
  }
  .contact-widget {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
  }
  .contact-widget > summary {
    padding: 4px;
    gap: 0;
    border: 2px solid white;
  }
  .contact-widget > summary > img {
    width: 54px;
    height: 54px;
  }
  .contact-widget-label {
    display: none;
  }
  .contact-widget-icon {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: 2px solid white;
  }
  .contact-widget-icon svg {
    width: 14px;
    height: 14px;
  }
  .contact-widget[open] .contact-widget-icon {
    color: white;
    background: var(--deep);
  }
  .contact-popover {
    width: min(330px, calc(100vw - 32px));
    padding: 24px;
    max-height: calc(100dvh - 175px);
    overflow: auto;
  }
  footer.site {
    padding-bottom: 100px;
  }
}
@media print {
  .contact-widget,
  .video-toggle {
    display: none !important;
  }
  .hero-video {
    display: none;
  }
}
/* Keep the drag grip reachable even when the comparison is fully open. */
.comparison-divider {
  left: 0;
  width: 100%;
  transform: none;
  background: none;
}
.comparison-divider:before {
  content: "";
  position: absolute;
  left: var(--split);
  top: 0;
  bottom: 0;
  width: 2px;
  background: white;
  transform: translateX(-1px);
}
.comparison-divider > span {
  left: clamp(34px, var(--split), calc(100% - 34px));
}
@media (max-width: 640px) {
  .comparison-divider > span {
    left: clamp(28px, var(--split), calc(100% - 28px));
  }
}
html:not(.js) .comparison-range,
html:not(.js) .comparison-hint,
html:not(.js) .video-toggle {
  display: none;
}

/* About De Dreu: a personal opening, editorial story and concrete working principles. */
.about-hero {
  padding: 32px 0 80px;
}
.about-breadcrumb {
  margin-bottom: 42px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 8vw;
  align-items: center;
}
.about-intro .small-label {
  color: var(--mute);
  margin-bottom: 28px;
}
.about-intro h1 {
  font-size: clamp(62px, 6.3vw, 100px);
  line-height: 1.01;
  letter-spacing: -0.055em;
  font-variation-settings: "wdth" 95;
}
.about-intro h1 > span {
  color: var(--accent);
}
.about-intro > p {
  max-width: 41ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--mute);
  margin-top: 30px;
}
.about-intro > p + p {
  margin-top: 18px;
}
.about-intro .text-link {
  margin-top: 25px;
}
.about-origin {
  display: flex;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 45px;
  font-size: 10px;
  line-height: 1.5;
  color: var(--mute);
}
.about-portrait {
  background: var(--deep);
  padding: 0 0 22px;
}
.about-portrait > img {
  width: 100%;
  aspect-ratio: 4/4.6;
  object-fit: cover;
  object-position: center 32%;
}
.about-portrait > figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: white;
  padding: 21px 24px 0;
  font-size: 10px;
}
.about-portrait > figcaption strong {
  font-size: 15px;
  font-weight: 500;
}
.about-portrait > figcaption span {
  color: #d5d9ed;
}
.about-story {
  background: var(--ground-2);
  padding: 80px 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 9vw;
}
.about-story-grid h2 {
  font-size: clamp(45px, 4.5vw, 72px);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.035em;
}
.about-story-grid > div > p {
  font-size: 16px;
  line-height: 1.75;
  max-width: 46ch;
  color: var(--mute);
}
.about-story-grid > div > .about-story-lead {
  font-size: clamp(22px, 2.2vw, 31px);
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 35px;
  margin: 65px 0 0;
  border-top: 1px solid #c6c9c3;
  padding-top: 25px;
}
.about-facts dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--mute);
  margin-bottom: 12px;
}
.about-facts dd {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.about-approach {
  padding: 95px 0;
}
.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8vw;
}
.about-approach-intro h2 {
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}
.about-approach-intro p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--mute);
  margin-top: 28px;
  max-width: 35ch;
}
.about-approach-intro .text-link {
  margin-top: 25px;
}
.about-principles article {
  display: flex;
  gap: 25px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.about-principles article:first-child {
  padding-top: 0;
  border-top: 0;
}
.about-principles article:last-child {
  padding-bottom: 0;
}
.about-principles article > span {
  color: var(--accent);
  font-size: 11px;
  padding-top: 6px;
}
.about-principles h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 17px;
}
.about-principles p {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.65;
  max-width: 43ch;
}
.about-team {
  padding: 80px 0;
  background: var(--deep);
  color: var(--ground);
}
.about-team-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 7vw;
  align-items: center;
}
.about-team figure > img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}
.about-team figure > figcaption {
  font-size: 10px;
  color: #d5d9ed;
  margin-top: 15px;
}
.about-team-copy .small-label {
  color: #d5d9ed;
  margin-bottom: 28px;
}
.about-team-copy h2 {
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.about-team-copy p {
  font-size: 16px;
  color: #d5d9ed;
  line-height: 1.65;
  max-width: 37ch;
  margin-top: 25px;
}
.about-team-copy .text-link {
  color: white;
  margin-top: 28px;
}
@media (max-width: 960px) {
  .about-hero-grid {
    gap: 5vw;
  }
  .about-intro h1 {
    font-size: 58px;
  }
  .about-intro > p {
    font-size: 15px;
  }
  .about-portrait > img {
    aspect-ratio: 3/4;
  }
  .about-portrait > figcaption {
    display: block;
    padding-inline: 20px;
  }
  .about-portrait > figcaption span {
    display: block;
    margin-top: 6px;
  }
  .about-origin {
    gap: 16px;
    font-size: 9px;
    margin-top: 30px;
  }
  .about-story-grid {
    gap: 6vw;
  }
  .about-story-grid h2 {
    font-size: 43px;
  }
  .about-facts dd {
    font-size: 17px;
  }
  .about-team-grid {
    gap: 5vw;
  }
  .about-team-copy h2 {
    font-size: 39px;
  }
  .about-team-copy p {
    font-size: 14px;
  }
  .about-approach-grid {
    gap: 5vw;
  }
}
@media (max-width: 640px) {
  .about-hero {
    padding: 25px 0 55px;
  }
  .about-breadcrumb {
    margin-bottom: 30px;
  }
  .about-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .about-intro .small-label {
    font-size: 9px;
    margin-bottom: 22px;
  }
  .about-intro h1 {
    font-size: 53px;
    line-height: 1.02;
  }
  .about-intro > p {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 23px;
  }
  .about-intro > p + p {
    margin-top: 16px;
  }
  .about-intro .text-link {
    margin-top: 20px;
  }
  .about-origin {
    margin-top: 30px;
    padding-top: 18px;
    font-size: 9px;
    justify-content: space-between;
    gap: 12px;
  }
  .about-portrait {
    width: 100%;
    padding-bottom: 20px;
  }
  .about-portrait > img {
    aspect-ratio: 4/4.3;
    object-position: center 28%;
  }
  .about-portrait > figcaption {
    display: flex;
    padding-top: 18px;
    gap: 20px;
  }
  .about-portrait > figcaption strong {
    font-size: 13px;
  }
  .about-portrait > figcaption span {
    font-size: 9px;
    max-width: 115px;
    margin-top: 0;
  }
  .about-story {
    padding: 50px 0;
  }
  .about-story .section-label > span:last-child {
    max-width: 150px;
  }
  .about-story-grid {
    display: block;
  }
  .about-story-grid h2 {
    font-size: 42px;
    line-height: 1.08;
  }
  .about-story-grid > div {
    margin-top: 30px;
  }
  .about-story-grid > div > .about-story-lead {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 23px;
  }
  .about-story-grid > div > p {
    font-size: 15px;
    line-height: 1.7;
  }
  .about-facts {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 35px;
    padding-top: 25px;
  }
  .about-facts dt {
    font-size: 9px;
    margin-bottom: 7px;
  }
  .about-facts dd {
    font-size: 20px;
  }
  .about-approach {
    padding: 55px 0;
  }
  .about-approach-grid {
    display: block;
  }
  .about-approach-intro h2 {
    font-size: 40px;
  }
  .about-approach-intro p {
    font-size: 15px;
    margin-top: 22px;
  }
  .about-principles {
    margin-top: 40px;
  }
  .about-principles article {
    gap: 20px;
    padding: 25px 0;
  }
  .about-principles article:first-child {
    padding-top: 25px;
    border-top: 1px solid var(--line);
  }
  .about-principles h3 {
    font-size: 25px;
    margin-bottom: 14px;
  }
  .about-principles p {
    font-size: 14px;
  }
  .about-team {
    padding: 45px 0;
  }
  .about-team-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: stretch;
  }
  .about-team figure > img {
    aspect-ratio: 1.1;
  }
  .about-team-copy h2 {
    font-size: 39px;
  }
  .about-team-copy p {
    font-size: 15px;
    margin-top: 23px;
  }
  .about-team-copy .small-label {
    font-size: 9px;
    margin-bottom: 20px;
  }
}

/* Architectural journey: a fixed drawing and chapters driven by natural scroll. */
.audiences .comparison-block {
  margin-top: 110px;
}
.journey {
  background: #172675;
  color: #f7f6f2;
  padding: 110px 0;
  --journey-progress: 0.2;
}
.journey .section-label {
  border-color: #ffffff36;
  color: #e4e7ff;
}
.journey-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10%;
  align-items: end;
  margin: 65px 0 90px;
}
.journey-heading h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.journey-heading > p {
  max-width: 33ch;
  color: #c4c9e5;
  font-size: 18px;
  line-height: 1.7;
  padding-bottom: 6px;
}
.journey-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: start;
}
.journey-stage {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  padding: 24px 26px 0;
  background: var(--ground);
  color: var(--deep);
  box-shadow: 0 20px 60px #07144120;
}
.journey-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #16277a25;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.journey-board-head > span:last-child {
  white-space: nowrap;
}
.journey-current {
  font-size: 22px;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  margin-right: 5px;
}
.journey-art {
  position: relative;
  aspect-ratio: 520 / 370;
  margin: 14px -14px 8px;
}
.journey-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.journey-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 450ms ease,
    transform 750ms var(--ease);
  pointer-events: none;
}
.journey-scene.is-active {
  opacity: 1;
  transform: translateY(0);
}
.journey-scene > svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.journey-scene text {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  fill: currentColor;
}
.journey-scene text[fill] {
  fill: #f7f6f2;
}
.journey-scene .drawing-small {
  font-size: 8px;
  letter-spacing: 0.13em;
}
.journey-scene .drawing-title {
  font-size: 25px;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.drawing-base {
  color: var(--deep);
}
.drawing-trace {
  stroke: var(--accent);
  stroke-width: 1.4px;
}
.drawing-trace[stroke="#f7f6f2"] {
  stroke: #f7f6f2;
}
path.drawing-trace,
.drawing-trace path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.5s var(--ease);
}
.is-active path.drawing-trace,
.is-active .drawing-trace path {
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
}
.drawing-detail {
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.6s ease,
    transform 0.9s var(--ease);
}
.is-active .drawing-detail {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.is-active .detail-late {
  transition-delay: 0.55s;
}
.journey-stage-foot {
  border-top: 1px solid #16277a25;
  padding: 20px 0 24px;
  display: grid;
  gap: 6px;
}
.journey-stage-label {
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.journey-stage-caption {
  font-size: 12px;
  color: #606777;
  line-height: 1.5;
}
.journey-meter {
  height: 3px;
  background: #16277a18;
  margin: 0 -26px;
  overflow: hidden;
}
.journey-meter > span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(var(--journey-progress));
  transform-origin: left;
  transition: transform 750ms var(--ease);
}
.journey-steps {
  list-style: none;
  margin: 0;
  padding: 0 0 0 32px;
  border-left: 1px solid #ffffff30;
}
.journey-step {
  position: relative;
  min-height: 52vh;
  padding: 48px 0 80px;
  opacity: 0.45;
  transition: opacity 650ms ease;
}
.journey-step.is-active,
.journey-step.is-complete {
  opacity: 1;
}
.journey-step:first-child {
  padding-top: 20px;
}
.journey-step:last-child {
  min-height: 45vh;
  padding-bottom: 24px;
}
.journey-dot {
  position: absolute;
  left: -38px;
  top: 53px;
  width: 11px;
  height: 11px;
  background: #172675;
  border: 1px solid #8293d9;
  border-radius: 50%;
  transition:
    background 500ms,
    box-shadow 500ms;
}
.journey-step:first-child .journey-dot {
  top: 25px;
}
.journey-step.is-active .journey-dot {
  background: #e5f18d;
  box-shadow: 0 0 0 7px #e5f18d15;
  border-color: #e5f18d;
}
.journey-step.is-complete .journey-dot {
  background: #d6defa;
}
.journey-step .small-label {
  color: #b9c3f0;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.journey-step h3 {
  font-size: clamp(30px, 3.3vw, 49px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  margin: 24px 0;
}
.journey-step p {
  font-size: 17px;
  line-height: 1.7;
  color: #d1d7ee;
  max-width: 34ch;
}
.journey-note {
  display: block;
  border-top: 1px solid #ffffff25;
  padding-top: 19px;
  margin-top: 30px;
  color: #adb9e5;
  font-size: 12px;
}
.journey-cta {
  margin-top: 50px;
  color: white;
}
@media (max-width: 700px) {
  .audiences .comparison-block {
    margin-top: 64px;
  }
  .journey {
    padding: 65px 0;
  }
  .journey-heading {
    display: block;
    margin: 40px 0;
  }
  .journey-heading h2 {
    font-size: 48px;
  }
  .journey-heading > p {
    font-size: 16px;
    margin-top: 26px;
  }
  .journey-layout {
    display: block;
  }
  .journey-stage {
    top: 78px;
    z-index: 2;
    padding: 12px 18px 0;
    box-shadow:
      0 12px 0 #172675,
      0 20px 24px #17267555;
  }
  .journey-board-head {
    padding-bottom: 8px;
    font-size: 8px;
  }
  .journey-current {
    font-size: 17px;
  }
  .journey-art {
    height: clamp(130px, 23svh, 210px);
    aspect-ratio: auto;
    margin: 2px 0;
  }
  .journey-stage-foot {
    padding: 10px 0 13px;
    gap: 3px;
  }
  .journey-stage-label {
    font-size: 17px;
  }
  .journey-stage-caption {
    font-size: 10px;
  }
  .journey-meter {
    margin: 0 -18px;
  }
  .journey-steps {
    margin-top: 35px;
    margin-left: 5px;
    padding-left: 25px;
  }
  .journey-step {
    min-height: 55vh;
    padding-top: 45px;
    padding-bottom: 65px;
  }
  .journey-step h3 {
    font-size: 35px;
  }
  .journey-step p {
    font-size: 16px;
  }
  .journey-dot {
    left: -31px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .journey-scene,
  .drawing-detail,
  path.drawing-trace,
  .drawing-trace path,
  .journey-meter > span,
  .journey-step,
  .journey-dot {
    transition: none;
  }
  .journey-step {
    opacity: 1;
  }
  .journey-stage {
    position: relative;
    top: auto;
  }
}
html:not(.js) .journey-step {
  opacity: 1;
}
.journey-step {
  scroll-margin-top: 150px;
  opacity: 0.7;
}
.journey-step.is-active,
.journey-step.is-complete {
  opacity: 1;
}
@media (max-width: 700px) {
  .journey-step {
    scroll-margin-top: calc(23svh + 110px);
  }
}

/* The complete desktop opening adapts to available height, not just width. */
@media (min-width: 961px) and (min-height: 560px) {
  .hero {
    height: calc(100svh - var(--header-h));
    min-height: 460px;
    padding: 18px 0 0;
  }
  .hero > .container {
    height: 100%;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    row-gap: clamp(12px, 2svh, 24px);
  }
  .hero .section-label {
    margin: 0;
  }
  .hero-heading {
    margin: 0;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(42px, min(6vw, 10svh), 100px);
  }
  .hero-intro {
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
  }
  .hero-intro .text-link {
    margin-top: 10px;
  }
  .hero-stage {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(270px, 25vw, 350px);
    overflow: hidden;
  }
  .hero-media {
    position: relative;
    inset: auto;
    min-width: 0;
    height: 100%;
  }
  .hero-card {
    position: relative;
    inset: auto;
    width: auto;
    height: 100%;
    padding: clamp(18px, 2.4svh, 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-card .small-label {
    margin-bottom: clamp(8px, 1.6svh, 20px);
  }
  .hero-card h2 {
    font-size: clamp(25px, 4svh, 38px);
  }
  .hero-card p {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .hero-card .btn {
    margin-top: 16px;
    min-height: 44px;
    padding: 10px 12px;
  }
  .hero-photo-caption {
    right: calc(clamp(270px, 25vw, 350px) + 22px);
    bottom: 18px;
    left: 22px;
  }
  .hero-stage:after {
    right: clamp(270px, 25vw, 350px);
  }
  .promise-strip {
    min-height: 44px;
    font-size: 11px;
    gap: 14px;
    padding-bottom: 8px;
  }
  .promise-strip > a {
    font-size: 10px;
  }
  .contact-widget {
    bottom: 18px;
    right: 18px;
  }
}
@media (min-width: 961px) and (max-height: 650px) {
  .hero-card .small-label {
    display: none;
  }
  .hero-card p {
    font-size: 12px;
  }
  .hero-card h2 {
    font-size: 25px;
  }
  .hero-intro {
    font-size: 12px;
  }
  .hero-intro .text-link {
    margin-top: 6px;
  }
  .hero .section-label {
    font-size: 9px;
  }
  .hero-heading {
    gap: 25px;
  }
  .hero-card {
    padding: 16px;
  }
  .hero-card .btn {
    margin-top: 12px;
  }
  .promise-strip > span:before {
    margin-right: 6px;
  }
}
/* Side-by-side audience intros bring practical content higher up the page. */
.audience-opening {
  padding: 32px 0 55px;
}
.audience-opening-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 7%;
  align-items: center;
  margin-top: 30px;
}
.audience-opening-grid h1 {
  font-size: clamp(44px, 5.7vw, 82px);
  line-height: 1.04;
  margin: 20px 0 25px;
}
.audience-opening-grid p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 49ch;
  color: var(--mute);
}
.audience-opening-grid .text-link {
  margin-top: 25px;
}
.audience-opening-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.audience-opening-grid figcaption {
  font-size: 10px;
  color: var(--mute);
  margin-top: 7px;
}
.audience-opening + section {
  padding-top: 45px;
}
.service-hero {
  padding-bottom: 30px;
}
.service-hero > .container + .container {
  margin-top: 25px;
}
.service-hero h1 {
  font-size: clamp(42px, 5.4vw, 82px);
}
.service-hero .lead {
  font-size: 19px;
  margin-top: 20px;
}
.service-nav {
  margin-top: 24px;
  padding-block: 9px;
}
.service-hero + section {
  padding-top: 28px;
}
.paginabeeld img {
  height: 300px;
}
@media (max-width: 700px) {
  .audience-opening {
    padding-top: 24px;
    padding-bottom: 35px;
  }
  .audience-opening-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 25px;
  }
  .audience-opening-grid h1 {
    font-size: 45px;
    margin: 18px 0 22px;
  }
  .audience-opening-grid p {
    font-size: 16px;
  }
  .audience-opening-grid img {
    height: 240px;
  }
  .service-hero .lead {
    font-size: 17px;
  }
  .paginabeeld img {
    height: 230px;
  }
}
@media (min-width: 961px) and (min-height: 560px) {
  .hero {
    height: calc(100svh - var(--header-h) - 1px);
  }
  .hero-stage {
    grid-template-rows: minmax(0, 1fr);
  }
  .hero-media,
  .hero-card {
    min-height: 0;
  }
  .hero-media .hero-image {
    position: absolute;
    inset: 0;
  }
  .hero-card {
    padding-bottom: 40px;
  }
}
@media (min-width: 961px) and (max-height: 650px) {
  .hero-card {
    padding-bottom: 16px;
  }
}

/* One full-width film, with all supporting information in a single aligned band. */
.hero-heading {
  display: block;
  margin-bottom: 24px;
}
.hero-summary {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 20px 0 25px;
  border-top: 1px solid var(--line);
}
.hero-summary-title {
  font-size: 22px;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.hero-summary-copy {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 62ch;
}
.hero-summary .btn {
  font-size: 12px;
  min-height: 46px;
  gap: 35px;
}
.hero-stage {
  display: block;
  width: 100%;
  height: 460px;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.hero-stage:after {
  right: 0;
}
.hero-photo-caption {
  left: 24px;
  right: 24px;
  bottom: 20px;
}
@media (min-width: 961px) and (min-height: 560px) {
  .hero > .container {
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
    row-gap: clamp(10px, 1.7svh, 20px);
  }
  .hero-heading {
    display: block;
    margin: 0;
  }
  .hero h1 {
    font-size: clamp(42px, min(6vw, 9svh), 100px);
    line-height: 0.98;
  }
  .hero-summary {
    padding: clamp(10px, 1.7svh, 20px) 0 0;
    gap: clamp(24px, 4vw, 70px);
  }
  .hero-stage {
    display: block;
    height: 100%;
    min-height: 0;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
  }
  .hero-stage:after {
    right: 0;
  }
  .hero-photo-caption {
    right: 24px;
  }
  .promise-strip {
    padding-right: 255px;
    justify-content: space-between;
  }
  .promise-strip > a {
    display: none;
  }
}
@media (min-width: 961px) and (max-height: 680px) {
  .hero-summary {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 24px;
  }
  .hero-summary-title {
    font-size: 19px;
  }
  .hero-summary-copy {
    font-size: 12px;
    line-height: 1.5;
  }
  .hero-summary .btn {
    min-height: 42px;
    padding: 10px 15px;
  }
  .hero .section-label {
    font-size: 10px;
  }
}
@media (max-width: 960px) {
  .hero-summary {
    grid-template-columns: 1fr auto;
    gap: 16px 28px;
  }
  .hero-summary-title {
    grid-column: 1/-1;
    font-size: 23px;
  }
  .hero-summary-title br {
    display: none;
  }
  .hero-summary-copy {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .hero-heading {
    margin-bottom: 24px;
  }
  .hero-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0 26px;
  }
  .hero-summary-title {
    font-size: 22px;
  }
  .hero-summary-copy {
    font-size: 14px;
    max-width: 42ch;
  }
  .hero-summary .btn {
    width: 100%;
    justify-content: space-between;
  }
  .hero-stage {
    height: 350px;
    margin: 0;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
  }
  .hero-photo-caption {
    left: 16px;
    right: 16px;
    bottom: 18px;
    font-size: 10px;
  }
}
.hero-summary p {
  margin: 0;
}
@media (min-width: 961px) {
  .hero-photo-caption {
    right: 265px;
  }
}

/* Five architectural studies: a shared perspective, a motion for every craft. */
.service-studio {
  background: #16277a;
  color: #f7f6f2;
  padding: 23px 24px 0;
  overflow: hidden;
  top: calc(var(--header-h) + 24px);
}
.craft-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 8px;
  letter-spacing: 0.13em;
  color: #d5ddff;
  padding-bottom: 17px;
  border-bottom: 1px solid #ffffff25;
}
.craft-count {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.craft-scenes {
  position: relative;
  aspect-ratio: 600 / 510;
  max-height: calc(100svh - var(--header-h) - 365px);
  min-height: 190px;
  margin: 0 -24px;
}
.craft-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 350ms ease,
    transform 650ms var(--ease);
  pointer-events: none;
}
.craft-scene.is-active {
  opacity: 1;
  transform: translateY(0);
}
.craft-scene svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.craft-copy {
  border-top: 1px solid #ffffff25;
  padding: 21px 0 23px;
  min-height: 130px;
}
.craft-copy .craft-title {
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 17ch;
}
.craft-copy .craft-note {
  font-size: 11px;
  line-height: 1.5;
  margin-top: 12px;
  color: #c1cbea;
  max-width: 37ch;
}
.craft-controls {
  display: flex;
  margin: 0 -24px;
  border-bottom: 1px solid #ffffff25;
}
.craft-select {
  position: relative;
  flex: 1;
  min-height: 49px;
  border: 0;
  border-right: 1px solid #ffffff25;
  color: #b3bfeb;
  background: transparent;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  transition:
    background 180ms,
    color 180ms;
}
.craft-select:last-child {
  border-right: 0;
}
.craft-select.is-active {
  background: #f7f6f2;
  color: #16277a;
}
.craft-select:focus-visible {
  outline: 2px solid #f7f6f2;
  outline-offset: -5px;
}
.craft-select.is-active:focus-visible {
  outline-color: #16277a;
}
.craft-select:active {
  background: #b2bfeb;
}
@media (hover: hover) and (pointer: fine) {
  .craft-select:hover {
    background: #ffffff18;
    color: white;
  }
  .craft-select.is-active:hover {
    background: #f7f6f2;
    color: #16277a;
  }
}
.service-row.is-selected {
  color: var(--accent);
}
.service-row.is-selected .service-number {
  color: var(--accent);
}
.service-row.is-selected .service-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.service-row.is-selected .service-arrow .arrow {
  transform: rotate(0deg);
}
/* Animations run once per selection, then hold a composed final frame. */
.craft-scene.is-active .craft-assemble,
.craft-scene.is-active .craft-tile,
.craft-scene.is-active .craft-shelf {
  animation: craft-fit 1800ms var(--ease) both;
  animation-delay: var(--delay, 0s);
}
.craft-scene.is-active .craft-object {
  animation: craft-fit 1700ms var(--ease) 700ms both;
}
.craft-scene.is-active .craft-trace {
  animation: craft-draw 1800ms var(--ease) 350ms both;
}
.craft-scene.is-active .craft-circuit {
  animation: craft-draw 1600ms ease-in-out 250ms both;
}
.craft-scene.is-active .craft-fixing {
  animation: craft-mark 1800ms ease both;
}
.craft-scene.is-active .craft-light {
  animation: craft-illuminate 2200ms ease both;
}
.craft-scene.is-active .craft-paint {
  animation: craft-coat 2400ms cubic-bezier(0.65, 0, 0.35, 1) both;
}
.craft-scene.is-active .craft-roller {
  animation: craft-roll 2600ms cubic-bezier(0.65, 0, 0.35, 1) both;
}
.craft-scene.is-active .craft-layer {
  animation: craft-fit 1600ms var(--ease) both;
}
.craft-scene.is-active .layer-level {
  animation-delay: 180ms;
}
.craft-scene.is-active .craft-tile {
  animation-duration: 1900ms;
}
.craft-trace,
.craft-circuit {
  stroke-dasharray: 1;
}
.service-studio:not(.is-running) .craft-scene * {
  animation-play-state: paused !important;
}
@keyframes craft-fit {
  from {
    transform: translateY(-42px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes craft-draw {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes craft-mark {
  0%,
  25% {
    opacity: 0;
  }
  45%,
  65% {
    opacity: 1;
  }
  55% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes craft-illuminate {
  0%,
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes craft-coat {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0);
  }
}
@keyframes craft-roll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(118px);
    opacity: 1;
  }
}
@media (max-width: 960px) and (min-width: 641px) {
  .services-layout {
    gap: 28px;
    grid-template-columns: 1.1fr 1fr;
  }
  .service-studio {
    padding: 18px 18px 0;
  }
  .craft-scenes,
  .craft-controls {
    margin-left: -18px;
    margin-right: -18px;
  }
  .craft-head {
    font-size: 7px;
    letter-spacing: 0.06em;
  }
  .craft-copy {
    min-height: 132px;
  }
}
@media (max-width: 640px) {
  .services-layout {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
  }
  .service-studio {
    display: block;
    order: -1;
    position: sticky;
    top: 78px;
    z-index: 2;
    padding: 12px 17px 0;
    box-shadow: 0 10px 0 var(--ground);
  }
  .craft-head {
    font-size: 7px;
    padding-bottom: 8px;
  }
  .craft-scenes {
    height: clamp(156px, 24svh, 218px);
    aspect-ratio: auto;
    margin: -5px -17px -9px;
  }
  .craft-copy {
    padding: 9px 0 12px;
    min-height: 66px;
  }
  .craft-copy .craft-title {
    font-size: 20px;
    max-width: none;
  }
  .craft-copy .craft-note {
    display: none;
  }
  .craft-controls {
    margin: 0 -17px;
  }
  .craft-select {
    min-height: 44px;
    font-size: 10px;
  }
  .service-index {
    min-width: 0;
  }
  .service-row {
    min-height: 240px;
    padding-top: 28px;
    padding-bottom: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .craft-scene,
  .craft-scene * {
    animation: none !important;
    transition: none !important;
  }
  .craft-roller {
    opacity: 0;
  }
  .craft-trace,
  .craft-circuit {
    stroke-dashoffset: 0;
  }
}
html:not(.js) .craft-scene * {
  animation: none !important;
}
@media print {
  .service-studio {
    position: static;
    break-inside: avoid;
  }
  .craft-controls {
    display: none;
  }
}
/* Leave the final service enough scroll room to keep its illustration in view. */
.service-index .service-row:last-child {
  min-height: calc(100svh - var(--header-h) - 90px);
}

.craft-roller > path:first-child {
  stroke: #16277a;
}

/* Production contact photography. Preserve the image proportions. */
.contact-grid .contact-portrait {
  display: block;
  width: 100%;
  max-width: 370px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 32%;
  margin: 24px 0 32px;
}
.form-honey { display: none !important; }
.contact-form button:disabled { cursor: wait; opacity: .65; }
