/* Emperium — 1:1 met React (Tailwind-design tokens) */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
	--background: hsl(0, 0%, 100%);
	--foreground: hsl(210, 40%, 12%);
	--muted-foreground: hsl(210, 15%, 45%);
	--secondary-foreground: hsl(207, 90%, 25%);
	--border: hsl(210, 20%, 90%);
	--primary: hsl(207, 90%, 35%);
	--primary-foreground: hsl(0, 0%, 100%);
	--secondary: hsl(207, 40%, 94%);
	--card: hsl(210, 30%, 97%);
	--muted-bg: hsl(210, 20%, 95%);
	--ring: hsl(207, 90%, 35%);
	--radius: 0.5rem;
	--header-h: 8rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Manrope, system-ui, sans-serif;
	background: var(--background);
	color: var(--foreground);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
}

/* --- Layout --- */
.emp-container {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 1024px) {
	.emp-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.emp-text-gradient {
	background: linear-gradient(135deg, hsl(207, 90%, 35%), hsl(200, 85%, 48%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.emp-bg-gradient-blue {
	background-image: linear-gradient(135deg, hsl(207, 90%, 35%), hsl(200, 85%, 48%));
}

.emp-bg-gradient-card {
	background-image: linear-gradient(145deg, hsl(210, 30%, 97%), hsl(210, 25%, 94%));
}

.emp-line-gradient {
	height: 1px;
	width: 3rem;
	background: linear-gradient(135deg, hsl(207, 90%, 35%), hsl(200, 85%, 48%));
}

/* --- Header / nav (Navbar.tsx) --- */
.emp-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: hsla(0, 0%, 100%, 0.8);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid var(--border);
}

/* Admin-bar (ingelogd): header onder de WP-balk */
body.admin-bar .emp-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .emp-header {
		top: 46px;
	}
}

.emp-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
}

.emp-brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	margin-left: 0;
	padding-left: 0;
}

/* Smalle viewport op het vierkante PNG: witte marge weg, zichtbaar logo vult de box */
.emp-brand__logo-frame {
	display: block;
	flex-shrink: 0;
	height: 7rem;
	width: 6.5rem;
	overflow: hidden;
}

.emp-brand__logo-frame--footer {
	height: 2.5rem;
	width: 2.3125rem;
}

.emp-brand__logo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-position: left 52%;
	transform: translateX(-0.42rem);
}

.emp-brand__logo-frame--footer .emp-brand__logo-img {
	object-position: left 52%;
	transform: translateX(-0.15rem);
}

.emp-brand__mark-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius);
	background: linear-gradient(135deg, hsl(207, 90%, 35%), hsl(200, 85%, 48%));
	color: #fff;
	font-size: 1.25rem;
	font-weight: 800;
	flex-shrink: 0;
}

.emp-brand__mark-fallback--sm {
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1rem;
}

.emp-brand__text {
	display: none;
	flex-direction: column;
	line-height: 1.2;
}

@media (min-width: 640px) {
	.emp-brand__text {
		display: flex;
	}
}

.emp-brand__name {
	font-size: 1.125rem;
	font-weight: 700;
}

.emp-brand__tag {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted-foreground);
}

.emp-header__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0.5rem;
	background: none;
	border: 0;
	color: var(--foreground);
	cursor: pointer;
}

.emp-header__toggle .emp-icon--menu {
	display: block;
}

.emp-header__toggle .emp-icon--x {
	display: none;
}

.emp-header--open .emp-header__toggle .emp-icon--menu {
	display: none;
}

.emp-header--open .emp-header__toggle .emp-icon--x {
	display: block;
}

@media (min-width: 768px) {
	.emp-header__toggle {
		display: none;
	}
}

.emp-nav {
	display: none;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	.emp-nav {
		display: flex;
	}
}

.emp-header--open .emp-nav {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	position: absolute;
	top: var(--header-h);
	left: 0;
	right: 0;
	background: var(--background);
	border-bottom: 1px solid var(--border);
	padding: 1rem 1rem 1.25rem;
	gap: 0.5rem;
	max-height: min(70vh, calc(100vh - var(--header-h) - 1rem));
	max-height: min(70dvh, calc(100dvh - var(--header-h) - 1rem));
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
	body.emp-nav-open {
		overflow: hidden;
		touch-action: none;
	}
}

@media (min-width: 768px) {
	.emp-header--open .emp-nav {
		position: static;
		flex-direction: row;
		align-items: center;
		padding: 0;
		border: 0;
		background: transparent;
	}
}

.emp-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

@media (min-width: 768px) {
	.emp-nav__list {
		flex-direction: row;
		align-items: center;
		gap: 2rem;
	}
}

.emp-nav__list a {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--muted-foreground);
	transition: color 0.15s;
}

@media (max-width: 767px) {
	.emp-nav__list a {
		display: flex;
		align-items: center;
		min-height: 44px;
		padding: 0.375rem 0.25rem;
	}
}

.emp-nav__list a:hover,
.emp-nav__list .current-menu-item > a {
	color: var(--primary);
}

.emp-btn-nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: var(--radius);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-foreground) !important;
	transition: transform 0.15s;
}

.emp-btn-nav-cta:hover {
	transform: scale(1.05);
	color: var(--primary-foreground) !important;
}

.emp-btn-nav-cta .emp-icon {
	color: inherit;
}

.emp-header--open .emp-btn-nav-cta {
	justify-content: center;
	margin-top: 0.5rem;
}

@media (min-width: 768px) {
	.emp-nav-cta-text--sm {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.emp-nav-cta-text--lg {
		display: none !important;
	}
}

/* --- Hero (HeroSection.tsx) --- */
body.home .emp-main {
	padding-top: 0;
}

.emp-main--inner {
	padding-top: calc(var(--header-h) + 2rem);
	padding-bottom: 6rem;
}

.emp-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.emp-hero__bg {
	position: absolute;
	inset: 0;
}

.emp-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.emp-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		hsl(0, 0%, 100%) 0%,
		hsla(0, 0%, 100%, 0.85) 45%,
		hsla(0, 0%, 100%, 0.3) 100%
	);
}

.emp-hero .emp-container {
	position: relative;
	padding-top: clamp(4.5rem, 12vw, 5.5rem);
	padding-bottom: 2rem;
}

.emp-hero__content {
	max-width: 42rem;
}

.emp-kicker-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.emp-kicker-text {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.emp-hero h1 {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 1.5rem;
}

.emp-hero__lead {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	line-height: 1.65;
	margin: 0 0 2.5rem;
	max-width: 36rem;
}

.emp-hero__lead strong {
	color: var(--foreground);
	font-weight: 600;
}

.emp-hero__lead .emp-lead-accent {
	color: var(--foreground);
	font-weight: 500;
}

.emp-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.emp-hero__actions {
		flex-direction: row;
	}
}

.emp-btn-primary-lg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: var(--radius);
	font-weight: 600;
	color: var(--primary-foreground) !important;
	transition: transform 0.15s;
}

.emp-btn-primary-lg:hover {
	transform: scale(1.05);
	color: var(--primary-foreground) !important;
}

.emp-btn-primary-lg .emp-icon {
	color: inherit;
}

.emp-btn-outline-lg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: var(--radius);
	font-weight: 600;
	color: var(--secondary-foreground);
	background: hsla(207, 90%, 35%, 0.1);
	border: 2px solid hsla(207, 90%, 35%, 0.42);
	box-shadow: 0 1px 3px hsla(210, 40%, 12%, 0.08);
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.emp-btn-outline-lg:hover {
	color: var(--primary);
	background: hsla(207, 90%, 35%, 0.16);
	border-color: var(--primary);
	box-shadow: 0 4px 14px hsla(207, 90%, 35%, 0.18);
	transform: translateY(-1px);
}

.emp-btn-outline-lg:focus-visible {
	outline: 2px solid var(--ring);
	outline-offset: 2px;
}

.emp-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 4rem;
}

.emp-hero__meta-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.emp-hero__meta-item .emp-icon {
	color: var(--primary);
	flex-shrink: 0;
}

/* --- Services --- */
.emp-section {
	padding: 6rem 0;
}

.emp-section--bg-muted {
	background: hsla(210, 20%, 95%, 0.3);
}

.emp-section--card {
	background: var(--card);
}

.emp-section-head {
	text-align: center;
	margin-bottom: 4rem;
}

.emp-section-head__kicker-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.emp-section-head__kicker {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.emp-section-head h2 {
	font-size: clamp(1.875rem, 3vw, 2.25rem);
	font-weight: 700;
	margin: 0 0 1rem;
}

.emp-section-head__desc {
	color: var(--muted-foreground);
	max-width: 42rem;
	margin: 0 auto;
}

.emp-services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.emp-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.emp-service-card {
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--emp-card-bg, transparent);
	background-image: linear-gradient(145deg, hsl(210, 30%, 97%), hsl(210, 25%, 94%));
}

.emp-service-card__media {
	position: relative;
	height: 14rem;
	overflow: hidden;
}

.emp-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.emp-service-card:hover .emp-service-card__media img {
	transform: scale(1.05);
}

.emp-service-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: hsla(0, 0%, 100%, 0.4);
	pointer-events: none;
}

.emp-service-card__body {
	padding: 2rem;
}

.emp-service-card__body h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
}

.emp-service-card__body > p {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	line-height: 1.65;
	margin: 0 0 1.5rem;
}

.emp-service-list {
	display: grid;
	gap: 0.75rem;
}

.emp-service-list__row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.emp-service-list__row .emp-icon {
	color: var(--primary);
	flex-shrink: 0;
}

.emp-service-list__row span {
	font-size: 0.875rem;
	color: var(--secondary-foreground);
}

.emp-service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary);
}

.emp-service-card__link:hover {
	text-decoration: underline;
}

.emp-services-footnote {
	text-align: center;
	margin-top: 3rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.emp-services-footnote a {
	color: var(--primary);
	font-weight: 600;
}

.emp-services-footnote a:hover {
	text-decoration: underline;
}

/* --- Portfolio --- */
.emp-portfolio-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.emp-portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.emp-portfolio-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.emp-pf-card {
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--background);
	box-shadow: 0 1px 3px hsla(210, 40%, 12%, 0.06);
	transition: box-shadow 0.2s;
}

.emp-pf-card:hover {
	box-shadow: 0 4px 12px hsla(210, 40%, 12%, 0.1);
}

.emp-pf-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	touch-action: pan-y pinch-zoom;
}

/* Tijdens swipe geen hover-zoom op de actieve foto */
.emp-pf-card__media.emp-gallery-swipe-active > img,
.emp-pf-card__media.emp-gallery-swipe-active .emp-gallery-slide.is-active > img {
	transform: none !important;
}

.emp-pf-card__media.emp-gallery-swipe-active .emp-gallery-slides {
	will-change: transform;
}

.emp-gallery-slides {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.01s linear;
}

.emp-gallery-slide {
	position: absolute;
	inset: 0;
	display: none;
	overflow: hidden;
}

.emp-gallery-slide.is-active {
	display: block;
}

.emp-gallery-slide > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.emp-pf-card:hover .emp-gallery-slide.is-active > img {
	transform: scale(1.05);
}

.emp-ba.emp-ba--in-gallery {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: unset;
	border-radius: 0;
	cursor: ew-resize;
}

.emp-pf-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.emp-pf-card:hover .emp-pf-card__media img {
	transform: scale(1.05);
}

.emp-pf-card__tag {
	align-self: flex-start;
	width: fit-content;
	max-width: 100%;
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	background: var(--primary);
	color: var(--primary-foreground);
}

.emp-pf-card__dots {
	position: absolute;
	bottom: 0.75rem;
	right: 0.75rem;
	z-index: 7;
	display: flex;
	gap: 0.375rem;
}

.emp-pf-card__dots button {
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
	border: 0;
	padding: 0;
	cursor: pointer;
	background: hsla(0, 0%, 100%, 0.7);
	transition: background 0.15s;
}

@media (pointer: coarse) {
	.emp-pf-card__dots {
		gap: 0.5rem;
		padding: 0.25rem;
	}

	.emp-pf-card__dots button {
		width: 0.75rem;
		height: 0.75rem;
	}
}

.emp-pf-card__dots button:hover {
	background: var(--background);
}

.emp-pf-card__dots button.is-active {
	background: var(--primary);
}

.emp-pf-card__arrows {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0.35rem;
	pointer-events: none;
	z-index: 6;
}

.emp-pf-card__arrows[data-emp-arrow-layout="next-only"] {
	justify-content: flex-end;
}

.emp-pf-card__arrows[data-emp-arrow-layout="prev-only"] {
	justify-content: flex-start;
}

.emp-pf-card__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid hsla(0, 0%, 100%, 0.28);
	border-radius: 50%;
	background: hsla(207, 90%, 40%, 0.18);
	color: hsla(0, 0%, 100%, 0.96);
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.74;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 2px 18px hsla(210, 40%, 12%, 0.07);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.emp-pf-card__arrow:hover:not(:disabled) {
	transform: scale(1.08);
	opacity: 1;
	background: hsla(207, 90%, 38%, 0.46);
	border-color: hsla(0, 0%, 100%, 0.48);
	box-shadow: 0 4px 22px hsla(210, 40%, 12%, 0.12);
}

.emp-pf-card__arrow:active:not(:disabled) {
	transform: scale(0.9);
	opacity: 0.95;
}

.emp-pf-card__arrow:disabled {
	opacity: 0.22;
	cursor: not-allowed;
	transform: none;
	background: hsla(207, 90%, 35%, 0.1);
	border-color: hsla(0, 0%, 100%, 0.1);
}

/* Zichtbare wissel na pijl, dot of swipe */
.emp-pf-card__media.emp-gallery-swap-tick > img[data-emp-gallery-img] {
	animation: emp-gallery-swap-img 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.emp-pf-card__media.emp-gallery-swap-tick .emp-gallery-slides {
	animation: emp-gallery-swap-slides 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes emp-gallery-swap-img {
	0% {
		opacity: 1;
		filter: brightness(1);
	}
	45% {
		opacity: 0.62;
		filter: brightness(1.18) saturate(1.06);
	}
	100% {
		opacity: 1;
		filter: brightness(1);
	}
}

@keyframes emp-gallery-swap-slides {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	40% {
		opacity: 0.78;
		transform: translateX(-2.8%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.emp-pf-card__arrow .emp-icon {
	display: block;
}

@media (pointer: coarse) {
	.emp-pf-card__arrow {
		width: 2.75rem;
		height: 2.75rem;
	}
}

.emp-pf-card__body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.emp-pf-card__body h3 {
	font-weight: 700;
	margin: 0 0 0.25rem;
	font-size: 1rem;
}

.emp-pf-card__body p {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	margin: 0;
	line-height: 1.5;
}

/* Before/after */
.emp-pf-card--stacked-media .emp-pf-card__media--stack-top {
	border-bottom: 1px solid var(--border);
}

.emp-ba--stacked {
	border-radius: 0;
}

.emp-ba {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 0.75rem;
	cursor: ew-resize;
	user-select: none;
	-webkit-user-select: none;
	touch-action: none;
}

.emp-ba img {
	-webkit-user-drag: none;
	user-select: none;
	-webkit-user-select: none;
}

.emp-ba__after {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.emp-ba__clip {
	position: absolute;
	inset: 0;
	overflow: hidden;
	width: 50%;
}

.emp-ba__before {
	position: absolute;
	inset: 0;
	width: var(--emp-ba-w, 100%);
	max-width: none;
	height: 100%;
	object-fit: cover;
}

.emp-ba__handle-line {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #fff;
	box-shadow: 0 0 8px hsla(0, 0%, 0%, 0.25);
	z-index: 10;
	left: 50%;
	transform: translateX(-50%);
}

.emp-ba__handle-knob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2.5rem;
	height: 2.5rem;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 12px hsla(0, 0%, 0%, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

.emp-ba__label {
	position: absolute;
	top: 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	z-index: 20;
}

.emp-ba__label--before {
	left: 0.75rem;
	background: hsla(210, 40%, 12%, 0.8);
	color: var(--background);
}

.emp-ba__label--after {
	right: 0.75rem;
	background: var(--primary);
	color: var(--primary-foreground);
}

/* --- Values --- */
.emp-values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 640px) {
	.emp-values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.emp-values-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.emp-value {
	text-align: center;
}

.emp-value__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	background: var(--secondary);
	margin-bottom: 1.25rem;
}

.emp-value__icon .emp-icon {
	color: var(--primary);
}

.emp-value h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.emp-value p {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	line-height: 1.6;
	margin: 0;
}

/* --- CTA band --- */
.emp-cta-wrap {
	padding: 6rem 0;
}

.emp-cta-wrap--over-ons {
	padding-top: 3rem;
}

.emp-cta-box {
	background-image: linear-gradient(145deg, hsl(210, 30%, 97%), hsl(210, 25%, 94%));
	border: 1px solid var(--border);
	border-radius: 1rem;
	padding: 3rem 1.5rem;
	text-align: center;
}

@media (min-width: 768px) {
	.emp-cta-box {
		padding: 4rem;
	}
}

.emp-cta-box h2 {
	font-size: clamp(1.875rem, 3vw, 2.25rem);
	font-weight: 700;
	margin: 0 0 1rem;
}

.emp-cta-box > p {
	color: var(--muted-foreground);
	max-width: 32rem;
	margin: 0 auto 2rem;
}

.emp-cta-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

@media (min-width: 640px) {
	.emp-cta-actions {
		flex-direction: row;
	}
}

.emp-btn-outline-lg .emp-icon {
	color: var(--primary);
}

/* --- Footer --- */
.emp-footer {
	background: var(--card);
	border-top: 1px solid var(--border);
}

.emp-footer__inner {
	padding: 4rem 0 0;
}

.emp-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 768px) {
	.emp-footer__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.emp-footer__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}


.emp-footer__brand .emp-brand__tag {
	display: block;
}

.emp-footer__intro {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	line-height: 1.65;
	margin: 0;
}

.emp-footer__heading {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 1rem;
}

.emp-footer__nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.emp-footer__nav a {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	transition: color 0.15s;
}

.emp-footer__nav a:hover {
	color: var(--primary);
}

.emp-footer__contact a,
.emp-footer__contact > div {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
	transition: color 0.15s;
}

.emp-footer__contact a:hover {
	color: var(--primary);
}

.emp-footer__contact .emp-icon {
	color: var(--primary);
	flex-shrink: 0;
}

.emp-footer__bottom {
	border-top: 1px solid var(--border);
	margin-top: 3rem;
	padding: 2rem 0;
	text-align: center;
}

.emp-footer__bottom p {
	margin: 0;
	font-size: 0.75rem;
	color: var(--muted-foreground);
}

/* --- Pagina Over ons / Contact --- */
.emp-page {
	padding-top: 8rem;
	padding-bottom: 6rem;
}

.emp-page--narrow .emp-container {
	max-width: 48rem;
}

/* Over ons (Aanpassen): zelfde buitenrand .emp-container als Contact (1400 + padding), geen gecentreerde 48rem-kolom. */
.emp-page--over-ons.emp-page--narrow .emp-container {
	max-width: 1400px;
}

/* CTA buiten de smalle kolom (zelfde 1400px-breedte als startpagina); zonder dubbele onder-marge. */
.emp-page--narrow:has(+ .emp-cta-wrap--over-ons) {
	padding-bottom: 0;
}

.emp-page__head {
	text-align: center;
	margin-bottom: 4rem;
}

.emp-page--contact .emp-page__head,
.emp-page--over-ons .emp-page__head {
	text-align: left;
	margin-bottom: 2.5rem;
}

.emp-page__head h1 {
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 800;
	margin: 0 0 1rem;
}

.emp-page--contact .emp-page__head h1,
.emp-page--over-ons .emp-page__head h1 {
	margin: 0 0 2rem;
	line-height: 1.15;
}

.emp-page__head p,
.emp-page__head .emp-page__head-lead {
	color: var(--muted-foreground);
	max-width: 32rem;
	margin: 0 auto;
	text-align: center;
}

.emp-page--contact .emp-page__head p,
.emp-page--contact .emp-page__head .emp-page__head-lead {
	max-width: 48rem;
	margin: 0 0 2.5rem;
	text-align: left;
}

/* Gutenberg: eerste alinea boven [emperium_contact_form] = inleiding onder H1, links net als Aanpassen-Contact. */
.emp-page--contact .emperium-page-blocks--contact-from-editor > p:first-of-type {
	text-align: left;
	color: var(--muted-foreground);
	max-width: 48rem;
	margin: 0 0 2.5rem;
	margin-left: 0;
	line-height: 1.65;
}

.emp-prose {
	color: var(--muted-foreground);
	line-height: 1.65;
}

.emp-prose p {
	margin: 0 0 1.5rem;
}

.emp-prose .emp-strong {
	color: var(--foreground);
	font-weight: 600;
}

.emp-page--over-ons .emp-prose {
	max-width: 48rem;
}

.emp-milestones {
	margin-top: 4rem;
}

.emp-page--over-ons .emp-milestones {
	max-width: 64rem;
}

.emp-milestones h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 2rem;
}

.emp-milestone {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	border-radius: 0.75rem;
	border: 1px solid var(--border);
	background-image: linear-gradient(145deg, hsl(210, 30%, 97%), hsl(210, 25%, 94%));
	margin-bottom: 1.5rem;
}

.emp-milestone:last-child {
	margin-bottom: 0;
}

.emp-milestone__icon {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius);
	background: var(--secondary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.emp-milestone__icon .emp-icon {
	color: var(--primary);
}

.emp-milestone h3 {
	font-weight: 600;
	margin: 0 0 0.25rem;
	font-size: 1rem;
}

.emp-milestone p {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	margin: 0;
}

/* Contact grid */
.emp-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	max-width: 64rem;
	margin: 0 auto;
}

.emp-page--contact .emp-contact-grid {
	margin: 0;
}

@media (min-width: 768px) {
	.emp-contact-grid {
		grid-template-columns: repeat(2, 1fr);
		align-items: start;
	}
}

.emp-contact-block {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.emp-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.emp-contact-item__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: var(--secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.emp-contact-item__icon .emp-icon {
	color: var(--primary);
}

.emp-contact-item h3 {
	font-weight: 600;
	margin: 0 0 0.25rem;
	font-size: 1rem;
}

.emp-contact-item p {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	margin: 0;
	transition: color 0.15s;
}

a.emp-contact-item:hover p {
	color: var(--primary);
}

.emp-form-card {
	background-image: linear-gradient(145deg, hsl(210, 30%, 97%), hsl(210, 25%, 94%));
	border: 1px solid var(--border);
	border-radius: 1rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.emp-form-card label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.emp-form-card input,
.emp-form-card textarea {
	width: 100%;
	background: var(--secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	color: var(--foreground);
	font-family: inherit;
}

.emp-form-card input:focus,
.emp-form-card textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px var(--ring);
}

.emp-form-card textarea {
	resize: none;
	min-height: 8rem;
}

.emp-form-card button[type="submit"] {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	border: 0;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 1rem;
	color: var(--primary-foreground);
	cursor: pointer;
	transition: transform 0.15s;
}

.emp-form-card button[type="submit"]:hover {
	transform: scale(1.02);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
}

/* 404 */
.emp-404 {
	text-align: center;
	padding: 4rem 1rem;
}

.emp-404 h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

/* --- Blokinhoud (editor / patronen) --- */
.emp-entry-content {
	width: 100%;
}

.emp-entry-content--narrow {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
}

.emp-entry-content .alignwide {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.emp-entry-content .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

@supports (width: 100dvw) {
	.emp-entry-content .alignfull {
		width: 100dvw;
		max-width: 100dvw;
		margin-left: calc(50% - 50dvw);
		margin-right: calc(50% - 50dvw);
	}
}

.emp-entry-content .emperium-section-kicker,
.editor-styles-wrapper .emperium-section-kicker {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 0.5rem;
}

.emp-entry-content .text-gradient-blue,
.editor-styles-wrapper .text-gradient-blue {
	background: linear-gradient(135deg, hsl(207, 90%, 35%), hsl(200, 85%, 48%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Gradient op <strong> in koppen (Gutenberg staat span met class minder goed toe) */
.emp-entry-content .emperium-hero-title strong,
.emp-entry-content .emperium-section-title strong,
.emp-entry-content .emperium-over-ons-heading strong,
.editor-styles-wrapper .emperium-hero-title strong,
.editor-styles-wrapper .emperium-section-title strong,
.editor-styles-wrapper .emperium-over-ons-heading strong {
	font-weight: 800;
	background: linear-gradient(135deg, hsl(207, 90%, 35%), hsl(200, 85%, 48%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.emp-entry-content .wp-block-columns {
	margin-bottom: 0;
}

@media (max-width: 781px) {
	.emp-entry-content .wp-block-columns:not(.is-not-stacked-on-mobile) {
		flex-wrap: wrap;
	}

	.emp-entry-content .wp-block-column {
		flex-basis: 100% !important;
	}
}

/* Tablet: iets ruimere zijmarges in de container */
@media (min-width: 768px) and (max-width: 1023px) {
	.emp-container {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}

/* Geen horizontale scroll door brede blokken */
.emp-main,
.emp-entry-content {
	overflow-x: clip;
}
