:root {
    --vcr-ink: #131116;
    --vcr-ink-soft: #27232a;
    --vcr-purple: #37123f;
    --vcr-purple-bright: #71307e;
    --vcr-gold: #b59a63;
    --vcr-cream: #f4f1eb;
    --vcr-paper: #fbfaf7;
    --vcr-white: #ffffff;
    --vcr-grey: #706b72;
    --vcr-line: rgba(19, 17, 22, 0.14);
    --vcr-radius: 20px;
    --vcr-shadow: 0 24px 70px rgba(22, 16, 24, 0.12);
    --vcr-container: min(1240px, calc(100vw - 64px));
    --vcr-narrow: min(820px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--vcr-paper);
    color: var(--vcr-ink);
    font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.vcr-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1.2rem; }
h1, h2, h3, h4 {
    margin: 0 0 0.75em;
    color: var(--vcr-ink);
    font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.65rem, 5.4vw, 5.2rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
h4 { font-size: 1.15rem; }
ul, ol { margin: 0 0 1.5rem; padding-left: 1.25rem; }
::selection { background: var(--vcr-purple); color: var(--vcr-white); }

.screen-reader-text,
.vcr-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.vcr-skip-link:focus {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    margin: 0;
    overflow: visible;
    clip: auto;
    background: white;
    color: black;
}

.vcr-container { width: var(--vcr-container); margin-inline: auto; }
.vcr-container-narrow { width: var(--vcr-narrow); margin-inline: auto; }
.vcr-section { padding: clamp(68px, 8vw, 112px) 0; }
.vcr-section-tight { padding: clamp(50px, 6vw, 78px) 0; }
.vcr-section-cream { background: var(--vcr-cream); }
.vcr-section-dark { background: var(--vcr-ink); color: rgba(255,255,255,.78); }
.vcr-section-dark h2, .vcr-section-dark h3, .vcr-section-dark h4 { color: var(--vcr-white); }
.vcr-section-purple { background: var(--vcr-purple); color: rgba(255,255,255,.8); }
.vcr-section-purple h2, .vcr-section-purple h3, .vcr-section-purple h4 { color: var(--vcr-white); }

.vcr-site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1px 0 rgba(19,17,22,.09);
    backdrop-filter: blur(18px);
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.admin-bar .vcr-site-header { top: 32px; }
.vcr-site-header.is-scrolled { background: rgba(255,255,255,.985); box-shadow: 0 8px 28px rgba(19,17,22,.07); }
.vcr-header-inner {
    width: min(1420px, calc(100vw - 48px));
    min-height: 78px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    transition: min-height .3s ease;
}
.is-scrolled .vcr-header-inner { min-height: 68px; }
.vcr-brand { display: block; flex: 0 0 auto; text-decoration: none; }
.vcr-logo { width: 218px; max-height: 57px; object-fit: contain; object-position: left center; }
.vcr-primary-nav { margin-left: auto; }
.vcr-menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
}
.vcr-menu > li { position: relative; }
.vcr-menu a {
    position: relative;
    color: var(--vcr-ink);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .085em;
    text-decoration: none;
    text-transform: uppercase;
}
.vcr-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--vcr-purple-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.vcr-menu a:hover::after,
.vcr-menu .current-menu-item > a::after,
.vcr-menu .current-page-ancestor > a::after { transform: scaleX(1); transform-origin: left; }
.vcr-menu > li:last-child > a {
    padding: 10px 17px;
    border: 1px solid var(--vcr-ink);
    border-radius: 100px;
}
.vcr-menu > li:last-child > a::after { display: none; }
.vcr-menu > li:last-child > a:hover { background: var(--vcr-ink); color: white; }
.vcr-menu .sub-menu {
    position: absolute;
    z-index: 1100;
    top: calc(100% + 9px);
    left: -20px;
    width: 240px;
    margin: 0;
    padding: 14px;
    list-style: none;
    border: 1px solid var(--vcr-line);
    border-radius: 14px;
    background: rgba(251,250,247,.98);
    box-shadow: var(--vcr-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}
.vcr-menu .sub-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 12px;
}
.vcr-menu li:hover > .sub-menu,
.vcr-menu li:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: none; }
.vcr-menu .sub-menu li { padding: 8px 6px; }
.vcr-menu .sub-menu a { display: block; padding: 5px 0; font-size: .7rem; white-space: nowrap; }
.vcr-menu-toggle { display: none; }
.vcr-instagram { position: relative; flex: 0 0 auto; }
.vcr-instagram-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--vcr-line);
    border-radius: 50%;
    background: white;
    color: var(--vcr-ink);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.vcr-instagram-toggle:hover,
.vcr-instagram-toggle[aria-expanded="true"] { border-color: var(--vcr-purple); background: var(--vcr-purple); color: white; }
.vcr-instagram-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.vcr-instagram-toggle .vcr-instagram-dot { fill: currentColor; stroke: none; }
.vcr-instagram-menu {
    position: absolute;
    z-index: 1200;
    top: calc(100% + 12px);
    right: 0;
    width: 230px;
    padding: 10px;
    border: 1px solid var(--vcr-line);
    border-radius: 14px;
    background: rgba(255,255,255,.99);
    box-shadow: var(--vcr-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(7px);
    transition: opacity .2s ease, transform .2s ease;
}
.vcr-instagram.is-open .vcr-instagram-menu { opacity: 1; pointer-events: auto; transform: none; }
.vcr-instagram-menu a { display: flex; justify-content: space-between; gap: 15px; padding: 10px 9px; border-radius: 8px; font-size: .78rem; font-weight: 700; text-decoration: none; }
.vcr-instagram-menu a:hover { background: var(--vcr-cream); color: var(--vcr-purple); }

.vcr-site-main { min-height: 70vh; }
.vcr-page:not(.vcr-front-page) { padding-top: 78px; }
.vcr-page-header { padding: clamp(82px, 10vw, 125px) 0 52px; }
.vcr-page-header h1 { max-width: 1000px; }
.vcr-page-content > p,
.vcr-page-content > h2,
.vcr-page-content > h3,
.vcr-page-content > ul { width: var(--vcr-narrow); margin-right: auto; margin-left: auto; }

.vcr-eyebrow {
    margin-bottom: 1.25rem;
    color: var(--vcr-purple-bright);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .17em;
    line-height: 1.4;
    text-transform: uppercase;
}
.vcr-section-dark .vcr-eyebrow,
.vcr-section-purple .vcr-eyebrow,
.vcr-hero .vcr-eyebrow { color: #d9c18c; }
.vcr-lead {
    max-width: 760px;
    color: var(--vcr-grey);
    font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
    font-size: clamp(1.18rem, 1.75vw, 1.55rem);
    line-height: 1.42;
}
.vcr-section-dark .vcr-lead,
.vcr-section-purple .vcr-lead { color: rgba(255,255,255,.78); }

.vcr-hero {
    position: relative;
    min-height: max(760px, 100svh);
    display: grid;
    align-items: end;
    padding-top: 78px;
    overflow: hidden;
    background-color: #d9d8d3;
}
.vcr-hero-photo {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, transparent 38%, rgba(18,14,20,.08) 58%, rgba(18,14,20,.8) 100%), url('../images/pascal1.png');
    background-position: center;
    background-size: cover;
}
.vcr-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    background: linear-gradient(transparent, rgba(12,10,14,.28));
    pointer-events: none;
}
.vcr-hero-inner {
    position: relative;
    z-index: 2;
    width: var(--vcr-container);
    margin: clamp(24px, 4vh, 48px) auto clamp(32px, 5vh, 58px);
    display: flex;
    justify-content: flex-end;
}
.vcr-hero-panel {
    width: min(530px, 44%);
    padding: clamp(28px, 3.25vw, 46px);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--vcr-radius);
    background: rgba(20, 15, 22, .76);
    color: rgba(255,255,255,.82);
    box-shadow: 0 25px 90px rgba(0,0,0,.24);
    backdrop-filter: blur(17px);
}
.vcr-hero h1 { color: var(--vcr-white); font-size: clamp(2.65rem, 4.4vw, 4.55rem); }
.vcr-hero p:not(.vcr-eyebrow) { max-width: 490px; }
.vcr-hero .vcr-hero-kicker {
    display: block;
    margin: 0 0 20px;
    white-space: nowrap;
}
.vcr-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.vcr-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid var(--vcr-ink);
    border-radius: 100px;
    background: var(--vcr-ink);
    color: white;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.vcr-button:hover { transform: translateY(-2px); background: var(--vcr-purple); border-color: var(--vcr-purple); }
.vcr-button-light { background: white; border-color: white; color: var(--vcr-ink); }
.vcr-button-light:hover { background: #d9c18c; border-color: #d9c18c; color: var(--vcr-ink); }
.vcr-button-ghost { background: transparent; border-color: rgba(255,255,255,.45); color: white; }
.vcr-button-ghost:hover { background: white; border-color: white; color: var(--vcr-ink); }
.vcr-button-gold { border-color: var(--vcr-gold); background: var(--vcr-gold); color: var(--vcr-ink); }
.vcr-button-gold:hover { border-color: white; background: white; color: var(--vcr-ink); }
.vcr-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vcr-purple-bright);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}
.vcr-text-link span { transition: transform .2s ease; }
.vcr-text-link:hover span { transform: translateX(4px); }

.vcr-intro-grid,
.vcr-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
    gap: clamp(42px, 7vw, 100px);
    align-items: start;
}
.vcr-statements { display: grid; gap: 22px; padding-top: 8px; }
.vcr-statement { padding: 22px 0; border-top: 1px solid var(--vcr-line); }
.vcr-statement strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.vcr-statement span { color: var(--vcr-grey); }

.vcr-pillars-grid,
.vcr-card-grid,
.vcr-dimension-grid,
.vcr-arena-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.vcr-pillar,
.vcr-card {
    position: relative;
    min-height: 320px;
    padding: clamp(25px, 2.5vw, 36px);
    overflow: hidden;
    border: 1px solid var(--vcr-line);
    border-radius: var(--vcr-radius);
    background: var(--vcr-white);
    box-shadow: 0 8px 30px rgba(22,16,24,.035);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.vcr-pillar:hover,
.vcr-card:hover { transform: translateY(-7px); border-color: rgba(55,18,63,.35); box-shadow: var(--vcr-shadow); }
.vcr-pillar-number {
    display: block;
    margin-bottom: clamp(48px, 6vw, 82px);
    color: var(--vcr-purple-bright);
    font-family: Iowan Old Style, Baskerville, serif;
    font-size: 1.65rem;
}
.vcr-pillar .vcr-pillar-number { margin-bottom: 16px; }
.vcr-pillar-media {
    position: relative;
    z-index: 1;
    margin: 0 0 25px;
    overflow: hidden;
    border-radius: calc(var(--vcr-radius) - 8px);
    background: #d7d5d6;
}
.vcr-pillar-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}
.vcr-pillar h3 { font-size: clamp(1.55rem, 2vw, 2.05rem); }
.vcr-pillar p { color: var(--vcr-grey); }
.vcr-pillar-link { position: absolute; inset: 0; }
.vcr-pillar-arrow { position: absolute; right: 35px; bottom: 30px; font-size: 1.5rem; }

.vcr-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: calc(var(--vcr-radius) + 6px);
    background: var(--vcr-gold);
    color: rgba(19,17,22,.82);
}
.vcr-band-copy { padding: clamp(42px, 7vw, 90px); }
.vcr-band h2, .vcr-band h3 { color: var(--vcr-ink); }
.vcr-band .vcr-eyebrow { color: var(--vcr-purple); }
.vcr-band .vcr-lead { color: rgba(19,17,22,.72); }
.vcr-band-visual {
    position: relative;
    display: flex;
    min-height: 460px;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 26px;
    background-image: linear-gradient(rgba(28,10,33,.12), rgba(28,10,33,.28)), url('../images/pascal1.png');
    background-position: 30% center;
    background-size: cover;
}
.vcr-band-logo-panel {
    width: min(220px, 56%);
    padding: 16px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 14px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 15px 36px rgba(15,8,18,.18);
    backdrop-filter: blur(8px);
}
.vcr-band-logo-panel img { display: block; width: 100%; height: auto; }

.vcr-page-hero { padding: clamp(102px, 12vw, 155px) 0 clamp(62px, 7vw, 92px); background: var(--vcr-cream); }
.vcr-page-hero h1 { max-width: 980px; }
.vcr-page-hero .vcr-lead { max-width: 890px; }
.vcr-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr);
    gap: clamp(45px, 8vw, 105px);
    align-items: center;
}

.vcr-page-hero-copy-only {
    max-width: 980px;
}

/* Temporary photo-free layouts requested for the shared service pages. */
.vcr-page-workshops .vcr-photo-grid-row,
.vcr-page-executive-coaching .vcr-page-hero-portrait {
    display: none !important;
}

.vcr-page-executive-coaching .vcr-page-hero-grid {
    grid-template-columns: minmax(0, 980px);
}
.vcr-page-hero-portrait {
    height: clamp(340px, 38vw, 470px);
    margin: 0;
    overflow: hidden;
    border-radius: var(--vcr-radius);
    box-shadow: var(--vcr-shadow);
}
.vcr-page-hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.vcr-page-hero-portrait-dark img { object-position: center 24%; }
.vcr-definition-list { display: grid; gap: 0; border-top: 1px solid var(--vcr-line); }
.vcr-definition-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 35px;
    padding: 25px 0;
    border-bottom: 1px solid var(--vcr-line);
}
.vcr-definition-row strong { font-family: Iowan Old Style, Baskerville, serif; font-size: 1.35rem; font-weight: 400; }
.vcr-definition-row span { color: var(--vcr-grey); }

.vcr-audit-box {
    padding: clamp(34px, 5vw, 60px);
    border-radius: calc(var(--vcr-radius) + 8px);
    background: var(--vcr-ink);
    color: rgba(255,255,255,.76);
}
.vcr-audit-box h2, .vcr-audit-box h3 { color: white; }
.vcr-audit-standards { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px; }
.vcr-audit-standards span { padding: 8px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 100px; font-size: .78rem; }

.vcr-workshop-domain { padding: clamp(32px, 4vw, 50px); border-top: 1px solid var(--vcr-line); }
.vcr-workshop-domain:first-child { border-top: 0; }
.vcr-workshop-domain-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(34px, 7vw, 100px); }
.vcr-topic-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 25px; margin: 0; padding: 0; list-style: none; }
.vcr-topic-list li { position: relative; padding-left: 18px; color: var(--vcr-grey); }
.vcr-topic-list li::before { content: ""; position: absolute; top: .78em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--vcr-purple-bright); }
.vcr-formats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vcr-format { padding: 25px 20px; border: 1px solid var(--vcr-line); border-radius: 14px; text-align: center; }
.vcr-format strong { display: block; }
.vcr-format span { color: var(--vcr-grey); font-size: .82rem; }
.vcr-workshop-krachtkompas { margin-top: 18px; border: 1px solid rgba(181,154,99,.5); border-radius: var(--vcr-radius); background: linear-gradient(135deg, rgba(181,154,99,.1), rgba(55,18,63,.045)); }
.vcr-workshop-krachtkompas-logo { width: 118px; max-height: 118px; margin: 0 0 20px; object-fit: contain; object-position: left center; }

.vcr-krachtkompas-brand { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-bottom: 38px; }
.vcr-krachtkompas-logo { width: min(300px, 100%); max-height: 330px; object-fit: contain; object-position: left center; }
.vcr-krachtkompas-brand > strong { font-family: Iowan Old Style, Baskerville, serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 400; }
.vcr-inline-portrait {
    width: min(270px, 72%);
    margin: 0 0 30px;
    overflow: hidden;
    border: 1px solid var(--vcr-line);
    border-radius: 50%;
    background: white;
    box-shadow: 0 12px 35px rgba(22,16,24,.08);
}
.vcr-inline-portrait img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.vcr-compass-mark { position: relative; width: 96px; height: 96px; border: 1px solid var(--vcr-gold); border-radius: 50%; }
.vcr-compass-mark::before,
.vcr-compass-mark::after { content: ""; position: absolute; background: var(--vcr-gold); }
.vcr-compass-mark::before { top: 14px; bottom: 14px; left: 50%; width: 1px; }
.vcr-compass-mark::after { top: 50%; right: 14px; left: 14px; height: 1px; }
.vcr-compass-mark i { position: absolute; z-index: 2; top: 29px; left: 39px; width: 18px; height: 38px; background: var(--vcr-purple-bright); clip-path: polygon(50% 0,100% 100%,50% 76%,0 100%); }
.vcr-compass-mark span { position: absolute; z-index: 3; top: 4px; left: 50%; color: var(--vcr-gold); font-size: .6rem; transform: translateX(-50%); }
.vcr-compass-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: compass; }
.vcr-compass-step { padding: 30px 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; }
.vcr-compass-step::before { counter-increment: compass; content: "0" counter(compass); display: block; margin-bottom: 45px; color: #d9c18c; font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.vcr-compass-step h3 { font-size: 1.6rem; }
.vcr-compass-step p { margin: 0; font-size: .9rem; }
.vcr-card { min-height: 225px; }
.vcr-card h3 { margin-top: 38px; }
.vcr-dimension-grid .vcr-card { min-height: 410px; }
.vcr-dimension-grid .vcr-pillar-number { margin-bottom: 16px; }
.vcr-dimension-grid .vcr-card h3 { margin-top: 0; }
.vcr-section-dark .vcr-card { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.055); color: rgba(255,255,255,.72); box-shadow: none; }
.vcr-section-dark .vcr-card h3 { color: white; }

.vcr-profile-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.vcr-profile-image { position: sticky; top: 110px; overflow: hidden; border-radius: var(--vcr-radius); }
.vcr-profile-image img { width: 100%; min-height: 580px; object-fit: cover; object-position: 43% center; }
.vcr-profile-image-round { overflow: hidden; border: 1px solid var(--vcr-line); border-radius: 50%; background: white; box-shadow: 0 15px 45px rgba(22,16,24,.08); }
.vcr-profile-image-round img { display: block; min-height: 0; aspect-ratio: 1; object-fit: cover; object-position: center; }
.vcr-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vcr-credential { padding: 25px; border: 1px solid var(--vcr-line); border-radius: 14px; }
.vcr-credential strong { display: block; margin-bottom: 4px; }
.vcr-credential span { color: var(--vcr-grey); font-size: .88rem; }

.vcr-insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcr-insight-card { overflow: hidden; border: 1px solid var(--vcr-line); border-radius: var(--vcr-radius); background: white; }
.vcr-insight-image { aspect-ratio: 1.4; display: grid; place-items: center; overflow: hidden; background: var(--vcr-purple); color: white; text-decoration: none; }
.vcr-insight-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vcr-insight-card:hover .vcr-insight-image img { transform: scale(1.035); }
.vcr-insight-image > span { font-family: Iowan Old Style, Baskerville, serif; font-size: 5rem; opacity: .4; }
.vcr-insight-body { padding: 24px; }
.vcr-insight-body h2 { font-size: 1.5rem; }
.vcr-insight-body h2 a { text-decoration: none; }
.vcr-insight-body > p:not(.vcr-eyebrow) { color: var(--vcr-grey); font-size: .92rem; }
.vcr-empty { padding: 35px; border: 1px solid var(--vcr-line); border-radius: var(--vcr-radius); }

.vcr-contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 110px); }
.vcr-contact-details { padding: 38px; border-radius: var(--vcr-radius); background: var(--vcr-ink); color: rgba(255,255,255,.75); }
.vcr-contact-details h3 { color: white; }
.vcr-contact-details a { color: white; text-decoration: none; }
.vcr-contact-details hr { margin: 28px 0; border: 0; border-top: 1px solid rgba(255,255,255,.18); }
.vcr-contact-choices { display: grid; gap: 12px; margin-top: 28px; }
.vcr-contact-choices .vcr-button { width: 100%; justify-content: center; cursor: pointer; }
.vcr-form-wrap { padding: clamp(30px, 5vw, 56px); border: 1px solid var(--vcr-line); border-radius: var(--vcr-radius); background: white; }
.vcr-form-wrap label { display: block; margin-bottom: 8px; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.vcr-form-wrap input:not([type="submit"]),
.vcr-form-wrap textarea,
.vcr-form-wrap select {
    width: 100%;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid var(--vcr-line);
    border-radius: 0;
    background: transparent;
    color: var(--vcr-ink);
    font: inherit;
}
.vcr-form-wrap input:focus,
.vcr-form-wrap textarea:focus { outline: 0; border-bottom-color: var(--vcr-purple); }
.vcr-form-wrap input[type="submit"] { cursor: pointer; }
.vcr-form-wrap .wpcf7-submit {
    min-height: 52px;
    padding: 12px 24px;
    border: 1px solid var(--vcr-ink);
    border-radius: 100px;
    background: var(--vcr-ink);
    color: white;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vcr-modal {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.vcr-modal.is-open { opacity: 1; pointer-events: auto; }
.vcr-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(15,12,17,.76); backdrop-filter: blur(7px); cursor: pointer; }
.vcr-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(790px, 100%);
    max-height: calc(100vh - 56px);
    overflow: auto;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(181,154,99,.32);
    border-radius: 22px;
    background: var(--vcr-paper);
    box-shadow: 0 30px 100px rgba(0,0,0,.35);
}
.vcr-modal-dialog h2 { margin: 0 45px .38em 0; font-size: clamp(1.85rem, 3.3vw, 2.8rem); }
.vcr-modal-dialog > p:not(.vcr-eyebrow) { margin-bottom: .75rem; }
.vcr-modal-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid var(--vcr-line); border-radius: 50%; background: transparent; color: var(--vcr-ink); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.vcr-modal-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 20px; margin-top: 18px; }
.vcr-modal-form label { display: grid; gap: 6px; color: var(--vcr-ink); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.vcr-modal-form input,
.vcr-modal-form textarea { width: 100%; padding: 7px 0; border: 0; border-bottom: 1px solid var(--vcr-line); border-radius: 0; background: transparent; color: var(--vcr-ink); font: inherit; font-weight: 400; letter-spacing: 0; text-transform: none; }
.vcr-modal-form textarea { height: 58px; min-height: 58px; max-height: 110px; resize: vertical; }
.vcr-modal-form input:focus,
.vcr-modal-form textarea:focus { outline: 0; border-color: var(--vcr-purple); }
.vcr-modal-wide { grid-column: 1 / -1; }
.vcr-modal-submit { display: flex; align-items: center; gap: 18px; }
.vcr-modal-submit p { margin: 0; color: var(--vcr-grey); font-size: .83rem; }
.vcr-honeypot { position: absolute !important; left: -10000px !important; }
body.vcr-modal-open { overflow: hidden; }

.vcr-is-krachtkompas .vcr-site-main { background: #0d0d0e; color: rgba(255,255,255,.78); }
.vcr-is-krachtkompas .vcr-page-hero,
.vcr-is-krachtkompas .vcr-section,
.vcr-is-krachtkompas .vcr-section-cream,
.vcr-is-krachtkompas .vcr-section-purple { background: #0d0d0e; color: rgba(255,255,255,.78); }
.vcr-is-krachtkompas .vcr-section:nth-of-type(even) { background: #151416; }
.vcr-is-krachtkompas h1,
.vcr-is-krachtkompas h2,
.vcr-is-krachtkompas h3,
.vcr-is-krachtkompas h4 { color: white; }
.vcr-is-krachtkompas .vcr-eyebrow,
.vcr-is-krachtkompas strong,
.vcr-is-krachtkompas .vcr-pillar-number { color: var(--vcr-gold); }
.vcr-is-krachtkompas .vcr-lead,
.vcr-is-krachtkompas .vcr-card p { color: rgba(255,255,255,.76); }
.vcr-is-krachtkompas .vcr-card { border-color: rgba(181,154,99,.3); background: rgba(255,255,255,.045); box-shadow: none; }
.vcr-is-krachtkompas .vcr-dimension-builder .vcr-media-card {
    border-color: rgba(181,154,99,.3);
    background: #171619;
    color: rgba(255,255,255,.76);
    box-shadow: none;
}
.vcr-is-krachtkompas .vcr-dimension-builder .vcr-media-card h3 { color: white; }
.vcr-is-krachtkompas .vcr-dimension-builder .vcr-media-card p { color: rgba(255,255,255,.76); }
.vcr-is-krachtkompas .vcr-pillar-media { border-color: rgba(181,154,99,.28); }
.vcr-is-krachtkompas .vcr-krachtkompas-logo { width: min(255px, 70%); max-height: 235px; }
.vcr-is-krachtkompas .vcr-krachtkompas-brand { margin-bottom: 28px; }
.vcr-is-krachtkompas .vcr-compass-step { border-color: rgba(181,154,99,.36); background: rgba(181,154,99,.04); }
.vcr-is-krachtkompas .vcr-kracht-portrait { border: 1px solid rgba(181,154,99,.35); box-shadow: 0 25px 75px rgba(0,0,0,.4); }
.vcr-is-krachtkompas .vcr-kracht-portrait img { object-position: center 18%; }
.vcr-is-krachtkompas .vcr-modal-dialog { color: var(--vcr-ink); }
.vcr-is-krachtkompas .vcr-modal-dialog h1,
.vcr-is-krachtkompas .vcr-modal-dialog h2,
.vcr-is-krachtkompas .vcr-modal-dialog h3,
.vcr-is-krachtkompas .vcr-modal-dialog h4 { color: var(--vcr-ink); }
.vcr-is-krachtkompas .vcr-modal-dialog .vcr-eyebrow { color: var(--vcr-purple-bright); }
.vcr-is-krachtkompas .vcr-modal-dialog strong { color: var(--vcr-ink); }
.wpcf7-response-output { margin: 20px 0 0 !important; padding: 12px 16px !important; border-radius: 8px; font-size: .86rem; }

.vcr-article { padding: 128px 0 82px; }
.vcr-article-header { padding-bottom: 48px; }
.vcr-article-header h1 { font-size: clamp(2.6rem, 5.5vw, 4.7rem); }
.vcr-back-link { display: inline-block; margin-bottom: 50px; color: var(--vcr-purple-bright); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.vcr-article-image { width: min(1100px, calc(100vw - 48px)); margin: 0 50% 65px; transform: translateX(-50%); }
.vcr-article-image img { width: 100%; max-height: 700px; object-fit: cover; border-radius: var(--vcr-radius); }
.vcr-article-content { font-size: 1.08rem; }
.vcr-article-content h2 { margin-top: 1.5em; font-size: 2.6rem; }
.vcr-article-content h3 { margin-top: 1.5em; }
.vcr-update-note {
    margin: 0 0 32px;
    padding: 20px 22px;
    border-left: 3px solid var(--vcr-gold);
    border-radius: 0 10px 10px 0;
    background: var(--vcr-cream);
    color: var(--vcr-ink-soft);
    font-size: .92rem;
}
.vcr-archive { padding: 150px 0 100px; }
.vcr-error { min-height: 70vh; padding: 190px 0 120px; text-align: center; }

.vcr-site-footer { background: var(--vcr-ink); color: rgba(255,255,255,.65); }
.vcr-footer-cta {
    width: var(--vcr-container);
    margin: auto;
    padding: clamp(62px, 7vw, 92px) 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 45px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.vcr-footer-cta h2 { margin: 0; color: white; font-size: clamp(2.15rem, 4vw, 3.8rem); }
.vcr-footer-bottom {
    width: var(--vcr-container);
    margin: auto;
    padding: 38px 0 45px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 25px;
    align-items: center;
    font-size: .75rem;
}
.vcr-footer-brand { color: white; font-weight: 800; letter-spacing: .18em; }
.vcr-footer-brand span { display: block; margin-top: 4px; color: rgba(255,255,255,.45); font-size: .62rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.vcr-footer-menu { display: flex; gap: 20px; margin: 0; padding: 0; list-style: none; }
.vcr-footer-menu a { text-decoration: none; }
.vcr-footer-bottom > p { grid-column: 1 / -1; margin: 0; }
.vcr-footer-bottom > p a { color: white; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }

.vcr-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.vcr-reveal.is-visible { opacity: 1; transform: none; }

/* WPBakery: every content section remains an independently editable row. */
.vcr-wpb-row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.vcr-wpb-row > .wpb_column > .vc_column-inner {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.vcr-wpb-row .wpb_content_element,
.vcr-wpb-photo-row .wpb_content_element,
.vcr-photo-grid-row .wpb_content_element {
    margin-bottom: 0;
}
.vcr-wpb-photo-row {
    width: var(--vcr-container);
    margin: 0 auto !important;
    padding: 0 0 clamp(60px, 8vw, 105px);
}
.vcr-wpb-photo-row > .wpb_column > .vc_column-inner {
    padding: 0 !important;
}
.vcr-photo-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: var(--vcr-radius);
    background: #d7d5d6;
}
.vcr-photo-placeholder img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    filter: grayscale(1);
}
.vcr-photo-placeholder::after {
    content: "Vervang deze placeholder via WPBakery · Single Image";
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(19,17,22,.76);
    color: #fff;
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.vcr-photo-grid-row {
    width: var(--vcr-container);
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 0 0 clamp(60px, 8vw, 105px);
}
.vcr-photo-grid-row .vc_column-inner { padding: 0 8px !important; }
.vcr-photo-grid-row .vcr-photo-placeholder img { aspect-ratio: 4 / 3; }
.vcr-editorial-photo {
    margin-bottom: 0 !important;
    overflow: hidden;
    border-radius: var(--vcr-radius);
    background: var(--vcr-black);
}
.vcr-editorial-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}
.vcr-photo-grid-row .vcr-editorial-photo img { aspect-ratio: 4 / 3; }

/* Homepage pillars and Krachtkompas dimensions: one complete editable card each. */
.vcr-pillar-section {
    margin: 0 !important;
    padding: clamp(62px, 7vw, 92px) 0;
}
.vcr-pillar-section > .wpb_column > .vc_column-inner { padding: 0 !important; }
.vcr-pillar-section-heading,
.vcr-pillar-number-wrap,
.vcr-pillar-copy,
.vcr-pillar-photo-placeholder { margin-bottom: 0 !important; }
.vcr-pillar-section-heading { margin-bottom: 20px !important; }
.vcr-pillar-builder-grid {
    display: flex;
    width: var(--vcr-container);
    margin-right: auto !important;
    margin-left: auto !important;
}
.vcr-pillar-builder { display: flex; padding: 0 10px; }
.vcr-pillar-builder:first-child { padding-left: 0; }
.vcr-pillar-builder:last-child { padding-right: 0; }
.vcr-pillar-builder > .vc_column-inner {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0 !important;
}
.vcr-pillar-builder > .vc_column-inner > .wpb_wrapper {
    display: flex;
    min-width: 0;
    width: 100%;
    height: 100%;
    flex: 1;
    flex-direction: column;
}
.vcr-media-card {
    display: flex;
    min-height: 455px;
    width: 100%;
    flex: 1;
    flex-direction: column;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--vcr-line);
    border-radius: var(--vcr-radius);
    background: var(--vcr-white);
    box-shadow: 0 8px 30px rgba(22,16,24,.035);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.vcr-media-card:hover {
    transform: translateY(-5px);
    border-color: rgba(55,18,63,.35);
    box-shadow: var(--vcr-shadow);
}
.vcr-media-card .vcr-pillar-number { margin-bottom: 15px; font-size: 1.5rem; }
.vcr-media-card-photo {
    position: relative;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: calc(var(--vcr-radius) - 8px);
    background: #d7d5d6;
}
.vcr-media-card-photo img,
.vcr-media-card-empty {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}
.vcr-media-card-empty { background: url('../images/photo-placeholder.png') center / cover no-repeat; }
.vcr-media-card-copy { display: flex; flex: 1; flex-direction: column; }
.vcr-media-card-copy h3 { margin: 0 0 13px; font-size: clamp(1.45rem, 1.7vw, 1.85rem); }
.vcr-media-card-copy p { margin: 0 0 14px; color: var(--vcr-grey); }
.vcr-media-card-copy .vcr-text-link { margin-top: auto; padding-top: 4px; font-size: .7rem; }
.vcr-pillar-builder .vcr-pillar-number-wrap { order: 1; }
.vcr-pillar-photo-placeholder {
    order: 2;
    position: relative;
    margin-bottom: 24px !important;
    overflow: hidden;
    border-radius: calc(var(--vcr-radius) - 8px);
    background: #d7d5d6;
}
.vcr-pillar-photo-placeholder img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}
.vcr-pillar-photo-placeholder::after {
    content: none;
}
.vcr-pillar-builder .vcr-pillar-copy { order: 3; flex: 1; }
.vcr-pillar-builder .vcr-pillar-copy h3 { font-size: clamp(1.45rem, 1.7vw, 1.85rem); }
.vcr-pillar-builder .vcr-pillar-copy p { color: var(--vcr-grey); }
.vcr-pillar-builder .vcr-text-link { margin-top: 6px; font-size: .7rem; }

/* Compact desktop hero for laptops and browser windows with little height. */
@media (min-width: 901px) and (max-height: 760px) {
    .vcr-hero {
        min-height: 100svh;
        align-items: start;
        padding-top: 78px;
    }
    .vcr-hero-inner { margin: 18px auto 22px; }
    .vcr-hero-panel { padding: 24px 34px; }
    .vcr-hero .vcr-hero-kicker { margin-bottom: 10px; font-size: .58rem; }
    .vcr-hero h1 { margin-bottom: .42em; font-size: clamp(2.65rem, 4vw, 3.35rem); line-height: 1.01; }
    .vcr-hero p:not(.vcr-eyebrow) { margin-bottom: .8rem; font-size: .9rem; line-height: 1.5; }
    .vcr-hero .vcr-actions { margin-top: 18px; }
    .vcr-hero .vcr-button { min-height: 42px; padding: 8px 16px; font-size: .62rem; }
}

@media (max-width: 1120px) {
    .vcr-header-inner { gap: 10px; }
    .vcr-brand { position: relative; z-index: 2; margin-right: auto; }
    .vcr-logo { width: min(190px, 48vw); }
    .vcr-primary-nav {
        position: absolute;
        z-index: 0;
        top: 100%;
        right: 0;
        left: 0;
        height: calc(100dvh - 78px);
        display: none;
        align-items: flex-start;
        justify-content: center;
        padding: 22px 34px 28px;
        overflow-y: auto;
        border-top: 1px solid var(--vcr-line);
        background: var(--vcr-cream);
        box-shadow: 0 18px 45px rgba(18, 14, 20, .12);
    }
    .vcr-primary-nav.is-open { display: flex; }
    .admin-bar .vcr-primary-nav { height: calc(100dvh - 110px); }
    .vcr-menu { width: min(100%, 520px); align-items: stretch; flex-direction: column; gap: 0; }
    .vcr-menu > li { width: 100%; border-bottom: 1px solid rgba(33, 28, 36, .12); }
    .vcr-menu a {
        min-height: 43px;
        display: flex;
        align-items: center;
        color: var(--vcr-ink);
        font-family: Inter, "Helvetica Neue", sans-serif;
        font-size: clamp(.76rem, 2.1vw, .9rem);
        font-weight: 750;
        line-height: 1.2;
        letter-spacing: .075em;
        text-transform: uppercase;
    }
    .vcr-menu a::after { bottom: 5px; }
    .vcr-menu > li:last-child { padding-top: 14px; border-bottom: 0; }
    .vcr-menu > li:last-child > a { min-height: 42px; display: inline-flex; padding: 10px 19px; border: 1px solid var(--vcr-gold); background: var(--vcr-gold); }
    .vcr-menu > li:last-child > a:hover { border-color: var(--vcr-ink); background: var(--vcr-ink); color: white; }
    .vcr-menu .sub-menu { position: static; width: auto; margin: -2px 0 7px 14px; padding: 0; border: 0; background: transparent; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
    .vcr-menu .sub-menu::before { display: none; }
    .vcr-menu .sub-menu li { padding: 0; }
    .vcr-menu .sub-menu a { min-height: 34px; font-family: Inter, "Helvetica Neue", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .vcr-menu-toggle { position: relative; z-index: 3; order: 3; width: 46px; height: 46px; display: grid; flex: 0 0 46px; place-content: center; gap: 5px; border: 0; border-radius: 50%; background: var(--vcr-ink); }
    .vcr-instagram { z-index: 3; order: 2; margin-left: 0; }
    .vcr-menu-toggle > span:not(.screen-reader-text) { width: 19px; height: 1px; display: block; background: white; transition: transform .2s ease, opacity .2s ease; }
    .vcr-menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(6px) rotate(45deg); }
    .vcr-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
    .vcr-menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .vcr-pillars-grid, .vcr-card-grid, .vcr-dimension-grid, .vcr-arena-grid, .vcr-insights-grid { grid-template-columns: repeat(2, 1fr); }
    .vcr-compass-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .vcr-hero { min-height: 0; display: flex; flex-direction: column; padding-top: 78px; background: var(--vcr-ink); }
    .vcr-hero::before {
        content: "";
        width: 100%;
        min-height: clamp(360px, 70vw, 560px);
        display: block;
        flex: 0 0 auto;
        background: url('../images/pascal1.png') 34% 28% / cover no-repeat;
    }
    .vcr-hero-photo { display: none; }
    .vcr-hero::after { display: none; }
    .vcr-hero-inner { width: 100%; margin: 0; display: block; }
    .vcr-hero-panel { width: 100%; padding: clamp(34px, 7vw, 58px) max(24px, calc((100vw - 760px) / 2)); border: 0; border-radius: 0; background: var(--vcr-ink); box-shadow: none; backdrop-filter: none; }
    .vcr-hero h1 { max-width: 680px; font-size: clamp(2.5rem, 8.5vw, 4.4rem); }
    .vcr-hero .vcr-hero-kicker { margin-bottom: 18px; font-size: clamp(.48rem, 1.45vw, .64rem); letter-spacing: .09em; }
    .vcr-pillar-builder-grid { flex-wrap: wrap; gap: 18px 0; }
    .vcr-pillar-builder { width: 50%; }
    .vcr-pillar-builder:nth-child(2) { padding-right: 0; }
    .vcr-pillar-builder:nth-child(3) { padding-left: 0; }
}

@media (max-width: 782px) {
    :root { --vcr-container: min(100% - 36px, 1240px); --vcr-narrow: min(100% - 36px, 820px); }
    .admin-bar .vcr-site-header { top: 46px; }
    .admin-bar .vcr-primary-nav { height: calc(100dvh - 124px); }
    .vcr-header-inner { width: calc(100vw - 32px); min-height: 78px; }
    .vcr-logo { width: 205px; }
    .vcr-hero { padding-top: 78px; }
    .vcr-hero::before { min-height: clamp(350px, 92vw, 520px); background-position: 34% 25%; }
    .vcr-hero-panel { padding: 34px 18px 42px; }
    .vcr-hero h1 { font-size: clamp(2.4rem, 11vw, 4.1rem); }
    .vcr-hero .vcr-hero-kicker { font-size: clamp(.44rem, 1.75vw, .58rem); letter-spacing: .055em; }
    .vcr-intro-grid, .vcr-split, .vcr-band, .vcr-profile-grid, .vcr-contact-grid, .vcr-workshop-domain-grid, .vcr-page-hero-grid { grid-template-columns: 1fr; }
    .vcr-page-hero-portrait { height: min(110vw, 580px); }
    .vcr-band-visual { min-height: 440px; order: -1; background-position: 42% center; }
    .vcr-profile-image { position: static; }
    .vcr-profile-image img { min-height: 460px; }
    .vcr-profile-image-round img { min-height: 0; }
    .vcr-formats { grid-template-columns: repeat(2, 1fr); }
    .vcr-definition-row { grid-template-columns: 1fr; gap: 5px; }
    .vcr-footer-cta { align-items: flex-start; flex-direction: column; }
    .vcr-modal-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    body { font-size: 15px; }
    .vcr-pillar-builder-grid { display: block; }
    .vcr-pillar-builder { width: 100%; padding: 0 0 16px; }
    .vcr-pillar-builder > .vc_column-inner, .vcr-media-card { min-height: 0; }
    .vcr-pillars-grid, .vcr-card-grid, .vcr-dimension-grid, .vcr-arena-grid, .vcr-insights-grid, .vcr-credentials, .vcr-compass-grid { grid-template-columns: 1fr; }
    .vcr-pillar { min-height: 330px; }
    .vcr-topic-list { grid-template-columns: 1fr; }
    .vcr-footer-bottom { grid-template-columns: 1fr; }
    .vcr-footer-menu { flex-wrap: wrap; }
    .vcr-header-inner { width: calc(100vw - 24px); gap: 8px; }
    .vcr-logo { width: min(155px, 45vw); max-height: 48px; }
    .vcr-menu-toggle { width: 40px; height: 40px; flex-basis: 40px; }
    .vcr-primary-nav { padding: 16px 22px 22px; }
    .vcr-menu a { min-height: 40px; font-size: .76rem; }
    .vcr-menu .sub-menu a { min-height: 31px; font-size: .64rem; }
    .vcr-instagram-toggle { width: 36px; height: 36px; }
    .vcr-modal { padding: 12px; }
    .vcr-modal-dialog { max-height: calc(100vh - 24px); padding: 24px 20px; }
    .vcr-modal-form { grid-template-columns: 1fr; }
    .vcr-modal-wide { grid-column: auto; }
    .vcr-modal-submit { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .vcr-reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Krachtkompas domain mode – activated by the companion domain plugin.
   -------------------------------------------------------------------------- */
body.vcr-kracht-domain {
    --vcr-purple: #b59a63;
    --vcr-purple-bright: #d2b875;
    --vcr-line: rgba(181, 154, 99, .27);
    background: #0d0d0e;
    color: rgba(255,255,255,.78);
}
.vcr-kracht-domain ::selection { background: var(--vcr-gold); color: var(--vcr-ink); }
.vcr-kracht-domain .vcr-site-main { background: #0d0d0e; color: rgba(255,255,255,.78); }
.vcr-kracht-domain .vcr-site-header,
.vcr-kracht-domain .vcr-site-header.is-scrolled {
    background: rgba(13,13,14,.97);
    box-shadow: 0 1px 0 rgba(181,154,99,.25);
}
.vcr-brand-kracht { display: inline-flex; align-items: center; gap: 11px; color: white; }
.vcr-kracht-header-mark { width: 58px; height: 56px; position: relative; display: block; overflow: hidden; flex: 0 0 58px; }
.vcr-kracht-header-mark img { width: 106px; max-width: none; height: auto; transform: translate(-24px, -2px); }
.vcr-kracht-header-word { font-size: .88rem; font-weight: 500; letter-spacing: .18em; white-space: nowrap; }
.vcr-kracht-header-word span { color: var(--vcr-gold); }
.vcr-kracht-domain .vcr-menu a { color: white; }
.vcr-kracht-domain .vcr-menu a::after { background: var(--vcr-gold); }
.vcr-kracht-domain .vcr-menu > li:last-child > a { border-color: var(--vcr-gold); }
.vcr-kracht-domain .vcr-menu > li:last-child > a:hover { border-color: var(--vcr-gold); background: var(--vcr-gold); color: var(--vcr-ink); }
.vcr-kracht-domain .vcr-menu .sub-menu { border-color: rgba(181,154,99,.28); background: rgba(20,19,21,.99); }
.vcr-kracht-domain .vcr-instagram-toggle { border-color: rgba(181,154,99,.38); background: transparent; color: white; }
.vcr-kracht-domain .vcr-instagram-toggle:hover,
.vcr-kracht-domain .vcr-instagram-toggle[aria-expanded="true"] { border-color: var(--vcr-gold); background: var(--vcr-gold); color: var(--vcr-ink); }
.vcr-kracht-domain .vcr-instagram-menu { border-color: rgba(181,154,99,.3); background: #171619; }
.vcr-kracht-domain .vcr-instagram-menu a { color: white; }
.vcr-kracht-domain .vcr-instagram-menu a:hover { background: rgba(181,154,99,.12); color: var(--vcr-gold); }

.vcr-kracht-domain .vcr-page-hero,
.vcr-kracht-domain .vcr-section,
.vcr-kracht-domain .vcr-section-dark { background: #0d0d0e; color: rgba(255,255,255,.78); }
.vcr-kracht-domain .vcr-section-cream { background: #171619; color: rgba(255,255,255,.78); }
.vcr-kracht-domain .vcr-section-purple { background: #211d17; color: rgba(255,255,255,.8); }
.vcr-kracht-domain h1,
.vcr-kracht-domain h2,
.vcr-kracht-domain h3,
.vcr-kracht-domain h4 { color: white; }
.vcr-kracht-domain .vcr-eyebrow,
.vcr-kracht-domain strong,
.vcr-kracht-domain .vcr-pillar-number,
.vcr-kracht-domain .vcr-text-link { color: var(--vcr-gold); }
.vcr-kracht-domain .vcr-lead,
.vcr-kracht-domain .vcr-card p,
.vcr-kracht-domain .vcr-pillar p,
.vcr-kracht-domain .vcr-topic-list li,
.vcr-kracht-domain .vcr-definition-row span { color: rgba(255,255,255,.72); }
.vcr-kracht-domain .vcr-card,
.vcr-kracht-domain .vcr-pillar,
.vcr-kracht-domain .vcr-media-card,
.vcr-kracht-domain .vcr-insight-card,
.vcr-kracht-domain .vcr-formats > div,
.vcr-kracht-domain .vcr-credential {
    border-color: rgba(181,154,99,.28);
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.78);
    box-shadow: none;
}
.vcr-kracht-domain .vcr-media-card h3,
.vcr-kracht-domain .vcr-insight-card h2 { color: white; }
.vcr-kracht-domain .vcr-media-card p,
.vcr-kracht-domain .vcr-insight-body > p:not(.vcr-eyebrow) { color: rgba(255,255,255,.68); }
.vcr-kracht-domain .vcr-insight-image { background: #211d17; }
.vcr-kracht-domain .vcr-definition-list,
.vcr-kracht-domain .vcr-definition-row,
.vcr-kracht-domain .vcr-workshop-domain { border-color: rgba(181,154,99,.24); }
.vcr-kracht-domain .vcr-workshop-krachtkompas { background: rgba(181,154,99,.08); }
.vcr-kracht-domain .vcr-band { background: var(--vcr-gold); color: var(--vcr-ink); }
.vcr-kracht-domain .vcr-band h2,
.vcr-kracht-domain .vcr-band h3,
.vcr-kracht-domain .vcr-band strong { color: var(--vcr-ink); }
.vcr-kracht-domain .vcr-form-wrap { border-color: rgba(181,154,99,.3); background: #171619; }
.vcr-kracht-domain .vcr-form-wrap input,
.vcr-kracht-domain .vcr-form-wrap textarea,
.vcr-kracht-domain .vcr-form-wrap select { color: white; }
.vcr-kracht-domain .vcr-contact-details { border: 1px solid rgba(181,154,99,.28); background: #171619; }
.vcr-kracht-domain .vcr-article-content,
.vcr-kracht-domain .vcr-article-header { color: rgba(255,255,255,.78); }
.vcr-kracht-domain .vcr-update-note { background: #211d17; color: rgba(255,255,255,.78); }
.vcr-kracht-domain .vcr-modal-dialog { background: var(--vcr-paper); color: var(--vcr-ink); }
.vcr-kracht-domain .vcr-modal-dialog h1,
.vcr-kracht-domain .vcr-modal-dialog h2,
.vcr-kracht-domain .vcr-modal-dialog h3,
.vcr-kracht-domain .vcr-modal-dialog h4,
.vcr-kracht-domain .vcr-modal-dialog strong { color: var(--vcr-ink); }
.vcr-kracht-domain .vcr-modal-dialog .vcr-eyebrow { color: #8b713d; }
.vcr-kracht-domain .vcr-site-footer { border-top: 1px solid rgba(181,154,99,.24); }

.vcr-kd-hero { min-height: max(760px, 100svh); display: flex; align-items: stretch; padding-top: 78px; background: #0d0d0e; }
.vcr-kd-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); gap: clamp(45px, 7vw, 110px); align-items: center; padding-top: clamp(48px, 7vw, 94px); padding-bottom: clamp(55px, 7vw, 90px); }
.vcr-kd-hero-copy { max-width: 720px; }
.vcr-kd-hero-logo { width: min(245px, 62%); max-height: 270px; margin-bottom: 28px; object-fit: contain; object-position: left center; }
.vcr-kd-hero h1 { max-width: 740px; font-size: clamp(3rem, 5.7vw, 6.1rem); }
.vcr-kd-hero .vcr-lead { max-width: 660px; color: rgba(255,255,255,.73); }
.vcr-kd-hero-photo { height: min(68vh, 690px); min-height: 500px; margin: 0; overflow: hidden; border: 1px solid rgba(181,154,99,.4); border-radius: var(--vcr-radius); box-shadow: 0 30px 90px rgba(0,0,0,.48); }
.vcr-kd-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.vcr-kd-intro { border-top: 1px solid rgba(181,154,99,.2); }
.vcr-kd-panel-section,
.vcr-kd-related { background: #171619 !important; }
.vcr-kd-card { min-height: 470px; }
.vcr-kd-card .vcr-pillar-number { margin-bottom: 16px; }
.vcr-kd-card h3 { margin-top: 0; }
.vcr-kd-directions { background: #211d17 !important; }
.vcr-kd-directions .vcr-compass-step { border-color: rgba(181,154,99,.42); background: rgba(0,0,0,.13); }
.vcr-kd-directions .vcr-compass-step > span { display: none; }
.vcr-kd-applications .vcr-card,
.vcr-kd-related .vcr-card { border-color: rgba(181,154,99,.28); background: rgba(255,255,255,.045); }
.vcr-kd-pascal { background: #0d0d0e !important; }
.vcr-kd-pascal .vcr-profile-image { border: 1px solid rgba(181,154,99,.35); box-shadow: 0 24px 75px rgba(0,0,0,.38); }
.vcr-kd-pascal .vcr-profile-image img { object-position: center 20%; }
.vcr-kd-news { background: #0d0d0e !important; }

@media (max-width: 1120px) {
    .vcr-kracht-domain .vcr-primary-nav { border-top-color: rgba(181,154,99,.26); background: #111013; }
    .vcr-kracht-domain .vcr-menu > li { border-bottom-color: rgba(181,154,99,.18); }
    .vcr-kracht-domain .vcr-menu-toggle { background: var(--vcr-gold); }
    .vcr-kracht-domain .vcr-menu-toggle > span:not(.screen-reader-text) { background: var(--vcr-ink); }
    .vcr-kracht-domain .vcr-menu > li:last-child > a { color: var(--vcr-ink); }
}

@media (max-width: 900px) {
    .vcr-kd-hero { min-height: 0; padding-top: 78px; }
    .vcr-kd-hero-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 0; }
    .vcr-kd-hero-photo { height: min(108vw, 590px); min-height: 390px; order: -1; border-radius: 0 0 var(--vcr-radius) var(--vcr-radius); }
    .vcr-kd-hero-photo img { object-position: center 16%; }
    .vcr-kd-hero-copy { padding-top: 10px; }
}

@media (max-width: 560px) {
    .vcr-brand-kracht { gap: 7px; }
    .vcr-kracht-header-mark { width: 44px; height: 43px; flex-basis: 44px; }
    .vcr-kracht-header-mark img { width: 82px; transform: translate(-19px, -1px); }
    .vcr-kracht-header-word { font-size: .66rem; letter-spacing: .12em; }
    .vcr-kd-hero-photo { min-height: 350px; }
    .vcr-kd-hero-logo { width: 190px; max-height: 210px; }
    .vcr-kd-hero h1 { font-size: clamp(2.55rem, 13vw, 4.1rem); }
}
