/* =========================================================================
   DRACHTEN SPREEKT — Main Stylesheet
   Premium civic platform design system
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS / CSS VARIABLES
   ------------------------------------------------------------------------- */
:root {
	/* Brand colors */
	--ds-navy:        #0F1F3D;
	--ds-navy-dark:   #0A1530;
	--ds-navy-soft:   #1A3160;
	--ds-navy-tint:   #2C4373;
	--ds-gold:        #CAA052;
	--ds-gold-dark:   #B08A3D;
	--ds-gold-soft:   #E2C68B;
	--ds-gold-tint:   #F6EBD3;

	/* Neutrals */
	--ds-cream:       #FAF7F1;
	--ds-bg:          #FFFFFF;
	--ds-bg-alt:      #F7F5EF;
	--ds-bg-soft:     #FBFAF5;

	/* Text */
	--ds-text:        #1B2A47;
	--ds-text-muted:  #5A6B86;
	--ds-text-light:  #8895AC;

	/* Borders */
	--ds-border:      #E5E8EE;
	--ds-border-soft: #EFF1F5;
	--ds-border-strong: #D5DAE3;

	/* Feedback */
	--ds-success:     #2F8F5C;
	--ds-success-bg:  #E8F5EE;
	--ds-warning:     #B05E2A;
	--ds-warning-bg:  #FBF0E5;
	--ds-info:        #2F6FAF;
	--ds-info-bg:     #EAF1F9;

	/* Aliassen — deze namen werden in templates gebruikt maar bestonden niet,
	   waardoor tekstkleuren en secties-padding stil wegvielen. */
	--ds-muted:        #5A6B86;
	--ds-space-xl:     96px;
	--ds-font-heading: 'Fraunces', 'Playfair Display', Georgia, serif;

	/* Merk-rood — alleen als subtiel "niet"-accent, nooit als protest-rood */
	--ds-red:         #B23030;
	--ds-red-soft:    #C24A4A;
	--ds-red-bg:      #FBF1F1;
	--ds-red-border:  #F0DADA;

	/* Radii */
	--ds-radius-xs:   8px;
	--ds-radius-sm:   12px;
	--ds-radius-md:   18px;
	--ds-radius:      24px;
	--ds-radius-lg:   28px;
	--ds-radius-full: 999px;

	/* Shadows */
	--ds-shadow-xs:   0 1px 2px rgba(15,31,61,0.04);
	--ds-shadow-sm:   0 2px 8px rgba(15,31,61,0.05);
	--ds-shadow-md:   0 10px 30px rgba(15,31,61,0.08);
	--ds-shadow-lg:   0 20px 60px rgba(15,31,61,0.10);
	--ds-shadow-xl:   0 30px 80px rgba(15,31,61,0.14);

	/* Typography */
	--ds-font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
	--ds-font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

	/* Layout */
	--ds-container:        1240px;
	--ds-container-narrow: 820px;
	--ds-container-wide:   1380px;

	/* Spacing scale */
	--ds-space-1: 4px;
	--ds-space-2: 8px;
	--ds-space-3: 12px;
	--ds-space-4: 16px;
	--ds-space-5: 24px;
	--ds-space-6: 32px;
	--ds-space-7: 48px;
	--ds-space-8: 64px;
	--ds-space-9: 96px;
	--ds-space-10: 128px;

	/* Transitions */
	--ds-ease:     cubic-bezier(0.22, 1, 0.36, 1);
	--ds-ease-in:  cubic-bezier(0.55, 0, 1, 0.45);
	--ds-t-fast:   140ms;
	--ds-t:        260ms;
	--ds-t-slow:   480ms;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ds-font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ds-text);
	background: var(--ds-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--ds-navy);
	text-decoration: none;
	transition: color var(--ds-t-fast) var(--ds-ease);
}
a:hover { color: var(--ds-gold-dark); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ds-font-display);
	font-weight: 500;
	color: var(--ds-navy);
	letter-spacing: -0.015em;
	line-height: 1.15;
	margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 450; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

em { font-style: italic; color: var(--ds-gold-dark); }

button { font-family: inherit; }

::selection {
	background: var(--ds-navy);
	color: var(--ds-cream);
}

/* Screen reader only */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--ds-navy);
	color: #fff;
	clip: auto !important;
	clip-path: none;
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	height: auto;
	left: 16px;
	line-height: normal;
	padding: 14px 22px;
	text-decoration: none;
	top: 16px;
	width: auto;
	z-index: 100000;
	border-radius: var(--ds-radius-sm);
}

:focus-visible {
	outline: 2px solid var(--ds-gold);
	outline-offset: 3px;
	border-radius: 3px;
}

/* -------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   ------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--ds-container);
	margin: 0 auto;
	padding: 0 28px;
}

.container--narrow {
	max-width: var(--ds-container-narrow);
}

.container--wide {
	max-width: var(--ds-container-wide);
}

.section {
	padding: 96px 0;
}
.section--sm { padding: 56px 0; }
.section--lg { padding: 128px 0; }

.section--alt {
	background: var(--ds-bg-alt);
	padding: 96px 0;
}

.section--cream {
	background: var(--ds-cream);
	padding: 96px 0;
}

.section--navy {
	background: var(--ds-navy);
	color: rgba(255,255,255,0.86);
	padding: 96px 0;
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: #fff; }

.section-head {
	margin-bottom: 56px;
	max-width: 720px;
}
.section-head--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.section-head__title {
	margin: 0 0 16px;
}
.section-head__lead {
	font-size: 1.1rem;
	color: var(--ds-text-muted);
	line-height: 1.65;
	margin: 0;
}

.eyebrow {
	display: inline-block;
	font-family: var(--ds-font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ds-gold-dark);
	margin-bottom: 18px;
	position: relative;
	padding-left: 38px;
}
.eyebrow::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 28px;
	height: 1px;
	background: var(--ds-gold);
}

/* Grids */
.grid {
	display: grid;
	gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--gap-lg { gap: 32px; }
.grid--gap-xl { gap: 48px; }

/* -------------------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	padding: 16px 28px;
	font-family: var(--ds-font-body);
	font-size: 0.97rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1;
	border: 1.5px solid transparent;
	border-radius: var(--ds-radius-full);
	cursor: pointer;
	text-decoration: none;
	transition:
		transform var(--ds-t-fast) var(--ds-ease),
		background var(--ds-t-fast) var(--ds-ease),
		color var(--ds-t-fast) var(--ds-ease),
		box-shadow var(--ds-t-fast) var(--ds-ease),
		border-color var(--ds-t-fast) var(--ds-ease);
	white-space: nowrap;
	-webkit-appearance: none;
	appearance: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
	background: var(--ds-navy);
	color: #fff;
	border-color: var(--ds-navy);
	box-shadow: 0 6px 18px rgba(15,31,61,0.18);
}
.btn--primary:hover {
	background: var(--ds-navy-soft);
	color: #fff;
	box-shadow: 0 10px 28px rgba(15,31,61,0.24);
}

.btn--gold {
	background: var(--ds-gold);
	color: var(--ds-navy);
	border-color: var(--ds-gold);
	box-shadow: 0 6px 18px rgba(202,160,82,0.28);
}
.btn--gold:hover {
	background: var(--ds-gold-dark);
	color: var(--ds-navy);
}

.btn--ghost {
	background: transparent;
	color: var(--ds-navy);
	border-color: var(--ds-border-strong);
}
.btn--ghost:hover {
	border-color: var(--ds-navy);
	background: var(--ds-bg);
}

.btn--ghost-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.3);
}
.btn--ghost-light:hover {
	background: rgba(255,255,255,0.08);
	color: #fff;
	border-color: rgba(255,255,255,0.5);
}

.btn--outline {
	background: transparent;
	color: var(--ds-gold-dark);
	border-color: var(--ds-gold);
	border-style: dashed;
}
.btn--outline:hover {
	background: var(--ds-gold-tint);
	color: var(--ds-gold-dark);
	border-style: solid;
}

.btn--sm { padding: 11px 18px; font-size: 0.85rem; }
.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn[disabled],
.btn.is-loading {
	opacity: 0.6;
	cursor: wait;
	pointer-events: none;
}

.btn__loader {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: ds-spin 0.8s linear infinite;
}
.btn.is-loading .btn__loader { display: inline-block; }
.btn.is-loading .btn__label { opacity: 0.7; }

@keyframes ds-spin {
	to { transform: rotate(360deg); }
}

.btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.btn-group--center { justify-content: center; }

/* Link arrow */
.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--ds-navy);
	font-size: 0.97rem;
	letter-spacing: 0.01em;
}
.link-arrow span { transition: transform var(--ds-t-fast) var(--ds-ease); }
a:hover .link-arrow span,
.link-arrow:hover span { transform: translateX(4px); color: var(--ds-gold-dark); }

/* -------------------------------------------------------------------------
   5. SITE HEADER
   ------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(255,255,255,0.92);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid var(--ds-border-soft);
	transition: padding var(--ds-t) var(--ds-ease), box-shadow var(--ds-t) var(--ds-ease);
}

.site-header.is-scrolled {
	box-shadow: var(--ds-shadow-sm);
	background: rgba(255,255,255,0.96);
}
.site-header.is-scrolled .site-header__inner { padding: 12px 0; }
.site-header.is-scrolled .site-logo img { height: 38px; }

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 18px 0;
	transition: padding var(--ds-t) var(--ds-ease);
}

.site-logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
.site-logo img {
	height: 46px;
	width: auto;
	transition: height var(--ds-t) var(--ds-ease);
}

.site-nav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}
.site-nav ul {
	display: flex;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav a {
	display: inline-block;
	padding: 10px 14px;
	font-size: 0.94rem;
	font-weight: 500;
	color: var(--ds-text);
	letter-spacing: 0.005em;
	position: relative;
}
.site-nav a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 1.5px;
	background: var(--ds-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--ds-t) var(--ds-ease);
}
.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current-menu-parent > a::after {
	transform: scaleX(1);
}
.site-nav a:hover { color: var(--ds-navy); }

.site-header__cta { flex-shrink: 0; }

/* Burger */
.burger {
	display: none;
	background: transparent;
	border: 1px solid var(--ds-border);
	width: 44px;
	height: 44px;
	border-radius: 12px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0;
}
.burger__lines {
	width: 18px;
	height: 12px;
	position: relative;
}
.burger__lines span {
	display: block;
	width: 100%;
	height: 1.6px;
	background: var(--ds-navy);
	position: absolute;
	left: 0;
	transition: transform var(--ds-t) var(--ds-ease), opacity var(--ds-t) var(--ds-ease), top var(--ds-t) var(--ds-ease);
}
.burger__lines span:nth-child(1) { top: 0; }
.burger__lines span:nth-child(2) { top: 5px; }
.burger__lines span:nth-child(3) { top: 10px; }
.burger.is-active .burger__lines span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.burger.is-active .burger__lines span:nth-child(2) { opacity: 0; }
.burger.is-active .burger__lines span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: min(420px, 100vw);
	height: 100vh;
	background: var(--ds-cream);
	z-index: 90;
	transform: translateX(100%);
	transition: transform var(--ds-t-slow) var(--ds-ease);
	display: flex;
	flex-direction: column;
	padding: 28px;
	overflow-y: auto;
	box-shadow: -20px 0 60px rgba(15,31,61,0.18);
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}
.mobile-nav__close {
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid var(--ds-border);
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: var(--ds-navy);
}

.mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.mobile-nav ul a {
	display: block;
	padding: 14px 4px;
	font-family: var(--ds-font-display);
	font-size: 1.5rem;
	color: var(--ds-navy);
	border-bottom: 1px solid var(--ds-border-soft);
}
.mobile-nav__cta { margin-top: 32px; }

.mobile-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15,31,61,0.4);
	z-index: 85;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--ds-t) var(--ds-ease), visibility var(--ds-t) var(--ds-ease);
}
.mobile-nav-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

body.no-scroll { overflow: hidden; }

/* -------------------------------------------------------------------------
   6. HERO (home)
   ------------------------------------------------------------------------- */
.hero {
	position: relative;
	padding: 84px 0 96px;
	background: linear-gradient(180deg, var(--ds-bg) 0%, var(--ds-bg-alt) 100%);
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.5;
}
.hero__bg svg {
	width: 100%;
	height: 100%;
}

.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	align-items: center;
}

.hero__copy {
	max-width: 620px;
}
.hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px 8px 12px;
	background: rgba(202,160,82,0.12);
	border: 1px solid rgba(202,160,82,0.3);
	border-radius: var(--ds-radius-full);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ds-gold-dark);
	letter-spacing: 0.02em;
	margin-bottom: 28px;
}
.hero__tag-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ds-gold);
	box-shadow: 0 0 0 4px rgba(202,160,82,0.2);
	animation: ds-pulse 2.4s ease-in-out infinite;
}
@keyframes ds-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.15); opacity: 0.7; }
}

.hero__title {
	font-size: clamp(2.5rem, 5.5vw, 4.4rem);
	font-weight: 420;
	margin: 0 0 22px;
	line-height: 1.05;
	letter-spacing: -0.02em;
}
.hero__title em {
	font-style: italic;
	color: var(--ds-gold-dark);
	display: inline-block;
	position: relative;
}

.hero__lead {
	font-size: 1.18rem;
	line-height: 1.65;
	color: var(--ds-text-muted);
	margin: 0 0 36px;
	max-width: 540px;
}

.hero__cta { margin-bottom: 36px; }

.hero__trust {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 26px;
	border-top: 1px solid var(--ds-border);
}
.hero__trust-label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ds-text-muted);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.hero__pillars {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.hero__pillars li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.92rem;
	color: var(--ds-text);
	font-weight: 500;
}
.hero__pillars li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ds-gold);
}
.hero__pillars ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

/* Hero visual / stats card */
.hero__visual {
	position: relative;
}

.stats-card {
	background: #fff;
	border-radius: var(--ds-radius-lg);
	padding: 36px 32px 32px;
	box-shadow: var(--ds-shadow-lg);
	border: 1px solid var(--ds-border-soft);
	position: relative;
	overflow: hidden;
}
.stats-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--ds-gold) 0%, var(--ds-gold-soft) 50%, var(--ds-gold) 100%);
}
.stats-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--ds-border-soft);
}
.stats-card__title {
	font-family: var(--ds-font-body);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ds-text-muted);
	margin: 0;
}
.stats-card__live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.74rem;
	font-weight: 600;
	color: var(--ds-success);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.stats-card__live::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ds-success);
	animation: ds-pulse 1.6s ease-in-out infinite;
}

.stats-card__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 28px;
	margin-bottom: 22px;
}
.stats-card__item .stats-card__value {
	font-family: var(--ds-font-display);
	font-size: 2.1rem;
	font-weight: 500;
	color: var(--ds-navy);
	line-height: 1;
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}
.stats-card__item .stats-card__label {
	font-size: 0.86rem;
	color: var(--ds-text-muted);
	line-height: 1.4;
}

.stats-card__chart {
	padding-top: 16px;
	border-top: 1px solid var(--ds-border-soft);
}
.stats-card__chart svg {
	width: 100%;
	height: auto;
}

/* -------------------------------------------------------------------------
   7. PROMISE SECTION
   ------------------------------------------------------------------------- */
.promise-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.promise-card {
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: var(--ds-radius);
	padding: 32px 26px;
	transition: transform var(--ds-t) var(--ds-ease), box-shadow var(--ds-t) var(--ds-ease), border-color var(--ds-t) var(--ds-ease);
}
.promise-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ds-shadow-md);
	border-color: var(--ds-gold-soft);
}
.promise-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--ds-gold-tint);
	color: var(--ds-gold-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}
.promise-card__icon svg { width: 24px; height: 24px; }
.promise-card__title {
	font-size: 1.05rem;
	margin: 0 0 10px;
}
.promise-card__text {
	font-size: 0.93rem;
	color: var(--ds-text-muted);
	line-height: 1.55;
	margin: 0;
}

/* -------------------------------------------------------------------------
   8. HOW IT WORKS
   ------------------------------------------------------------------------- */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	counter-reset: step;
	position: relative;
}
.steps::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--ds-border-strong) 20%, var(--ds-border-strong) 80%, transparent);
	z-index: 0;
}
.step {
	position: relative;
	z-index: 1;
	text-align: left;
}
.step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--ds-border);
	font-family: var(--ds-font-display);
	font-size: 1.7rem;
	font-weight: 500;
	color: var(--ds-gold-dark);
	margin-bottom: 22px;
	box-shadow: var(--ds-shadow-sm);
}
.step__title {
	font-size: 1.25rem;
	margin: 0 0 10px;
}
.step__text {
	color: var(--ds-text-muted);
	margin: 0;
	line-height: 1.6;
}

/* -------------------------------------------------------------------------
   9. CARDS — PETITION / DOSSIER / NEWS
   ------------------------------------------------------------------------- */
.card {
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: var(--ds-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform var(--ds-t) var(--ds-ease), box-shadow var(--ds-t) var(--ds-ease), border-color var(--ds-t) var(--ds-ease);
	text-decoration: none;
	color: inherit;
	height: 100%;
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ds-shadow-md);
	border-color: var(--ds-border-strong);
	color: inherit;
}

.card__media {
	aspect-ratio: 16/10;
	background: var(--ds-bg-alt);
	overflow: hidden;
	position: relative;
}
.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ds-t-slow) var(--ds-ease);
}
.card:hover .card__media img { transform: scale(1.04); }

.card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--ds-navy) 0%, var(--ds-navy-soft) 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.5);
}
.card__placeholder svg { width: 40%; height: auto; opacity: 0.55; }

.card__body {
	padding: 26px 26px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.card__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.card__title {
	font-size: 1.3rem;
	margin: 0 0 12px;
	line-height: 1.25;
	transition: color var(--ds-t-fast) var(--ds-ease);
}
.card:hover .card__title { color: var(--ds-navy-soft); }

.card__excerpt {
	font-size: 0.95rem;
	color: var(--ds-text-muted);
	line-height: 1.6;
	margin: 0 0 22px;
	flex: 1;
}

.card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid var(--ds-border-soft);
}
.card__footer-meta {
	font-size: 0.82rem;
	color: var(--ds-text-muted);
}

/* Petition specific */
.card__progress {
	margin: 0 0 16px;
}
.progress {
	margin: 0 0 8px;
}
.progress__bar {
	width: 100%;
	height: 8px;
	background: var(--ds-bg-alt);
	border-radius: var(--ds-radius-full);
	overflow: hidden;
}
.progress__fill {
	height: 100%;
	background: linear-gradient(90deg, var(--ds-gold) 0%, var(--ds-gold-dark) 100%);
	border-radius: var(--ds-radius-full);
	transition: width var(--ds-t-slow) var(--ds-ease);
	min-width: 4px;
}
.progress__meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	color: var(--ds-text-muted);
	margin-top: 8px;
}
.progress__meta strong { color: var(--ds-navy); font-weight: 600; }

/* Source chip on dossier */
.source-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	color: var(--ds-text-muted);
	font-weight: 500;
}
.source-chip svg { width: 14px; height: 14px; }

/* News card */
.news-card__category {
	display: inline-block;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ds-gold-dark);
}

/* -------------------------------------------------------------------------
   10. BADGES
   ------------------------------------------------------------------------- */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	border-radius: var(--ds-radius-full);
	background: var(--ds-bg-alt);
	color: var(--ds-text);
	white-space: nowrap;
}
.badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.7;
}

.badge--actief,
.badge--open {
	background: var(--ds-success-bg);
	color: var(--ds-success);
}
.badge--in-onderzoek {
	background: var(--ds-gold-tint);
	color: var(--ds-gold-dark);
}
.badge--gesloten,
.badge--afgerond {
	background: #EEF0F4;
	color: var(--ds-text-muted);
}
.badge--theme {
	background: var(--ds-info-bg);
	color: var(--ds-info);
}
.badge--theme::before { display: none; }

/* -------------------------------------------------------------------------
   11. PAGE HERO (interior pages)
   ------------------------------------------------------------------------- */
.page-hero {
	padding: 80px 0 64px;
	background: linear-gradient(180deg, var(--ds-bg) 0%, var(--ds-bg-alt) 100%);
	position: relative;
	overflow: hidden;
}
.page-hero--lg { padding: 100px 0 84px; }
.page-hero__inner {
	max-width: 820px;
	position: relative;
}
.page-hero__inner--narrow { max-width: 740px; }
.page-hero__title {
	margin: 0 0 22px;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 420;
	letter-spacing: -0.02em;
	line-height: 1.08;
}
.page-hero__title em { font-style: italic; color: var(--ds-gold-dark); }
.page-hero__lead {
	font-size: 1.15rem;
	color: var(--ds-text-muted);
	line-height: 1.65;
	margin: 0;
	max-width: 680px;
}

/* -------------------------------------------------------------------------
   12. FILTER TABS / PAGINATION / NEWS TOOLBAR
   ------------------------------------------------------------------------- */
.filter-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 48px;
	flex-wrap: wrap;
	padding-bottom: 4px;
}
.filter-tabs--scroll {
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
	margin-bottom: 0;
}
.filter-tabs--scroll::-webkit-scrollbar { display: none; }

.filter-tab {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	background: #fff;
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-radius-full);
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--ds-text-muted);
	transition: all var(--ds-t-fast) var(--ds-ease);
	white-space: nowrap;
}
.filter-tab:hover {
	color: var(--ds-navy);
	border-color: var(--ds-border-strong);
}
.filter-tab.is-active {
	background: var(--ds-navy);
	color: #fff;
	border-color: var(--ds-navy);
}

.news-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.news-search {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-radius-full);
	padding: 4px 6px 4px 4px;
	transition: border-color var(--ds-t-fast) var(--ds-ease);
	min-width: 280px;
}
.news-search:focus-within { border-color: var(--ds-navy); }
.news-search__input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 10px 14px;
	font-family: inherit;
	font-size: 0.92rem;
	outline: none;
	color: var(--ds-text);
}
.news-search__btn {
	width: 40px;
	height: 40px;
	background: var(--ds-navy);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.news-search__btn svg { width: 18px; height: 18px; }
.news-search__btn:hover { background: var(--ds-navy-soft); }

.pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 56px;
	flex-wrap: wrap;
}
.pagination__item a,
.pagination__item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border-radius: var(--ds-radius-full);
	background: #fff;
	border: 1px solid var(--ds-border);
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--ds-text);
}
.pagination__item a:hover { border-color: var(--ds-navy); color: var(--ds-navy); }
.pagination__item .current {
	background: var(--ds-navy);
	color: #fff;
	border-color: var(--ds-navy);
}

/* -------------------------------------------------------------------------
   13. FEATURED ARTICLE (news page)
   ------------------------------------------------------------------------- */
.featured-article {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: var(--ds-radius-lg);
	overflow: hidden;
	margin-bottom: 56px;
	text-decoration: none;
	color: inherit;
	transition: transform var(--ds-t) var(--ds-ease), box-shadow var(--ds-t) var(--ds-ease);
}
.featured-article:hover {
	transform: translateY(-4px);
	box-shadow: var(--ds-shadow-md);
	color: inherit;
}
.featured-article__media {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--ds-bg-alt);
}
.featured-article__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.featured-article__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.featured-article__placeholder svg { width: 50%; height: auto; opacity: 0.5; }
.featured-article__badge {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 8px 14px;
	background: var(--ds-navy);
	color: #fff;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: var(--ds-radius-full);
}
.featured-article__body {
	padding: 48px 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.featured-article__meta {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 18px;
	font-size: 0.85rem;
	color: var(--ds-text-muted);
}
.featured-article__title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin: 0 0 16px;
	line-height: 1.2;
}
.featured-article__excerpt {
	color: var(--ds-text-muted);
	margin: 0 0 28px;
	line-height: 1.65;
}

/* -------------------------------------------------------------------------
   14. FORMS
   ------------------------------------------------------------------------- */
.ds-form {
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: var(--ds-radius-lg);
	padding: 40px;
	box-shadow: var(--ds-shadow-sm);
}

.ds-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.ds-field {
	margin-bottom: 20px;
	position: relative;
}

.ds-field label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ds-navy);
	margin-bottom: 8px;
	letter-spacing: 0.005em;
}
.ds-field .req { color: var(--ds-gold-dark); margin-left: 2px; }

.ds-field input[type="text"],
.ds-field input[type="email"],
.ds-field input[type="tel"],
.ds-field input[type="number"],
.ds-field input[type="search"],
.ds-field input[type="url"],
.ds-field textarea,
.ds-field select {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid var(--ds-border);
	border-radius: var(--ds-radius-sm);
	background: var(--ds-bg);
	font-family: inherit;
	font-size: 0.97rem;
	color: var(--ds-text);
	transition: border-color var(--ds-t-fast) var(--ds-ease), box-shadow var(--ds-t-fast) var(--ds-ease), background var(--ds-t-fast) var(--ds-ease);
	-webkit-appearance: none;
	appearance: none;
}
.ds-field textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.55;
}
.ds-field select {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231B2A47' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	padding-right: 44px;
}

.ds-field input:focus,
.ds-field textarea:focus,
.ds-field select:focus {
	border-color: var(--ds-navy);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(15,31,61,0.08);
	outline: none;
}

.ds-field--check { margin-bottom: 16px; }

.ds-check {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	cursor: pointer;
	font-size: 0.93rem;
	color: var(--ds-text);
	line-height: 1.55;
}
.ds-check input {
	/* Toegankelijk verborgen: WEL focusbaar en klikbaar, dus browservalidatie werkt.
	   Voorheen stond hier opacity:0 + pointer-events:none, waardoor een 'required'
	   checkbox niet focusbaar was en het formulier stil bleef hangen. */
	position: absolute;
	width: 22px;
	height: 22px;
	margin: 0;
	opacity: 0.0001;
	cursor: pointer;
	z-index: 1;
}
.ds-check__box {
	width: 22px;
	height: 22px;
	border: 1.5px solid var(--ds-border-strong);
	border-radius: 6px;
	background: #fff;
	flex-shrink: 0;
	margin-top: 1px;
	position: relative;
	transition: border-color var(--ds-t-fast) var(--ds-ease), background var(--ds-t-fast) var(--ds-ease);
}
.ds-check__box::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 7px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	transition: transform var(--ds-t-fast) var(--ds-ease);
}
.ds-check input:checked + .ds-check__box {
	background: var(--ds-navy);
	border-color: var(--ds-navy);
}
.ds-check input:checked + .ds-check__box::after { transform: rotate(45deg) scale(1); }
.ds-check input:focus-visible + .ds-check__box {
	box-shadow: 0 0 0 3px rgba(15,31,61,0.18);
}
.ds-check__label a { text-decoration: underline; text-underline-offset: 2px; }

.ds-radio-group {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.ds-radio {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 0.95rem;
}
.ds-radio input { accent-color: var(--ds-navy); }

.ds-form__privacy {
	font-size: 0.82rem;
	color: var(--ds-text-muted);
	margin: 8px 0 24px;
	padding: 14px 16px;
	background: var(--ds-bg-alt);
	border-radius: var(--ds-radius-sm);
	border-left: 3px solid var(--ds-gold);
}

.ds-form__actions {
	margin-top: 8px;
}

.ds-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.ds-form__feedback {
	margin-top: 20px;
	padding: 0;
	font-size: 0.95rem;
}
.ds-form__feedback:not(:empty) {
	padding: 16px 20px;
	border-radius: var(--ds-radius-sm);
}
.ds-form__feedback.is-success {
	background: var(--ds-success-bg);
	color: var(--ds-success);
	border-left: 4px solid var(--ds-success);
}
.ds-form__feedback.is-error {
	background: var(--ds-warning-bg);
	color: var(--ds-warning);
	border-left: 4px solid var(--ds-warning);
}

/* -------------------------------------------------------------------------
   15. PROSE / CONTENT
   ------------------------------------------------------------------------- */
.ds-prose {
	font-size: 1.08rem;
	line-height: 1.78;
	color: var(--ds-text);
	max-width: 720px;
}
.ds-prose h2 {
	font-size: clamp(1.5rem, 2.6vw, 1.9rem);
	margin: 2em 0 0.7em;
}
.ds-prose h3 {
	font-size: 1.3rem;
	margin: 1.6em 0 0.5em;
}
.ds-prose p { margin: 0 0 1.2em; }
.ds-prose ul,
.ds-prose ol {
	padding-left: 1.6em;
	margin: 0 0 1.4em;
}
.ds-prose li { margin-bottom: 0.5em; }
.ds-prose ul li::marker { color: var(--ds-gold); }
.ds-prose a {
	color: var(--ds-navy);
	text-decoration: underline;
	text-decoration-color: var(--ds-gold);
	text-underline-offset: 3px;
	text-decoration-thickness: 2px;
}
.ds-prose a:hover { color: var(--ds-gold-dark); }
.ds-prose blockquote {
	margin: 1.8em 0;
	padding: 24px 28px;
	border-left: 4px solid var(--ds-gold);
	background: var(--ds-bg-alt);
	border-radius: 0 var(--ds-radius-sm) var(--ds-radius-sm) 0;
	font-family: var(--ds-font-display);
	font-size: 1.2rem;
	font-style: italic;
	color: var(--ds-navy);
}
.ds-prose img {
	border-radius: var(--ds-radius);
	margin: 1.6em 0;
}
.ds-prose hr {
	border: none;
	height: 1px;
	background: var(--ds-border);
	margin: 2.4em 0;
}

/* -------------------------------------------------------------------------
   16. SINGLE LAYOUTS (petition, dossier, news article)
   ------------------------------------------------------------------------- */

/* Petition single */
.petition-single {
	padding: 64px 0 96px;
}
.petition-single__head {
	margin-bottom: 48px;
}
.petition-single__meta {
	display: flex;
	gap: 12px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}
.petition-single__title {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	margin: 0 0 24px;
	line-height: 1.1;
	max-width: 900px;
}
.petition-single__summary {
	font-size: 1.18rem;
	color: var(--ds-text-muted);
	line-height: 1.6;
	max-width: 760px;
	margin: 0;
}

.petition-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 64px;
	align-items: start;
}

.petition-block {
	margin-bottom: 48px;
}
.petition-block__title {
	font-size: 1.5rem;
	margin: 0 0 16px;
	position: relative;
	padding-left: 18px;
}
.petition-block__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	bottom: 12px;
	width: 4px;
	background: var(--ds-gold);
	border-radius: 2px;
}

/* Sticky sign card */
.sign-card {
	position: sticky;
	top: 110px;
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: var(--ds-radius-lg);
	padding: 32px;
	box-shadow: var(--ds-shadow-md);
}
.sign-card__top {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--ds-border-soft);
}
.sign-card__count {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 8px;
}
.sign-card__count-value {
	font-family: var(--ds-font-display);
	font-size: 2.5rem;
	font-weight: 500;
	color: var(--ds-navy);
	line-height: 1;
}
.sign-card__count-of {
	color: var(--ds-text-muted);
	font-size: 1rem;
}
.sign-card__label {
	font-size: 0.92rem;
	color: var(--ds-text-muted);
	margin: 0 0 16px;
}
.sign-card__title {
	font-size: 1.15rem;
	margin: 0 0 6px;
}
.sign-card__sub {
	font-size: 0.88rem;
	color: var(--ds-text-muted);
	margin: 0 0 18px;
	line-height: 1.55;
}

.sign-form .ds-field { margin-bottom: 14px; }
.sign-form .ds-field input,
.sign-form .ds-field select { padding: 12px 14px; font-size: 0.92rem; }
.sign-form .ds-field label { font-size: 0.84rem; }
.sign-form .ds-form__privacy {
	margin: 12px 0 16px;
	padding: 12px 14px;
	font-size: 0.78rem;
}

/* Share buttons */
.share-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 32px 0;
	padding: 18px 24px;
	background: var(--ds-bg-alt);
	border-radius: var(--ds-radius);
}
.share-row__label {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--ds-text-muted);
	margin-right: 4px;
}
.share-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--ds-border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ds-navy);
	transition: all var(--ds-t-fast) var(--ds-ease);
}
.share-btn:hover {
	background: var(--ds-navy);
	color: #fff;
	border-color: var(--ds-navy);
	transform: translateY(-2px);
}
.share-btn svg { width: 18px; height: 18px; }

/* Dossier single */
.dossier-single {
	padding: 64px 0 96px;
}
.dossier-single__head {
	max-width: 800px;
	margin: 0 auto 56px;
	text-align: center;
}
.dossier-single__meta {
	justify-content: center;
}
.dossier-section {
	margin-bottom: 48px;
}

.timeline {
	position: relative;
	padding-left: 30px;
	margin: 24px 0 8px;
}
.timeline::before {
	content: "";
	position: absolute;
	top: 8px;
	bottom: 8px;
	left: 7px;
	width: 2px;
	background: var(--ds-border);
}
.timeline__item {
	position: relative;
	padding-bottom: 28px;
}
.timeline__item::before {
	content: "";
	position: absolute;
	left: -27px;
	top: 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--ds-gold);
	box-shadow: 0 0 0 4px var(--ds-gold-tint);
}
.timeline__date {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ds-gold-dark);
	margin-bottom: 4px;
}
.timeline__text { margin: 0; color: var(--ds-text); }

/* News single */
.article-single {
	padding: 56px 0 80px;
}
.article-single__head {
	max-width: 820px;
	margin: 0 auto 48px;
	text-align: center;
}
.article-single__meta {
	display: flex;
	gap: 18px;
	justify-content: center;
	align-items: center;
	margin-bottom: 22px;
	font-size: 0.9rem;
	color: var(--ds-text-muted);
	flex-wrap: wrap;
}
.article-single__title {
	font-size: clamp(2rem, 4.5vw, 3rem);
	margin: 0 0 22px;
	line-height: 1.12;
}
.article-single__lead {
	font-size: 1.2rem;
	color: var(--ds-text-muted);
	line-height: 1.6;
	margin: 0;
}
.article-single__media {
	max-width: 1100px;
	margin: 0 auto 56px;
	border-radius: var(--ds-radius-lg);
	overflow: hidden;
	aspect-ratio: 16/9;
}
.article-single__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-single__body {
	max-width: 720px;
	margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
	font-size: 0.85rem;
	color: var(--ds-text-muted);
	margin-bottom: 24px;
}
.breadcrumbs a { color: var(--ds-text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ds-navy); }
.breadcrumbs__sep { margin: 0 8px; opacity: 0.5; }
.breadcrumbs__current { color: var(--ds-navy); font-weight: 500; }

/* -------------------------------------------------------------------------
   17. ABOUT PAGE — pillars, values, quote
   ------------------------------------------------------------------------- */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.pillar-card {
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: var(--ds-radius);
	padding: 36px 32px;
	transition: transform var(--ds-t) var(--ds-ease), box-shadow var(--ds-t) var(--ds-ease);
}
.pillar-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--ds-shadow-md);
}
.pillar-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--ds-gold-tint);
	color: var(--ds-gold-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}
.pillar-card__icon svg { width: 28px; height: 28px; }
.pillar-card__title {
	font-size: 1.2rem;
	margin: 0 0 10px;
}
.pillar-card__text {
	color: var(--ds-text-muted);
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.6;
}

.values-list {
	display: flex;
	flex-direction: column;
	max-width: 880px;
	margin: 0 auto;
}
.value-row {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 32px;
	padding: 28px 0;
	border-bottom: 1px solid var(--ds-border);
	align-items: start;
}
.value-row:last-child { border-bottom: none; }
.value-row__number {
	font-family: var(--ds-font-display);
	font-size: 2.4rem;
	font-weight: 400;
	color: var(--ds-gold);
	line-height: 1;
}
.value-row__title {
	margin: 0 0 6px;
	font-size: 1.3rem;
}
.value-row__body p {
	margin: 0;
	color: var(--ds-text-muted);
	line-height: 1.65;
}

.quote-block {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 56px 32px;
	background: var(--ds-cream);
	border-radius: var(--ds-radius-lg);
	border: 1px solid var(--ds-border-soft);
	position: relative;
}
.quote-block__mark {
	width: 48px;
	height: 48px;
	color: var(--ds-gold);
	margin: 0 auto 18px;
}
.quote-block__text {
	font-family: var(--ds-font-display);
	font-size: clamp(1.3rem, 2.4vw, 1.7rem);
	font-style: italic;
	color: var(--ds-navy);
	line-height: 1.45;
	margin: 0 0 22px;
}
.quote-block__attr {
	font-size: 0.92rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--ds-gold-dark);
	margin: 0;
}

/* -------------------------------------------------------------------------
   18. CONTACT PAGE
   ------------------------------------------------------------------------- */
.contact-layout {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: start;
}

.contact-aside {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 110px;
}

.info-card {
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: var(--ds-radius);
	padding: 28px;
	box-shadow: var(--ds-shadow-sm);
}
.info-card--gold {
	background: linear-gradient(135deg, var(--ds-gold-tint) 0%, #FBF3DC 100%);
	border-color: var(--ds-gold-soft);
}
.info-card__title {
	font-size: 1.15rem;
	margin: 0 0 16px;
}
.info-card__text {
	color: var(--ds-text-muted);
	margin: 0 0 22px;
	font-size: 0.96rem;
	line-height: 1.6;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-top: 1px solid var(--ds-border-soft);
	color: var(--ds-text);
}
.contact-link:first-of-type { border-top: none; padding-top: 0; }
.contact-link:hover { color: var(--ds-navy); }
.contact-link__icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--ds-bg-alt);
	color: var(--ds-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.contact-link__icon svg { width: 18px; height: 18px; }
.contact-link small {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ds-text-muted);
	font-weight: 600;
	margin-bottom: 2px;
}
.contact-link strong {
	font-weight: 600;
	font-size: 0.98rem;
	color: var(--ds-navy);
}

/* -------------------------------------------------------------------------
   19. MELDPUNT PAGE
   ------------------------------------------------------------------------- */
.meldpunt-layout {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: start;
}
.meldpunt-aside {
	position: sticky;
	top: 110px;
}
.process-card {
	background: var(--ds-navy);
	color: #fff;
	border-radius: var(--ds-radius-lg);
	padding: 36px 32px;
	box-shadow: var(--ds-shadow-md);
	overflow: hidden;
	position: relative;
}
.process-card::after {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(202,160,82,0.18) 0%, transparent 70%);
	pointer-events: none;
}
.process-card__title {
	color: #fff;
	font-size: 1.4rem;
	margin: 0 0 22px;
	position: relative;
}
.process-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.process-card__list li {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	align-items: start;
}
.process-card__list li:last-child { border-bottom: none; }
.process-card__step {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ds-gold);
	color: var(--ds-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
	flex-shrink: 0;
}
.process-card__list strong {
	display: block;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 2px;
}
.process-card__list p {
	margin: 0;
	color: rgba(255,255,255,0.75);
	font-size: 0.88rem;
	line-height: 1.5;
}

/* -------------------------------------------------------------------------
   20. DISAGREE SECTION (home)
   ------------------------------------------------------------------------- */
.disagree {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.disagree__visual {
	position: relative;
	aspect-ratio: 1/1;
	max-width: 480px;
	margin: 0 auto;
}

/* -------------------------------------------------------------------------
   21. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
	background: var(--ds-navy);
	color: rgba(255,255,255,0.7);
	padding: 80px 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand__logo {
	display: inline-block;
	margin-bottom: 18px;
}
.footer-brand__logo img {
	height: 56px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}
.footer-brand__slogan {
	font-family: var(--ds-font-display);
	font-size: 1.25rem;
	font-style: italic;
	color: var(--ds-gold-soft);
	margin: 0 0 14px;
}
.footer-brand__text {
	color: rgba(255,255,255,0.65);
	font-size: 0.94rem;
	line-height: 1.6;
	margin: 0 0 22px;
	max-width: 340px;
}
.footer-social {
	display: flex;
	gap: 10px;
}
.footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.85);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all var(--ds-t-fast) var(--ds-ease);
}
.footer-social a:hover {
	background: var(--ds-gold);
	color: var(--ds-navy);
	border-color: var(--ds-gold);
	transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col__title {
	font-family: var(--ds-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ds-gold-soft);
	margin: 0 0 18px;
}
.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-col a {
	color: rgba(255,255,255,0.75);
	font-size: 0.93rem;
	transition: color var(--ds-t-fast) var(--ds-ease);
}
.footer-col a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 28px 0;
	gap: 24px;
	flex-wrap: wrap;
}
.footer-bottom__copy {
	font-size: 0.86rem;
	color: rgba(255,255,255,0.55);
}
.footer-bottom__credit {
	display: inline-block;
	margin-left: 4px;
	padding-left: 12px;
	border-left: 1px solid rgba(255,255,255,0.18);
	color: rgba(255,255,255,0.5);
}
@media (max-width: 600px) {
	.footer-bottom__credit {
		display: block;
		margin: 8px 0 0;
		padding: 0;
		border-left: 0;
	}
}
.footer-credit-link {
	color: var(--ds-gold-soft);
	text-decoration: none;
	font-weight: 600;
	background-image: linear-gradient(var(--ds-gold), var(--ds-gold));
	background-size: 0% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size .3s ease, color .2s ease;
}
.footer-credit-link:hover,
.footer-credit-link:focus-visible {
	color: var(--ds-gold);
	background-size: 100% 1px;
}
.footer-bottom__pillars {
	display: flex;
	gap: 24px;
	font-size: 0.86rem;
	color: rgba(255,255,255,0.65);
	flex-wrap: wrap;
}
.footer-bottom__pillars span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.footer-bottom__pillars span::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--ds-gold);
}

/* -------------------------------------------------------------------------
   22. CTA FINAL SECTION
   ------------------------------------------------------------------------- */
.cta-final {
	padding: 96px 0;
	background: var(--ds-navy);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.cta-final__decor {
	position: absolute;
	top: 50%;
	right: -10%;
	transform: translateY(-50%);
	width: 720px;
	height: 720px;
	border-radius: 50%;
	border: 1px solid rgba(202,160,82,0.18);
	pointer-events: none;
}
.cta-final__decor::before,
.cta-final__decor::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 1px solid rgba(202,160,82,0.14);
}
.cta-final__decor::before { width: 520px; height: 520px; }
.cta-final__decor::after { width: 320px; height: 320px; border-color: rgba(202,160,82,0.22); }

.cta-final__inner {
	position: relative;
	max-width: 700px;
}
.cta-final h2 {
	color: #fff;
	font-size: clamp(2rem, 4.4vw, 3rem);
	margin: 0 0 20px;
	line-height: 1.1;
}
.cta-final h2 em { color: var(--ds-gold-soft); }
.cta-final p {
	color: rgba(255,255,255,0.78);
	font-size: 1.1rem;
	margin: 0 0 32px;
	line-height: 1.65;
	max-width: 560px;
}

/* -------------------------------------------------------------------------
   23. 404 / EMPTY STATES
   ------------------------------------------------------------------------- */
.error-404 {
	padding: 120px 0;
	text-align: center;
}
.error-404__code {
	font-family: var(--ds-font-display);
	font-size: clamp(6rem, 14vw, 10rem);
	font-weight: 400;
	color: var(--ds-gold);
	line-height: 1;
	margin: 0 0 20px;
	letter-spacing: -0.04em;
}
.error-404__title {
	margin: 0 0 16px;
}
.error-404__text {
	max-width: 540px;
	margin: 0 auto 36px;
	color: var(--ds-text-muted);
	font-size: 1.08rem;
}
.error-404 .ds-form__search {
	max-width: 480px;
	margin: 0 auto 32px;
}

.empty-state {
	text-align: center;
	padding: 80px 32px;
	background: #fff;
	border-radius: var(--ds-radius-lg);
	border: 1px solid var(--ds-border-soft);
}
.empty-state__icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	background: var(--ds-gold-tint);
	color: var(--ds-gold-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 22px;
}
.empty-state__icon svg { width: 36px; height: 36px; }
.empty-state__title {
	margin: 0 0 10px;
	font-size: 1.4rem;
}
.empty-state__text {
	color: var(--ds-text-muted);
	margin: 0 0 26px;
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

/* -------------------------------------------------------------------------
   24. RELATED POSTS
   ------------------------------------------------------------------------- */
.related-posts {
	padding: 80px 0;
	background: var(--ds-bg-alt);
}
.related-posts__head {
	margin-bottom: 40px;
	text-align: center;
}

/* -------------------------------------------------------------------------
   25. SCROLL REVEAL ANIMATIONS
   ------------------------------------------------------------------------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.85s var(--ds-ease), transform 0.85s var(--ds-ease);
	will-change: opacity, transform;
}
[data-reveal].is-revealed {
	opacity: 1;
	transform: translateY(0);
}

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

/* -------------------------------------------------------------------------
   26. WORDPRESS CORE / GUTENBERG SUPPORT
   ------------------------------------------------------------------------- */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.wp-caption {
	max-width: 100%;
}
.wp-caption-text,
.wp-block-image figcaption {
	font-size: 0.86rem;
	color: var(--ds-text-muted);
	text-align: center;
	margin-top: 8px;
}

/* Admin bar adjustment */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}

/* -------------------------------------------------------------------------
   27. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1100px) {
	.hero__inner { grid-template-columns: 1fr; gap: 56px; }
	.hero__visual { max-width: 520px; }
	.petition-layout { grid-template-columns: 1fr; }
	.sign-card { position: static; }
	.contact-layout,
	.meldpunt-layout { grid-template-columns: 1fr; }
	.contact-aside,
	.meldpunt-aside { position: static; }
	.disagree { grid-template-columns: 1fr; gap: 48px; }
	.featured-article { grid-template-columns: 1fr; }
	.featured-article__media { aspect-ratio: 16/9; }
	.featured-article__body { padding: 36px 32px; }
	.pillar-grid { grid-template-columns: repeat(2, 1fr); }
	.promise-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
	.site-nav,
	.site-header__cta { display: none; }
	.burger { display: inline-flex; }
	.section { padding: 72px 0; }
	.section--alt { padding: 72px 0; }
	.grid--3,
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
	.footer-brand { grid-column: 1 / -1; }
	.steps { grid-template-columns: 1fr; gap: 32px; }
	.steps::before { display: none; }
	.promise-grid { grid-template-columns: repeat(2, 1fr); }
	.ds-form { padding: 28px; }
	.ds-form__row { grid-template-columns: 1fr; gap: 0; }
	.news-toolbar { flex-direction: column; align-items: stretch; }
	.news-search { width: 100%; }
}

@media (max-width: 600px) {
	body { font-size: 16px; }
	.container { padding: 0 20px; }
	.section,
	.section--alt { padding: 56px 0; }
	.hero { padding: 56px 0 72px; }
	.page-hero { padding: 48px 0 40px; }
	.page-hero--lg { padding: 60px 0 48px; }
	.grid--2,
	.grid--3,
	.grid--4 { grid-template-columns: 1fr; }
	.pillar-grid { grid-template-columns: 1fr; }
	.promise-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.footer-brand { grid-column: auto; }
	.ds-form { padding: 24px 20px; }
	.cta-final { padding: 72px 0; }
	.btn-group { flex-direction: column; align-items: stretch; }
	.btn-group .btn { width: 100%; }
	.featured-article__body { padding: 28px 24px; }
	.value-row { grid-template-columns: 60px 1fr; gap: 18px; }
	.value-row__number { font-size: 1.8rem; }
	.share-row { flex-wrap: wrap; }
	.eyebrow { padding-left: 0; }
	.eyebrow::before { display: none; }
}

/* =========================================================================
   v1.1 PREMIUM UPGRADE — Hero photo, carillon, empty states, refinements
   ========================================================================= */

/* ---------- Hero photo background (optional) ---------- */
.hero {
	position: relative;
	isolation: isolate;
}

.hero__photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -2;
}

.hero__photo-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(250,247,241,0.88) 60%, rgba(247,245,239,0.95) 100%),
		linear-gradient(135deg, rgba(15,31,61,0.12) 0%, rgba(202,160,82,0.08) 100%);
	z-index: -1;
}

.hero--has-image .hero__bg { opacity: 0.35; }

/* ---------- Hero visual: carillon achter stats-card ---------- */
.hero__visual {
	position: relative;
	min-height: 480px;
}

.hero__art {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	max-width: 580px;
	z-index: 0;
	pointer-events: none;
	opacity: 0.65;
	filter: saturate(0.92);
}

.hero__art .carillon-svg {
	width: 100%;
	height: auto;
	display: block;
}

.hero__visual .stats-card {
	position: relative;
	z-index: 2;
	margin-top: 20px;
	max-width: 460px;
	margin-left: auto;
}

/* Stats card placeholder state ("In opbouw") */
.stats-card__value--placeholder {
	font-family: var(--ds-font-body);
	font-size: 0.92rem !important;
	font-weight: 500;
	color: var(--ds-text-muted);
	font-style: italic;
	letter-spacing: 0.01em;
	display: flex;
	align-items: center;
	height: 2.1rem;
}
.stats-card__value--placeholder span {
	display: inline-block;
	padding: 4px 12px;
	background: var(--ds-bg-alt);
	border-radius: var(--ds-radius-full);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
}

/* ---------- Section head with right-side action ---------- */
.section-head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	max-width: none;
	margin-bottom: 56px;
}
.section-head--row .section-head__left {
	max-width: 720px;
	flex: 1 1 480px;
}
.section-head--row .section-head__left .eyebrow,
.section-head--row .section-head__left .section-head__title,
.section-head--row .section-head__left .section-head__lead {
	margin-bottom: 14px;
}
.section-head--row .section-head__left .section-head__lead { margin-bottom: 0; }
.section-head__action { flex-shrink: 0; }

@media (max-width: 720px) {
	.section-head--row { flex-direction: column; align-items: flex-start; }
	.section-head__action { width: auto; }
}

/* ---------- Empty state — prominent variant ---------- */
.empty-state--prominent {
	padding: 96px 48px;
	background: linear-gradient(180deg, var(--ds-cream) 0%, #FBF8F0 100%);
	border: 1px dashed var(--ds-border-strong);
	max-width: 800px;
	margin: 0 auto;
}
.empty-state--prominent .empty-state__icon {
	width: 88px;
	height: 88px;
	border-radius: 22px;
	background: rgba(202,160,82,0.16);
}
.empty-state--prominent .empty-state__icon svg { width: 42px; height: 42px; }
.empty-state--prominent .empty-state__title {
	font-size: 1.6rem;
	margin: 0 0 14px;
}
.empty-state--prominent .empty-state__text {
	font-size: 1.05rem;
	max-width: 560px;
}

/* ---------- Disagree section refinements ---------- */
.disagree__copy { max-width: 540px; }
.disagree__text {
	font-size: 1.08rem;
	color: var(--ds-text-muted);
	line-height: 1.75;
	margin: 0 0 1.2em;
}

/* ---------- CTA Final refinements ---------- */
.cta-final__eyebrow {
	color: var(--ds-gold-soft) !important;
}
.cta-final__eyebrow::before {
	background: var(--ds-gold-soft);
}

/* ---------- Topics grid spacing ---------- */
.topics-grid {
	margin-bottom: 8px;
}

/* ---------- Premium polish: bigger sections, more whitespace on desktop ---------- */
@media (min-width: 1024px) {
	.section,
	.section--alt {
		padding: 112px 0;
	}
	.section--lg { padding: 144px 0; }
	.hero { padding: 100px 0 120px; }
	.page-hero { padding: 96px 0 80px; }
	.page-hero--lg { padding: 120px 0 96px; }
}

/* ---------- Card hover refinement — gold accent ---------- */
.card {
	position: relative;
	overflow: hidden;
}
.card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ds-gold) 0%, var(--ds-gold-soft) 100%);
	opacity: 0;
	transform: translateY(-100%);
	transition: opacity var(--ds-t) var(--ds-ease), transform var(--ds-t) var(--ds-ease);
}
.card:hover::after {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Button refinements — premium sheen ---------- */
.btn--primary,
.btn--gold {
	position: relative;
	overflow: hidden;
}
.btn--primary::before,
.btn--gold::before {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
	transform: skewX(-20deg);
	transition: left var(--ds-t-slow) var(--ds-ease);
	pointer-events: none;
}
.btn--primary:hover::before,
.btn--gold:hover::before {
	left: 120%;
}

/* ---------- Header active state — premium underline ---------- */
.site-nav .current-menu-item > a,
.site-nav .current-menu-parent > a {
	color: var(--ds-navy);
	font-weight: 600;
}

/* ---------- Footer refinements ---------- */
.site-footer {
	padding-top: 96px;
	background: linear-gradient(180deg, var(--ds-navy) 0%, var(--ds-navy-dark) 100%);
}
.footer-grid {
	gap: 64px;
	padding-bottom: 64px;
}
.footer-bottom {
	padding: 32px 0;
}

/* ---------- Form input focus glow (premium) ---------- */
.ds-field input:focus,
.ds-field textarea:focus,
.ds-field select:focus {
	border-color: var(--ds-navy);
	background: #fff;
	box-shadow:
		0 0 0 4px rgba(15,31,61,0.06),
		0 0 0 1px rgba(202,160,82,0.18);
}

/* ---------- Sign card focus state ---------- */
.sign-card {
	box-shadow:
		0 4px 14px rgba(15,31,61,0.06),
		0 24px 70px rgba(15,31,61,0.10);
	border: 1px solid var(--ds-border-soft);
}

/* ---------- Page hero with subtle background gradient ---------- */
.page-hero {
	background:
		linear-gradient(180deg, #ffffff 0%, var(--ds-bg-alt) 100%),
		radial-gradient(ellipse at top right, rgba(202,160,82,0.06) 0%, transparent 60%);
	position: relative;
	overflow: hidden;
}
.page-hero::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(202,160,82,0.08) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }

/* ---------- Stagger animation refinement ---------- */
[data-reveal] {
	transition: opacity 0.95s var(--ds-ease), transform 0.95s var(--ds-ease);
}

/* ---------- Logo height refinement ---------- */
.site-logo img {
	height: 54px;
	max-height: 54px;
	width: auto;
	object-fit: contain;
}
.site-header.is-scrolled .site-logo img {
	height: 42px;
}
@media (max-width: 720px) {
	.site-logo img { height: 44px; }
	.site-header.is-scrolled .site-logo img { height: 38px; }
}

/* ---------- Footer logo — niet invert wanneer logo al donker is, gewoon op gepast formaat ---------- */
.footer-brand__logo img {
	height: 64px;
	max-height: 64px;
	width: auto;
	filter: none;
	opacity: 1;
	background: rgba(255,255,255,0.96);
	padding: 8px 14px;
	border-radius: var(--ds-radius-sm);
}

/* ---------- Responsive carillon ---------- */
@media (max-width: 1100px) {
	.hero__visual { min-height: 420px; }
	.hero__art { max-width: 480px; }
}
@media (max-width: 720px) {
	.hero__art {
		opacity: 0.4;
		max-width: 380px;
		top: 20%;
	}
	.hero__visual {
		min-height: auto;
	}
	.hero__visual .stats-card {
		margin-top: 40px;
		margin-left: 0;
	}
}

/* =========================================================================
   v2.0 NEXT-LEVEL UPGRADE — RED accent, carillon hero, editorial, platform
   ========================================================================= */

:root {
	/* RED accent — voor stem-/spraak-/actie-elementen */
	--ds-red: #B23030;
	--ds-red-dark: #8B2424;
	--ds-red-soft: #E8B0B0;
	--ds-red-tint: #FFF6F4;

	/* Drachten Spreekt brand huiskleur palet (uitbreidend) */
	--ds-navy: #0F1F3D;
	--ds-navy-dark: #08152D;
	--ds-gold: #CAA052;
	--ds-gold-soft: #E2C68B;
	--ds-cream: #FAF7F1;
	--ds-bg-alt: #F4F1EA;
	--ds-text: #17233C;
	--ds-text-muted: #5A6B86;
	--ds-border-soft: #E5E8EE;
	--ds-border-strong: #D5DAE3;

	/* Status colors — uitgebreid */
	--ds-status-active: #2F8F5C;
	--ds-status-active-bg: #E8F5EE;
	--ds-status-investigating: #C77B17;
	--ds-status-investigating-bg: #FBF1E0;
	--ds-status-closed: #5A6B86;
	--ds-status-closed-bg: #EEF1F5;
}

/* ---------- New hero editorial — carillon photo prominent ---------- */
.hero--editorial {
	padding: 64px 0 96px;
	position: relative;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.hero--editorial {
		padding: 88px 0 120px;
	}
}

.hero--editorial .hero__inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 80px;
	align-items: center;
	min-height: 560px;
}

@media (max-width: 1024px) {
	.hero--editorial .hero__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

.hero__bg-decor {
	position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero__bg-decor svg { width: 100%; height: 100%; }

.hero__copy {
	max-width: 560px;
}

/* Hero photo with carillon */
.hero__photo-wrap {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	box-shadow:
		0 4px 18px rgba(15, 31, 61, 0.08),
		0 28px 80px rgba(15, 31, 61, 0.14);
	aspect-ratio: 16 / 11;
	background: var(--ds-bg-alt);
	transform-origin: right center;
}

.hero__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--ds-hero-focus, center);
	display: block;
	transition: transform 1.4s var(--ds-ease, cubic-bezier(.2,.7,.2,1));
}

.hero__photo-wrap:hover .hero__photo-img {
	transform: scale(1.03);
}

.hero__photo-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(15, 31, 61, 0) 0%, rgba(15, 31, 61, 0.20) 100%),
		linear-gradient(135deg, rgba(202, 160, 82, 0.10) 0%, transparent 50%, rgba(178, 48, 48, 0.08) 100%);
	opacity: calc(0.5 + 0.5 * var(--ds-overlay, 0.35));
	pointer-events: none;
}

.hero__photo-caption {
	position: absolute;
	bottom: 14px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(15, 31, 61, 0.78);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	border-radius: 999px;
	text-transform: uppercase;
}

/* Stats card "floating" — overlapping the photo bottom on desktop */
.stats-card--floating {
	margin-top: -42px;
	margin-left: -24px;
	max-width: 440px;
	z-index: 2;
	position: relative;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
}

@media (max-width: 1024px) {
	.stats-card--floating {
		margin: 24px auto 0;
		max-width: 100%;
		width: 100%;
	}
}

/* Trust row updates */
.hero__trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	margin-top: 18px;
}
.hero__trust-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
	color: var(--ds-text-muted);
	font-weight: 500;
}

/* ---------- Editorial grid: 1 lead + 3 small ---------- */
.editorial-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 36px;
}
@media (max-width: 1024px) {
	.editorial-grid {
		grid-template-columns: 1fr;
	}
}
.editorial-grid__rest {
	display: grid;
	gap: 18px;
}
.editorial-grid__rest .card {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 0;
	overflow: hidden;
}
.editorial-grid__rest .card__media {
	aspect-ratio: 1 / 1;
	min-height: 100%;
}
.editorial-grid__rest .card__body {
	padding: 18px 20px;
}
.editorial-grid__rest .card__excerpt {
	display: none;
}
.editorial-grid__rest .card__title {
	font-size: 1.06rem;
}
@media (max-width: 580px) {
	.editorial-grid__rest .card {
		grid-template-columns: 1fr;
	}
	.editorial-grid__rest .card__media {
		aspect-ratio: 16 / 9;
	}
}

/* ---------- Lead card (groot, editorial) ---------- */
.lead-card {
	display: grid;
	grid-template-rows: auto 1fr;
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(15, 31, 61, 0.04), 0 18px 50px rgba(15, 31, 61, 0.08);
	transition: transform .3s var(--ds-ease, cubic-bezier(.2,.7,.2,1)), box-shadow .3s var(--ds-ease);
	height: 100%;
}
.lead-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 18px rgba(15, 31, 61, 0.08), 0 32px 80px rgba(15, 31, 61, 0.12);
}
.lead-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--ds-bg-alt);
}
.lead-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 1s var(--ds-ease, cubic-bezier(.2,.7,.2,1));
}
.lead-card:hover .lead-card__media img {
	transform: scale(1.04);
}
.lead-card__placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	color: var(--ds-border-strong);
}
.lead-card__type {
	position: absolute;
	top: 16px;
	left: 16px;
	display: inline-block;
	padding: 5px 14px;
	background: var(--ds-red);
	color: #fff;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(178, 48, 48, 0.30);
}
.lead-card__body {
	padding: 28px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.lead-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.lead-card__title {
	font-family: var(--ds-font-heading, 'Fraunces', serif);
	font-size: clamp(1.4rem, 2.2vw, 1.85rem);
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: var(--ds-navy);
	margin: 0;
}
.lead-card__title a {
	color: inherit;
	text-decoration: none;
}
.lead-card__title a:hover {
	color: var(--ds-red);
}
.lead-card__excerpt {
	color: var(--ds-text-muted);
	line-height: 1.65;
	margin: 0;
}
.lead-card__progress {
	margin-top: 4px;
}
.lead-card__footer {
	margin-top: auto;
	padding-top: 6px;
}

/* ---------- Cards small: type-chip on photo ---------- */
.card__type-chip {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-block;
	padding: 4px 10px;
	background: rgba(15, 31, 61, 0.86);
	backdrop-filter: blur(6px);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-radius: 999px;
}

/* ---------- Status badges — updated palette ---------- */
.badge--actief,
.badge--actieve-petitie {
	background: var(--ds-status-active-bg);
	color: var(--ds-status-active);
}
.badge--in-onderzoek,
.badge--wordt-beoordeeld {
	background: var(--ds-status-investigating-bg);
	color: var(--ds-status-investigating);
}
.badge--gesloten,
.badge--afgerond {
	background: var(--ds-status-closed-bg);
	color: var(--ds-status-closed);
}
.badge--nieuwe-melding {
	background: var(--ds-red-tint);
	color: var(--ds-red);
}
.badge--in-gesprek {
	background: #EEF4FB;
	color: #2B5D8E;
}
.badge--reactie-gevraagd {
	background: #FCF4D8;
	color: #8B6700;
}
.badge--wijk {
	background: #F3F0EA;
	color: var(--ds-navy);
	border: 1px solid var(--ds-border-soft);
}

/* ---------- Platform flow section ---------- */
.section--flow {
	background: linear-gradient(180deg, var(--ds-bg-alt) 0%, #F8F5EE 100%);
}
.platform-flow {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	counter-reset: flow;
}
@media (max-width: 1024px) {
	.platform-flow { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
	.platform-flow { grid-template-columns: 1fr; }
}
.platform-flow__step {
	position: relative;
	padding: 28px 24px;
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: 18px;
	transition: transform .3s var(--ds-ease, cubic-bezier(.2,.7,.2,1)), box-shadow .3s var(--ds-ease);
}
.platform-flow__step:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 50px rgba(15, 31, 61, 0.08);
}
.platform-flow__num {
	font-family: var(--ds-font-heading, 'Fraunces', serif);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ds-red);
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}
.platform-flow__icon {
	width: 44px;
	height: 44px;
	border-radius: 11px;
	background: var(--ds-red-tint);
	color: var(--ds-red);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.platform-flow__icon svg { width: 22px; height: 22px; }
.platform-flow__step h3 {
	font-size: 1.08rem;
	margin: 0 0 8px;
	color: var(--ds-navy);
}
.platform-flow__step p {
	font-size: 0.94rem;
	color: var(--ds-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* Connecting line between flow steps */
@media (min-width: 1024px) {
	.platform-flow__step::after {
		content: "";
		position: absolute;
		top: 50%;
		right: -26px;
		width: 26px;
		height: 2px;
		background: linear-gradient(90deg, var(--ds-gold) 0%, transparent 100%);
		opacity: 0.4;
	}
	.platform-flow__step:last-child::after {
		display: none;
	}
}

/* ---------- Quote block (replaces verbose disagree) ---------- */
.quote-block {
	text-align: center;
	padding: 56px 0;
	position: relative;
}
.quote-block__mark {
	display: block;
	margin: 0 auto 24px;
}
.quote-block__text {
	font-family: var(--ds-font-heading, 'Fraunces', serif);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 1.3;
	color: var(--ds-navy);
	margin: 0 0 20px;
	letter-spacing: -0.01em;
	font-weight: 400;
}
.quote-block__sub {
	font-size: 1.05rem;
	color: var(--ds-text-muted);
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.65;
}

/* ---------- News featured (large) ---------- */
.news-featured {
	margin-bottom: 56px;
}
.news-featured-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	background: #fff;
	border: 1px solid var(--ds-border-soft);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(15, 31, 61, 0.04), 0 18px 50px rgba(15, 31, 61, 0.08);
}
@media (max-width: 880px) {
	.news-featured-card { grid-template-columns: 1fr; }
}
.news-featured-card__media {
	position: relative;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: var(--ds-bg-alt);
	display: block;
}
.news-featured-card__media img {
	width: 100%; height: 100%; object-fit: cover;
}
.news-featured-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 5px 14px;
	background: var(--ds-gold);
	color: var(--ds-navy);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 999px;
}
.news-featured-card__body {
	padding: 32px 36px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
}
.news-featured-card__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0.84rem;
	color: var(--ds-text-muted);
}
.news-featured-card__meta time {
	font-style: italic;
}
.news-featured-card__title {
	font-family: var(--ds-font-heading, 'Fraunces', serif);
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	line-height: 1.25;
	color: var(--ds-navy);
	margin: 0;
}
.news-featured-card__title a { color: inherit; text-decoration: none; }
.news-featured-card__title a:hover { color: var(--ds-red); }
.news-featured-card__excerpt {
	color: var(--ds-text-muted);
	line-height: 1.65;
	margin: 0;
}
.link-arrow--lg {
	font-size: 1.02rem;
	font-weight: 600;
	color: var(--ds-navy);
	text-decoration: none;
}
.link-arrow--lg:hover {
	color: var(--ds-red);
}
.link-arrow--lg span {
	transition: transform .2s ease;
	display: inline-block;
}
.link-arrow--lg:hover span {
	transform: translateX(4px);
}

/* ---------- Voortgang timeline ---------- */
.voortgang {
	padding: 32px 0 16px;
}
.voortgang__head {
	margin-bottom: 32px;
}
.voortgang__title {
	font-family: var(--ds-font-heading, 'Fraunces', serif);
	font-size: 1.6rem;
	color: var(--ds-navy);
	margin: 8px 0 0;
}
.voortgang__list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}
.voortgang__list::before {
	content: "";
	position: absolute;
	left: 11px;
	top: 18px;
	bottom: 18px;
	width: 2px;
	background: linear-gradient(180deg, var(--ds-gold) 0%, var(--ds-border-soft) 100%);
}
.voortgang__item {
	position: relative;
	padding: 4px 0 28px 44px;
}
.voortgang__item:last-child {
	padding-bottom: 0;
}
.voortgang__marker {
	position: absolute;
	left: 4px;
	top: 4px;
}
.voortgang__dot {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--ds-gold);
	box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--ds-gold-soft);
}
.voortgang__date {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ds-red);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.voortgang__entry-title {
	font-size: 1.06rem;
	color: var(--ds-navy);
	margin: 0 0 6px;
	font-weight: 600;
	font-family: var(--ds-font-body, 'Inter', sans-serif);
}
.voortgang__body {
	color: var(--ds-text-muted);
	font-size: 0.95rem;
	line-height: 1.65;
	margin: 0;
}

/* ---------- RED accent in active menu, buttons, hover ---------- */
.site-nav .current-menu-item > a::after,
.site-nav .current-menu-parent > a::after {
	background: var(--ds-red);
}
.site-nav a:hover::after {
	background: var(--ds-red);
}

/* CTA-final eyebrow in red instead of gold */
.cta-final__eyebrow {
	color: var(--ds-gold-soft) !important;
}

/* ---------- Premium animations: counter, progress ---------- */
[data-counter] {
	font-variant-numeric: tabular-nums;
}

.progress__fill {
	transition: width 1.2s var(--ds-ease, cubic-bezier(.2,.7,.2,1));
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------- Section--actueel: slightly tighter padding ---------- */
.section--actueel {
	padding-top: 80px;
}
@media (min-width: 1024px) {
	.section--actueel {
		padding-top: 96px;
	}
}

/* ---------- Performance: prevent layout shift on images ---------- */
img {
	max-width: 100%;
	height: auto;
}
.card__media img,
.lead-card__media img,
.news-featured-card__media img,
.hero__photo-img {
	aspect-ratio: attr(width) / attr(height);
}


/* ===========================================================================
   v3 — Nav dropdowns
   =========================================================================== */
.site-nav__list { display:flex; gap:8px; list-style:none; padding:0; margin:0; align-items:center; }
.site-nav__list > li { position:relative; }
.site-nav__list > li > a { position:relative; display:flex; align-items:center; gap:4px; padding:10px 14px; color:var(--ds-navy); text-decoration:none; font-weight:500; border-radius:8px; transition:color .15s ease, background .15s ease; }
.site-nav__list > li > a:hover,
.site-nav__list > li > a:focus-visible { color:var(--ds-red); background:var(--ds-bg); }
.site-nav__list > li.current-menu-item > a,
.site-nav__list > li.current-menu-parent > a { color:var(--ds-red); }
.site-nav__list > li.current-menu-item > a::after,
.site-nav__list > li.current-menu-parent > a::after { content:""; position:absolute; left:14px; right:14px; bottom:4px; height:2px; background:var(--ds-red); border-radius:2px; }
.site-nav__chevron { font-size:0.7em; opacity:0.7; transition:transform .2s ease; }
.site-nav__list > li.has-children:hover .site-nav__chevron,
.site-nav__list > li.has-children > a[aria-expanded="true"] .site-nav__chevron { transform:rotate(180deg); }

.site-nav__list .sub-menu,
.site-nav__list .site-nav__dropdown {
	position:absolute; top:calc(100% + 4px); left:0; min-width:240px;
	background:#fff; border:1px solid var(--ds-border); border-radius:10px;
	box-shadow:0 12px 32px rgba(15,31,61,0.10);
	padding:8px; list-style:none; margin:0;
	opacity:0; visibility:hidden; transform:translateY(-4px);
	transition:opacity .18s ease, transform .18s ease, visibility .18s;
	z-index:50;
}
.site-nav__list > li.has-children:hover .sub-menu,
.site-nav__list > li.has-children:focus-within .sub-menu,
.site-nav__list > li.has-children > a[aria-expanded="true"] + .sub-menu {
	opacity:1; visibility:visible; transform:translateY(0);
}
.site-nav__list .sub-menu li a { display:block; padding:9px 12px; color:var(--ds-navy); text-decoration:none; border-radius:6px; font-size:0.95em; transition:background .15s ease, color .15s ease; }
.site-nav__list .sub-menu li a:hover,
.site-nav__list .sub-menu li a:focus-visible { background:var(--ds-bg); color:var(--ds-red); }

@media (max-width: 980px) { .site-nav { display:none; } }

/* Mobile nav accordion */
.mobile-nav__list .menu-item-has-children > a,
.mobile-nav__list .has-children > a {
	position:relative;
}
.mobile-nav__list .menu-item-has-children > a::after,
.mobile-nav__list .has-children > a::after {
	content:"▾"; position:absolute; right:14px; top:50%; transform:translateY(-50%); font-size:0.7em; opacity:0.5;
}
.mobile-nav__list .sub-menu { list-style:none; padding:0 0 0 16px; margin:0 0 8px; border-left:2px solid var(--ds-bg); }
.mobile-nav__list .sub-menu li a { padding:10px 14px; font-size:0.95em; color:var(--ds-muted); }

/* ===========================================================================
   v3 — Community / Gesprekken cards
   =========================================================================== */
.ds-discussie-card { background:#fff; border:1px solid var(--ds-border); border-radius:12px; padding:22px 24px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ds-discussie-card:hover { transform:translateY(-3px); box-shadow:0 12px 28px rgba(15,31,61,0.08); border-color:var(--ds-red); }
.ds-discussie-card__type { display:inline-block; padding:3px 10px; background:var(--ds-bg); border-radius:12px; font-size:0.78rem; color:var(--ds-navy); margin-bottom:10px; }
.ds-discussie-card__type--uitgelicht { background:rgba(202,160,82,0.18); color:#7a5a1e; }
.ds-discussie-card h3 { margin:0 0 8px; font-size:1.15rem; }
.ds-discussie-card h3 a { color:var(--ds-navy); text-decoration:none; }
.ds-discussie-card h3 a:hover { color:var(--ds-red); }
.ds-discussie-card__excerpt { color:var(--ds-muted); font-size:0.95em; line-height:1.55; margin:0 0 14px; }
.ds-discussie-card__meta { display:flex; align-items:center; gap:14px; font-size:0.82rem; color:var(--ds-muted); }
.ds-discussie-card__meta strong { color:var(--ds-navy); }

/* Publicatie cards */
.ds-publicatie-card { background:#fff; border:1px solid var(--ds-border); border-radius:12px; padding:22px 24px; transition:transform .2s ease, box-shadow .2s ease; }
.ds-publicatie-card:hover { transform:translateY(-3px); box-shadow:0 12px 28px rgba(15,31,61,0.08); }
.ds-publicatie-card__top { display:flex; gap:10px; align-items:center; margin-bottom:12px; flex-wrap:wrap; }
.ds-publicatie-card__type { display:inline-block; padding:4px 12px; background:var(--ds-navy); color:#fff; border-radius:12px; font-size:0.74rem; letter-spacing:0.04em; text-transform:uppercase; }
.ds-publicatie-card__date { font-size:0.84rem; color:var(--ds-muted); }
.ds-publicatie-card__status { display:inline-block; padding:3px 10px; border-radius:10px; font-size:0.74rem; }
.ds-publicatie-card__status--belangrijk { background:rgba(178,48,48,0.12); color:var(--ds-red-dark); }
.ds-publicatie-card h3 { margin:0 0 8px; font-size:1.18rem; }
.ds-publicatie-card h3 a { color:var(--ds-navy); text-decoration:none; }
.ds-publicatie-card h3 a:hover { color:var(--ds-red); }
.ds-publicatie-card__excerpt { color:var(--ds-muted); font-size:0.93em; line-height:1.55; }
.ds-publicatie-card__bron { display:inline-block; margin-top:10px; font-size:0.78rem; color:var(--ds-muted); }

/* Vergadering cards */
.ds-vergadering-card { display:flex; gap:18px; background:#fff; border:1px solid var(--ds-border); border-radius:12px; padding:22px 24px; align-items:center; }
.ds-vergadering-card__date { flex:0 0 80px; text-align:center; background:var(--ds-navy); color:#fff; padding:12px; border-radius:10px; }
.ds-vergadering-card__date strong { display:block; font-size:1.6rem; line-height:1; font-family:'Fraunces',serif; }
.ds-vergadering-card__date span { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.1em; opacity:0.85; }
.ds-vergadering-card__body { flex:1; }
.ds-vergadering-card__type { display:inline-block; padding:3px 10px; background:var(--ds-bg); border-radius:10px; font-size:0.74rem; color:var(--ds-navy); margin-bottom:6px; }
.ds-vergadering-card h3 { margin:0 0 6px; font-size:1.1rem; }
.ds-vergadering-card h3 a { color:var(--ds-navy); text-decoration:none; }
.ds-vergadering-card h3 a:hover { color:var(--ds-red); }
.ds-vergadering-card__meta { font-size:0.84rem; color:var(--ds-muted); display:flex; gap:12px; flex-wrap:wrap; }
.ds-vergadering-card__status--belangrijk { color:var(--ds-red); font-weight:600; }
.ds-vergadering-card__status--geweest { opacity:0.6; }

/* Comments / reacties */
.ds-comments { margin-top:48px; }
.ds-comments__title { font-family:'Fraunces',serif; font-size:1.6rem; margin-bottom:18px; color:var(--ds-navy); }
.ds-comment-list { list-style:none; padding:0; margin:0; }
.ds-comment-list .comment { padding:18px 0; border-bottom:1px solid var(--ds-border); }
.ds-comment-list .comment:last-child { border-bottom:0; }
.ds-comment__head { display:flex; gap:12px; align-items:center; margin-bottom:8px; }
.ds-comment__author { font-weight:600; color:var(--ds-navy); }
.ds-comment__date { font-size:0.84rem; color:var(--ds-muted); }
.ds-comment__body { color:var(--ds-text); line-height:1.65; }
.ds-comment__body p { margin:0 0 10px; }
.ds-comment-form { margin-top:32px; padding:28px; background:var(--ds-bg); border-radius:12px; }
.ds-comment-form label { display:block; font-weight:600; margin-bottom:6px; color:var(--ds-navy); }
.ds-comment-form input[type="text"],
.ds-comment-form input[type="email"],
.ds-comment-form textarea { width:100%; padding:12px 14px; border:1px solid var(--ds-border); border-radius:8px; font-family:inherit; font-size:1rem; background:#fff; }
.ds-comment-form .form-submit { margin-top:14px; }

/* Empty states */
.ds-empty { background:var(--ds-bg); border:1px dashed var(--ds-border); border-radius:14px; padding:48px 32px; text-align:center; }
.ds-empty h3 { font-family:'Fraunces',serif; font-size:1.4rem; color:var(--ds-navy); margin:0 0 10px; }
.ds-empty p { color:var(--ds-muted); max-width:520px; margin:0 auto 18px; }

/* Officiele links lijst */
.ds-officiele-links { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:16px; }
.ds-officiele-link { display:block; padding:22px 24px; background:#fff; border:1px solid var(--ds-border); border-radius:12px; text-decoration:none; color:inherit; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ds-officiele-link:hover { transform:translateY(-2px); box-shadow:0 12px 24px rgba(15,31,61,0.08); border-color:var(--ds-gold); }
.ds-officiele-link strong { display:block; color:var(--ds-navy); font-size:1.05rem; margin-bottom:4px; }
.ds-officiele-link span { color:var(--ds-muted); font-size:0.88rem; }


/* =========================================================================
   OVER ONS (ABOUT) — premium herontwerp v4
   ========================================================================= */
.about-page { display: block; }

/* --- Shared section rhythm --- */
.about-section { padding: clamp(64px, 9vw, 120px) 0; }
.about-section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.about-section__eyebrow {
	display: inline-block;
	font-family: var(--ds-font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ds-gold-dark);
	margin-bottom: 14px;
}
.about-section__title {
	font-family: var(--ds-font-display);
	font-weight: 600;
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
	line-height: 1.15;
	color: var(--ds-navy);
	margin: 0;
}
.about-section__head--center { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }

/* --- A. HERO --- */
.about-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 11vw, 150px) 0 clamp(56px, 8vw, 110px);
	background:
		radial-gradient(120% 90% at 85% -10%, rgba(202,160,82,0.10), transparent 60%),
		linear-gradient(180deg, var(--ds-cream), var(--ds-bg) 75%);
}
.about-hero__aura {
	position: absolute;
	inset: auto -10% -40% auto;
	width: 60vw;
	height: 60vw;
	max-width: 760px;
	max-height: 760px;
	background: radial-gradient(circle, rgba(15,31,61,0.05), transparent 65%);
	pointer-events: none;
}
.about-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.about-hero__title {
	font-family: var(--ds-font-display);
	font-weight: 600;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	line-height: 1.06;
	letter-spacing: -0.01em;
	color: var(--ds-navy);
	margin: 16px 0 22px;
}
.about-hero__title span { color: var(--ds-gold-dark); }
.about-hero__lead {
	font-size: clamp(1.02rem, 1.5vw, 1.18rem);
	line-height: 1.7;
	color: var(--ds-text-muted);
	max-width: 38em;
	margin: 0 0 28px;
}
.about-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(255,255,255,0.7);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-radius-full);
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--ds-navy);
	backdrop-filter: blur(4px);
}
.about-badge::before {
	content: "";
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--ds-gold);
}
.about-hero__visual { position: relative; }
.about-hero__visual .carillon-svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 60px rgba(15,31,61,0.12)); }

/* --- B. MISSION --- */
.about-mission { background: var(--ds-bg); text-align: center; }
.about-mission__text {
	font-family: var(--ds-font-display);
	font-weight: 400;
	font-size: clamp(1.25rem, 2.4vw, 1.7rem);
	line-height: 1.5;
	color: var(--ds-text);
	margin: 22px 0 0;
}

/* --- C. PRINCIPLES --- */
.about-principles { background: var(--ds-bg-alt); }
.about-principles__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 3vw, 32px);
}
.principle-card {
	background: var(--ds-bg);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-radius-lg);
	padding: clamp(28px, 4vw, 44px);
	box-shadow: var(--ds-shadow-sm);
	transition: transform var(--ds-t) var(--ds-ease), box-shadow var(--ds-t) var(--ds-ease);
}
.principle-card:hover { transform: translateY(-4px); box-shadow: var(--ds-shadow-md); }
.principle-card--niet { background: linear-gradient(180deg, var(--ds-red-bg), var(--ds-bg) 70%); border-color: var(--ds-red-border); }
.principle-card__top { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.principle-card__chip {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 14px;
}
.principle-card__chip svg { width: 24px; height: 24px; }
.principle-card__chip--wel { background: var(--ds-navy); color: var(--ds-gold-soft); }
.principle-card__chip--niet { background: var(--ds-red); color: #fff; }
.principle-card__title {
	font-family: var(--ds-font-display);
	font-weight: 600;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	color: var(--ds-navy);
	margin: 0;
	line-height: 1.2;
}
.principle-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.principle-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 1rem; line-height: 1.5; color: var(--ds-text); }
.principle-list__mark {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px; height: 24px;
	border-radius: 50%;
	margin-top: 1px;
}
.principle-list__mark svg { width: 15px; height: 15px; }
.principle-list--wel .principle-list__mark { background: var(--ds-gold-tint); color: var(--ds-gold-dark); }
.principle-list--niet .principle-list__mark { background: var(--ds-red-bg); color: var(--ds-red); }

/* --- D. QUOTE --- */
.about-quote {
	background: var(--ds-navy);
	color: #fff;
	padding: clamp(72px, 10vw, 130px) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.about-quote::after {
	content: "";
	position: absolute; inset: auto 50% -50% 50%;
	transform: translateX(-50%);
	width: 80vw; max-width: 900px; height: 400px;
	background: radial-gradient(circle, rgba(202,160,82,0.18), transparent 60%);
	pointer-events: none;
}
.about-quote__inner { position: relative; }
.about-quote__mark {
	display: block;
	font-family: var(--ds-font-display);
	font-size: clamp(4rem, 9vw, 7rem);
	line-height: 0.6;
	color: var(--ds-gold);
	opacity: 0.7;
	margin-bottom: 8px;
}
.about-quote__text {
	font-family: var(--ds-font-display);
	font-weight: 600;
	font-size: clamp(1.7rem, 4vw, 2.9rem);
	line-height: 1.25;
	margin: 0 0 24px;
	border: 0;
	padding: 0;
	color: #fff;
}
.about-quote__sub {
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.7;
	color: rgba(255,255,255,0.72);
	max-width: 40em;
	margin: 0 auto;
}

/* --- E. TIMELINE --- */
.about-timeline-section { background: var(--ds-bg); }
.ds-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	position: relative;
	counter-reset: ds-step;
}
.ds-timeline::before {
	content: "";
	position: absolute;
	top: 27px;
	left: 8%;
	right: 8%;
	height: 2px;
	background: linear-gradient(90deg, var(--ds-gold-soft), var(--ds-gold), var(--ds-gold-soft));
	opacity: 0.5;
}
.ds-timeline__item { position: relative; text-align: center; padding-top: 0; }
.ds-timeline__dot {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px; height: 54px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--ds-navy);
	color: var(--ds-gold-soft);
	font-family: var(--ds-font-display);
	font-weight: 600;
	font-size: 1.05rem;
	box-shadow: 0 0 0 6px var(--ds-bg), 0 8px 20px rgba(15,31,61,0.14);
}
.ds-timeline__title {
	font-family: var(--ds-font-display);
	font-weight: 600;
	font-size: 1.18rem;
	color: var(--ds-navy);
	margin: 0 0 8px;
}
.ds-timeline__text { font-size: 0.92rem; line-height: 1.55; color: var(--ds-text-muted); margin: 0; }

/* --- F. CTA --- */
.about-cta { background: var(--ds-bg-alt); padding: clamp(64px, 9vw, 110px) 0; text-align: center; }
.about-cta__inner {
	background: var(--ds-bg);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-radius-lg);
	padding: clamp(40px, 6vw, 72px);
	box-shadow: var(--ds-shadow-md);
}
.about-cta__title {
	font-family: var(--ds-font-display);
	font-weight: 600;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	color: var(--ds-navy);
	margin: 0 0 14px;
	line-height: 1.2;
}
.about-cta__text { font-size: 1.05rem; line-height: 1.65; color: var(--ds-text-muted); max-width: 34em; margin: 0 auto 30px; }

/* --- Responsive --- */
@media (max-width: 900px) {
	.about-hero__inner { grid-template-columns: 1fr; }
	.about-hero__visual { order: -1; max-width: 360px; margin: 0 auto; }
	.about-principles__grid { grid-template-columns: 1fr; }
	.ds-timeline { grid-template-columns: 1fr; gap: 0; counter-reset: none; }
	.ds-timeline::before {
		top: 0; bottom: 0; left: 26px; right: auto;
		width: 2px; height: auto;
		background: linear-gradient(180deg, var(--ds-gold-soft), var(--ds-gold), var(--ds-gold-soft));
	}
	.ds-timeline__item { display: grid; grid-template-columns: 54px 1fr; gap: 18px; text-align: left; padding-bottom: 32px; }
	.ds-timeline__dot { margin: 0; }
	.ds-timeline__item:last-child { padding-bottom: 0; }
}

/* =========================================================================
   PAGE HERO (herbruikbaar) + FILTERBAR + PUBLICATIES v4
   ========================================================================= */
.page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 72px);
	background:
		radial-gradient(110% 80% at 90% -20%, rgba(202,160,82,0.10), transparent 60%),
		linear-gradient(180deg, var(--ds-cream), var(--ds-bg) 80%);
}
.page-hero__aura {
	position: absolute; inset: auto -10% -50% auto;
	width: 50vw; height: 50vw; max-width: 640px; max-height: 640px;
	background: radial-gradient(circle, rgba(15,31,61,0.05), transparent 65%);
	pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero__title {
	font-family: var(--ds-font-display);
	font-weight: 600;
	font-size: clamp(2rem, 4.4vw, 3rem);
	line-height: 1.1;
	color: var(--ds-navy);
	margin: 14px 0 18px;
}
.page-hero__lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.7; color: var(--ds-text-muted); margin: 0; }
.page-hero__note {
	display: flex; align-items: flex-start; gap: 10px;
	margin: 20px 0 0; padding: 14px 18px;
	background: rgba(255,255,255,0.7);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-radius-sm);
	font-size: 0.88rem; line-height: 1.5; color: var(--ds-text-muted);
}
.page-hero__note svg { flex: 0 0 auto; color: var(--ds-gold-dark); margin-top: 1px; }

/* --- Filterbar --- */
.ds-filterbar { margin: 0 0 clamp(28px, 4vw, 44px); }
.ds-filterbar__inner {
	display: flex; flex-wrap: wrap; align-items: flex-end; gap: 14px;
	padding: 18px 20px;
	background: var(--ds-bg);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-radius-md);
	box-shadow: var(--ds-shadow-sm);
}
.ds-filterbar__field { display: flex; flex-direction: column; gap: 6px; min-width: 150px; flex: 1 1 150px; }
.ds-filterbar__field--search { flex: 2 1 240px; position: relative; justify-content: flex-end; }
.ds-filterbar__field--search .ds-filterbar__search-icon {
	position: absolute; left: 14px; bottom: 13px; width: 18px; height: 18px; color: var(--ds-text-light); pointer-events: none;
}
.ds-filterbar__field--search input {
	width: 100%; padding: 12px 14px 12px 40px;
	border: 1px solid var(--ds-border-strong); border-radius: var(--ds-radius-sm);
	font: inherit; font-size: 0.95rem; color: var(--ds-text); background: var(--ds-bg);
	transition: border-color var(--ds-t-fast) var(--ds-ease), box-shadow var(--ds-t-fast) var(--ds-ease);
}
.ds-filterbar__field--search input:focus { outline: none; border-color: var(--ds-gold); box-shadow: 0 0 0 3px var(--ds-gold-tint); }
.ds-filterbar__label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ds-text-muted); }
.ds-filterbar__select { position: relative; }
.ds-filterbar__select select {
	appearance: none; -webkit-appearance: none;
	width: 100%; padding: 12px 36px 12px 14px;
	border: 1px solid var(--ds-border-strong); border-radius: var(--ds-radius-sm);
	font: inherit; font-size: 0.95rem; color: var(--ds-text); background: var(--ds-bg); cursor: pointer;
	transition: border-color var(--ds-t-fast) var(--ds-ease), box-shadow var(--ds-t-fast) var(--ds-ease);
}
.ds-filterbar__select select:focus { outline: none; border-color: var(--ds-gold); box-shadow: 0 0 0 3px var(--ds-gold-tint); }
.ds-filterbar__chevron { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--ds-text-light); pointer-events: none; font-size: 0.8rem; }
.ds-filterbar__toggle { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--ds-text); cursor: pointer; padding-bottom: 12px; }
.ds-filterbar__toggle input { width: 18px; height: 18px; accent-color: var(--ds-gold-dark); cursor: pointer; }
.ds-filterbar__actions { display: flex; align-items: center; gap: 14px; padding-bottom: 1px; }
.ds-filterbar__reset { font-size: 0.9rem; color: var(--ds-text-muted); text-decoration: underline; text-underline-offset: 3px; }
.ds-filterbar__reset:hover { color: var(--ds-red); }

.ds-result-count { font-size: 0.9rem; color: var(--ds-text-muted); margin: 0 0 20px; }

/* --- Publicatie grid + cards --- */
.ds-publicatie-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: clamp(18px, 2.4vw, 26px);
}
.pub-card {
	display: flex; flex-direction: column;
	height: 100%;
	background: var(--ds-bg);
	border: 1px solid var(--ds-border);
	border-radius: var(--ds-radius);
	padding: 26px 28px;
	box-shadow: var(--ds-shadow-xs);
	transition: transform var(--ds-t) var(--ds-ease), box-shadow var(--ds-t) var(--ds-ease), border-color var(--ds-t) var(--ds-ease);
}
.pub-card:hover { transform: translateY(-4px); box-shadow: var(--ds-shadow-md); border-color: var(--ds-border-strong); }
.pub-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pub-card__type {
	display: inline-block; padding: 5px 12px;
	background: var(--ds-navy); color: #fff;
	border-radius: var(--ds-radius-full);
	font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.pub-card__type[data-type="vergunning"]       { background: var(--ds-info); }
.pub-card__type[data-type="verkeersbesluit"]  { background: var(--ds-warning); }
.pub-card__type[data-type="besluit"]          { background: var(--ds-navy-soft); }
.pub-card__type[data-type="bekendmaking"]     { background: var(--ds-gold-dark); }
.pub-card__type[data-type="raadsinformatie"]  { background: #4A5B7A; }
.pub-card__type[data-type="projectupdate"]    { background: var(--ds-success); }
.pub-card__flag {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 11px; background: var(--ds-red-bg); color: var(--ds-red);
	border-radius: var(--ds-radius-full); font-size: 0.72rem; font-weight: 600;
}
.pub-card__flag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ds-red); }
.pub-card__title { font-family: var(--ds-font-display); font-weight: 600; font-size: 1.25rem; line-height: 1.25; margin: 0 0 12px; }
.pub-card__title a { color: var(--ds-navy); text-decoration: none; }
.pub-card__title a:hover { color: var(--ds-gold-dark); }
.pub-card__excerpt { font-size: 0.95rem; line-height: 1.6; color: var(--ds-text-muted); margin: 0 0 20px; }
.pub-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--ds-border-soft); font-size: 0.84rem; color: var(--ds-text-light); }
.pub-card__date { display: inline-flex; align-items: center; gap: 6px; }
.pub-card__linked { color: var(--ds-gold-dark); font-weight: 600; text-decoration: none; }
.pub-card__linked:hover { text-decoration: underline; }
.pub-card__link {
	display: inline-flex; align-items: center; gap: 8px;
	margin-top: 18px; font-weight: 600; font-size: 0.92rem; color: var(--ds-navy); text-decoration: none;
}
.pub-card__link span { transition: transform var(--ds-t-fast) var(--ds-ease); }
.pub-card__link:hover { color: var(--ds-gold-dark); }
.pub-card__link:hover span { transform: translateX(4px); }

/* --- Pagination --- */
.ds-pagination { display: flex; justify-content: center; gap: 6px; margin-top: clamp(32px, 5vw, 56px); flex-wrap: wrap; }
.ds-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 10px;
	border: 1px solid var(--ds-border); border-radius: var(--ds-radius-sm);
	color: var(--ds-text); text-decoration: none; font-size: 0.92rem;
	transition: all var(--ds-t-fast) var(--ds-ease);
}
.ds-pagination .page-numbers:hover { border-color: var(--ds-gold); color: var(--ds-gold-dark); }
.ds-pagination .page-numbers.current { background: var(--ds-navy); color: #fff; border-color: var(--ds-navy); }

@media (max-width: 720px) {
	.ds-filterbar__field, .ds-filterbar__field--search { flex: 1 1 100%; }
	.ds-filterbar__actions { flex: 1 1 100%; }
}

/* =========================================================================
   v4 — PREMIUM ANIMATIE-LAAG (button shine, parallax, unfold-reveal)
   ========================================================================= */

/* Soft parallax helper */
[data-parallax-soft] { will-change: transform; }

/* Verfijnde reveal: net iets meer 'ontvouwen' (afstand + subtiele schaal) */
[data-reveal] {
	transform: translateY(28px);
}
[data-reveal].is-revealed { transform: translateY(0); }

/* Button shine — subtiele lichtveeg bij hover */
.btn { overflow: hidden; }
.btn::after {
	content: "";
	position: absolute;
	top: 0; left: -120%;
	width: 70%; height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
	transform: skewX(-18deg);
	transition: left 0.6s var(--ds-ease);
	pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn--ghost::after,
.btn--outline::after { background: linear-gradient(100deg, transparent, rgba(202,160,82,0.18), transparent); }

@media (prefers-reduced-motion: reduce) {
	[data-parallax-soft] { transform: none !important; }
	.btn::after { display: none; }
	[data-reveal] { transform: none; }
}

/* --- Meldpunt vertrouwens-notitie --- */
.ds-form-trust {
	display: flex; align-items: flex-start; gap: 14px;
	padding: 16px 20px; margin-bottom: 26px;
	background: var(--ds-gold-tint);
	border: 1px solid var(--ds-gold-soft);
	border-radius: var(--ds-radius-sm);
}
.ds-form-trust__icon { flex: 0 0 auto; color: var(--ds-gold-dark); margin-top: 1px; }
.ds-form-trust p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--ds-text); }
.ds-form-trust strong { color: var(--ds-navy); }

/* =========================================================================
   v5 — FORMULIEREN: premium checkboxes, inline validatie, succespanelen
   ========================================================================= */

/* --- Checkbox als klikbaar kaartje (groot klikgebied, duidelijk zichtbaar) --- */
.ds-check {
	padding: 16px 18px;
	background: var(--ds-bg);
	border: 1.5px solid var(--ds-border);
	border-radius: var(--ds-radius-sm);
	transition: border-color var(--ds-t-fast) var(--ds-ease), background var(--ds-t-fast) var(--ds-ease), box-shadow var(--ds-t-fast) var(--ds-ease);
}
.ds-check:hover { border-color: var(--ds-gold); background: var(--ds-bg-soft); }

/* Aangevinkt: duidelijk bevestigd */
.ds-check:has(input:checked) {
	border-color: var(--ds-navy);
	background: var(--ds-bg-soft);
}

/* Toetsenbordfocus zichtbaar op het hele kaartje */
.ds-check:has(input:focus-visible) {
	border-color: var(--ds-navy);
	box-shadow: 0 0 0 3px rgba(15,31,61,0.14);
}

/* Het zichtbare vinkvakje — iets groter, betere touch target */
.ds-check__box {
	width: 24px;
	height: 24px;
	border-width: 2px;
}
.ds-check__box::after { left: 7px; top: 3px; }

/* Foutstaat: checkbox niet aangevinkt terwijl het moet */
.ds-check.has-error {
	border-color: var(--ds-red);
	background: var(--ds-red-bg);
}
.ds-check.has-error .ds-check__box { border-color: var(--ds-red); }

/* --- Veld-foutmeldingen (vervangen de onzichtbare browserballon) --- */
.ds-field { position: relative; }
.ds-field__error {
	display: none;
	align-items: center;
	gap: 7px;
	margin-top: 8px;
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--ds-red);
}
.ds-field__error::before {
	content: "";
	flex: 0 0 auto;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--ds-red);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 2a10 10 0 100 20 10 10 0 000-20zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 2a10 10 0 100 20 10 10 0 000-20zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ds-field__error.is-visible { display: flex; }

.ds-field.has-error input:not([type="checkbox"]),
.ds-field.has-error textarea,
.ds-field.has-error select {
	border-color: var(--ds-red);
	background: var(--ds-red-bg);
}
.ds-field.has-error input:focus,
.ds-field.has-error textarea:focus,
.ds-field.has-error select:focus {
	box-shadow: 0 0 0 3px rgba(178,48,48,0.14);
}

/* Hint onder een veld */
.ds-field__hint { margin-top: 6px; font-size: 0.84rem; color: var(--ds-text-light); }

/* --- Foutsamenvatting bovenaan het formulier --- */
.ds-form__errors {
	display: none;
	padding: 16px 20px;
	margin-bottom: 22px;
	background: var(--ds-red-bg);
	border: 1px solid var(--ds-red-border);
	border-left: 3px solid var(--ds-red);
	border-radius: var(--ds-radius-sm);
}
.ds-form__errors.is-visible { display: block; }
.ds-form__errors p { margin: 0 0 8px; font-weight: 600; color: var(--ds-red); font-size: 0.94rem; }
.ds-form__errors ul { margin: 0; padding-left: 18px; }
.ds-form__errors li { font-size: 0.9rem; color: var(--ds-text); line-height: 1.6; }
.ds-form__errors a { color: var(--ds-red); font-weight: 600; }

/* --- Feedback onder het formulier --- */
.ds-form__feedback { margin-top: 18px; font-size: 0.93rem; line-height: 1.6; }
.ds-form__feedback:empty { margin-top: 0; }
.ds-form__feedback.is-error {
	padding: 14px 18px;
	background: var(--ds-red-bg);
	border: 1px solid var(--ds-red-border);
	border-radius: var(--ds-radius-sm);
	color: var(--ds-red);
	font-weight: 500;
}

/* --- Succespaneel: vervangt het formulier na verzenden --- */
.ds-form-success {
	display: none;
	text-align: center;
	padding: clamp(32px, 5vw, 48px);
	background: linear-gradient(180deg, var(--ds-success-bg), var(--ds-bg) 80%);
	border: 1px solid #C9E5D5;
	border-radius: var(--ds-radius);
}
.ds-form-success.is-visible { display: block; animation: ds-success-in .5s var(--ds-ease) both; }
@keyframes ds-success-in {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}
.ds-form-success__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 62px; height: 62px; margin-bottom: 20px;
	background: var(--ds-success); color: #fff;
	border-radius: 50%;
	box-shadow: 0 10px 26px rgba(47,143,92,0.28);
}
.ds-form-success__icon svg { width: 30px; height: 30px; }
.ds-form-success__title {
	font-family: var(--ds-font-display); font-weight: 600;
	font-size: clamp(1.3rem, 2.4vw, 1.7rem);
	color: var(--ds-navy); margin: 0 0 12px; line-height: 1.25;
}
.ds-form-success__text { color: var(--ds-text-muted); line-height: 1.65; margin: 0 auto 24px; max-width: 34em; }

@media (prefers-reduced-motion: reduce) {
	.ds-form-success.is-visible { animation: none; }
}
