/*
 * Interbit Webdesign
 * Ontwerp & realisatie: Johan Kiewiet
 * Vormgeving, navigatie, interactie en schermformaten.
 */

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

:root {
  --paper: #111f33;
  --paper-deep: #0c192b;
  /* Licht blauwgrijs, passend bij de jas op de portretfoto. */
  --ink: #bdc7d6;
  --muted: #a8b4c6;
  --accent: #d8a073;
  --accent-soft: #f5c79d;
  --line: #bdc7d624;
  --panel-radius: 14px;
  --panel-border: #60769066;
  --sans: 'Manrope', Arial, sans-serif;
  --page-width: 1480px;
  --gutter: clamp(24px, 5vw, 80px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --bs-body-font-family: var(--sans);
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--paper);
  --bs-link-color-rgb: 189, 199, 214;
  --bs-link-hover-color-rgb: 245, 199, 157;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 65% 850px at 100% 0%, #365d8552, transparent 72%),
    radial-gradient(ellipse 75% 900px at 0% 0%, #c48c6112, transparent 72%),
    linear-gradient(115deg, #15263d, #0e1c30 58%, #182b43);
  font: 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.055em;
}

h2 {
  font-size: calc(clamp(38px, 4.9vw, 76px) * var(--cms-type-scale, 1));
}

h2 em {
  color: var(--accent);
  font-style: normal;
}

h3 {
  font-size: calc(28px * var(--cms-type-scale, 1));
}

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

a:hover {
  color: inherit;
}

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

button {
  cursor: pointer;
  border: 0;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

::selection {
  background: var(--accent-soft);
  color: var(--paper-deep);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.section-shell {
  width: calc(100% - var(--gutter) * 2);
  max-width: var(--page-width);
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(76px, 9vw, 136px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: calc(11px * var(--cms-type-scale, 1));
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .1em;
}

.status-dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 14px 20px;
  color: var(--paper);
  background: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 16px 23px;
  border: 1px solid #bdc7d680;
  border-radius: 999px;
  background: transparent;
  font-size: calc(14px * var(--cms-type-scale, 1));
  font-weight: 600;
  line-height: 1.35;
  transition: color .25s, background .25s, border-color .25s;
}

.button > span {
  font-size: calc(23px * var(--cms-type-scale, 1));
  line-height: 1;
  transition: transform .3s var(--ease);
}

.button:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button:hover > span {
  transform: translate(3px, -3px);
}

.button-accent, .button-dark {
  color: var(--paper-deep);
  background: var(--accent);
  border-color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-size: calc(14px * var(--cms-type-scale, 1));
  transition: color .25s, border-color .25s;
}

.text-link > span {
  font-size: calc(21px * var(--cms-type-scale, 1));
  transition: transform .3s var(--ease);
}

.text-link:hover {
  color: var(--accent-soft);
  border-color: var(--accent);
}

.text-link:hover > span {
  transform: translate(3px, -2px);
}

/* Navigatie: vaste klikvlakken, rollende letters. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 104px;
  padding-inline: var(--gutter);
  border-bottom: 1px solid transparent;
  /* Donkere satijnglans met een zachte lichtval langs de bovenkant. */
  background:
    linear-gradient(180deg, #bdc7d60d, #bdc7d603 46%, #050d181a),
    radial-gradient(ellipse at 42% 0%, #718bad1c, transparent 65%),
    linear-gradient(110deg, #0b1728f5, #17283ff5 48%, #0c192bf5);
  box-shadow:
    inset 0 1px 0 #bdc7d617,
    inset 0 -1px 0 #060e184d,
    0 8px 24px #050d182e;
  backdrop-filter: blur(18px);
  transition: height .3s, border-color .3s;
}

.site-header.is-scrolled {
  height: 84px;
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

/* Bovenaan groter; de gereserveerde ruimte houdt de menulinks op hun plek. */
.site-header > .brand {
  margin-right: 64px;
  transform: scale(1.3);
  transform-origin: left center;
  transition: transform .3s var(--ease);
}

.site-header.is-scrolled > .brand {
  transform: scale(1);
}

.brand-type {
  font-size: calc(44px * var(--cms-type-scale, 1));
  font-weight: 800;
  line-height: .86;
  letter-spacing: -1.7px;
}

.brand-type > span {
  display: block;
  margin-top: 10px;
  font-size: calc(10px * var(--cms-type-scale, 1));
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1;
}

.brand-symbol {
  display: grid;
  grid-template-columns: repeat(2, 20px);
  grid-template-rows: repeat(2, 24px);
  gap: 5px;
  width: 45px;
  transition: transform .4s var(--ease);
}

.brand-symbol i {
  background: var(--accent);
  border-radius: 1px;
}

.brand-symbol i:nth-child(2) {
  border-top-right-radius: 13px;
}

.brand-symbol i:nth-child(3) {
  height: 15px;
}

.brand:hover .brand-symbol {
  transform: rotate(-7deg);
}

.desktop-nav {
  display: flex;
  gap: clamp(24px, 3vw, 46px);
  margin-left: auto;
}

.desktop-nav > a {
  position: relative;
  padding-block: 10px;
  font-size: calc(18px * var(--cms-type-scale, 1));
  font-weight: 550;
  letter-spacing: -.015em;
}

.interbit-nav-link {
  position: relative;
  width: max-content;
}

.nav-roll {
  position: relative;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.nav-roll-text, .nav-roll-copy {
  display: block;
  transition: transform .38s cubic-bezier(.22, .68, .2, 1);
}

.nav-roll-copy {
  position: absolute;
  inset: 0;
  color: var(--accent);
  transform: translateY(100%);
}

.interbit-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: var(--nav-origin, 50%) center;
  transition: transform .32s var(--ease);
}

.desktop-nav > .interbit-nav-link::after {
  bottom: 3px;
}

.interbit-nav-link:focus-visible::after {
  transform: scaleX(1);
}

.interbit-nav-link:focus-visible .nav-roll-text {
  transform: translateY(-100%);
}

.interbit-nav-link:focus-visible .nav-roll-copy {
  transform: translateY(0);
}

.header-cta {
  min-height: 48px;
  padding: 13px 18px;
  font-size: calc(13px * var(--cms-type-scale, 1));
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

/* Eerste scherm: grote letters en het portret, met ruimte boven het hoofd. */
.art-scene {
  position: relative;
  isolation: isolate;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 0 clamp(38px, 5vw, 80px);
  padding-top: clamp(42px, 5vw, 76px);
}

/* Lijnlandschap bovenaan: dun, scherp en zonder vervagende uiteinden. */
.section-art {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.section-art-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .section-art { max-height: 680px; }
}

.hero-copy {
  min-width: 0;
  align-self: center;
  padding-bottom: 42px;
  animation: arrive .85s var(--ease) both;
}

.hero h1 {
  font-size: calc(clamp(62px, 7.6vw, 122px) * var(--cms-type-scale, 1));
  font-weight: 760;
  line-height: .98;
  letter-spacing: -.075em;
}

.hero h1 > span {
  display: block;
  white-space: nowrap;
}

.hero h1 > .hero-middle {
  display: flex;
  align-items: center;
  gap: .45em;
}

.hero-middle i {
  color: var(--accent);
  font-size: .7em;
  font-weight: 400;
  font-style: normal;
}

.hero-accent {
  color: var(--accent);
}

.hero-intro {
  max-width: 460px;
  margin-top: 32px;
  color: var(--muted);
  font-size: calc(16px * var(--cms-type-scale, 1));
  line-height: 1.85;
}

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

.hero-visual {
  min-width: 0;
  position: relative;
  animation: arrive 1s .12s var(--ease) both;
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  max-height: 680px;
  overflow: hidden;
  border-radius: 3px;
  background: #d9caba;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform-origin: center top;
  transition: transform 1s var(--ease);
}

.portrait-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.portrait-label strong {
  font-size: calc(clamp(26px, 2.4vw, 34px) * var(--cms-type-scale, 1));
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -.055em;
}

.portrait-label strong > span {
  color: var(--accent);
}

.portrait-label > span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: calc(10px * var(--cms-type-scale, 1));
  letter-spacing: .16em;
}

.portrait-label > span::before {
  content: '';
  width: 28px;
  height: 1px;
  flex: none;
  background: var(--accent);
}

.hero-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: calc(10px * var(--cms-type-scale, 1));
  letter-spacing: .075em;
}

.hero-bottom > a {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-bottom > a > span {
  color: var(--accent);
  font-size: calc(20px * var(--cms-type-scale, 1));
}

/* Grote typografie: twee regels bewegen tegengesteld met de scroll. */
.type-ribbon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-block: clamp(52px, 6vw, 92px);
  overflow: hidden;
  color: var(--accent);
}

.type-track {
  display: flex;
  flex: none;
  width: max-content;
}

.type-group {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: .45em;
  min-width: 100vw;
  padding-inline: 5vw;
  font-size: calc(clamp(32px, 10.8vw, 164px) * var(--cms-type-scale, 1));
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: -.065em;
  white-space: nowrap;
}

.type-group > i {
  font-size: .55em;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.type-group.track-repeat {
  display: none;
}

.type-track-code {
  color: var(--ink);
}

.type-track-code .type-group {
  font-size: calc(clamp(20px, 6.4vw, 104px) * var(--cms-type-scale, 1));
  letter-spacing: -.025em;
}

.has-scroll-type .type-track {
  translate: var(--scroll-x, 0px) 0;
}

.has-scroll-type .type-group.track-repeat {
  display: flex;
}

/* Diensten: open rijen met heldere hiërarchie. */
.services {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: clamp(40px, 7vw, 105px);
  margin-bottom: 60px;
}

.section-heading > p {
  max-width: 390px;
  justify-self: end;
  color: var(--muted);
  line-height: 1.85;
}

.pricing > .section-heading {
  align-items: center;
}

.pricing > .section-heading > p {
  max-width: 520px;
  color: var(--ink);
  font-size: calc(clamp(16px, 1.35vw, 20px) * var(--cms-type-scale, 1));
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -.015em;
  text-wrap: pretty;
}

.service-grid {
  border-bottom: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  padding-block: 42px;
  border-top: 1px solid var(--line);
  --reveal-x: -22px;
}

.service-item:nth-child(even) {
  --reveal-x: 22px;
}

.item-number {
  padding-top: 9px;
  color: var(--accent);
  font-size: calc(12px * var(--cms-type-scale, 1));
}

.service-item h3 {
  max-width: 400px;
  font-size: calc(clamp(28px, 3.05vw, 46px) * var(--cms-type-scale, 1));
  line-height: 1.18;
  transition: color .3s;
}

.service-item > p {
  max-width: 450px;
  color: var(--muted);
  font-size: calc(16px * var(--cms-type-scale, 1));
  line-height: 1.85;
}

.service-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: var(--muted);
  font-size: calc(12px * var(--cms-type-scale, 1));
}

/* Pakketten met diepte, een vaste opbouw en rustige hoveraccenten. */
.pricing {
  border-top: 1px solid var(--line);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 2.7vw, 40px);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background: radial-gradient(ellipse at 0% 0%, #36516d45, transparent 65%),
    linear-gradient(145deg, #1a2e45, #112238);
  box-shadow: inset 0 1px 0 #bdc7d608, 0 20px 50px #060f1a33;
}

.price-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .3;
  transform: scaleX(.45);
  transition: opacity .3s, transform .5s var(--ease);
}

.price-card-business {
  border-color: #d8a07380;
  background: radial-gradient(ellipse at 100% 0%, #d8a07314, transparent 65%),
    linear-gradient(145deg, #24394f, #172a40);
}

.price-card-business::before {
  opacity: .85;
  transform: scaleX(1);
}

.price-card-complete {
  border-color: #bdc7d659;
  background: radial-gradient(ellipse at 100% 0%, #bdc7d614, transparent 65%),
    linear-gradient(145deg, #20354c, #13263b);
}

.package-label {
  margin-bottom: 28px;
  color: var(--accent-soft);
  font-size: calc(9px * var(--cms-type-scale, 1));
  font-weight: 650;
  letter-spacing: .055em;
}

.price-card h3 {
  font-size: calc(clamp(26px, 2.45vw, 36px) * var(--cms-type-scale, 1));
  line-height: 1.2;
  letter-spacing: -.045em;
}

.package-description {
  min-height: 5.4em;
  margin-top: 18px;
  color: var(--muted);
  font-size: calc(14px * var(--cms-type-scale, 1));
  line-height: 1.8;
}

.package-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.package-price > span {
  color: var(--muted);
  font-size: calc(12px * var(--cms-type-scale, 1));
}

.package-price > strong {
  color: var(--accent-soft);
  font-size: calc(clamp(46px, 4.4vw, 66px) * var(--cms-type-scale, 1));
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.065em;
  white-space: nowrap;
}

.package-tax {
  margin-top: 8px;
  color: var(--muted);
  font-size: calc(11px * var(--cms-type-scale, 1));
}

.package-care {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  margin-top: 26px;
  padding: 16px 14px;
  border: 1px solid #d8a0734d;
  border-radius: 14px;
  background: linear-gradient(125deg, #d8a07316, #d8a07304);
}

.package-care-symbol {
  display: grid;
  width: 30px;
  height: 30px;
  flex: none;
  place-items: center;
  border: 1px solid #d8a07366;
  border-radius: 50%;
  color: var(--accent-soft);
  font-size: calc(15px * var(--cms-type-scale, 1));
  line-height: 1;
}

.package-care > div {
  min-width: 0;
}

.package-care strong {
  display: block;
  color: var(--accent-soft);
  font-size: calc(clamp(15px, 1.25vw, 18px) * var(--cms-type-scale, 1));
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.package-care > div > span {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: calc(11px * var(--cms-type-scale, 1));
  line-height: 1.5;
}

.package-care-optional {
  border-color: #bdc7d62e;
  background: #bdc7d607;
}

.package-care-optional .package-care-symbol {
  border-color: #bdc7d659;
  color: var(--ink);
}

.package-care-optional strong {
  color: var(--ink);
}

.package-features {
  display: grid;
  gap: 13px;
  margin-block: 30px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--ink);
  font-size: calc(13px * var(--cms-type-scale, 1));
  line-height: 1.7;
}

.package-features > li {
  position: relative;
  padding-left: 18px;
}

.package-features > li::before {
  content: '';
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.package-cta {
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-inline: 16px;
  border-color: #8290a580;
  color: var(--ink);
  background: transparent;
  font-size: calc(12px * var(--cms-type-scale, 1));
}

.price-card-business .package-cta {
  border-color: var(--accent);
  color: var(--paper-deep);
  background: var(--accent);
}

.package-cta:hover {
  border-color: var(--accent);
  color: var(--ink);
  background: #d8a07314;
}

.price-card-business .package-cta:hover {
  color: var(--paper-deep);
  background: var(--accent-soft);
}

.price-card:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.price-card-entertainment {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px clamp(32px, 6vw, 88px);
  border-color: #d8a07359;
  background: radial-gradient(ellipse at 0% 100%, #d8a07312, transparent 65%),
    linear-gradient(145deg, #20354c, #112238);
}

.price-card-entertainment .package-intro {
  grid-row: 1 / 3;
}

.price-card-entertainment .package-description {
  min-height: 0;
  max-width: 46ch;
}

.price-card-entertainment .package-price > strong {
  font-size: calc(clamp(26px, 3vw, 40px) * var(--cms-type-scale, 1));
  letter-spacing: -.04em;
  white-space: normal;
}

.price-card-entertainment .package-features {
  margin: 0;
  padding-top: 0;
  border-top: 0;
}

.price-card-entertainment .package-cta {
  grid-column: 2;
  align-self: end;
}

.pricing-note {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 25px 60px;
  margin-top: 28px;
}

.pricing-note > p {
  max-width: 760px;
  color: var(--ink);
  font-size: calc(16px * var(--cms-type-scale, 1));
  line-height: 1.75;
}

.pricing-note .text-link {
  flex: none;
  font-size: calc(12px * var(--cms-type-scale, 1));
}

/* Ervaring als doorlopend verhaal, zonder losse kaarten. */
.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: clamp(50px, 9vw, 135px);
  border-top: 1px solid var(--line);
}

.about-aside {
  position: sticky;
  top: 132px;
}

.about-name {
  font-size: calc(clamp(72px, 9vw, 130px) * var(--cms-type-scale, 1));
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.07em;
}

.about-name > span {
  color: var(--accent);
}

.about-role {
  margin-top: 20px;
  color: var(--muted);
  font-size: calc(14px * var(--cms-type-scale, 1));
  line-height: 1.9;
}

.experience-list {
  display: grid;
  gap: 22px;
  margin: 42px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.experience-list dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: calc(11px * var(--cms-type-scale, 1));
}

.experience-list dd {
  margin: 0;
  font-size: calc(14px * var(--cms-type-scale, 1));
}

.about-copy h2 {
  margin-bottom: 32px;
  font-size: calc(clamp(36px, 4.5vw, 67px) * var(--cms-type-scale, 1));
}

.about-copy > p {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: calc(17px * var(--cms-type-scale, 1));
  line-height: 1.95;
}

/* Skills: de ring en het percentage laten dezelfde score zien. */
.skills-section {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--line);
}

.skills-section::before {
  position: absolute;
  z-index: -1;
  inset: 12% 0 0;
  background: radial-gradient(ellipse at 50% 50%, #c48c6110, transparent 68%);
  content: '';
  pointer-events: none;
}

.skills-note {
  margin: -12px 0 24px;
  color: var(--muted);
  font-size: calc(12px * var(--cms-type-scale, 1));
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-item {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 46px 20px 32px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 1px 1px, #bdc7d609 1px, transparent 0) 0 0 / 18px 18px,
    linear-gradient(150deg, #24394f, #132439 58%, #102034);
  box-shadow: inset 0 1px 0 #bdc7d609, 0 16px 38px #07132240;
  text-align: center;
}

.skills-grid .skill-item {
  transition: opacity .75s var(--ease), transform .9s var(--ease),
    translate .45s var(--ease), border-color .45s ease, box-shadow .45s ease;
  transition-delay: var(--reveal-delay, 0s), var(--reveal-delay, 0s), 0s, 0s, 0s;
}

.skill-item:nth-child(3n + 2) { --reveal-delay: .1s; }
.skill-item:nth-child(3n) { --reveal-delay: .2s; }

.skill-item::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(280px circle at var(--skill-light-x, 50%) var(--skill-light-y, 10%), #f5c79d25, transparent 70%);
  opacity: .45;
  transition: opacity .5s ease;
  content: '';
  pointer-events: none;
}

.skill-item::after {
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f5c79d99, transparent);
  content: '';
  pointer-events: none;
}

.skill-item.is-counting::before {
  opacity: 1;
}

.skill-meter {
  position: relative;
  display: grid;
  width: clamp(128px, 12vw, 176px);
  max-width: calc(100% - 24px);
  aspect-ratio: 1;
  flex: none;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: conic-gradient(
    #ae704a 0deg,
    var(--accent) calc(var(--skill-progress, var(--skill-score)) * 2.4deg),
    var(--ink) calc(var(--skill-progress, var(--skill-score)) * 3.6deg),
    #bdc7d60c 0deg
  );
  box-shadow: 0 0 36px #d8a07312, 0 12px 28px #07132266;
  transition: scale .45s var(--ease), box-shadow .45s ease;
}

.skill-meter::before {
  position: absolute;
  inset: 10px;
  border: 1px solid #bdc7d610;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, #273b50, #111f33 70%);
  box-shadow: inset 0 3px 18px #07132266;
  content: '';
}

.skill-meter::after {
  position: absolute;
  inset: -11px;
  border: 1px dashed #d8a07338;
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.skill-orbit {
  position: absolute;
  z-index: 1;
  inset: 5px;
  transform: rotate(calc(var(--skill-progress, var(--skill-score)) * 3.6deg));
  pointer-events: none;
}

.skill-orbit::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 8px var(--ink), 0 0 18px #bdc7d6a6;
  transform: translate(-50%, -50%);
  content: '';
}

.skill-meter-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.skill-code {
  padding: 4px 8px;
  border: 1px solid #d8a07338;
  border-radius: 6px;
  background: #d8a0730a;
  color: var(--accent);
  font-family: ui-monospace, monospace;
  font-size: calc(11px * var(--cms-type-scale, 1));
  font-weight: 600;
  line-height: 1;
}

.skill-score {
  font-size: calc(clamp(32px, 3.4vw, 48px) * var(--cms-type-scale, 1));
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
}

.skill-score > span {
  margin-left: 2px;
  color: var(--muted);
  font-size: .42em;
  font-weight: 500;
  letter-spacing: 0;
}

.skill-item h3 {
  font-size: calc(clamp(20px, 2vw, 28px) * var(--cms-type-scale, 1));
  line-height: 1.2;
  letter-spacing: -.035em;
}

.skill-item > p {
  max-width: 24ch;
  margin-top: 10px;
  color: var(--muted);
  font-size: calc(12px * var(--cms-type-scale, 1));
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .skill-item:hover {
    translate: 0 -6px;
    border-color: #d8a07399;
    box-shadow: inset 0 1px 0 #f5c79d26, 0 24px 52px #07132280;
  }
  .skill-item:hover::before { opacity: 1; }
  .skill-item:hover .skill-meter {
    scale: 1.035;
    box-shadow: 0 0 42px #d8a07325, 0 12px 28px #07132266;
  }
}

/* Bootstrap-grid en -kaarten, met de eigen kleuren en details van Interbit. */
.process {
  border-top: 1px solid var(--line);
}

.process-grid {
  --bs-gutter-x: 26px;
  --bs-gutter-y: 26px;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.process-step {
  --reveal-x: -28px;
  --reveal-delay: 0s;
}

.process-step:nth-child(even) {
  --reveal-x: 28px;
  --reveal-delay: .12s;
}

.process-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: var(--panel-radius);
  background: radial-gradient(ellipse at 0% 0%, #3f628238, transparent 70%),
    linear-gradient(145deg, #1b3048, #12243a);
  box-shadow: 0 20px 55px #07132233;
}

.process-step:nth-child(even) .process-card {
  background: radial-gradient(ellipse at 100% 0%, #d8a07312, transparent 65%),
    linear-gradient(145deg, #20354c, #14263c);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform-origin: left;
  transition: transform 1.1s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.process-step:nth-child(even) .process-card::before {
  transform-origin: right;
}

.process-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 100% 0%, #d8a0731c, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}

.step-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.step-symbol {
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  width: 76px;
  height: 76px;
  border: 1px solid #d8a07366;
  border-radius: 22px;
  color: var(--accent-soft);
  background: radial-gradient(circle at 25% 15%, #f5c79d24, transparent 75%),
    linear-gradient(145deg, #334357, #1c3046);
  box-shadow: inset 0 1px 0 #f5c79d26, 0 10px 24px #070f1a33;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}

.step-symbol .bi {
  display: block;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

/* De kaart schuift in beeld; het symbool en de bovenlijn volgen iets later. */
.process-step.will-reveal .process-card::before {
  transform: scaleX(0);
}

.process-step.will-reveal .step-symbol .bi {
  opacity: 0;
  transform: translateY(7px) scale(.88);
  transition: opacity .65s ease, transform .9s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0s) + .2s);
}

.process-step.will-reveal:is(.is-visible, :focus-within) .process-card::before {
  transform: scaleX(1);
}

.process-step.will-reveal:is(.is-visible, :focus-within) .step-symbol .bi {
  opacity: 1;
  transform: none;
}

.step-number {
  display: block;
  color: var(--accent);
  font-size: calc(54px * var(--cms-type-scale, 1));
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.06em;
  opacity: .65;
}

.process-grid h3 {
  font-size: calc(clamp(27px, 2.25vw, 34px) * var(--cms-type-scale, 1));
  line-height: 1.25;
}

.process-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: calc(15px * var(--cms-type-scale, 1));
  line-height: 1.85;
}

.step-content p + p {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.step-content strong {
  color: var(--ink);
  font-weight: 600;
}

.faq-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  padding-block: 88px 120px;
  border-top: 1px solid var(--line);
}

.faq-section h2 {
  font-size: calc(clamp(34px, 4vw, 60px) * var(--cms-type-scale, 1));
}

.faq-section .text-link {
  margin-top: 24px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 23px;
  cursor: pointer;
  list-style: none;
  font-size: calc(16px * var(--cms-type-scale, 1));
  font-weight: 550;
  line-height: 1.6;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  flex: none;
  color: var(--accent);
  font-size: calc(25px * var(--cms-type-scale, 1));
  font-weight: 400;
  transition: transform .3s;
}

.faq-list details[open] summary > span {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: 0 30px 24px 0;
  color: var(--muted);
  font-size: calc(14px * var(--cms-type-scale, 1));
  line-height: 1.85;
}

/* Contact: het formulier staat direct op de pagina. */
.contact-section {
  padding-block: clamp(76px, 9vw, 136px);
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at 0% 40%, #34536a26, transparent 70%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.contact-copy h2 {
  font-size: calc(clamp(44px, 5.3vw, 80px) * var(--cms-type-scale, 1));
  letter-spacing: -.065em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 415px;
  margin-top: 29px;
  color: var(--muted);
  font-size: calc(16px * var(--cms-type-scale, 1));
  line-height: 1.85;
}

.contact-email {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent-soft);
  font-size: calc(22px * var(--cms-type-scale, 1));
  overflow-wrap: anywhere;
}

.contact-form {
  min-width: 0;
  padding-top: 4px;
}

.form-eyebrow {
  margin-bottom: 30px;
  font-size: calc(11px * var(--cms-type-scale, 1));
  font-weight: 600;
  letter-spacing: .08em;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
  font-size: calc(12px * var(--cms-type-scale, 1));
  font-weight: 550;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #728296;
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  color: var(--ink);
  font-size: calc(16px * var(--cms-type-scale, 1));
  line-height: 1.6;
  transition: border-color .25s;
}

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

.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #a3adba;
  opacity: 1;
}

.contact-form select option {
  color: var(--ink);
  background: var(--paper);
}

.contact-form textarea {
  min-height: 108px;
  max-height: 360px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  justify-content: space-between;
}

.form-note, .contact-form noscript {
  margin-top: 16px;
  color: var(--muted);
  font-size: calc(11px * var(--cms-type-scale, 1));
  line-height: 1.8;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form :disabled {
  cursor: wait;
  opacity: .65;
}

.form-status {
  margin-top: 14px;
  font-size: calc(13px * var(--cms-type-scale, 1));
  line-height: 1.7;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: #b7d8c2;
}

.form-status[data-state="error"] {
  color: var(--accent-soft);
}

/* Afsluiting en toegankelijke dialoogvensters. */
.site-footer {
  padding-top: 52px;
  border-top: 1px solid var(--line);
  background: #0c192b99;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-top > p {
  max-width: 230px;
  justify-self: center;
  color: var(--muted);
  font-size: calc(14px * var(--cms-type-scale, 1));
}

.footer-top > nav {
  display: grid;
  justify-content: end;
  gap: 10px;
  font-size: calc(16px * var(--cms-type-scale, 1));
}

.footer-wordmark {
  display: block;
  width: max-content;
  margin: 40px 0 30px -.055em;
  font-size: calc(clamp(95px, 21.8vw, 345px) * var(--cms-type-scale, 1));
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.085em;
  white-space: nowrap;
}

.footer-wordmark > span {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: calc(11px * var(--cms-type-scale, 1));
}

.footer-bottom > button {
  padding: 5px 0;
  background: transparent;
  font-size: inherit;
}

.footer-bottom > a {
  font-size: calc(10px * var(--cms-type-scale, 1));
  letter-spacing: .06em;
}

.site-dialog {
  position: fixed;
  width: calc(100% - 36px);
  max-width: 620px;
  max-height: 85dvh;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: auto;
  color: var(--ink);
  background: linear-gradient(135deg, #1d344d, #102136);
  box-shadow: 0 35px 120px #02091599;
}

.site-dialog::backdrop {
  background: #060e1bdd;
  backdrop-filter: blur(8px);
}

.site-dialog h2 {
  margin-bottom: 25px;
  font-size: calc(38px * var(--cms-type-scale, 1));
}

.site-dialog > p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: calc(14px * var(--cms-type-scale, 1));
  line-height: 1.85;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: transparent;
  font-size: calc(27px * var(--cms-type-scale, 1));
}

/* Scroll en aanwijzer: kleine bewegingen, stabiele bediening. */
.will-reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0px), 26px, 0);
  transition: opacity .75s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.will-reveal.is-visible, .will-reveal:focus-within {
  opacity: 1;
  transform: none;
}

.has-scroll-depth #services-title, .has-scroll-depth #about-title,
.has-scroll-depth .footer-wordmark {
  translate: var(--scroll-x, 0px) 0;
}

.has-scroll-depth .footer-wordmark:focus-visible {
  translate: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ac6b4a, var(--accent), #f5dfc5);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.pointer-aura {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 0;
  color: var(--accent-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease;
}

.pointer-aura::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  transition: transform .18s var(--ease), background-color .18s;
}

.pointer-aura.is-visible {
  opacity: .8;
}

.pointer-aura.is-interactive::before {
  transform: scale(1.45);
  background: #d8a0730c;
}

.pointer-aura.is-navigation::before {
  transform: scale(.85);
  background: transparent;
}

.pointer-aura.is-pressed::before {
  transform: scale(.65);
}

@keyframes arrive {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@media (hover: hover) and (pointer: fine) {
  .interbit-nav-link:hover::after { transform: scaleX(1); }
  .interbit-nav-link:hover .nav-roll-text { transform: translateY(-100%); }
  .interbit-nav-link:hover .nav-roll-copy { transform: translateY(0); }
  .hero-visual:hover .portrait-frame img { transform: scale(1.015); }
  .service-item:hover h3 { color: var(--accent-soft); }
  .price-card:hover::before { opacity: 1; transform: scaleX(1); }
  .process-card:hover::after { opacity: 1; }
  .process-card:hover .step-symbol { transform: translateY(-3px); border-color: var(--accent); box-shadow: inset 0 1px 0 #f5c79d40, 0 12px 28px #070f1a4d; }
}

/* Schermformaten: dezelfde opbouw, minder kolommen. */
@media (max-width: 1100px) {
  .site-header { gap: 22px; }
  .site-header > .brand { margin-right: 46px; transform: scale(1.22); }
  .desktop-nav { gap: 24px; }
  .hero-actions { gap: 18px; }
  .hero-actions .button { padding-inline: 18px; }
  .hero-actions .text-link { font-size: calc(13px * var(--cms-type-scale, 1)); }
  .section-heading { gap: 40px; }
  .service-item { gap: 24px; }
}

@media (max-width: 1000px) {
  .site-header { height: 88px; }
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 3;
    padding: 10px 0 10px 6px;
    background: transparent;
    font-size: calc(13px * var(--cms-type-scale, 1));
  }
  .menu-toggle > span { font-size: calc(19px * var(--cms-type-scale, 1)); }
  .desktop-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 25px var(--gutter) 32px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .desktop-nav > a { font-size: calc(27px * var(--cms-type-scale, 1)); }
  .hero h1 { font-size: calc(7.8vw * var(--cms-type-scale, 1)); }
  .hero-intro { font-size: calc(15px * var(--cms-type-scale, 1)); }
  .hero-copy .eyebrow { font-size: calc(9px * var(--cms-type-scale, 1)); }
  .service-item { grid-template-columns: 28px 1fr 1fr; }
  .service-item > p { font-size: calc(15px * var(--cms-type-scale, 1)); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px; padding: 32px; }
  .package-intro { grid-row: 1 / 3; }
  .price-card h3 { font-size: calc(32px * var(--cms-type-scale, 1)); }
  .package-description { min-height: 0; }
  .package-price > strong { font-size: calc(56px * var(--cms-type-scale, 1)); }
  .package-features { margin: 0; padding-top: 0; border-top: 0; }
  .package-cta { grid-column: 2; align-self: end; }
  .pricing-note { flex-direction: column; gap: 18px; }
  .process-grid { --bs-gutter-x: 22px; --bs-gutter-y: 22px; }
  .faq-section { gap: 45px; }
  .contact-layout { gap: 45px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-copy h2 { font-size: calc(4.8vw * var(--cms-type-scale, 1)); }
}

@media (max-width: 991.98px) {
  .process-step:nth-child(n) { --reveal-x: 0px; --reveal-delay: 0s; }
}

@media (max-width: 800px) {
  :root { --gutter: 28px; }
  .hero { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { padding-bottom: 0; }
  .hero h1 { font-size: calc(clamp(60px, 13vw, 102px) * var(--cms-type-scale, 1)); }
  .hero-intro { max-width: 520px; font-size: calc(16px * var(--cms-type-scale, 1)); }
  .hero-copy .eyebrow { font-size: calc(10px * var(--cms-type-scale, 1)); }
  .hero-visual { width: 85%; max-width: 550px; justify-self: end; }
  .hero-bottom { margin-top: 10px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
  .section-heading > p { justify-self: start; max-width: 520px; }
  .service-item { grid-template-columns: 30px 1fr; gap: 14px 24px; padding-block: 30px; }
  .service-item h3 { max-width: none; font-size: calc(34px * var(--cms-type-scale, 1)); }
  .service-item > p { grid-column: 2; max-width: 540px; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about-aside { position: static; }
  .about-name { font-size: calc(96px * var(--cms-type-scale, 1)); }
  .experience-list { grid-template-columns: 1fr 1fr; max-width: 540px; gap: 24px; margin-top: 28px; }
  .about-copy h2 { font-size: calc(48px * var(--cms-type-scale, 1)); }
  .about-copy > p { font-size: calc(16px * var(--cms-type-scale, 1)); }
  .skills-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .skill-item:nth-child(n) { --reveal-delay: 0s; }
  .skill-item:nth-child(even) { --reveal-delay: .1s; }
  .faq-section { grid-template-columns: 1fr; gap: 32px; padding-block: 70px 84px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-copy h2 { font-size: calc(clamp(44px, 8vw, 62px) * var(--cms-type-scale, 1)); }
  .contact-copy > p:not(.eyebrow) { max-width: 500px; }
  .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .footer-top { grid-template-columns: 1fr auto; gap: 26px; }
  .footer-top > p { grid-column: 1; grid-row: 2; justify-self: start; }
  .footer-top > nav { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 640px) {
  .header-cta { display: none; }
  .menu-toggle { margin-left: auto; }
  .price-card { display: flex; gap: 0; padding: 28px; }
  .package-label { margin-bottom: 20px; }
  .package-features, .price-card-entertainment .package-features { margin-block: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
}

@media (max-width: 540px) {
  :root { --gutter: 22px; }
  html { scroll-padding-top: 94px; }
  .section-space { padding-block: 68px; }
  .site-header, .site-header.is-scrolled { height: 80px; gap: 12px; }
  .site-header > .brand { margin-right: 26px; transform: scale(1.23); }
  .header-cta { display: none; }
  .menu-toggle { margin-left: auto; font-size: calc(12px * var(--cms-type-scale, 1)); }
  .brand { gap: 11px; }
  .brand-type { font-size: calc(35px * var(--cms-type-scale, 1)); }
  .brand-type > span { font-size: calc(9px * var(--cms-type-scale, 1)); letter-spacing: 2.4px; }
  .brand-symbol { grid-template-columns: repeat(2, 16px); grid-template-rows: repeat(2, 19px); gap: 4px; width: 36px; }
  .brand-symbol i:nth-child(3) { height: 12px; }
  .hero { padding-top: 34px; gap: 30px; }
  .hero h1 { font-size: calc(clamp(46px, 13.8vw, 74px) * var(--cms-type-scale, 1)); }
  .hero-copy .eyebrow { font-size: calc(8px * var(--cms-type-scale, 1)); letter-spacing: .065em; }
  .hero-intro { margin-top: 25px; font-size: calc(15px * var(--cms-type-scale, 1)); }
  .hero-actions { gap: 16px; margin-top: 25px; }
  .hero-actions .button { font-size: calc(13px * var(--cms-type-scale, 1)); padding-inline: 19px; }
  .hero-visual { width: 100%; }
  .portrait-label { gap: 10px; padding-block: 20px; }
  .portrait-label strong { font-size: calc(clamp(26px, 6.5vw, 30px) * var(--cms-type-scale, 1)); }
  .portrait-label > span { font-size: calc(9px * var(--cms-type-scale, 1)); }
  .hero-bottom { align-items: flex-start; gap: 22px; font-size: calc(8px * var(--cms-type-scale, 1)); line-height: 1.8; }
  .hero-bottom > span { max-width: 150px; }
  .hero-bottom > a { gap: 12px; max-width: 135px; }
  .type-ribbon { padding-block: 45px; gap: 12px; }
  h2 { font-size: calc(39px * var(--cms-type-scale, 1)); }
  .eyebrow { font-size: calc(10px * var(--cms-type-scale, 1)); margin-bottom: 22px; }
  .section-heading > p { font-size: calc(15px * var(--cms-type-scale, 1)); }
  .service-item { gap: 13px 16px; grid-template-columns: 24px 1fr; }
  .service-item h3 { font-size: calc(28px * var(--cms-type-scale, 1)); }
  .service-item > p { font-size: calc(14px * var(--cms-type-scale, 1)); }
  .item-number { padding-top: 5px; }
  .service-footnote { align-items: flex-start; font-size: calc(11px * var(--cms-type-scale, 1)); }
  .service-footnote .status-dot { margin-top: 7px; }
  .price-card h3 { font-size: calc(30px * var(--cms-type-scale, 1)); }
  .about-name { font-size: calc(84px * var(--cms-type-scale, 1)); }
  .about-copy h2 { font-size: calc(38px * var(--cms-type-scale, 1)); }
  .experience-list { grid-template-columns: 1fr; gap: 18px; }
  .skills-grid { gap: 12px; }
  .skill-item { padding: 32px 10px 24px; border-radius: 16px; }
  .skill-meter { width: 112px; max-width: calc(100% - 16px); margin-bottom: 24px; }
  .skill-meter::before { inset: 7px; }
  .skill-meter::after { inset: -8px; }
  .skill-orbit { inset: 3.5px; }
  .skill-orbit::after { width: 6px; height: 6px; }
  .skill-meter-content { gap: 6px; }
  .skill-code { padding: 3px 5px; font-size: calc(9px * var(--cms-type-scale, 1)); }
  .skill-score { font-size: calc(28px * var(--cms-type-scale, 1)); }
  .skill-item h3 { font-size: calc(17px * var(--cms-type-scale, 1)); }
  .skill-item > p { font-size: calc(11px * var(--cms-type-scale, 1)); }
  .process-card { padding: 26px 22px; }
  .step-heading { margin-bottom: 25px; }
  .step-symbol { width: 64px; height: 64px; border-radius: 18px; }
  .step-symbol .bi { width: 30px; height: 30px; }
  .step-number { font-size: calc(44px * var(--cms-type-scale, 1)); }
  .process-grid h3 { font-size: calc(25px * var(--cms-type-scale, 1)); }
  .faq-section h2 { font-size: calc(38px * var(--cms-type-scale, 1)); }
  .faq-list summary { font-size: calc(15px * var(--cms-type-scale, 1)); padding-block: 22px; }
  .contact-section { padding-block: 68px; }
  .contact-copy h2 { font-size: calc(clamp(42px, 11.5vw, 56px) * var(--cms-type-scale, 1)); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { gap: 25px; }
  .footer-top > nav { font-size: calc(14px * var(--cms-type-scale, 1)); gap: 12px; }
  .footer-top .brand-type { font-size: calc(30px * var(--cms-type-scale, 1)); }
  .footer-top .brand-symbol { width: 31px; grid-template-columns: repeat(2, 14px); gap: 3px; }
  .footer-wordmark { margin-block: 28px; }
  .footer-bottom { font-size: calc(10px * var(--cms-type-scale, 1)); }
  .site-dialog { padding: 35px 24px; }
  .site-dialog h2 { font-size: calc(32px * var(--cms-type-scale, 1)); }
  .will-reveal, .service-item.will-reveal { --reveal-x: 0px; }
}

@media (hover: none), (pointer: coarse) {
  .pointer-aura { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .will-reveal { opacity: 1; transform: none; }
  .pointer-aura, .nav-roll-copy { display: none; }
  .interbit-nav-link:is(:hover, :focus-visible) .nav-roll-text { transform: none; color: var(--accent); }
  .hero-visual:hover .portrait-frame img { transform: none; }
  .process-step.will-reveal .process-card::before { transform: none; }
  .process-step.will-reveal .step-symbol .bi { opacity: 1; transform: none; }
  .process-card:hover .step-symbol { transform: none; }
  .has-scroll-depth #services-title, .has-scroll-depth #about-title,
  .has-scroll-depth .footer-wordmark, .has-scroll-type .type-track { translate: none; }
  .has-scroll-type .type-group.track-repeat { display: none; }
}


/* Leesbare lopende tekst, afgestemd op desktop en mobiel. */
.hero-intro,
.section-heading > p,
.pricing > .section-heading > p,
.service-item > p,
.about-copy > p,
.process-grid p,
.faq-list details > p,
.contact-copy > p:not(.eyebrow),
.site-dialog p {
  font-size: calc(clamp(16px, 1.2vw, 17px) * var(--cms-type-scale, 1));
  line-height: 1.8;
}

.package-description,
.package-features,
.faq-list summary {
  font-size: calc(clamp(15px, 1.1vw, 16px) * var(--cms-type-scale, 1));
  line-height: 1.7;
}

.package-tax,
.service-footnote,
.skill-item > p,
.experience-list dd,
.form-note,
.footer-top > p {
  font-size: calc(14px * var(--cms-type-scale, 1));
  line-height: 1.75;
}

/* Persoonlijke kennismaking naast het contactformulier. */
.contact-person {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  margin: 32px 0 0;
}
.contact-portrait-frame {
  display: block;
  width: clamp(150px, 17vw, 240px);
  flex: none;
  padding: 4px;
  border: 1px solid #bdc7d626;
  border-radius: 0;
  background: transparent;
}
.contact-person img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: 0;
}
.contact-person figcaption { display: grid; gap: 8px; }
.contact-person strong {
  color: var(--accent-soft);
  font-size: calc(clamp(18px, 1.7vw, 24px) * var(--cms-type-scale, 1));
  font-weight: 600;
}
.contact-person figcaption span {
  max-width: 23ch;
  color: var(--muted);
  font-size: calc(15px * var(--cms-type-scale, 1));
  line-height: 1.6;
}

.contact-section { background: #111f33; }
@media (max-width: 420px) {
  .contact-person { gap: 16px; }
  .contact-portrait-frame { width: 140px; }
  .contact-person strong { font-size: 18px; }
}

.contact-actions-panel { align-self: center; padding-block: 24px; }
.contact-actions-panel h3 {
  max-width: 16ch;
  font-size: calc(clamp(28px, 3vw, 44px) * var(--cms-type-scale, 1));
  line-height: 1.2;
  letter-spacing: -.04em;
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.contact-actions .contact-call { background: transparent; border: 1px solid var(--accent); color: var(--accent-soft); }
.contact-actions [hidden] { display: none; }

.contact-actions { align-items: stretch; }
.contact-actions > .button { min-height: 76px; padding: 18px 24px; gap: 24px; }
.contact-call-label { display: grid; gap: 5px; text-align: left; }
.contact-call-label small {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .035em;
  color: var(--muted);
}
.contact-actions .contact-call:hover { background: #d8a07312; }
@media (max-width: 540px) {
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions > .button { justify-content: space-between; }
}

/* Zakelijke contactopmaak: persoonlijk contact links, formulier rechts. */
.contact-copy .contact-actions-panel { padding: 0; margin-top: 28px; }
.contact-copy .contact-actions-panel h3 { font-size: 19px; letter-spacing: -.02em; max-width: none; }
.contact-copy .contact-actions { margin-top: 16px; }
.contact-copy .contact-actions > .button { min-height: 62px; padding: 14px 20px; font-size: 14px; }
.contact-layout > .contact-form {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  background: #ffffff03;
  border-radius: 4px;
}
.contact-layout > .contact-form .form-eyebrow { color: var(--ink); font-size: 13px; }
.contact-layout > .contact-form label { font-size: 14px; }
.contact-layout > .contact-form .button { border-radius: 4px; }
@media (max-width: 1100px) and (min-width: 801px) {
  .contact-layout > .contact-form .form-row { grid-template-columns: 1fr; }
}

/* Heldere invulvakken met één label per veld. */
.contact-layout > .contact-form {
  background: linear-gradient(145deg, #182a40, #132238);
  border-color: #60769055;
  border-radius: 10px;
  box-shadow: 0 18px 45px #00000014;
}
.contact-layout > .contact-form .form-eyebrow {
  margin-bottom: 28px;
  font-size: calc(25px * var(--cms-type-scale, 1));
  font-weight: 600;
  letter-spacing: -.025em;
}
.contact-layout > .contact-form .form-row { gap: 18px; }
.contact-layout > .contact-form label {
  gap: 9px;
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 500;
}
.contact-layout > .contact-form :is(input, select, textarea) {
  padding: 12px 14px;
  border: 1px solid #60769066;
  border-radius: 5px;
  background: #0c192b85;
  transition: border-color .2s, box-shadow .2s;
}
.contact-layout > .contact-form :is(input, select, textarea):focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #d8a07318;
}
.contact-layout > .contact-form textarea { min-height: 150px; }
.contact-layout > .contact-form .button { min-height: 54px; font-size: 16px; }
.contact-layout > .contact-form .form-note { font-size: 12px; line-height: 1.65; }
.contact-layout > .contact-form .form-status:empty { display: none; }

/* Mobiele editorial-stijl: ruime typografie en een inschuivend menu. */
.desktop-nav > .mobile-menu-contact { display: none; }

@media (max-width: 1000px) {
  /* Alleen het document vergrendelen: overflow op body breekt de sticky header. */
  html { scrollbar-gutter: stable; }
  html.menu-open { overflow: hidden; }
  .site-header { backdrop-filter: none; }
  .menu-open .site-header { background: #111f33; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    min-height: 48px;
    padding: 8px 12px 8px 16px;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #bdc7d609;
  }
  .menu-toggle > .menu-label { font-size: 12px; font-weight: 700; }
  .menu-bars { display: grid; gap: 5px; width: 24px; }
  .menu-bars i {
    display: block;
    height: 2px;
    width: 24px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .35s var(--ease), opacity .2s, width .35s var(--ease);
  }
  .menu-bars i:nth-child(2) { width: 16px; justify-self: end; }
  [aria-expanded="true"] .menu-bars i:first-child { transform: translateY(7px) rotate(45deg); }
  [aria-expanded="true"] .menu-bars i:nth-child(2) { opacity: 0; }
  [aria-expanded="true"] .menu-bars i:last-child { transform: translateY(-7px) rotate(-45deg); }
  .desktop-nav, .desktop-nav.is-open {
    position: fixed;
    inset: 80px 0 0;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px var(--gutter) max(32px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    background: radial-gradient(ellipse at 100% 100%, #d8a07320, transparent 65%), #111f33;
    visibility: hidden;
    pointer-events: none;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 115% 100%);
    transition: clip-path .55s var(--ease), visibility 0s .55s;
  }
  .desktop-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition-delay: 0s;
  }
  .desktop-nav > a {
    flex: 0 0 auto;
    padding: 14px 0;
    font-size: clamp(25px, 7.7vw, 54px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.045em;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translate(32px, 12px);
    transition: opacity .3s, transform .45s var(--ease), color .2s;
  }
  .desktop-nav.is-open > a { opacity: 1; transform: none; transition-delay: .13s; }
  .desktop-nav.is-open > a:nth-child(2) { transition-delay: .18s; }
  .desktop-nav.is-open > a:nth-child(3) { transition-delay: .23s; }
  .desktop-nav.is-open > a:nth-child(4) { transition-delay: .28s; }
  .desktop-nav.is-open > a:nth-child(5) { transition-delay: .33s; }
  .desktop-nav > .mobile-menu-contact {
    display: block;
    margin-top: 24px;
    border: 0;
    color: var(--accent-soft);
    font-size: clamp(20px, 5.5vw, 32px);
  }
  .desktop-nav > a:active { color: var(--accent-soft); }
  .desktop-nav > .interbit-nav-link::after { display: none; }
  .desktop-nav .nav-roll { padding: 2px 0; }
  .desktop-nav .nav-roll-copy { display: none; }
  .desktop-nav a:is(:hover, :focus-visible) .nav-roll-text { transform: none; }
}

@media (min-width: 541px) and (max-width: 1000px) {
  .site-header, .site-header.is-scrolled { height: 88px; }
  .desktop-nav, .desktop-nav.is-open { top: 88px; height: calc(100vh - 88px); height: calc(100dvh - 88px); }
}

@media (max-width: 540px) {
  .site-header > .brand { transform: scale(1.06); margin-right: 0; }
  .hero h1 { font-weight: 800; line-height: 1.02; letter-spacing: -.06em; }
  h2 { font-weight: 800; line-height: 1.04; letter-spacing: -.045em; }
  h3 { font-weight: 750; letter-spacing: -.035em; }
  .hero-intro { line-height: 1.8; }
  .will-reveal { --reveal-y: 24px; transition-duration: .75s; }
  .button { transition: transform .2s var(--ease), background-color .2s; }
  .button:active { transform: scale(.97); }
}

@media (max-width: 1000px) and (max-height: 600px) {
  .desktop-nav, .desktop-nav.is-open { justify-content: flex-start; padding-top: 20px; }
  .desktop-nav > a { font-size: 26px; padding-block: 10px; }
  .desktop-nav > .mobile-menu-contact { margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-bars i, .desktop-nav, .desktop-nav.is-open, .desktop-nav > a, .button {
    transition: none !important;
  }
}

@media (max-width: 1000px) {
  .desktop-nav > a { width: 100%; }
  .cms-long-menu .desktop-nav { display: flex; }
  .cms-long-menu .desktop-nav.is-open {
    position: fixed; top: 88px; align-items: stretch; gap: 0;
    max-height: none; padding: 18px var(--gutter); border: 0;
  }
}
@media (max-width: 540px) {
  .cms-long-menu .desktop-nav.is-open { top: 80px; }
  .service-item > *, .price-card > * { min-width: 0; overflow-wrap: anywhere; }
  .footer-wordmark { font-size: 23vw; }
}

/* Contact op alle schermen, met accenten in de logokleur. */
  /* De contactaccenten volgen dezelfde themakleur als het logo. */
  .contact-actions .contact-call:hover { background: color-mix(in srgb, var(--accent) 7%, transparent); }
  .contact-section {
    position: relative;
    padding-top: 72px;
    padding-bottom: 36px;
    background: var(--paper);
  }
  .contact-layout { gap: 36px; }
  .contact-copy > .eyebrow { color: var(--accent); font-size: 10px; letter-spacing: .16em; }
  .contact-copy h2 { font-size: clamp(42px, 11vw, 72px); line-height: 1.04; font-weight: 800; letter-spacing: -.055em; }
  .contact-copy > p:not(.eyebrow) { margin-top: 24px; font-size: 16px; line-height: 1.8; }
  .contact-person {
    position: relative;
    gap: 22px;
    margin-top: 30px;
    padding: 20px 20px 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px 24px 7px 24px;
    background: linear-gradient(135deg, var(--paper), var(--paper-deep));
  }
  .contact-portrait-frame { width: 42%; max-width: 190px; border: 0; padding: 0; align-self: end; }
  .contact-person img { border-radius: 12px 12px 0 0; }
  .contact-person figcaption { flex: 1; min-width: 0; padding-bottom: 20px; }
  .contact-person strong { color: var(--accent); font-size: 21px; font-weight: 800; line-height: 1.2; }
  .contact-person figcaption span { font-size: 12px; line-height: 1.65; }
  .contact-copy .contact-actions-panel { margin-top: 26px; }
  .contact-copy .contact-actions-panel h3 { font-size: 19px; }
  .contact-copy .contact-actions { gap: 10px; }
  .contact-copy .contact-actions > .button {
    width: 100%; justify-content: space-between; border-radius: 14px;
    padding: 16px 20px; min-height: 64px;
  }
  .contact-layout > .contact-form {
    position: relative;
    padding: 30px 22px;
    border: 1px solid var(--line);
    border-radius: 28px 28px 8px 28px;
    color: var(--ink);
    background: linear-gradient(145deg, var(--paper), var(--paper-deep));
    box-shadow: 0 20px 50px #040b1733;
  }
  .contact-layout > .contact-form .form-eyebrow {
    max-width: 15ch; margin-bottom: 28px; color: var(--accent);
    font-size: 30px; font-weight: 800; line-height: 1.12; letter-spacing: -.04em;
  }
  .contact-layout > .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-layout > .contact-form label { color: var(--ink); font-size: 13px; font-weight: 700; }
  .contact-layout > .contact-form :is(input, select, textarea) {
    min-height: 52px; color: var(--ink); background: var(--paper-deep);
    border: 1px solid var(--line); border-radius: 12px; padding: 14px; font-size: 16px; font-weight: 400;
    color-scheme: dark;
  }
  .contact-layout > .contact-form :is(input, textarea)::placeholder { color: var(--muted); opacity: 1; }
  .contact-layout > .contact-form select option { color: var(--ink); background: var(--paper-deep); }
  .contact-layout > .contact-form :is(input, select, textarea):focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 13%, transparent);
  }
  .contact-layout > .contact-form .button {
    width: 100%; justify-content: space-between; border-radius: 30px;
    background: var(--accent); color: var(--paper-deep); padding-inline: 22px;
  }
  .contact-layout > .contact-form .form-note,
  .contact-layout > .contact-form .form-status { color: var(--ink); }
  .contact-layout > .contact-form .form-status[data-state="error"] { color: var(--accent-soft); }
@media (min-width: 801px) {
  .contact-section { padding-block: 100px; }
  .contact-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 96px); }
  .contact-copy h2 { font-size: clamp(46px, 4.5vw, 72px); }
  .contact-copy > .eyebrow { font-size: 12px; }
  .contact-copy > p:not(.eyebrow) { max-width: 48ch; font-size: 17px; }
  .contact-person { padding: 24px 24px 0; gap: 28px; }
  .contact-person strong { font-size: clamp(22px, 2vw, 28px); }
  .contact-person figcaption span { font-size: 15px; }
  .contact-copy .contact-actions { flex-wrap: nowrap; }
  .contact-copy .contact-actions > .button { flex: 1; min-width: 0; }
  .contact-layout > .contact-form { padding: clamp(28px, 3vw, 48px); }
  .contact-layout > .contact-form .form-eyebrow { max-width: none; font-size: clamp(30px, 2.8vw, 40px); }
  .contact-layout > .contact-form textarea { min-height: 180px; }
}
@media (min-width: 1200px) {
  .contact-layout > .contact-form .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
/* Contactknoppen: satijnblauw, koperkleurige iconen en leesbare labels. */
.contact-copy .contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-copy .contact-actions > .button {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 12px 16px 12px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 48%, transparent);
  border-radius: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, var(--paper)), var(--paper-deep));
  color: var(--ink);
  box-shadow: inset 0 1px 0 #ffffff0c, 0 4px 12px #00000018;
  text-align: left;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.contact-action-icon {
  width: 38px; height: 38px; padding: 9px;
  border-radius: 50%;
  color: var(--paper-deep);
  background: var(--accent);
  box-shadow: inset 0 1px 0 #ffffff30;
}
.contact-copy .contact-actions .contact-action-label {
  display: grid; gap: 4px; min-width: 0;
  font-size: 20px; line-height: 1.2;
}
.contact-action-label strong { font-weight: 700; letter-spacing: -.025em; }
.contact-action-label small { color: var(--muted); font-size: 14px; font-weight: 450; line-height: 1.4; letter-spacing: 0; overflow-wrap: anywhere; }
.contact-copy .contact-actions .contact-action-arrow { color: var(--accent); font-size: 21px; }
@media (hover: hover) and (pointer: fine) {
  .contact-copy .contact-actions > .button:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 16%, var(--paper)), var(--paper-deep));
    border-color: var(--accent);
    box-shadow: inset 0 1px 0 #ffffff15, 0 5px 18px #00000024;
  }
}
.contact-copy .contact-actions > .button:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.contact-copy .contact-actions > .button:active { background: var(--paper-deep); box-shadow: inset 0 2px 5px #00000030; }
.contact-copy .contact-actions > .button:hover > .contact-action-label { transform: none; }
@media (max-width: 1100px) {
  .contact-copy .contact-actions { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-copy .contact-actions > .button { transition: none; }
}

/* Eén contactbalk op de plek van de losse knoppen; verschijnt met de contactsectie. */
.contact-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 18px;
  padding: 7px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 6%, var(--paper)), var(--paper-deep));
  box-shadow: inset 0 1px 0 #ffffff0d, 0 8px 24px #00000018;
}
.contact-quick-links a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 82px;
  padding: 12px 4px;
  border-radius: 15px;
  color: var(--ink);
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 700;
  line-height: 1.3;
  transition: background .25s, color .25s, transform .25s;
}
.contact-quick-links svg { width: 24px; height: 24px; color: var(--accent); transition: transform .25s; }
.contact-quick-links .contact-dock-chat { background: var(--accent); color: var(--paper-deep); }
.contact-quick-links .contact-dock-chat svg { color: inherit; }
.contact-quick-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.contact-quick-links a:active { transform: scale(.96); }
@media (hover: hover) and (pointer: fine) {
  .contact-quick-links a:hover { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent-soft); }
  .contact-quick-links a:hover svg { transform: translateY(-3px); }
  .contact-quick-links .contact-dock-chat:hover { background: var(--accent-soft); color: var(--paper-deep); }
}
@media (prefers-reduced-motion: no-preference) {
  .contact-actions-panel.will-reveal.is-visible .contact-quick-links a {
    animation: contact-button-arrive .6s cubic-bezier(.2,.7,.2,1) both;
  }
  .contact-actions-panel.will-reveal.is-visible .contact-quick-links a:nth-child(2) { animation-delay: .1s; }
  .contact-actions-panel.will-reveal.is-visible .contact-quick-links a:nth-child(3) { animation-delay: .2s; }
  .contact-actions-panel:focus-within .contact-quick-links a { animation: none !important; }
}
@keyframes contact-button-arrive {
  from { opacity: 0; translate: 0 16px; }
  to { opacity: 1; translate: 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-quick-links a, .contact-quick-links svg { transition: none; }
}

/* Mobiel: de contactbalk schuift in zodra Contact binnen 200px van het scherm komt. */
.contact-nearby-bar { display: none; }
@media (max-width: 800px) {
  .contact-nearby-bar {
    position: fixed;
    z-index: 40;
    display: grid;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: auto;
    max-width: 480px;
    margin: 0 auto;
    background: var(--paper);
    box-shadow: 0 10px 35px #00000055;
    opacity: 0;
    visibility: hidden;
    transform: translateY(calc(100% + 30px));
    transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .35s, visibility 0s .5s;
  }
  .contact-nearby-bar a { min-height: 64px; gap: 5px; padding-block: 8px; }
  .contact-nearby-bar.is-near-contact {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .has-nearby-contact { scroll-padding-bottom: calc(110px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-nearby-bar { transition: none; }
}
@media (max-width: 800px) {
  .has-context-contact .contact-actions-panel { display: none; }
  .has-context-contact { padding-bottom: calc(110px + env(safe-area-inset-bottom)); }
}

/* Desktop: formulier en introductie delen dezelfde boven- en onderlijn. */
@media (min-width: 801px) {
  .contact-layout { align-items: stretch; gap: clamp(32px, 4vw, 64px); }
  .contact-layout > .contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(28px, 2.5vw, 40px);
  }
  .contact-layout > .contact-form > label:has(> textarea) { flex: 1; }
  .contact-layout > .contact-form textarea { flex: 1; }
  .contact-layout > .contact-form .form-note { margin-bottom: 0; }
}
