/* ══════════════════════════════════════════════════════════════════════════════
   Ten Dam Vloeren — Component Styles (Mobile-first, .inner container, fluid)
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Header / Navbar ──────────────────────────────────────────────────────── */
.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: transform var(--duration) var(--ease);
}
body.admin-bar .header {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar .header {
		top: 0;
	}
}

.header__rating-bar {
	background-color: var(--tdv-light-brown);
	padding: 8px 0;
}
.header__rating-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.header__stars {
	display: flex;
	gap: 4px;
}
.header__stars svg {
	width: 16px;
	height: 16px;
	fill: #E4CA86;
}
.header__rating-text {
	color: var(--tdv-white);
	font-size: var(--text-xs);
	line-height: var(--lh-body);
}

.header__nav {
	background-color: var(--tdv-white);
	border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header__nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	max-width: var(--container-max);
	margin: 0 auto;
}

.header__menu-left,
.header__menu-right {
	display: none;
}

.header__logo {
	flex-shrink: 0;
}
.header__logo-link {
	display: block;
}
.header__logo-img {
	height: 41px;
	width: auto;
}
.header__logo-text {
	font-family: var(--font-heading);
	font-size: var(--h5);
	font-weight: 400;
}

.header__hamburger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 60px;
	border: 1px solid var(--tdv-terracotta);
	background-color: var(--tdv-terracotta);
	color: var(--tdv-white);
	cursor: pointer;
}
.header__hamburger-close {
	display: none;
}
.header__hamburger[aria-expanded="true"] .header__hamburger-open {
	display: none;
}
.header__hamburger[aria-expanded="true"] .header__hamburger-close {
	display: block;
}

/* Nav list (desktop) */
.nav__list {
	display: flex;
	align-items: center;
	gap: 0;
}
.nav__item {
	position: relative;
}
.nav__link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 18px 20px;
	border-radius: var(--radius-btn);
	font-size: var(--text-sm);
	font-weight: 400;
	color: var(--tdv-black);
	transition: background-color var(--duration) var(--ease);
}
.nav__link:hover {
	background-color: var(--tdv-light-grey);
}
.nav__arrow {
	width: 20px;
	height: 20px;
	transition: transform var(--duration) var(--ease);
}
.nav__item--has-children.is-open .nav__arrow {
	transform: rotate(180deg);
}

/* Normal Dropdown */
.nav__dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 24px);
	left: 0;
	background: var(--tdv-white);
	padding: 24px 20px;
	z-index: 100;
	border-radius: var(--radius-card);
	box-shadow: 0 8px 36px rgba(0, 0, 0, 0.25);
}
.nav__dropdown::before {
	content: '';
	position: absolute;
	top: -24px;
	left: 0;
	right: 0;
	height: 24px;
}
.nav__item--has-children:not(.nav__item--mega).is-open .nav__dropdown {
	display: block;
}
.nav__dropdown-link {
	display: flex;
	align-items: center;
	width: 218px;
	padding: 18px 32px;
	font-size: 16px;
	font-weight: 600;
	color: var(--tdv-black);
	border-radius: 72px;
	transition: background-color var(--duration) var(--ease);
}
.nav__dropdown-link:hover,
.nav__dropdown-link--active {
	background-color: var(--tdv-light-grey);
}

/* Mega Menu */
.nav__item--mega {
	position: static;
}
.mega-menu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 56px;
	right: 56px;
	z-index: 100;
}
.mega-menu::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 0;
	right: 0;
	height: 8px;
}
.nav__item--mega.is-open .mega-menu {
	display: block;
}
.mega-menu__inner {
	display: flex;
	background: var(--tdv-white);
	padding: 0 20px;
	box-shadow: 0 8px 36px rgba(0, 0, 0, 0.25);
	border-radius: var(--radius-card);
}
.mega-menu__categories {
	display: flex;
	flex-direction: column;
	padding: 24px 0;
	flex-shrink: 0;
}
.mega-menu__cat {
	display: flex;
	align-items: center;
	width: 218px;
	padding: 18px 32px;
	font-size: 16px;
	font-weight: 600;
	color: var(--tdv-black);
	border-radius: 56px;
	transition: background-color var(--duration) var(--ease);
}
.mega-menu__cat:hover,
.mega-menu__cat--active {
	background-color: var(--tdv-light-grey);
}
.mega-menu__sep {
	height: 16px;
}
.mega-menu__divider {
	width: 1px;
	background-color: var(--tdv-grey);
	align-self: stretch;
	margin-left: 48px;
	flex-shrink: 0;
}
.mega-menu__content {
	flex: 1;
	padding: 48px 80px 24px 80px;
	min-width: 0;
}
.mega-menu__panel {
	display: none;
	flex-direction: column;
	gap: 40px;
}
.mega-menu__panel--active {
	display: flex;
}
.mega-menu__panel-title {
	font-family: var(--font-heading);
	font-size: var(--h5);
	font-weight: 400;
	color: var(--tdv-dark-grey);
	line-height: 1.1;
}
.mega-menu__cards {
	display: flex;
	gap: 48px;
}
.mega-menu__card {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}
.mega-menu__card-img {
	border-radius: 8px;
	width: 100%;
	max-height: 256px;
	object-fit: cover;
}
.mega-menu__card-body {
	padding: 24px 32px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.mega-menu__card-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--tdv-dark-grey);
}
.mega-menu__card-desc {
	font-size: 16px;
	font-weight: 400;
	color: var(--tdv-dark-grey);
}

/* Desktop header */
@media (min-width: 1280px) and (max-width: 1400px) {
	.header .header__nav-inner {
		padding-left: 16px;
		padding-right: 16px;
	}
	.header .header__logo {
		margin: 0 16px;
	}
	.header .nav__link {
		padding: 18px 18px;
	}
}
@media (min-width: 1280px) {
	.header__nav {
		position: relative;
	}
	.header__nav-inner {
		padding: 16px 56px;
	}
	.header__menu-left,
	.header__menu-right {
		display: flex;
		align-items: center;
		flex: 1;
	}
	.header__menu-left {
		justify-content: flex-start;
	}
	.header__menu-right {
		justify-content: flex-end;
		gap: 8px;
	}
	.header__logo {
		flex-shrink: 0;
		margin: 0 32px;
	}
	.header__hamburger {
		display: none;
	}
	.header__logo-img {
		height: 48px;
		width: 274px;
		object-fit: contain;
	}
	.header__stars svg {
		width: 20px;
		height: 20px;
	}
}

/* ── Mobile Nav ───────────────────────────────────────────────────────────── */
.mobile-nav {
	position: fixed;
	top: var(--mobile-nav-top, 0px);
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1001;
	background: var(--tdv-white);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform var(--duration) var(--ease);
}
.mobile-nav.is-open {
	transform: translateX(0);
}
/* Panels container */
.mobile-nav__panels {
	flex: 1;
	position: relative;
	overflow: hidden;
}
.mobile-nav__panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform var(--duration) var(--ease);
}
.mobile-nav__panel--active {
	transform: translateX(0);
}
.mobile-nav__panel--left {
	transform: translateX(-100%);
}

/* Back button */
.mobile-nav__back {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	width: 100%;
	background-color: var(--tdv-light-grey);
	font-size: 16px;
	font-weight: 400;
	color: var(--tdv-black);
	text-align: left;
	flex-shrink: 0;
}
.mobile-nav__back-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

/* Panel body (scrollable) */
.mobile-nav__body {
	flex: 1;
	overflow-y: auto;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Parent pill (category title) */
.mobile-nav__parent-pill {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	background-color: var(--tdv-light-brown);
	border-radius: 80px;
	color: var(--tdv-white);
	font-size: 16px;
	font-weight: 400;
	flex-shrink: 0;
}

/* Main menu list */
.mobile-nav__list {
	display: flex;
	flex-direction: column;
}
.mobile-nav__item {
	border-top: 0.5px solid var(--tdv-grey);
}
.mobile-nav__item:first-child {
	border-top: none;
}
.mobile-nav__item:last-child {
	border-bottom: 0.5px solid var(--tdv-grey);
}
.mobile-nav__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--tdv-black);
	text-align: left;
}
.mobile-nav__arrow {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

/* Sub items list */
.mobile-nav__sublist {
	display: flex;
	flex-direction: column;
}
.mobile-nav__sublink {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--tdv-black);
	text-align: left;
}

/* Product cards (mobile — stacked) */
.mobile-nav__cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.mobile-nav__card {
	display: flex;
	flex-direction: column;
}
.mobile-nav__card-img {
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
}
.mobile-nav__card-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 0;
}
.mobile-nav__card-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--tdv-dark-grey);
}
.mobile-nav__card-desc {
	font-size: 16px;
	font-weight: 400;
	color: var(--tdv-dark-grey);
}

/* Footer */
.mobile-nav__footer {
	padding: 24px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

/* Body scroll lock */
body.nav-open {
	overflow: hidden;
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 600px;
	padding: 280px 24px 48px 24px;
	color: var(--tdv-white);
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero__bg img,
.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__bg--color {
	width: 100%;
	height: 100%;
}
.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
	pointer-events: none;
}
.hero__content {
	position: relative;
	z-index: 2;
	max-width: 1504px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.hero__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.hero__title {
	font-family: var(--font-heading);
	font-size: var(--h2);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-white);
}
.hero__subtitle {
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: var(--lh-body);
	color: var(--tdv-white);
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}
.hero__actions .btn--ghost {
	margin-left: auto;
}

/* Mobile: ghost button = icon-only circle, centered */
@media (max-width: 767px) {
	.hero--home {
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.hero--home .hero__content {
		flex: 1;
		justify-content: center;
		padding-bottom: 16px;
	}
	.hero__scroll-wrap {
		margin-top: auto;
		align-self: center;
		z-index: 2;
	}
	.hero__scroll-wrap .btn--ghost {
		padding: 18px;
		border-radius: 50%;
	}
	.hero__scroll-wrap .btn--ghost span {
		display: none;
	}
}
.hero__breadcrumbs {
	margin-bottom: auto;
}
.hero--subpage {
	padding-top: 32px;
	min-height: 356px;
}
.hero--subpage .hero__content {
	flex: 1;
}
.hero__scroll-wrap {
	z-index: 2;
	pointer-events: none;
}
.hero__scroll-wrap .btn {
	pointer-events: auto;
}
.hero__scroll {
	display: none;
}

@media (min-width: 768px) {
	.hero {
		min-height: 700px;
		padding: 200px 48px 64px;
	}
}

@media (min-width: 1280px) {
	.hero {
		min-height: 964px;
		padding: 112px 112px 72px 112px;
	}
	.hero__title {
		max-width: 857px;
	}
	.hero__scroll {
		display: inline-flex;
	}
	.hero__scroll-wrap {
		position: static;
	}
	.hero__scroll-wrap .btn {
		position: absolute;
		bottom: 72px;
		right: 112px;
	}
	/* Subpage hero — breadcrumbs at top, content at bottom */
	.hero--subpage {
		min-height: 388px;
		padding: 32px 112px 94px 112px;
	}
	.hero--subpage .hero__content {
		flex: 1;
	}
}

/* ── Breadcrumbs ──────────────────────────────────────────────────────────── */
.breadcrumbs__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}
.breadcrumbs__item {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: var(--text-sm);
	color: rgba(255,255,255,0.7);
}
.breadcrumbs__item a {
	color: rgba(255,255,255,0.7);
	transition: color var(--duration) var(--ease);
}
.breadcrumbs__item a:hover {
	color: var(--tdv-white);
}
.breadcrumbs__item--current span {
	color: var(--tdv-white);
}
.breadcrumb__icon {
	width: 16px;
	height: 16px;
}

/* Standalone breadcrumbs bar (no hero) */
.breadcrumbs-bar {
	padding: 32px 0 0;
}
.breadcrumbs-bar .breadcrumbs__item {
	color: var(--tdv-black);
	font-size: var(--text-reg);
}
.breadcrumbs-bar .breadcrumbs__item a {
	color: var(--tdv-black);
}
.breadcrumbs-bar .breadcrumbs__item a:hover {
	color: var(--tdv-light-brown);
}
.breadcrumbs-bar .breadcrumbs__item--current span {
	color: var(--tdv-black);
}
.breadcrumbs-bar .breadcrumb__icon {
	width: 16px;
	height: 16px;
	stroke: var(--tdv-black);
}

/* ── Features Bar ─────────────────────────────────────────────────────────── */
.features-bar {
	background-color: var(--tdv-light-brown);
	padding: 16px 0;
	overflow: hidden;
	position: relative;
}
.features-bar__track {
	display: flex;
	align-items: center;
	gap: 32px;
	white-space: nowrap;
	animation: features-marquee 25s linear infinite;
	animation-play-state: paused;
}
.features-bar__item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--tdv-white);
	font-size: var(--text-reg);
	font-weight: 400;
	flex-shrink: 0;
}
.features-bar__icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}
@keyframes features-marquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(var(--marquee-distance, -50%)); }
}
@media (min-width: 1280px) {
	.features-bar__track {
		justify-content: center;
		gap: clamp(24px, 10vw, 152px);
		animation: none;
	}
	.features-bar__item[aria-hidden="true"] {
		display: none;
	}
}

/* Carousel mobile: peek handled via Owl items: 1.25 */

/* ── Section Wrapper (Pagebuilder) ────────────────────────────────────────── */
.pb-section {
	width: 100%;
}
.pb-no-pt { padding-top: 0 !important; }
.pb-no-pb { padding-bottom: 0 !important; }

/* ── Intro Text + Merken ──────────────────────────────────────────────────── */
.intro {
	padding: var(--section-padding) 0;
}
.intro .inner {
	/* inner handles width */
}
.intro__text {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 400;
	line-height: var(--lh-body);
	color: var(--tdv-black);
	max-width: 1060px;
}
.intro__brands {
	margin-top: clamp(48px, 3vw, 152px);
}
.intro__brands-label {
	font-size: var(--text-md);
	color: var(--tdv-grey);
	flex-shrink: 0;
	margin-bottom: 0;
}
.intro__brands-loop {
	background: var(--tdv-white);
	border-radius: 16px;
	height: 80px;
	overflow: hidden;
	position: relative;
}
.intro__brands-track {
	display: flex;
	align-items: center;
	gap: 48px;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	animation: marquee 25s linear infinite;
}
.intro__brand-logo {
	height: 40px;
	width: auto;
	flex-shrink: 0;
	object-fit: contain;
}

@keyframes marquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(var(--marquee-distance, -50%)); }
}

@media (min-width: 1024px) {
	.intro__text {
		font-size: 20px;
	}
}

@media (min-width: 1280px) {
	.intro__brands {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 176px;
	}
	.intro__brands-loop {
		flex: 1;
		height: 112px;
	}
	.intro__brands-track {
		gap: 500px;
		animation-duration: 30s;
	}
	.intro__brand-logo {
		height: 52px;
	}
}

/* ── Product Cards ────────────────────────────────────────────────────────── */
.product-cards {
	padding: var(--section-padding) 0;
	background-color: var(--tdv-light-grey);
}
.product-cards__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-black);
	margin-bottom: clamp(32px, 5vw, 64px);
}
.product-cards__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.product-card {
	background: transparent;
	border-radius: var(--radius-card);
	overflow: hidden;
	text-decoration: none;
}
.product-card:hover .product-card__name {
	text-decoration: underline;
}
.product-card__image {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	display: block;
}
.product-card__body {
	padding: 16px 24px 24px;
}
.product-card__name {
	font-family: var(--font-body);
	font-size: var(--text-reg);
	font-weight: 600;
	color: var(--tdv-dark-grey);
	margin-bottom: 4px;
}
.product-card__desc {
	font-size: var(--text-reg);
	font-weight: 400;
	color: var(--tdv-dark-grey);
}

@media (max-width: 767px) {
	.product-card__image {
		max-height: 176px;
	}
}
@media (min-width: 768px) {
	.product-cards__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}
@media (min-width: 1280px) {
	.product-cards__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 48px;
	}
	.product-card__body {
		padding: 24px 32px 32px;
	}
}

/* ── Card Image Hover (shared: product + project cards) ──────────────────── */
.card-image-wrap {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-card);
}
.card-image-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	border-radius: inherit;
}
.product-card:hover .card-image-wrap::after,
.project-card:hover .card-image-wrap::after,
.mega-menu__card:hover .card-image-wrap::after {
	opacity: 1;
}
.card-cursor-btn {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 112px;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	color: #fff;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	line-height: 150%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.6);
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 2;
	left: 0;
	top: 0;
}
.card-image-wrap.is-hovering .card-cursor-btn {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* Hide cursor-follow on touch devices */
@media (hover: none) {
	.card-cursor-btn {
		display: none;
	}
}

/* ── Projects Carousel ────────────────────────────────────────────────────── */
.projects-carousel {
	padding: var(--section-padding) 0;
}
.projects-carousel__header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: clamp(32px, 7vw, 80px);
}
.projects-carousel__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-black);
}
.project-card {
	text-decoration: none;
	color: var(--tdv-black);
}
.project-card:hover .project-card__name {
	text-decoration: underline;
}
.project-card__image {
	width: 100%;
	height: 252px;
	object-fit: cover;
	display: block;
}
.project-card__body {
	padding: 16px 8px;
}
.project-card__name {
	font-family: var(--font-body);
	font-size: var(--text-lg);
	font-weight: 400;
	margin-bottom: 8px;
}
.project-card__desc {
	font-size: var(--text-reg);
	font-weight: 400;
}
.projects-carousel__nav {
	display: none; /* tijdelijk verborgen */
	align-items: center;
	gap: 16px;
	margin-top: 24px;
}
.projects-carousel__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-round);
	border: 1px solid var(--tdv-border);
	background: var(--tdv-white);
	transition: all var(--duration) var(--ease);
}
.projects-carousel__btn:hover {
	background: var(--tdv-black);
	color: var(--tdv-white);
	border-color: var(--tdv-black);
}
.projects-carousel__btn svg {
	width: 24px;
	height: 24px;
}

@media (max-width: 767px) {
	.projects-carousel .inner {
		display: flex;
		flex-direction: column;
		padding-right: 0;
	}
	.projects-carousel__header {
		order: 0;
	}
	.projects-carousel__header .btn--outline {
		display: none;
	}
	.projects-carousel__cta-mobile {
		display: flex;
		justify-content: center;
		margin-top: 32px;
		order: 10;
	}
}
.projects-carousel__cta-mobile {
	display: none;
}
@media (min-width: 1280px) {
	.projects-carousel__header {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.js-projects-owl {
		overflow: visible;
	}
	.project-card__image {
		height: 496px;
	}
	.project-card__body {
		padding: 16px;
	}
}

/* ── About / Over Ons Highlight ───────────────────────────────────────────── */
.about-highlight {
	display: flex;
	flex-direction: column;
}
.about-highlight__image-wrap {
	flex: 1;
}
.about-highlight__image {
	width: 100%;
	height: 384px;
	object-fit: cover;
}
.about-highlight__content {
	background-color: var(--tdv-dark-brown);
	padding: clamp(48px, 3vw, 80px) 24px;
	color: var(--tdv-white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-highlight__content-inner {
	max-width: 448px;
}
.about-highlight__tag {
	font-size: var(--text-sm);
	font-weight: 400;
	color: var(--tdv-light-brown);
	text-transform: uppercase;
	margin-bottom: 16px;
}
.about-highlight__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-white);
	margin-bottom: 26px;
}
.about-highlight__text {
	font-size: 15.9px;
	line-height: 27px;
	color: var(--tdv-white);
	opacity: 0.8;
	margin-bottom: 40px;
}
.about-highlight__btn {
	display: inline-flex;
	width: fit-content;
}

@media (min-width: 1280px) {
	.about-highlight {
		flex-direction: row;
		min-height: 720px;
	}
	.about-highlight__image-wrap {
		flex: 0 0 50%;
	}
	.about-highlight__image {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.about-highlight__content {
		flex: 0 0 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 80px;
	}
}

/* ── Reviews Section (carousel with dots + nav) ─────────────────────────── */
.reviews {
	background-color: var(--tdv-light-grey);
	padding: var(--section-padding) 0;
}
.reviews__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-black);
	margin-bottom: clamp(24px, 5vw, 64px);
}
.reviews__meta {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: clamp(32px, 5vw, 64px);
}
.reviews__rating {
	display: flex;
	align-items: center;
	gap: 10px;
}
.reviews__stars {
	display: flex;
	gap: 0;
}
.reviews__stars svg {
	width: 20px;
	height: 20px;
	fill: #E4CA86;
}
.reviews__rating-text {
	font-size: var(--text-sm);
	color: #474247;
}
.reviews__all-link {
	font-size: var(--text-sm);
	color: var(--tdv-black);
	text-decoration: underline;
}

/* Reviews carousel (Owl) */
.owl-carousel .owl-stage {
	touch-action: pan-y pinch-zoom;
}
.owl-carousel.owl-drag .owl-stage {
	touch-action: pan-y;
}
.js-reviews-owl .owl-stage {
	display: flex;
}
.js-reviews-owl .owl-item {
	display: flex;
}
.review-card-wrap {
	height: 100%;
	background: var(--tdv-white);
	border-radius: var(--radius-card);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.review-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex: 1;
}
.review-card__stars {
	display: flex;
	gap: 4px;
}
.review-card__stars svg {
	width: 20px;
	height: 20px;
	fill: #E4CA86;
}
.review-card__text {
	font-family: var(--font-body);
	font-size: var(--text-reg);
	font-weight: 400;
	line-height: var(--lh-body);
	color: var(--tdv-black);
	flex: 1;
}
.review-card__author {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.owl-carousel .owl-item .review-card__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}
.review-card__name {
	font-family: var(--font-body);
	font-size: var(--text-md);
	font-weight: 600;
}

/* Reviews footer: dots left, nav arrows right */
.reviews__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 48px;
}
.reviews__dots {
	display: flex;
	gap: 18px;
	align-items: center;
}
.reviews__dot {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	border: 2px solid var(--tdv-black);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: all var(--duration) var(--ease);
}
.reviews__dot--active {
	background: var(--tdv-black);
}
.reviews__nav {
	display: flex;
	align-items: center;
	gap: 9px;
}
.reviews__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-round);
	border: 1px solid var(--tdv-black);
	background: var(--tdv-white);
	color: var(--tdv-black);
	cursor: pointer;
	transition: all var(--duration) var(--ease);
}
.reviews__btn--next {
	background: var(--tdv-black);
	color: var(--tdv-white);
}
.reviews__btn:hover {
	opacity: 0.8;
}
.reviews__btn svg {
	width: 24px;
	height: 24px;
}

@media (max-width: 767px) {
	.reviews .inner {
		padding-right: 0;
	}
	.reviews__footer {
		padding-right: clamp(24px, -0.5rem + 7vw, 112px);
	}
	.owl-carousel .owl-item .review-card__avatar {
		display: none;
	}
}
@media (min-width: 768px) {
	.reviews__meta {
		flex-direction: row;
		align-items: center;
		gap: 64px;
	}
}
@media (min-width: 1280px) {
	.review-card__text {
		font-size: var(--text-lg);
	}
}

/* ── Newsletter CTA ───────────────────────────────────────────────────────── */
.newsletter {
	background-color: var(--tdv-light-brown);
	padding: var(--section-padding) 0;
	text-align: center;
}
.newsletter__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-white);
	margin-bottom: 24px;
	max-width: 1044px;
	margin-left: auto;
	margin-right: auto;
}
.newsletter__desc {
	font-size: var(--text-md);
	color: var(--tdv-white);
	margin-bottom: 48px;
	max-width: 874px;
	margin-left: auto;
	margin-right: auto;
}
.newsletter__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}
.newsletter__download {
	color: var(--tdv-white);
	font-size: var(--text-sm);
	display: inline-flex;
	align-items: center;
	gap: 16px;
}
.newsletter__download svg {
	width: 16px;
	height: 16px;
}

/* ── Content + Afbeelding Section ─────────────────────────────────────────── */
.content-image {
	padding: var(--section-padding) 0;
}
.content-image__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(32px, 5vw, 112px);
}
.content-image__text {
	flex: 1;
}
.content-image__title {
	font-family: var(--font-heading);
	font-size: var(--h4);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-black);
	margin-bottom: 24px;
}
.content-image__body {
	font-size: var(--text-reg);
	line-height: var(--lh-body);
	color: var(--tdv-black);
	margin-bottom: 40px;
}
.content-image__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.content-image__image {
	flex: 1;
}
.content-image__img {
	width: 100%;
	border-radius: var(--radius-card);
	object-fit: cover;
}

@media (min-width: 768px) {
	.content-image__inner {
		flex-direction: row;
		align-items: center;
	}
	.content-image__text {
		flex: 1 1 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.content-image__inner--reverse .content-image__text{
		display: block;
	}
	.content-image__text-inner {
		max-width: 539px;
		width: 100%;
	}
	.content-image__image {
		flex: 1 1 0;
	}
	.content-image__img {
		height: 674px;
	}
	.content-image__inner--reverse {
		flex-direction: row-reverse;
	}
}

/* ── Afbeelding Galerij (Owl Carousel) ───────────────────────────────────── */
.gallery {
	padding: var(--section-padding) 0;
	overflow: hidden;
}
.gallery__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-black);
	margin-bottom: clamp(32px, 5vw, 64px);
}
.gallery .owl-carousel {
	overflow: visible;
	/* Extend carousel to right viewport edge */
	--_bleed: calc(clamp(24px, -0.5rem + 7vw, 112px) + max(0px, (100vw - 1728px) / 2));
	width: calc(100% + var(--_bleed));
}
.gallery .owl-stage-outer {
	overflow: visible;
}
.gallery__img {
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: var(--radius-card);
	object-fit: cover;
}
.gallery__caption {
	font-size: var(--text-sm);
	color: var(--tdv-grey);
	margin-top: 16px;
}
.gallery__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 56px;
}
.gallery__dots {
	display: flex;
	gap: 18px;
	align-items: center;
}
.gallery__dot {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	border: 2px solid var(--tdv-light-grey);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: all var(--duration) var(--ease);
}
.gallery__dot--active {
	border-color: var(--tdv-black);
}
.gallery__nav {
	display: flex;
	align-items: center;
	gap: 9px;
}
.gallery__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-round);
	border: 1px solid var(--tdv-black);
	background: var(--tdv-white);
	color: var(--tdv-black);
	cursor: pointer;
	transition: all var(--duration) var(--ease);
}
.gallery__btn--next {
	background: var(--tdv-black);
	color: var(--tdv-white);
}
.gallery__btn:hover {
	opacity: 0.8;
}
.gallery__btn svg {
	width: 24px;
	height: 24px;
}

/* ── Waarden / Values Columns ─────────────────────────────────────────────── */
.values {
	padding: var(--section-padding) 0;
}
.values__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	margin-bottom: 48px;
}
.values__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
.value-card__title {
	font-size: var(--text-lg);
	font-weight: 600;
	margin-bottom: 8px;
}
.value-card__text {
	font-size: var(--text-reg);
	line-height: var(--lh-body);
}

@media (min-width: 1280px) {
	.values__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 48px;
	}
}

/* ── Proces Stappen (Werkwijze) ───────────────────────────────────────────── */
.process {
	padding: var(--section-padding) 0;
}
.process__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(32px, 5vw, 112px);
}
.process__content {
	flex: 1;
}
.process__content-wrap {
	max-width: 539px;
}
.process__steps {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 8px 0;
}
.process-step {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.process-step__title {
	font-family: var(--font-heading);
	font-size: var(--h5);
	font-weight: 400;
	line-height: var(--lh-heading);
}
.process-step__text {
	font-size: var(--text-reg);
	line-height: var(--lh-body);
	color: var(--tdv-black);
}
.process__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	align-items: center;
	margin-top: 32px;
}
.process__image {
	flex: 1;
}
.process__img {
	width: 100%;
	border-radius: var(--radius-card);
	object-fit: cover;
}

@media (min-width: 1280px) {
	.process__inner {
		flex-direction: row;
		align-items: center;
		gap: 112px;
	}
	.process__inner--reverse {
		flex-direction: row-reverse;
	}
	.process__content {
		flex: 1 1 0;
	}
	.process__image {
		flex: 1 1 0;
	}
	.process__inner--img-fit {
		align-items: stretch;
	}
	.process__inner--img-fit .process__image {
		display: flex;
	}
	.process__inner--img-fit .process__img {
		height: 100%;
		flex: 1;
	}
}

/* ── Projecten Grid ───────────────────────────────────────────────────────── */
.projects-grid {
	padding: var(--section-padding) 0;
}
.projects-grid__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	margin-bottom: 48px;
}
.projects-grid__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 768px) {
	.projects-grid__items {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1280px) {
	.projects-grid__items {
		grid-template-columns: repeat(3, 1fr);
		gap: 48px;
	}
}

/* ── Contact Section (Figma: two-column — info left, form right) ─────────── */
.contact-section {
	padding: var(--section-padding) 0;
}
.contact-section__grid {
	display: flex;
	flex-direction: column;
	gap: clamp(32px, 2vw, 80px);
}
.contact-section__info {
	flex: 1;
}
.contact-section__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	margin-bottom: 24px;
}
.contact-section__desc {
	font-size: var(--text-lg);
	line-height: var(--lh-body);
	color: var(--tdv-black);
	margin-bottom: 64px;
	max-width: 487px;
}
.contact-section__blocks {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* Contact info groups (Figma: Contact, Adres, Openingstijden) */
.contact-info-group__title {
	font-family: var(--font-heading);
	font-size: var(--h5);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-black);
	margin-bottom: 24px;
}
.contact-info-group__rows {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.contact-info-row {
	display: flex;
	gap: 8px;
	align-items: center;
}
.contact-info-row__label {
	color: rgba(0,0,0,0.6);
	font-size: var(--text-reg);
	line-height: var(--lh-body);
	width: 140px;
	flex-shrink: 0;
}
.contact-info-row__value {
	font-size: var(--text-reg);
	line-height: var(--lh-body);
	color: var(--tdv-black);
	text-decoration: none;
}
a.contact-info-row__value:hover {
	text-decoration: underline;
}

/* Contact form wrap (grey bg) */
.contact-section__form-wrap {
	background: var(--tdv-light-grey);
	border-radius: var(--radius-card);
	padding: 32px;
}
.contact-section__form-title {
	font-family: var(--font-heading);
	font-size: var(--h4);
	font-weight: 400;
	line-height: var(--lh-heading);
	margin-bottom: 24px;
}

/* Contact form fields */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.contact-form__row {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.contact-form__row--half {
	flex-direction: column;
	gap: 24px;
}
.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.contact-form__field label {
	font-size: var(--text-reg);
	font-weight: 400;
}
.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
	padding: 8px 16px;
	height: 56px;
	border: 1px solid rgba(36,39,37,0.5);
	border-radius: var(--radius-card);
	font-size: var(--text-sm);
	background: var(--tdv-white);
	transition: border-color var(--duration) var(--ease);
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
	outline: none;
	border-color: var(--tdv-terracotta);
}
.contact-form__field textarea {
	min-height: 180px;
	height: auto;
	padding: 16px;
	resize: vertical;
}
.contact-form__upload-zone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 17px;
	padding: 45px 24px;
	border: 1px dashed rgba(36,39,37,0.5);
	border-radius: var(--radius-card);
	background: var(--tdv-white);
	cursor: pointer;
	font-size: var(--text-sm);
	font-weight: 400;
	color: #484848;
	transition: border-color var(--duration) var(--ease);
	text-align: center;
}
.contact-form__upload-zone:hover {
	border-color: var(--tdv-terracotta);
}
.contact-form__file-input {
	display: none;
}
.contact-form__checkbox {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: var(--text-xs);
	line-height: var(--lh-body);
	padding-bottom: 16px;
}
.contact-form__checkbox input {
	margin-top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 6px;
	flex-shrink: 0;
	border: 1px solid var(--tdv-black);
}

/* ── Gravity Forms: functional/utility resets (global, replaces dequeued GF CSS) */
.gform_wrapper .gform_validation_container,
.gform_wrapper .gfield_visibility_hidden,
.gform_wrapper .gfield--type-hidden,
.gform_wrapper .gform_hidden,
.gform_wrapper input[type="hidden"] {
	display: none !important;
	position: absolute !important;
	left: -9999px !important;
	visibility: hidden !important;
}
.gform_wrapper .gfield_visibility_visible {
	display: block;
}
.gform_wrapper .gfield_visibility_ {
	display: block;
}
.gform_wrapper .screen-reader-text,
.gform_wrapper .gform_hidden_label .gfield_label,
.gform_wrapper .hidden_label .gfield_label,
.gform_wrapper .hidden_sub_label .gform-field-label--type-sub {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.gform_wrapper .gfield_description.validation_message,
.gform_wrapper .validation_error {
	color: #c24e2a;
}
.gform_wrapper .gform_ajax_spinner {
	margin-left: 10px;
	vertical-align: middle;
}

/* ── Gravity Forms overrides (contact section) ─────────────────────────── */
/* Using .gform_wrapper.gravity-theme to match/beat GF's own specificity    */
.contact-section__form-wrap .gform_wrapper.gravity-theme {
	margin: 0;
	padding: 0;
	max-width: none;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme *,
.contact-section__form-wrap .gform_wrapper.gravity-theme *::before,
.contact-section__form-wrap .gform_wrapper.gravity-theme *::after {
	box-sizing: border-box;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme form {
	margin: 0;
	padding: 0;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_body {
	margin: 0;
	padding: 0;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme fieldset {
	border: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme legend {
	display: none;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_heading {
	display: none;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_fields {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield {
	margin: 0;
	padding: 0;
	list-style: none;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .ginput_container {
	margin: 0;
	padding: 0;
}
/* Honeypot */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_validation_container {
	display: none !important;
}
/* Labels */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield_label,
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform-field-label {
	display: block;
	font-family: var(--font-body);
	font-size: var(--text-reg);
	font-weight: 400;
	line-height: 150%;
	color: var(--tdv-black);
	margin: 0 0 8px;
	padding: 0;
	letter-spacing: normal;
}
/* Sub-labels (Voornaam, Achternaam) */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform-field-label--type-sub {
	display: block;
	font-family: var(--font-body);
	font-size: var(--text-reg);
	font-weight: 400;
	line-height: 150%;
	color: var(--tdv-black);
	margin: 0 0 8px;
	padding: 0;
}
/* Required asterisk */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield_required {
	color: inherit;
}
/* Description / instructions */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield_description {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	line-height: 150%;
	color: rgba(0, 0, 0, 0.5);
	margin-top: 4px;
	padding: 0;
}
/* Validation messages (global — all GF instances) */
.gform_wrapper.gravity-theme .validation_message,
.gform_wrapper.gravity-theme .gfield_validation_message {
	font-family: "Segoe UI", sans-serif;
	font-size: 12px;
	line-height: 150%;
	color: #c24e2a;
	margin-top: 6px;
	padding: 0;
	background: none;
	border: none;
}
.gform_wrapper.gravity-theme .gform_validation_errors {
	background: rgba(194, 78, 42, 0.05);
	border: 1px solid #c24e2a;
	border-radius: 8px;
	padding: 16px 20px;
	margin: 0 0 24px;
	color: #c24e2a;
}
.gform_wrapper.gravity-theme .gform_validation_errors h2 {
	font-family: "Segoe UI", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 150%;
	color: #c24e2a;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}
.gform_wrapper.gravity-theme .gform_validation_errors h2 .gform-icon {
	display: none;
}
.gform_wrapper.gravity-theme .gform_validation_errors h2::before {
	content: "";
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23c24e2a' stroke-width='2'/%3E%3Cpath d='M10 6v5' stroke='%23c24e2a' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='10' cy='14' r='1' fill='%23c24e2a'/%3E%3C/svg%3E") no-repeat center / contain;
}
.gform_wrapper.gravity-theme .gfield_error input,
.gform_wrapper.gravity-theme .gfield_error textarea,
.gform_wrapper.gravity-theme .gfield_error select {
	border-color: #c24e2a !important;
}
/* Confirmation message */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_confirmation_message {
	font-family: var(--font-body);
	font-size: var(--text-reg);
	line-height: 150%;
	color: var(--tdv-black);
	padding: 24px;
	background: var(--tdv-white);
	border-radius: 8px;
	border: 1px solid rgba(36, 39, 37, 0.2);
}
/* Text inputs */
.contact-section__form-wrap .gform_wrapper.gravity-theme input[type="text"],
.contact-section__form-wrap .gform_wrapper.gravity-theme input[type="email"],
.contact-section__form-wrap .gform_wrapper.gravity-theme input[type="tel"],
.contact-section__form-wrap .gform_wrapper.gravity-theme input[type="number"],
.contact-section__form-wrap .gform_wrapper.gravity-theme select {
	appearance: none;
	-webkit-appearance: none;
	background: var(--tdv-white);
	border: 1px solid rgba(36, 39, 37, 0.5);
	border-radius: 8px;
	padding: 8px 16px;
	height: 56px;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	line-height: 150%;
	color: var(--tdv-black);
	width: 100%;
	box-sizing: border-box;
	box-shadow: none;
	outline: none;
	transition: border-color var(--duration) var(--ease);
}
/* Select dropdown arrow */
.contact-section__form-wrap .gform_wrapper.gravity-theme select {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23251f21' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px;
	padding-right: 40px;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme input::placeholder,
.contact-section__form-wrap .gform_wrapper.gravity-theme textarea::placeholder {
	color: rgba(13, 9, 3, 0.4);
	font-size: var(--text-sm);
}
.contact-section__form-wrap .gform_wrapper.gravity-theme input:focus,
.contact-section__form-wrap .gform_wrapper.gravity-theme textarea:focus,
.contact-section__form-wrap .gform_wrapper.gravity-theme select:focus {
	outline: none;
	border-color: var(--tdv-terracotta);
	box-shadow: none;
}
/* Textarea */
.contact-section__form-wrap .gform_wrapper.gravity-theme textarea {
	appearance: none;
	-webkit-appearance: none;
	background: var(--tdv-white);
	border: 1px solid rgba(36, 39, 37, 0.5);
	border-radius: 8px;
	padding: 16px;
	height: 180px;
	font-family: var(--font-body);
	font-size: var(--text-sm);
	line-height: 150%;
	color: var(--tdv-black);
	width: 100%;
	box-sizing: border-box;
	box-shadow: none;
	outline: none;
	resize: none;
	transition: border-color var(--duration) var(--ease);
}
/* Name field grid */
.contact-section__form-wrap .gform_wrapper.gravity-theme .ginput_complex.ginput_container--name {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
/* Half-width fields side by side */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--width-half {
	flex: 1;
}
/* File upload — custom drag-drop zone */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-fileupload .ginput_container_fileupload {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0px;
	background: var(--tdv-white);
	border: 1px dashed rgba(36, 39, 37, 0.5);
	border-radius: 8px;
	padding: 45px 105px;
	cursor: pointer;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-fileupload input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
	width: 100%;
	height: 100%;
}
/* Cloud icon */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-fileupload .ginput_container_fileupload::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M7 18a4.5 4.5 0 0 1-3.327-1.318A4.43 4.43 0 0 1 2.295 13.5c0-1.194.495-2.338 1.378-3.182A4.596 4.596 0 0 1 7 9c.294-1.313 1.156-2.466 2.396-3.207a5.698 5.698 0 0 1 4.215-.748 5.597 5.597 0 0 1 3.563 2.162 5.371 5.371 0 0 1 .832 1.822c.141.651.139 1.32-.007 1.971H19a3.48 3.48 0 0 1 2.474 1.025A3.48 3.48 0 0 1 22.5 14.5a3.48 3.48 0 0 1-1.026 2.475A3.48 3.48 0 0 1 19 18h-1' stroke='%23484848' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m9 15 3-3 3 3' stroke='%23484848' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 12v9' stroke='%23484848' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 24px 24px;
}
/* Upload text */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-fileupload .ginput_container_fileupload::after {
	content: "Click or drag file to this area to upload";
	font-family: var(--font-body);
	font-size: var(--text-sm);
	line-height: 150%;
	color: #484848;
	pointer-events: none;
	text-align: center;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-fileupload .gform_fileupload_rules {
	margin-top: 8px;
	font-size: var(--text-xs);
	color: rgba(0, 0, 0, 0.5);
}
/* Mobile: smaller horizontal padding */
@media (max-width: 767px) {
	.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-fileupload .ginput_container_fileupload {
		padding: 45px 24px;
	}
}
/* Consent checkbox */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-consent .ginput_container_consent {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	padding-bottom: 16px;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-consent input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	border: 1px solid var(--tdv-black);
	border-radius: 6px;
	background: rgba(13, 9, 3, 0.05);
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	margin: 2px 0 0;
	flex-shrink: 0;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-consent input[type="checkbox"]:checked {
	background: var(--tdv-terracotta);
	border-color: var(--tdv-terracotta);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 4L5.5 10L2.5 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-consent .gfield_consent_label {
	font-family: var(--font-body);
	font-size: 12px;
	line-height: 150%;
	font-weight: 400;
	color: var(--tdv-black);
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-consent legend {
	display: none;
}
/* Submit button */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_footer {
	padding: 0;
	margin: 0;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_footer .gform_button,
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: transparent;
	color: var(--tdv-black);
	border: 1px solid var(--tdv-black);
	border-radius: 64px;
	padding: 16px 24px;
	font-family: var(--font-body);
	font-size: var(--text-reg);
	font-weight: 400;
	line-height: 150%;
	cursor: pointer;
	box-shadow: none;
	outline: none;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	transition: all var(--duration) var(--ease);
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_footer .gform_button:hover,
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover {
	background: var(--tdv-black);
	color: var(--tdv-white);
}
/* Arrow SVG inside submit button (injected via PHP hook) */
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_footer .gform_button .tdv-submit-arrow {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_footer .gform_button .tdv-submit-arrow path {
	transition: fill var(--duration) var(--ease), stroke var(--duration) var(--ease);
}
.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_footer .gform_button:hover .tdv-submit-arrow path {
	fill: var(--tdv-white);
	stroke: var(--tdv-white);
}

@media (min-width: 768px) {
	.contact-form__row--half {
		flex-direction: row;
	}
	.contact-section__blocks {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.contact-info-group--full {
		grid-column: 1 / -1;
	}
	/* Name fields side by side */
	.contact-section__form-wrap .gform_wrapper.gravity-theme .ginput_complex.ginput_container--name {
		flex-direction: row;
		gap: 24px;
	}
	.contact-section__form-wrap .gform_wrapper.gravity-theme .ginput_complex.ginput_container--name > span {
		flex: 1;
	}
	/* Email + Phone side by side */
	.contact-section__form-wrap .gform_wrapper.gravity-theme .gform_fields {
		flex-wrap: wrap;
		flex-direction: row;
	}
	.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--width-full,
	.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-name,
	.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-textarea,
	.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-fileupload,
	.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--type-consent {
		width: 100%;
		flex: 0 0 100%;
	}
	.contact-section__form-wrap .gform_wrapper.gravity-theme .gfield--width-half {
		flex: 1 1 calc(50% - 12px);
		min-width: 0;
	}
}
@media (min-width: 1280px) {
	.contact-section__grid {
		flex-direction: row;
	}
	.contact-section__info {
		flex: 1;
		max-width: 772px;
	}
	.contact-section__form-wrap {
		flex: 0 0 683px;
	}
}

/* ── FAQ Accordion ────────────────────────────────────────────────────────── */
.faq {
	padding: var(--section-padding) 0;
}
.faq__title {
	font-family: var(--font-heading);
	font-size: var(--h3);
	font-weight: 400;
	line-height: var(--lh-heading);
	text-align: center;
	margin-bottom: clamp(48px, 7vw, 80px);
}
.faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 768px;
	margin: 0 auto;
}
.faq__item {
	background: var(--tdv-white);
	border-radius: var(--radius-card);
	overflow: hidden;
}
.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 20px 32px;
	font-size: var(--text-md);
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}
.faq__icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	transition: transform var(--duration) var(--ease);
}
.faq__item.is-open .faq__icon {
	transform: rotate(180deg);
}
.faq__answer {
	display: none;
	padding: 0 32px 24px;
	font-size: var(--text-reg);
	line-height: var(--lh-body);
	color: var(--tdv-dark-grey);
}
.faq__item.is-open .faq__answer {
	display: block;
}

/* ── Two-Column Text with Image ──────────────────────────────────────────── */
.two-col-text {
	padding: var(--section-padding) 0;
}
.two-col-text__image-wrap {
	margin-bottom: 56px;
}
.two-col-text__image {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: var(--radius-card);
}
.two-col-text__columns {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.two-col-text__col {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.two-col-text__title {
	font-family: var(--font-heading);
	font-size: var(--h4);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-black);
}
.two-col-text__body {
	font-size: var(--text-md);
	line-height: var(--lh-body);
	letter-spacing: -0.01em;
	color: var(--tdv-black);
}

@media (min-width: 768px) {
	.two-col-text__columns {
		flex-direction: row;
		justify-content: space-between;
		gap: 48px;
	}
	.two-col-text__col {
		flex: 1;
		max-width: 539px;
	}
}
@media (min-width: 1280px) {
	.two-col-text__image-wrap {
		margin-bottom: 80px;
	}
	.two-col-text__image {
		height: 674px;
	}
	.two-col-text__columns {
		padding: 0 152px;
	}
}

/* ── Terug Knop (Back Button) ─────────────────────────────────────────────── */
.back-btn {
	padding: 24px 0 0;
}
.back-btn__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: var(--text-reg);
	font-weight: 400;
	color: var(--tdv-black);
	padding: 18px 0;
	transition: color 0.2s ease, gap 0.2s ease;
}
.back-btn__link:hover {
	color: var(--tdv-dark-brown);
}
.back-btn__link:hover svg {
	transform: translateX(-4px);
}
.back-btn__link svg {
	width: 24px;
	height: 24px;
	transition: transform 0.2s ease;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
	background-color: var(--tdv-black);
	color: var(--tdv-white);
}
.footer__inner {
	max-width: 1728px;
	margin: 0 auto;
	padding: clamp(48px, 3vw, 80px) clamp(24px, -0.5rem + 7vw, 112px) 0;
}
.footer__columns {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.footer__title {
	font-family: var(--font-heading);
	font-size: var(--h6);
	font-weight: 400;
	line-height: var(--lh-heading);
	color: var(--tdv-white);
	margin-bottom: 24px;
}
.footer__contact-info {
	margin-bottom: 24px;
}
.footer__company,
.footer__address {
	font-size: var(--text-sm);
	color: rgba(255,255,255,0.7);
	line-height: var(--lh-body);
}
.footer__contact-details {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}
.footer__detail {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.footer__label {
	font-size: var(--text-sm);
	color: rgba(255,255,255,0.7);
}
.footer__value {
	font-size: var(--text-sm);
	color: var(--tdv-white);
	text-decoration: none;
}
.footer__value:hover {
	text-decoration: underline;
}
.footer__socials {
	display: flex;
	gap: 24px;
}
.footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-social);
	border: 1px solid var(--tdv-white);
	padding: 8px;
	color: var(--tdv-white);
	transition: background-color var(--duration) var(--ease);
}
.footer__social-link:hover {
	background-color: rgba(255,255,255,0.1);
}
.footer__social-link svg {
	width: 24px;
	height: 24px;
}
.footer__cta-mobile {
	display: none;
}
@media (max-width: 767px) {
	.footer__cta-mobile {
		display: inline-flex;
		margin-top: 24px;
	}
}
.footer__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}
.footer__link {
	font-size: var(--text-sm);
	color: rgba(255,255,255,0.7);
	transition: color var(--duration) var(--ease);
}
.footer__link:hover {
	color: var(--tdv-white);
}
.footer__hours {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}
.footer__hour-row {
	display: flex;
	justify-content: space-between;
}
.footer__day {
	font-size: var(--text-sm);
	color: rgba(255,255,255,0.5);
}
.footer__time {
	font-size: var(--text-sm);
	color: var(--tdv-white);
}
.footer__status {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
}
.footer__status-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: var(--tdv-grey);
	border: 2px solid var(--tdv-light-grey);
}
.footer__status-dot--open {
	background-color: var(--tdv-green);
}
.footer__status-text {
	font-size: var(--text-reg);
	color: var(--tdv-white);
}
.footer__cert-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: center;
    padding-bottom: 16px;
    justify-items: center;
}
.footer__cert-logo {
	width: auto;
}

/* Footer logo row (centered below columns) */
.footer__logo-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	padding: clamp(48px, 2vw, 80px) 0;
	margin-top: clamp(32px, 2vw, 64px);
}
.footer__logo-row img {
	width: auto;
	max-width: 408px;
}
@media (max-width: 767px) {
	.footer__logo-row {
		order: -1;
		margin-top: 0;
		padding: 0 0 48px;
	}
	.footer__logo-row img {
		max-width: 304px;
	}
	.footer__inner {
		display: flex;
		flex-direction: column;
	}
	.footer__cert-logos {
		justify-items: start;
	}
}

/* Footer bottom */
.footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.3);
	padding: 16px 0;
}
.footer__bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}
.footer__copyright {
	font-size: var(--text-xs);
	color: rgba(255,255,255,0.3);
}
.footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}
.footer__legal-link {
	font-size: var(--text-xs);
	color: rgba(255,255,255,0.3);
	text-decoration: none;
}
.footer__legal-link:hover {
	color: rgba(255,255,255,0.5);
}

/* Footer collapsible columns (mobile) */
.footer__col-toggle {
	display: none;
}
@media (max-width: 767px) {
	.footer__col--menu,
	.footer__col--products {
		padding-bottom: 0;
	}
	.footer__col-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 0;
		cursor: pointer;
		background: none;
		border: none;
		color: var(--tdv-white);
		margin-bottom: 0;
	}
	.footer__col-toggle .footer__title {
		margin-bottom: 0;
	}
	.footer__col-toggle svg {
		width: 24px;
		height: 24px;
		flex-shrink: 0;
		transition: transform var(--duration) var(--ease);
	}
	.footer__col--menu > .footer__title,
	.footer__col--products > .footer__title {
		display: none;
	}
	.footer__col-body {
		display: none;
		padding-top: 16px;
		padding-bottom: 16px;
	}
	.footer__col.is-open .footer__col-body {
		display: block;
	}
	.footer__col.is-open .footer__col-toggle svg {
		transform: rotate(180deg);
	}
	.footer__col--menu .footer__col-body .btn {
		display: none;
	}
}
@media (min-width: 768px) {
	.footer__col-toggle {
		display: none;
	}
	.footer__col-body {
		display: block !important;
	}
	.footer__columns {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 48px;
	}
}
@media (min-width: 1280px) {
	.footer__inner {
		padding-top: 80px;
	}
	.footer__columns {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.footer__col {
		flex: 0 0 auto;
		width: 260px;
	}
	.footer__bottom-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.footer__legal {
		gap: 24px;
	}
}

/* ── Standaard Content (full-width WYSIWYG) ───────────────────────────────── */
.standaard-content {
	padding: var(--section-padding) 0;
}



/* ── CMPLZ ───────────────────────────────── */
.text-box .cmplz-document a,
.text-box .cmplz-document a:hover  {
    color: #A41C27;
}

.text-box .cmplz-document h2  {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
    color: #A41C27;
}

.text-box .cmplz-document h3  {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    color: #A41C27;
}

.text-box .cmplz-document p.cmplz-subtitle {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    color: #A41C27;
}

.text-box .cmplz-document ul {
    margin: 1em 0;
    padding-left: 40px;
}

#cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
    font-size: initial !important;
    max-width: 100% !important;
}

#cmplz-document p, #cmplz-document li, #cmplz-document td, .editor-styles-wrapper .cmplz-unlinked-mode p, .editor-styles-wrapper .cmplz-unlinked-mode li, .editor-styles-wrapper .cmplz-unlinked-mode td {
    font-size: initial !important;
    margin-top: 0;
}

div#cmplz-document * {
    margin: 5px 0px;
}

#cmplz-cookies-overview .cmplz-dropdown h5, #cmplz-document .cmplz-dropdown h5, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown h5,
#cmplz-cookies-overview .cmplz-dropdown summary div h3, #cmplz-document .cmplz-dropdown summary div h3, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown summary div h3,
#cmplz-cookies-overview .cmplz-dropdown h4, #cmplz-document .cmplz-dropdown h4, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown h4 {
    font-family: inherit;
}

div#cmplz-document span.screen-reader-text {
    display: none;
}

div#cmplz-document ul {
	margin: 1em 0;
	padding-left: 40px;
}