/* Guntro Group BVBA — homepage
   HTML & PHP by Ferhat Remory (ferhat.io) */

:root {
	--bg: #0b0b0c;
	--bg-alt: #131316;
	--surface: #1a1a1e;
	--surface-hover: #201f23;
	--surface-translucent: rgba(26, 26, 30, 0.9);
	--border: rgba(255, 255, 255, 0.08);
	--text: #f5f5f6;
	--text-muted: #a6a6ac;
	--accent: #ff3d2e;
	--accent-2: #ff8a2b;
	--accent-gradient: linear-gradient(135deg, var(--accent), var(--accent-2));
	--nav-bg: rgba(11, 11, 12, 0.55);
	--nav-bg-scrolled: rgba(11, 11, 12, 0.92);
	--ghost-bg: rgba(255, 255, 255, 0.06);
	--ghost-bg-hover: rgba(255, 255, 255, 0.12);
	--logo-filter: none;
	--radius: 16px;
	--maxw: 1180px;
	--nav-h: 124px;
}

:root[data-theme="light"] {
	--bg: #f7f6f3;
	--bg-alt: #ffffff;
	--surface: #ffffff;
	--surface-hover: #f2f0ec;
	--surface-translucent: rgba(255, 255, 255, 0.92);
	--border: rgba(10, 10, 12, 0.09);
	--text: #17171a;
	--text-muted: #5c5c63;
	--accent: #e0301f;
	--accent-2: #ff8a2b;
	--nav-bg: rgba(247, 246, 243, 0.7);
	--nav-bg-scrolled: rgba(247, 246, 243, 0.94);
	--ghost-bg: rgba(10, 10, 12, 0.05);
	--ghost-bg-hover: rgba(10, 10, 12, 0.09);
	--logo-filter: brightness(0) saturate(100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

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

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn--primary {
	background: var(--accent-gradient);
	color: #fff;
	box-shadow: 0 8px 24px -8px rgba(255, 61, 46, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(255, 61, 46, 0.75); }
.btn--ghost {
	/* always sits on the dark hero photo regardless of site theme, so it
	   needs its own high-contrast treatment rather than the themed --ghost-bg */
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.24); border-color: rgba(255, 255, 255, 0.7); transform: translateY(-2px); }
.btn--outline {
	background: transparent;
	color: var(--accent);
	border-color: currentColor;
	padding: 12px 24px;
}
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--small { padding: 10px 20px; font-size: 13px; }

/* Nav — contained floating bar */
.site-nav {
	position: fixed;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: var(--maxw);
	z-index: 100;
	height: 68px;
	display: flex;
	align-items: center;
	padding: 0 10px 0 24px;
	border-radius: 999px;
	background: var(--nav-bg);
	border: 1px solid var(--border);
	backdrop-filter: blur(14px);
	box-shadow: 0 20px 50px -22px rgba(0, 0, 0, 0.55);
	transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-nav.is-scrolled {
	background: var(--nav-bg-scrolled);
	box-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.6);
}
.site-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.site-nav__brand img { height: 34px; width: auto; filter: var(--logo-filter); transition: filter 0.3s ease; }
.site-nav__links {
	display: flex;
	align-items: center;
	gap: 22px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 14px;
}
.site-nav__links a.is-active { color: var(--accent); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	color: var(--text-muted);
	cursor: pointer;
	transition: color 0.2s ease;
}
.nav-dropdown__trigger:hover { color: var(--text); }
.nav-dropdown__trigger svg { transition: transform 0.2s ease; }
.nav-dropdown.is-open .nav-dropdown__trigger svg,
.nav-dropdown:hover .nav-dropdown__trigger svg { transform: rotate(180deg); }
.nav-dropdown__menu {
	position: absolute;
	top: calc(100% + 16px);
	left: 50%;
	transform: translateX(-50%) translateY(-6px);
	min-width: 230px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 8px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease 0.1s, transform 0.15s ease 0.1s;
	box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.35);
}
/* Invisible bridge over the gap to the trigger, so hover doesn't drop while crossing it */
.nav-dropdown__menu::before {
	content: '';
	position: absolute;
	top: -16px;
	left: 0;
	right: 0;
	height: 16px;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
	transition: opacity 0.15s ease, transform 0.15s ease;
}
.nav-dropdown__menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 14px;
	color: var(--text);
}
.nav-dropdown__menu a:hover { background: var(--ghost-bg); color: var(--accent); }

/* Mobile menu toggle (hamburger) */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--ghost-bg);
	cursor: pointer;
}
.nav-toggle__bar {
	width: 16px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Theme toggle */
.theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--ghost-bg);
	color: var(--text);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover { background: var(--ghost-bg-hover); transform: translateY(-1px); }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* Hero */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	padding-top: var(--nav-h);
	overflow: hidden;
}
.hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 65%;
	transform: scale(1.06);
}
.hero__scrim {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 100% at 12% 100%, rgba(0,0,0,0.35), transparent 60%),
		linear-gradient(180deg, rgba(5,5,6,0.82) 0%, rgba(5,5,6,0.5) 42%, rgba(5,5,6,0.98) 100%),
		linear-gradient(90deg, rgba(5,5,6,0.92) 0%, rgba(5,5,6,0.28) 66%);
}
.hero__content {
	position: relative;
	max-width: 640px;
	padding-top: 40px;
	padding-bottom: 40px;
}
.hero__kicker {
	display: block;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent-2);
	margin-bottom: 22px;
}
.hero__content h1 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #fff;
	margin-bottom: 36px;
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

/* Reveal on scroll */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Intro statement (moved out of hero) */
.intro { padding: 76px 0 20px; }
.intro__bar {
	display: block;
	width: 48px;
	height: 3px;
	background: var(--accent-gradient);
	margin: 0 auto 28px;
	border-radius: 2px;
}
.intro__text {
	max-width: 740px;
	margin: 0 auto;
	text-align: center;
	font-size: 19px;
	line-height: 1.75;
	color: var(--text-muted);
}

/* Split sections */
.split { padding: 100px 0; }
.split--tint { background: var(--bg-alt); }
.split__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.split__text { order: 1; }
.split__media { order: 2; }
.split--reverse .split__text { order: 2; }
.split--reverse .split__media { order: 1; }
.eyebrow {
	display: inline-block;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 16px;
}
.eyebrow--center { display: block; text-align: center; }
.split__text h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--text); }
.split__text p { font-size: 16px; max-width: 480px; }
.split__media img {
	border-radius: var(--radius);
	box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
	border: 1px solid var(--border);
}

/* Extra diensten */
.extra { padding: 100px 0; text-align: center; }
.extra__heading {
	max-width: 640px;
	margin: 0 auto 48px;
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	color: var(--text);
}
.extra__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 720px;
	margin: 0 auto;
}
.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 28px;
	text-align: left;
	transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 61, 46, 0.4);
	background: var(--surface-hover);
}
.card h3 { color: var(--text); margin-bottom: 10px; }
.card__link {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: var(--accent);
}

/* Newsletter — deliberately breaks from the dark palette as a standout CTA moment */
.newsletter {
	padding: 90px 0;
	background: var(--accent-gradient);
	position: relative;
	overflow: hidden;
}
.newsletter::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 140% at 15% 0%, rgba(255,255,255,0.18), transparent 55%);
	pointer-events: none;
}
.newsletter .container { max-width: 620px; text-align: center; position: relative; }
.newsletter__kicker {
	display: block;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 14px;
}
.newsletter h2 { color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 12px; }
.newsletter__lead { color: rgba(255, 255, 255, 0.88); font-size: 15px; margin-bottom: 30px; }
#mc_embed_signup input[type="email"] {
	width: 100%;
	padding: 15px 18px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: #fff;
	color: #17171a;
	font-size: 15px;
	margin-bottom: 22px;
}
#mc_embed_signup input[type="email"]::placeholder { color: #85858c; }
.content__gdpr label { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px; color: #fff; margin: 0; }
.newsletter__prefs-row {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.info-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease;
}
.info-trigger:hover, .info-trigger[aria-expanded="true"] { background: rgba(255, 255, 255, 0.26); }
.info-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translate(-50%, 6px);
	width: min(360px, 90vw);
	background: #17171a;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 16px 18px;
	text-align: left;
	box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.55);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 20;
}
.info-panel.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.info-panel p { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.78); margin: 0 0 10px; }
.info-panel p:last-child { margin-bottom: 0; }
.info-panel a { color: #fff; text-decoration: underline; }
.mc_fieldset {
	border: none;
	padding: 4px 0 12px;
	margin: 0 0 12px;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 24px;
}
.checkbox.subfield { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; color: rgba(255, 255, 255, 0.92); cursor: pointer; }
.av-checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border-radius: 6px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.1);
	cursor: pointer;
	position: relative;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.av-checkbox:hover { border-color: #fff; }
.av-checkbox:checked { background: #fff; border-color: #fff; }
.av-checkbox:checked::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid var(--accent);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.newsletter__submit { margin-top: 8px; }
.newsletter .btn--primary {
	background: #fff;
	color: var(--accent);
	box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.45);
}
.newsletter .btn--primary:hover {
	background: #fff;
	box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.55);
	transform: translateY(-2px);
}

/* Footer */
.site-footer { padding: 70px 0 0; background: var(--bg); border-top: 1px solid var(--border); }
.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1.2fr 0.8fr;
	gap: 40px;
	padding-bottom: 50px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__logo { height: 40px; width: auto; filter: var(--logo-filter); }
.site-footer h4 {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 14px;
}
.site-footer a { color: var(--text); }
.site-footer a:hover { color: var(--accent); }
.hours-grid { margin: 0; }
.hours-grid > div {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4px 18px;
	font-size: 14px;
	line-height: 1.9;
}
.hours-grid dt { margin: 0; color: var(--text-muted); font-weight: 600; }
.hours-grid dd { margin: 0; }
.site-footer__copyright {
	text-align: center;
	padding: 22px 0;
	font-size: 13px;
	color: var(--text-muted);
	border-top: 1px solid var(--border);
}

/* Scroll to top */
.scroll-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--surface-translucent);
	color: var(--text);
	font-size: 18px;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
	z-index: 90;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.scroll-top:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
	.split__inner { grid-template-columns: 1fr; gap: 32px; }
	.site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
	.site-nav { padding: 0 8px 0 18px; }
	.nav-toggle { display: flex; }

	/* Collapsed by default; the toggle reveals it as a dropdown panel */
	.site-nav__links {
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: 20px;
		padding: 10px;
		box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.45);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.22s ease, transform 0.22s ease;
	}
	.site-nav__links.is-open { opacity: 1; pointer-events: auto; transform: none; }
	.site-nav__links > a:not(.btn) {
		display: block;
		padding: 13px 14px;
		border-radius: 12px;
		color: var(--text);
	}
	.site-nav__links > a:not(.btn):active,
	.site-nav__links > a:not(.btn):hover { background: var(--ghost-bg); }

	/* Diensten becomes two plain links instead of a hover dropdown */
	.nav-dropdown { width: 100%; }
	.nav-dropdown__trigger { display: none; }
	.nav-dropdown__menu {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		box-shadow: none;
		border: none;
		background: none;
		min-width: 0;
		padding: 2px 0 2px 6px;
	}
	.nav-dropdown__menu a { padding: 11px 14px; font-size: 14px; }

	.theme-toggle { margin: 6px 2px; }
	.site-nav__links .btn--primary {
		width: 100%;
		justify-content: center;
		white-space: normal;
		text-align: center;
		margin-top: 6px;
	}

	.hero { min-height: 86vh; }
	.hero__content { padding-top: 20px; padding-bottom: 30px; }
	.split, .extra, .intro { padding: 60px 0 16px; }
	.split, .extra { padding: 60px 0; }
	.extra__grid { grid-template-columns: 1fr; }
	.intro__text { font-size: 17px; }
}

/* Content pages (FAQ, privacy, ...) */
.page-hero {
	padding: calc(var(--nav-h) + 40px) 0 60px;
	background: var(--bg-alt);
	text-align: center;
}
.page-hero__kicker {
	display: block;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0; }

.page-content { padding: 70px 0 100px; }
.prose { max-width: 780px; margin: 0 auto; color: var(--text-muted); line-height: 1.8; }
.prose h2 { color: var(--text); font-size: 1.3rem; margin: 2em 0 0.6em; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 1em; }
.prose a { color: var(--accent); text-decoration: underline; }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq-item__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: none;
	border: none;
	text-align: left;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: var(--text);
	cursor: pointer;
}
.faq-item__question svg { flex-shrink: 0; transition: transform 0.2s ease; color: var(--text-muted); }
.faq-item.is-open .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 600px; }
.faq-item__answer-inner { padding: 0 24px 22px; color: var(--text-muted); line-height: 1.7; }
.faq-item__answer-inner a { color: var(--accent); }

@media (max-width: 640px) {
	.page-hero { padding: calc(var(--nav-h) + 20px) 0 40px; }
	.page-content { padding: 50px 0 70px; }
	.faq-item__question { padding: 16px 18px; font-size: 15px; }
	.faq-item__answer-inner { padding: 0 18px 18px; }
}

/* Cookie consent banner */
.cookie-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	max-width: 560px;
	margin: 0 auto;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px 26px;
	box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
	z-index: 2000;
	transform: translateY(140%);
	transition: transform 0.3s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner p { margin: 0 0 16px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.cookie-banner__inner a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 640px) {
	.cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; }
}

/* Testimonials */
.w-testimonials { padding: 20px 0 100px; }
.w-gallery__heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.w-gallery__heading h2 { margin: 0; font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--text); }
.w-testimonials__stars { color: var(--accent-2); font-size: 18px; letter-spacing: 2px; }
.w-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
}
.w-testimonial {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.w-testimonial__stars { color: var(--accent-2); font-size: 15px; letter-spacing: 2px; }
.w-testimonial p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.7; flex-grow: 1; }
.w-testimonial__author {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: var(--text-muted);
}
.w-testimonial__author::before { content: '— '; }
