/* SpijkerenPrins - basisstijlen
   Kleuren, typografie en maatvoering gemeten op spijkerenprins.nl. */

:root {
	--sep-green-dark: #344725;
	--sep-green: #3f5a2c;
	--sep-logo-bg: #344725;
	--sep-circle: rgba(52, 71, 37, 0.53);
	--sep-sand: #f1d2a9;
	--sep-sand-dark: #e5bf8e;
	--sep-text: #2f2f2f;
	--sep-white: #ffffff;
	--sep-bg-soft: #f5f6f3;
	--sep-bg-warm: #fcfaf7;
	--sep-border: #e2e4e0;

	--sep-font-heading: "Montserrat", system-ui, sans-serif;
	--sep-font-body: "Source Sans Pro", system-ui, sans-serif;

	--sep-radius: 10px;
	--sep-radius-lg: 16px;
	--sep-container: 1200px;
	--sep-container-wide: 1620px;
	--sep-gap: clamp(3rem, 2.2rem + 3vw, 6rem);
	--sep-header-h: 96px;
	--sep-topbar-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--sep-font-body);
	color: var(--sep-text);
	background: var(--sep-white);
	line-height: 1.65;
	font-size: 17px;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--sep-font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--sep-green-dark);
	margin: 0 0 0.6em;
}

/* 85px op 1512px breed, net als op de bron */
h1 { font-size: clamp(2.25rem, 1.186rem + 4.367vw, 5.3125rem); }
h2 { font-size: clamp(1.75rem, 1.381rem + 1.515vw, 2.8125rem); }
h3 { font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.75rem); }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.sep-container {
	width: 100%;
	max-width: var(--sep-container);
	margin-inline: auto;
	padding-inline: 15px;
}

/* Header en topbar lopen breder door dan de contentbreedte, net als op de bron. */
.sep-container--wide {
	max-width: var(--sep-container-wide);
	padding-inline: 40px;
}
@media (max-width: 700px) {
	.sep-container--wide { padding-inline: 15px; }
}

/* Eyebrow: 24px, gewicht 600. Alleen in de hero met streepje ervoor. */
.sep-eyebrow {
	position: relative;
	display: block;
	font-family: var(--sep-font-heading);
	font-weight: 600;
	font-size: clamp(1.125rem, 0.994rem + 0.535vw, 1.5rem);
	line-height: 1.25;
	color: var(--sep-text);
	margin-bottom: 0.8em;
}
.sep-eyebrow--light { color: var(--sep-white); }
.sep-eyebrow--green { color: var(--sep-green-dark); }
.sep-eyebrow--icon {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.sep-eyebrow--icon i { font-size: 1.8em; line-height: 1; }
.sep-eyebrow--line { padding-inline-start: clamp(58px, 3.5vw + 26px, 85px); }
.sep-eyebrow--line::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 0.6em;
	width: clamp(38px, 2.3vw + 17px, 55px);
	height: 3px;
	background: currentColor;
}

/* Knoppen: 16px/600, radius 10px, padding 12px 41px (bron) */
.sep-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 12px 41px;
	border-radius: var(--sep-radius);
	font-family: var(--sep-font-heading);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 480px) { .sep-btn { padding: 12px 26px; } }

.sep-btn--sand { background: var(--sep-sand); border-color: var(--sep-sand); color: #000; }
.sep-btn--sand:hover { background: var(--sep-sand-dark); border-color: var(--sep-sand-dark); }
.sep-btn--outline { border-color: var(--sep-white); color: var(--sep-white); }
.sep-btn--outline:hover { background: var(--sep-white); color: var(--sep-green-dark); }
.sep-btn--primary { background: var(--sep-green-dark); color: var(--sep-white); }
.sep-btn--primary:hover { background: var(--sep-green); }
.sep-btn--ghost { border-color: var(--sep-green-dark); color: var(--sep-green-dark); }
.sep-btn--ghost:hover { background: var(--sep-green-dark); color: var(--sep-white); }


/* Hoveranimatie op knoppen: label zakt weg, letters komen van boven in beeld (bron) */
.sep-btn { position: relative; overflow: hidden; }
.sep-btn__text {
	display: flex;
	position: relative;
	justify-content: center;
}
.sep-btn__text::before {
	content: attr(data-text);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	white-space: pre;
	transition: transform 0.2s cubic-bezier(0.75, 0, 0.125, 1), opacity 0.2s;
}
.sep-btn__letters { display: flex; position: relative; }
.sep-btn__letters > span {
	display: inline-block;
	transform: translate3d(0, -14px, 0);
	opacity: 0;
	transition: transform 0.2s cubic-bezier(0.75, 0, 0.125, 1), opacity 0.2s;
	transition-delay: calc(var(--sep-i, 0) * 0.05s);
}
.sep-btn:hover .sep-btn__text::before,
.sep-btn:focus-visible .sep-btn__text::before {
	transform: translate3d(0, 100%, 0);
	opacity: 0;
}
.sep-btn:hover .sep-btn__letters > span,
.sep-btn:focus-visible .sep-btn__letters > span {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

/* Topbar */
.sep-topbar { background: var(--sep-white); position: relative; z-index: 30; }
.sep-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(1.5rem, 1rem + 2vw, 3.5rem);
	min-height: var(--sep-topbar-h);
	flex-wrap: wrap;
}
.sep-topbar__item { display: inline-flex; align-items: center; gap: 0.8em; font-family: var(--sep-font-heading); }
.sep-topbar__icon {
	display: grid;
	place-items: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--sep-sand);
	color: var(--sep-green-dark);
	flex: none;
}
.sep-topbar__text { display: flex; flex-direction: column; line-height: 1.3; }
.sep-topbar__label { font-size: 0.875rem; font-weight: 400; color: #000; }
.sep-topbar__value { font-size: 1rem; font-weight: 600; color: var(--sep-green-dark); }

/* Header: transparant over de hero, groen bij scrollen */
.sep-header {
	position: sticky;
	top: 0;
	z-index: 50;
	margin-bottom: calc(var(--sep-header-h) * -1);
	transition: background-color 0.3s ease;
}
.sep-header__inner { display: flex; align-items: center; gap: 2rem; min-height: var(--sep-header-h); position: relative; }
.sep-header__logo {
	position: absolute;
	inset-inline-start: 40px;
	top: calc(var(--sep-topbar-h) * -1);
	z-index: 60;
	background: var(--sep-logo-bg);
	width: 205px;
	display: block;
	transition: top 0.3s ease, width 0.3s ease;
}
.sep-header__logo-img { width: 100%; height: auto; }
.sep-header__logo-img--liggend { display: none; }
.sep-nav { margin-inline-start: auto; }
.sep-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 0.5rem + 1.4vw, 2.2rem);
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: var(--sep-font-heading);
	font-weight: 600;
	font-size: 1.125rem;
	color: #f2f2f2;
}
.sep-nav__list a { color: #f2f2f2; }
.sep-nav__list a:hover { color: var(--sep-sand); }
.sep-nav__list li { position: relative; }
.sep-nav__list .sub-menu {
	display: none;
	position: absolute;
	background: var(--sep-green-dark);
	list-style: none;
	margin: 0;
	padding: 12px 0;
	min-width: 250px;
	border-radius: var(--sep-radius);
	font-size: 1rem;
}
.sep-nav__list li:hover > .sub-menu,
.sep-nav__list li:focus-within > .sub-menu { display: block; }
.sep-nav__list .sub-menu li a { display: block; padding: 8px 20px; }
.sep-header__cta { flex: none; }
.sep-header.is-stuck { background: var(--sep-green-dark); }
.sep-header.is-stuck .sep-header__logo { top: 0; width: 130px; }

.sep-nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 10px;
	margin-inline-start: auto;
}
.sep-nav__toggle span { width: 26px; height: 2px; background: #f2f2f2; }

@media (max-width: 1100px) {
	.sep-nav__list { font-size: 1rem; }
	.sep-header__logo { width: 150px; }
}
@media (max-width: 980px) {
	.sep-header__inner { justify-content: flex-end; }
	.sep-header__logo { width: 170px; }
	.sep-nav {
		position: absolute;
		inset-inline: 0;
		top: 100%;
		background: var(--sep-green-dark);
		display: none;
		border-radius: 0 0 var(--sep-radius) var(--sep-radius);
	}
	.sep-nav.is-open { display: block; }
	.sep-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 22px; }
	.sep-nav__list > li { padding-block: 10px; border-bottom: 1px solid rgba(255,255,255,0.15); }
	.sep-nav__list .sub-menu { position: static; display: block; background: none; padding: 6px 0 0 14px; }
	.sep-nav__toggle { display: flex; }
	.sep-header__cta { display: none; }
	.sep-header__logo { inset-inline-start: 15px; width: 130px; }
	.sep-topbar__inner { justify-content: flex-end; gap: 1.2rem; min-height: 0; padding-block: 12px; }
	.sep-topbar__text { display: none; }
}

/* Compacte header vanaf de breedte waarop het hamburgermenu verschijnt:
   groene balk met het liggende logo, topbar vervalt (zoals de bron op mobiel). */
@media (max-width: 980px) {
	.sep-topbar { display: none; }
	.sep-header {
		position: static;
		background: var(--sep-green-dark);
		margin-bottom: 0;
	}
	.sep-header__inner {
		min-height: 0;
		padding-block: 16px;
		justify-content: space-between;
		align-items: center;
		gap: 1rem;
	}
	.sep-header__logo {
		position: static;
		width: 162px;
		background: none;
	}
	.sep-header__logo-img--staand { display: none; }
	.sep-header__logo-img--liggend { display: block; }
	.sep-nav__toggle { margin-inline-start: 0; }
	.sep-hero { padding-top: 0; }
}

/* Hero */
.sep-hero {
	position: relative;
	background: var(--sep-green-dark);
	color: var(--sep-white);
	min-height: 646px;
	display: flex;
	align-items: center;
	padding-top: var(--sep-header-h);
	overflow: hidden;
}
.sep-hero__slides { position: absolute; inset: 0; }
.sep-hero__slide {
	position: absolute;
	inset: 0;
	background: center/cover no-repeat;
	opacity: 0;
	transition: opacity 1.2s ease;
}
.sep-hero__slide.is-active { opacity: 1; }

/* Zwarte overlay op 50%, net als op de bron. De groene cirkel ligt daar bovenop. */
.sep-hero__overlay {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.5;
	pointer-events: none;
}

/* Cirkel: 835px met radius 50%, linkerrand 170px voor de contentlijn (bron) */
.sep-hero__shape {
	position: absolute;
	top: calc(20% - 30px);
	inset-inline-start: calc((100% - min(100% - 30px, var(--sep-container))) / 2 - 170px);
	width: 835px;
	height: 835px;
	border-radius: 50%;
	background: var(--sep-circle);
	pointer-events: none;
}
/* Onder 768px toont de bron de cirkel niet. */
@media (max-width: 767px) {
	.sep-hero__shape { display: none; }
	.sep-hero { min-height: 520px; }
}

.sep-hero__inner { position: relative; z-index: 2; padding-block: var(--sep-gap); }
.sep-hero__title { color: var(--sep-white); max-width: 16ch; margin-bottom: 0.7em; }
.sep-hero__actions { display: flex; flex-wrap: wrap; gap: 20px; }

/* Diensten */
.sep-services { background: var(--sep-bg-warm); }
.sep-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
}
.sep-service { position: relative; padding-bottom: 24%; }
.sep-service__media img {
	width: 100%;
	aspect-ratio: 515 / 382;
	object-fit: cover;
	border-radius: var(--sep-radius);
}
.sep-service__panel {
	position: absolute;
	inset-inline: 8.7% 4.3%;
	bottom: 0;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	background: var(--sep-white);
	border-radius: var(--sep-radius);
	box-shadow: 0 18px 40px rgba(52, 71, 37, 0.14);
	padding: 35px;
}
.sep-service__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 80px;
}
.sep-service__icon { display: block; font-size: 50px; line-height: 1; color: var(--sep-green-dark); }
.sep-service__arrow {
	display: grid;
	place-items: center;
	width: 50px; height: 50px;
	border-radius: 50%;
	border: 1px solid rgba(52, 71, 37, 0.1);
	background: var(--sep-white);
	color: var(--sep-green-dark);
	flex: none;
	margin-top: 15px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.sep-service__arrow:hover {
	background: var(--sep-green-dark);
	border-color: var(--sep-green-dark);
	color: var(--sep-white);
}
.sep-service__arrow i {
	font-size: 30px;
	line-height: 1;
	display: block;
	transform: rotate(-45deg);
}
.sep-service__title { margin: 20px 0 0; }

/* Kenmerken verschijnen bij hover, net als op de bron */
.sep-service__reveal {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
}
.sep-service__reveal > * { overflow: hidden; }
.sep-service:hover .sep-service__reveal,
.sep-service:focus-within .sep-service__reveal { grid-template-rows: 1fr; opacity: 1; }

.sep-service__tags {
	list-style: none;
	margin: 0;
	padding: 0.9em 0 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.375rem);
	line-height: 1.25;
}
.sep-service__tags li { display: flex; align-items: flex-start; gap: 0.55em; }
.sep-check { flex: none; margin-top: 0.18em; fill: var(--sep-green-dark); }
.sep-service__link {
	display: inline-block;
	margin-top: 1em;
	font-family: var(--sep-font-heading);
	font-weight: 600;
	font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.375rem);
	color: var(--sep-green-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}
@media (max-width: 980px) {
	.sep-services__grid { grid-template-columns: 1fr; gap: 2rem; }
	.sep-service__panel { inset-inline: 6% 6%; }
}

/* Tekst met beelden en teller */
.sep-design__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: clamp(2.5rem, 0.5rem + 6vw, 7rem);
	row-gap: 2.5rem;
	align-items: center;
}
/* Verhoudingen gemeten op de bron: beeldvlak 585 bij 565 op 1512px breed */
.sep-design__media {
	position: relative;
	aspect-ratio: 585 / 565;
	width: 102.6%;
	margin-inline-start: -9.6%;
}
.sep-design__img { margin: 0; position: absolute; }
.sep-design__img img { border-radius: var(--sep-radius-lg); width: 100%; height: 100%; object-fit: cover; }
.sep-design__img--small { left: 9.4%; top: 0; width: 34.2%; height: 38.9%; }
.sep-design__img--logo { left: 0; top: 44.2%; width: 28.2%; aspect-ratio: 165 / 285; }
.sep-design__img--logo img { height: 100%; border-radius: 0; object-fit: contain; }
.sep-design__img--large { left: 31.6%; top: 26.5%; width: 68.4%; height: 73.5%; }
.sep-design__img--large img { max-height: none; }
/* Teller rechts van het kleine beeld, maten van de bron: 65px cijfer, 24px plus en label */
.sep-design__counter {
	position: absolute;
	left: 51.5%;
	top: 7.5%;
	display: flex;
	align-items: baseline;
	gap: 0.1em;
	white-space: nowrap;
	font-family: var(--sep-font-heading);
	color: var(--sep-green-dark);
}
.sep-counter {
	font-size: clamp(2.2rem, 1.4rem + 2.6vw, 4.0625rem);
	font-weight: 600;
	line-height: 1;
}
.sep-counter__plus,
.sep-design__counter-label {
	font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.5rem);
	font-weight: 600;
	line-height: 1.2;
}
.sep-design__counter-label { margin-inline-start: 0.9em; }
@media (max-width: 980px) {
	.sep-design__inner { grid-template-columns: 1fr; }
	.sep-design__media { order: 2; width: 100%; max-width: 585px; margin-inline: auto; }
}
@media (max-width: 600px) {
	.sep-design__counter { position: static; margin-bottom: 1rem; }
	.sep-design__media { aspect-ratio: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
	.sep-design__img { position: static; }
	.sep-design__img--small, .sep-design__img--logo, .sep-design__img--large { width: 100%; height: auto; }
	.sep-design__img--large { grid-column: 1 / -1; }
	.sep-design__img--logo { display: none; }
}

/* Troeven, in de rechterkolom van het designblok (bron: kop 16px bold, items 16px, rond icoon van 30px) */
.sep-usps__heading {
	font-weight: 700;
	font-size: 1rem;
	color: var(--sep-text);
	margin: 2em 0 1.2em;
}
.sep-usps__list {
	list-style: none;
	margin: 0 0 2em;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}
.sep-usps__list li { display: flex; align-items: center; gap: 15px; }
/* Tekstwaarden uit de bron: 20px, gewicht 500, lijnhoogte 1em, 5px marge boven */
.sep-usps__list li > span:last-child {
	margin-top: 5px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1em;
}
.sep-usps__icon {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	flex: none;
	border-radius: 50%;
	background: var(--sep-green-dark);
	color: #f2f2f2;
}

/* Visie met tabbladen */
.sep-vision {
	position: relative;
	background: var(--sep-green-dark);
	color: var(--sep-white);
	padding-block: 50px 85px;
	overflow: hidden;
}
.sep-vision__leaf {
	position: absolute;
	width: 273px;
	opacity: 0.35;
	pointer-events: none;
	transition: opacity 0.75s ease, transform 0.75s ease; /* bron: fadeInRight/fadeInLeft, animated-fast 0.75s, vertraging 200ms */
	transition-delay: 0.2s;
}
.sep-vision__leaf--left { left: -94px; bottom: 106px; } /* bron: onderkant blad = onderkant kaart min 25px */
.sep-vision__leaf--right { right: -100px; top: 169px; } /* bron: bovenkant blad = bovenkant kaart min 75px */
.sep-vision__leaf.is-hidden { opacity: 0; transition: none; } /* beginstand zonder overgang; de overgang zit op de eindstand */
.sep-vision__leaf--left.is-hidden { transform: translateX(20px); }
.sep-vision__leaf--right.is-hidden { transform: translateX(-20px); }
/* Titel: per woord omhoog in beeld, zoals op de bron (slide-in-container, translateY 80px, 0.4s cubic-bezier) */
.sep-slide-in { display: inline-block; overflow: hidden; vertical-align: middle; position: relative; }
.sep-slide-in__word { display: inline-block; transition: transform 0.4s cubic-bezier(0.24, 0.74, 0.58, 1); }
.is-hidden .sep-slide-in__word { transform: translateY(80px); transition: none; }
/* Intro-animaties uit de bron (WOW.js): skewIn 0.8s, bounceIn 1.25s, fadeIn 1.25s; vertraging per element via --sep-delay */
.sep-reveal.is-hidden { visibility: hidden; }
.sep-reveal--skew.is-in { animation: sep-skew-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) both; animation-delay: var(--sep-delay, 0ms); will-change: transform; }
@keyframes sep-skew-in {
	0% { clip-path: inset(0 100% 0 0); transform: translateX(30px); }
	100% { clip-path: inset(0); transform: translateX(0); }
}
.sep-reveal--bounce.is-in { animation: sep-bounce-in 1.25s both; animation-delay: var(--sep-delay, 0ms); }
@keyframes sep-bounce-in {
	0%, 20%, 40%, 60%, 80%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
	0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
	20% { transform: scale3d(1.1, 1.1, 1.1); }
	40% { transform: scale3d(0.9, 0.9, 0.9); }
	60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
	80% { transform: scale3d(0.97, 0.97, 0.97); }
	100% { opacity: 1; transform: scale3d(1, 1, 1); }
}
.sep-reveal--fade { transition: opacity 1.25s ease; transition-delay: var(--sep-delay, 0ms); }
.sep-reveal--fade.is-hidden { opacity: 0; visibility: visible; transition: none; }
.sep-vision__inner { position: relative; z-index: 1; }
.sep-vision__eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	color: var(--sep-sand);
	font-size: clamp(1.05rem, 0.97rem + 0.32vw, 1.375rem);
	text-align: center;
}
.sep-vision__eyebrow i {
	font-size: 1.7em;
	line-height: 1;
	animation: sep-icon-bounce-right 2s ease infinite backwards; /* bron: icon-bounce-right op de eyebrow van het visieblok */
}
@keyframes sep-icon-bounce-right {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateX(8px); }
	60% { transform: translateX(4px); }
}
.sep-vision__heading {
	color: var(--sep-white);
	text-align: center;
	font-size: clamp(1.75rem, 1.381rem + 1.515vw, 2.8125rem);
	margin-bottom: 1.2em;
}
.sep-vision__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 418px;
	gap: clamp(1.5rem, 1rem + 2vw, 3.5rem);
	align-items: start;
	background: var(--sep-white);
	border-radius: var(--sep-radius);
	padding: 25px 40px;
	color: var(--sep-text);
}
.sep-vision__media img { border-radius: var(--sep-radius); width: 100%; object-fit: cover; }

.sep-tabs {
	display: flex;
	gap: clamp(1.5rem, 1rem + 2vw, 3.5rem);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 1.6rem;
}
.sep-tabs__title {
	position: relative;
	background: none;
	border: 0;
	padding: 0 0 22px;
	font-family: var(--sep-font-heading);
	font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
	font-weight: 600;
	color: var(--sep-text);
	cursor: pointer;
}
/* Bron: lijn groeit bij hover van links naar 100% in 0.25s (3px, #2a7d2e); actieve tab heeft de volle lijn in het huisstijlgroen */
.sep-tabs__title::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 3px;
	background: #2a7d2e;
	transition: 0.25s;
}
.sep-tabs__title:hover::before,
.sep-tabs__title:focus::before { width: 100%; }
.sep-tabs__title.is-active::before { width: 100%; background: var(--sep-green-dark); }
.sep-tabs__title.is-active:hover::before,
.sep-tabs__title.is-active:focus::before { background: #2a7d2e; }
.sep-tabs__panels { display: grid; }
.sep-tabs__panel {
	grid-area: 1 / 1;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease;
}
.sep-tabs__panel.is-active { visibility: visible; opacity: 1; }
.sep-tabs__panel p:last-child { margin-bottom: 0; }
.sep-tabs__title:focus-visible {
	outline: 2px solid var(--sep-green-dark);
	outline-offset: 4px;
	border-radius: 4px;
}

@media (max-width: 900px) {
	.sep-vision__card { grid-template-columns: 1fr; padding: 20px; }
	.sep-vision__media { order: -1; }
	.sep-vision__leaf { display: none; }
	.sep-tabs { gap: 1.5rem; }
}

/* Statistieken (bron: vier zandkleurige kaarten op groen, kaart 1 en 3 30px lager, fadeIn 0.75s met 100ms oplopende vertraging per kaart) */
.sep-section.sep-stats { background: var(--sep-green-dark); padding-block: 15px 100px; } /* bron: sectie 422px hoog bij 1512 */
.sep-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: start; }
.sep-stats__item {
	background: var(--sep-sand);
	border-radius: 10px;
	padding: 40px 25px 30px 40px;
	color: #0b3d2c;
	transition: opacity 0.75s ease, background-color 0.3s;
}
.sep-stats__item.is-hidden { opacity: 0; transition: none; }
.sep-stats__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--sep-white);
	border: 1px solid rgba(18, 74, 47, 0.1);
	margin-bottom: 33px;
	transition: 0.3s;
}
.sep-stats__icon i { font-size: 30px; line-height: 1; transform: translate(-2px, 6px) rotate(-45deg); transition: 0.3s; } /* bron: pijl staat in rust iets linksonder van het midden */
/* Hover (bron): kaart wit, cirkel donkergroen met witte pijl die naar het midden schuift, alles 0.3s */
.sep-stats__item:hover { background: var(--sep-white); }
.sep-stats__item:hover .sep-stats__icon { background: #3e552b; color: var(--sep-white); }
.sep-stats__item:hover .sep-stats__icon i { transform: translate(0, 0) rotate(-45deg); }
.sep-stats__number {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	font-family: var(--sep-font-heading);
	font-size: 45px;
	font-weight: 700;
	line-height: 54px;
}
.sep-stats__number .sep-counter { font-size: inherit; font-weight: inherit; line-height: inherit; } /* de teller uit het tuindesignblok heeft eigen maten */
.sep-stats__suffix { font-size: 24px; line-height: 66px; }
.sep-stats__label { display: block; font-family: var(--sep-font-heading); font-size: 24px; font-weight: 600; line-height: 0.8; }
@media (min-width: 781px) { .sep-stats__item:nth-child(odd) { margin-top: 30px; } }
@media (max-width: 780px) { .sep-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* Klantbeoordelingen */
.sep-testimonials__count { color: var(--sep-green); }
.sep-testimonials__row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 1.5rem;
}
.sep-testimonial { margin: 0; background: var(--sep-bg-soft); border-radius: var(--sep-radius); padding: 1.5rem; }
.sep-testimonial footer { display: flex; align-items: center; gap: 0.6em; margin-top: 1em; font-weight: 700; }
.sep-testimonial footer img { border-radius: 50%; }
.sep-testimonials__empty { opacity: 0.7; font-style: italic; }

/* Nieuws */
.sep-news__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 1rem + 1vw, 2rem); margin-top: 1.5rem; }
.sep-news__card img { border-radius: var(--sep-radius); aspect-ratio: 515/382; object-fit: cover; margin-bottom: 0.8em; }
.sep-news__card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.sep-news__card time { font-size: 0.82rem; opacity: 0.65; }
@media (max-width: 1100px) { .sep-news__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sep-news__grid { grid-template-columns: 1fr; } }

/* Vacature-banner */
.sep-vacancy { background: var(--sep-bg-soft); }
.sep-vacancy__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* Sectie-ritme: elke sectie draagt eigen ruimte boven en onder */
.sep-section { padding-block: var(--sep-gap); }
.sep-section--soft { background: var(--sep-bg-soft); }

/* Footer */
.sep-footer { background: var(--sep-green-dark); color: var(--sep-white); }
.sep-footer h2, .sep-footer h3 { color: var(--sep-white); }
.sep-footer__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-block: 56px; }
.sep-footer__col img { max-width: 200px; }
.sep-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.sep-footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }
.sep-footer__legal { border-top: 1px solid rgba(255,255,255,0.15); padding-block: 18px; font-size: 0.85rem; opacity: 0.85; }
.sep-footer__legal p { margin: 0; }
@media (max-width: 780px) { .sep-footer__inner { grid-template-columns: 1fr; } }
