/*
Theme Name: Wilken Solutions
Theme URI: https://wilken.solutions
Author: Wilken
Description: Custom theme for Wilken marketing agency
Version: 1.0.1
Text Domain: wilken-theme
*/

/* ==========================================================================
   Base (svz benchmark: fluid typography, font smoothing)
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scrollbar-width: none;
}
::-webkit-scrollbar {
	display: none;
}

html {
	font-size: clamp(0.9375rem, 0.625rem + 0.4vw, 1.0625rem);
}
html.lenis, html.lenis body {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}
body {
	margin: 0;
	padding: 0;
	font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #222;
	background: #fff;
	overscroll-behavior-y: none;
}

a {
	color: #1a5f4a;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #0d3d30;
}

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

/* Wilken CI: forest greens for dark marketing surfaces (not pure black) */
:root {
	--wilken-ci-forest-1: #203833;
	--wilken-ci-forest-2: #182f28;
	--wilken-ci-forest-3: #172b25;
	--wilken-ci-forest-deep: #0d3d30;
	--wilken-ci-green: #1a5f4a;
	--wilken-ci-mint: #86efac;
	--wilken-ci-dark-bg: linear-gradient(
		165deg,
		var(--wilken-ci-forest-1) 0%,
		var(--wilken-ci-forest-2) 45%,
		var(--wilken-ci-forest-3) 100%
	);
	--wilken-ci-dark-bg-glow:
		radial-gradient(
			ellipse 85% 65% at 50% -15%,
			rgba(26, 95, 74, 0.26) 0%,
			transparent 58%
		),
		radial-gradient(
			ellipse 55% 70% at 92% 100%,
			rgba(134, 239, 172, 0.08) 0%,
			transparent 55%
		),
		linear-gradient(
			165deg,
			var(--wilken-ci-forest-1) 0%,
			var(--wilken-ci-forest-2) 45%,
			var(--wilken-ci-forest-3) 100%
		);
	/* Animated forest surfaces (Stimmenwand, case callouts) */
	--wilken-ci-surface-void: #0c1411;
	--wilken-ci-surface-ink: #f0fdf4;
	--wilken-ci-case-cta-gradient: linear-gradient(152deg, #0f291f 0%, #134a3a 38%, #1a5f4a 58%, #0d3d30 100%);
}

/* ==========================================================================
   Header (CI-aligned: forest palette, three-zone layout, glass surface)
   ========================================================================== */
.site-header {
	--wilken-header-bg: rgba(248, 250, 252, 0.78);
	--wilken-header-border: rgba(26, 95, 74, 0.1);
	--wilken-header-link: rgba(32, 56, 51, 0.72);
	--wilken-header-link-hover: var(--wilken-ci-green);
	--wilken-header-link-active: var(--wilken-ci-forest-deep);
	position: relative;
	z-index: 10;
	border-bottom: 1px solid var(--wilken-header-border);
	background: var(--wilken-header-bg);
	-webkit-backdrop-filter: blur(18px) saturate(1.15);
	backdrop-filter: blur(18px) saturate(1.15);
}

.header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0.875rem clamp(1.25rem, 2.5vw, 2rem);
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(1rem, 2vw, 2rem);
	min-height: 4.25rem;
}

.header-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	min-width: 0;
}

.header-brand:has(> img) {
	line-height: 0;
}

.site-title {
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--wilken-ci-green);
	letter-spacing: -0.02em;
}

.site-title:hover {
	color: var(--wilken-ci-forest-deep);
}

.site-header .custom-logo-link {
	display: flex;
	align-items: center;
	line-height: 0;
}

.site-header .custom-logo-link img {
	max-height: 2.125rem;
	width: auto;
	transform: translateY(0.0625rem);
}

.main-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.main-navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: clamp(0.125rem, 0.8vw, 0.35rem) clamp(0.75rem, 1.4vw, 1.35rem);
}

.main-navigation .menu a {
	position: relative;
	display: inline-block;
	padding: 0.35rem 0;
	color: var(--wilken-header-link);
	font-size: clamp(0.8125rem, 0.78rem + 0.12vw, 0.875rem);
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.22s ease;
}

.main-navigation .menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navigation .menu a:hover,
.main-navigation .menu a:focus-visible {
	color: var(--wilken-header-link-hover);
}

.main-navigation .menu a:hover::after,
.main-navigation .menu a:focus-visible::after {
	transform: scaleX(1);
}

.main-navigation .menu .current-menu-item > a,
.main-navigation .menu .current_page_item > a {
	color: var(--wilken-header-link-active);
	font-weight: 600;
}

.main-navigation .menu .current-menu-item > a::after,
.main-navigation .menu .current_page_item > a::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.625rem;
	flex-shrink: 0;
}

.header-discovery-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	box-sizing: border-box;
	min-height: 2.5rem;
	padding: 0.45rem 0.95rem;
	border: 1px solid var(--wilken-ci-green);
	border-radius: 6px;
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	color: #fff;
	background: var(--wilken-ci-green);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-discovery-cta:hover,
.header-discovery-cta:focus-visible {
	color: #fff;
	border-color: var(--wilken-ci-forest-deep);
	background: var(--wilken-ci-forest-deep);
}

.header-discovery-cta:focus-visible {
	outline: 2px solid var(--wilken-ci-mint);
	outline-offset: 3px;
}

.header-discovery-cta__icon {
	flex-shrink: 0;
	opacity: 0.92;
}

.lang-switcher--header {
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.55rem 0.75rem;
	border: 1px solid rgba(26, 95, 74, 0.14);
	border-radius: 999px;
	color: var(--wilken-ci-green);
	background: rgba(26, 95, 74, 0.05);
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lang-switcher--header:hover,
.lang-switcher--header:focus-visible {
	border-color: rgba(26, 95, 74, 0.35);
	color: var(--wilken-ci-forest-deep);
	background: rgba(26, 95, 74, 0.1);
}

@media (min-width: 901px) and (max-width: 1180px) {
	.header-inner {
		gap: 1rem;
	}

	.main-navigation .menu {
		gap: 0.125rem 0.85rem;
	}

	.header-discovery-cta {
		padding-inline: 0.75rem;
		font-size: 0.625rem;
	}
}

@media (min-width: 901px) and (max-width: 1024px) {
	.header-discovery-cta__label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.header-discovery-cta {
		min-width: 2.5rem;
		padding-inline: 0.65rem;
	}
}

.lang-switcher {
	font-size: 0.8125rem;
	padding: 0.4rem 0.75rem;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	color: #6b7280;
	background: #fff;
	font-weight: 500;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.lang-switcher:hover {
	border-color: #1a5f4a;
	color: #1a5f4a;
	background: #f0fdf4;
}

/* ==========================================================================
   Mobile nav: SVZ-style centered-nav with glass effect, animations, marquee
   ========================================================================== */
.mobile-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.06);
	color: #374151;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.mobile-nav-toggle:hover {
	background: rgba(0, 0, 0, 0.1);
	color: #111;
}
.mobile-nav-toggle__bar {
	display: block;
	position: absolute;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
	transition: transform 0.5s cubic-bezier(0.65, 0, 0, 1);
}
.mobile-nav-toggle {
	position: relative;
}
.mobile-nav-toggle__bar:first-child {
	transform: translateY(-4px);
}
.mobile-nav-toggle__bar:last-child {
	transform: translateY(4px);
}
body.mobile-nav-open .mobile-nav-toggle__bar:first-child {
	transform: translateY(0) rotate(45deg);
}
body.mobile-nav-open .mobile-nav-toggle__bar:last-child {
	transform: translateY(0) rotate(-45deg);
}

@media (max-width: 900px) {
	.mobile-nav-toggle {
		display: flex;
	}
	.main-navigation {
		display: none;
	}
}

/* SVZ-style navigation overlay (mobile only) */
.navigation {
	z-index: 500;
	pointer-events: none;
	position: fixed;
	inset: 0;
}
.navigation.hide-desktop {
	display: none;
}
.navigation[data-navigation-status="active"] {
	pointer-events: auto;
}
.navigation[data-navigation-status="active"] .navigation__dark-bg {
	opacity: 0.15;
	visibility: visible;
}
.navigation__dark-bg {
	opacity: 0;
	pointer-events: auto;
	visibility: hidden;
	background-color: #000;
	position: absolute;
	inset: 0;
	transition: opacity 0.7s cubic-bezier(0.5, 0.5, 0, 1);
	cursor: pointer;
}

/* Centered-nav card: top-left, glass effect */
.centered-nav {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	width: auto;
	border-radius: 0.75em;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: stretch;
	pointer-events: auto;
}
.centered-nav__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 0.75em;
	-webkit-backdrop-filter: blur(1.25rem);
	backdrop-filter: blur(1.25rem);
	background-color: rgba(0, 0, 0, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.12);
}
/* Header row: brand left, toggle right ("centered-nav" = floating glass shell pattern, not flex-centering this row) */
.centered-nav__header {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.875em 1.5em;
}
.centered-nav__logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1;
}
/* Remove inline line-box strut under imgs so the mark is vertically balanced in the bar */
.centered-nav__logo:has(> img) {
	line-height: 0;
}
.centered-nav__logo:hover {
	color: rgba(255, 255, 255, 0.9);
}
.centered-nav__logo img {
	display: block;
	max-height: 1.8rem;
	width: auto;
	/* Optical center: bundled / WP logos often have extra canvas below the wordmark */
	transform: translateY(0.1875rem);
}
.centered-nav__logo img.custom-logo {
	filter: brightness(0) invert(1);
}
.centered-nav__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5em;
	height: 2.5em;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	position: relative;
}
.centered-nav__toggle-bar {
	position: absolute;
	width: 1.875em;
	height: 0.125em;
	background-color: #fff;
	transition: transform 0.6s cubic-bezier(0.65, 0, 0, 1);
	transform: translateY(-0.25em) rotate(0.001deg);
}
.centered-nav__toggle .centered-nav__toggle-bar:nth-child(2) {
	transform: translateY(0.15em) rotate(0.001deg);
}
.centered-nav__toggle:hover .centered-nav__toggle-bar {
	transform: translateY(0.25em) rotate(0.001deg);
}
.centered-nav__toggle:hover .centered-nav__toggle-bar:nth-child(2) {
	transform: translateY(-0.15em) rotate(0.001deg);
}
[data-navigation-status="active"] .centered-nav__toggle .centered-nav__toggle-bar {
	transform: translateY(0) rotate(45deg);
}
[data-navigation-status="active"] .centered-nav__toggle .centered-nav__toggle-bar:nth-child(2) {
	transform: translateY(0) rotate(-45deg);
}

/* Content: grid collapse/expand */
.centered-nav__content {
	position: relative;
	display: grid;
	grid-template-rows: 0fr;
	/* Flex child: allow height to shrink past content when row is 0fr (default min-height: auto prevents collapse) */
	min-height: 0;
	overflow: hidden;
	border-bottom-left-radius: 0.75em;
	border-bottom-right-radius: 0.75em;
	transition: grid-template-rows 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}
[data-navigation-status="active"] .centered-nav__content {
	grid-template-rows: 1fr;
}
.centered-nav__inner {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: center;
	gap: 1.5em;
	min-height: 0;
	overflow: hidden;
	padding: 0;
}
.centered-nav__ul {
	display: flex;
	flex-flow: column;
	align-items: stretch;
	width: 100%;
	margin: 0;
	padding: 0 1em;
	list-style: none;
}
.centered-nav__li {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: clip;
}
.hamburger-nav__a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em 0;
	color: #fff;
	text-decoration: none;
	position: relative;
}
/*
 * Beat global `a:hover` (specificity ties class column but loses on element column),
 * otherwise links turn brand green (#0d3d30) on the dark glass and become unreadable.
 */
.hamburger-nav__a:hover,
.hamburger-nav__a:focus-visible {
	color: rgba(255, 255, 255, 0.98);
}
.hamburger-nav__a:active {
	color: rgba(255, 255, 255, 0.9);
}
.hamburger-nav__a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	opacity: 0.2;
	transform: scaleX(0);
	transition: transform 0.6s cubic-bezier(0.65, 0, 0, 1);
	transition-delay: inherit;
}
[data-navigation-status="active"] .hamburger-nav__a::after {
	transform: scaleX(1);
}
.hamburger-nav__a:hover::after {
	opacity: 0.4;
}
.hamburger-nav__p {
	letter-spacing: -0.025rem;
	text-transform: uppercase;
	font-size: 1em;
	font-weight: 400;
	margin: 0;
	transition: transform 0.6s cubic-bezier(0.65, 0, 0, 1);
	transform: translateY(150%);
	transition-delay: inherit;
}
[data-navigation-status="active"] .hamburger-nav__p {
	transform: translateY(0);
}

/* Menu items stagger */
[data-navigation-item] {
	opacity: 0;
	transform: translateY(2em);
	transition: all 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}
[data-navigation-status="active"] [data-navigation-item] {
	opacity: 1;
	transform: translateY(0);
}

.centered-nav__lang-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 1em;
}
.lang-switcher--centered-nav {
	font-size: 0.875rem;
	padding: 0.55em 1.25em;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lang-switcher--centered-nav:hover {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

/* CTA banner marquee */
.centered-nav__banner-w {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 0.5em;
}
.centered-nav__banner {
	display: block;
	width: 100%;
	padding: 1em 0;
	background-color: #1a5f4a;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
	transition: background-color 0.15s;
}
.centered-nav__banner:hover {
	background-color: #0d3d30;
	color: #fff;
}

.centered-nav__banner:focus-visible {
	color: #fff;
}
.centered-nav__banner-row {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: max-content;
	animation: wilken-centered-nav-marquee 20s linear infinite;
	animation-play-state: paused;
}
[data-navigation-status="active"] .centered-nav__banner-row {
	animation-play-state: running;
}
[data-navigation-status="active"] .centered-nav__banner:hover .centered-nav__banner-row {
	animation-play-state: paused;
}
.centered-nav__banner-item {
	display: flex;
	flex: none;
	justify-content: flex-start;
	align-items: center;
	white-space: nowrap;
}
@keyframes wilken-centered-nav-marquee {
	to {
		transform: translateX(-50%);
	}
}
.centered-nav__banner-inner {
	display: flex;
	flex: none;
	align-items: center;
	padding-right: 2em;
}
.centered-nav__banner-text {
	text-transform: uppercase;
	font-size: 0.875em;
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

/* Show mobile nav on tablet/mobile, hide on desktop */
@media (min-width: 901px) {
	.navigation.hide-desktop {
		display: none;
	}
}
@media (max-width: 900px) {
	:root {
		/* Floating centered-nav: 12px inset + ~3.75rem bar + safe area */
		--wilken-centered-nav-clearance: calc(12px + 3.75rem + env(safe-area-inset-top, 0px));
	}

	.navigation.hide-desktop {
		display: block;
	}
	/* Hide site header on mobile: centered-nav provides logo + menu */
	.site-header {
		display: none;
	}
	/* Top padding so content doesn't sit under the floating centered-nav */
	.site-main {
		padding-top: 5rem;
	}

	/* Full-bleed hero ambient layers: keep decorative chips below the nav shell */
	.page-contact-hero-ambient,
	.page-faqs-hub .page-faqs-hero-ambient {
		top: var(--wilken-centered-nav-clearance);
	}
	/* Full-bleed templates: hero under nav, no strip of body background below header */
	main.site-main.single-post,
	main.site-main.single-blog,
	.site-main.page-about,
	.site-main.page-projects,
	.site-main.page-capabilities,
	.site-main.page-discovery,
	.site-main.page-faqs,
	.site-main.page-faq-item,
	.site-main.page-contact,
	.site-main.wilken-case-showcase-page,
	body.home .site-main.front-page {
		padding-top: 0;
	}
}

/* ==========================================================================
   Main / Layout
   ========================================================================== */
.site-main {
	min-height: 50vh;
}

/* Front page: allow hero animation to extend full viewport width (svz.io style) */
body.home .site-main.front-page,
body.home .front-page-content,
body.home .sticky-container {
	overflow: visible;
	overflow-x: visible;
}

/* Narrow viewports: clip stray horizontal overflow from animations while keeping hero full-width */
@media (max-width: 900px) {
	body.home .sticky-container {
		overflow-x: clip;
	}
}

/* Homepage article wraps all sections; keep full usable width on narrow viewports */
body.home article.front-page-content {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* ==========================================================================
   Hero (svz benchmark: full-height, split headline, scroll-down: light theme)
   ========================================================================== */
.hero-section {
	padding: 4.5rem 1.5rem 6rem;
	text-align: center;
	background: linear-gradient(180deg, #f8faf8 0%, #fff 100%);
}

.hero-section--full {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 1.5rem 5rem;
	padding-left: max(1.5rem, env(safe-area-inset-left));
	padding-right: max(1.5rem, env(safe-area-inset-right));
	position: relative;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: visible; /* Allow full-width animation to extend edge-to-edge (svz.io style) */
	overflow-x: visible;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 50% at 50% 40%, rgba(26, 95, 74, 0.04) 0%, transparent 70%);
	pointer-events: none;
}

/* Hero Lottie: spans section width (avoid 100vw on narrow viewports: scrollbar/layout overflow) */
.hero-lottie {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	min-width: 0;
	height: clamp(7rem, 40vw, 50vh);
	max-height: 50vh;
	transform: none;
	pointer-events: none;
	opacity: 1;
	z-index: 0;
}

.hero-lottie svg {
	width: 100%;
	height: 100%;
	overflow: visible;
	vertical-align: bottom; /* Align SVG content to bottom of container */
}

.hero-lottie canvas {
	width: 100%;
	height: 100%;
	display: block;
	vertical-align: bottom;
}

.hero-inner {
	max-width: 720px;
	width: 100%;
	margin: 0 auto;
	min-width: 0;
}

.hero-inner--split {
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 1.5rem;
	opacity: 0.9;
	transition: color 0.35s ease;
}

.hero-headline-block {
	margin-bottom: 1.25rem;
}

.hero-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0.35em 0.5em;
	margin-bottom: 0.15em;
	width: 100%;
	min-width: 0;
}

.hero-row > .hero-headline,
.hero-row > .hero-side {
	min-width: 0;
}

/* German: qualifier visually after headline (also covers stale span-first cached markup). */
body.wilken-lang-de .hero-headline-block .hero-row .hero-headline {
	order: 1;
}

body.wilken-lang-de .hero-headline-block .hero-row .hero-side {
	order: 2;
}

.hero-side {
	font-size: clamp(1rem, 2.2vw, 1.25rem);
	font-weight: 500;
	color: #6b7280;
	overflow-wrap: break-word;
	hyphens: auto;
	transition: color 0.35s ease;
}

.hero-headline {
	display: inline;
	margin: 0;
	font-size: clamp(2.25rem, 6vw, 4rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #111;
	overflow-wrap: break-word;
	hyphens: auto;
	transition: color 0.35s ease;
}

.hero-headline--main {
	color: #111;
}

.hero-headline--accent {
	color: #1a5f4a;
}

.hero-sub {
	font-size: clamp(1rem, 2.8vw, 1.125rem);
	color: #4b5563;
	margin: 0 0 2rem;
	line-height: 1.65;
	max-width: 540px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow-wrap: break-word;
	hyphens: auto;
	transition: color 0.35s ease;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1rem;
	margin-bottom: 3rem;
	width: 100%;
	min-width: 0;
}

.hero-cta {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	text-align: center;
	max-width: 100%;
}

.hero-scroll {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: #6b7280;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s;
}

.hero-scroll:hover {
	color: #1a5f4a;
}

.hero-scroll-icon {
	animation: hero-scroll-bounce 2.4s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(4px); }
}

/* Homepage: light copy when fixed ambient shows through hero (scroll-back from dark stack) */
.sticky-container > .hero-section {
	position: relative;
	z-index: 5;
}

.hero-section--on-dark {
	background: transparent;
	transition: color 0.35s ease, background 0.35s ease;
}

.hero-section--on-dark .hero-bg {
	opacity: 0;
}

.hero-section--on-dark .hero-eyebrow {
	color: rgba(186, 244, 200, 0.88);
}

.hero-section--on-dark .hero-headline,
.hero-section--on-dark .hero-headline--main {
	color: #f8fafc;
}

.hero-section--on-dark .hero-headline--accent {
	color: var(--wilken-ci-mint);
}

.hero-section--on-dark .hero-side,
.hero-section--on-dark .hero-sub {
	color: rgba(248, 250, 252, 0.78);
}

.hero-section--on-dark .hero-scroll {
	color: rgba(248, 250, 252, 0.62);
}

.hero-section--on-dark .hero-scroll:hover {
	color: #a7f3d0;
}

.hero-section--on-dark .hero-cta--outline.button--outline {
	border-color: rgba(248, 250, 252, 0.45);
	color: #f8fafc;
}

.hero-section--on-dark .hero-cta--outline.button--outline:hover {
	background: rgba(248, 250, 252, 0.1);
	border-color: rgba(248, 250, 252, 0.75);
	color: #fff;
}

body.home.wilken-home-hero-on-dark .site-header {
	--wilken-header-bg: rgba(13, 61, 48, 0.42);
	--wilken-header-border: rgba(248, 250, 252, 0.12);
	--wilken-header-link: rgba(248, 250, 252, 0.86);
	--wilken-header-link-hover: #a7f3d0;
	--wilken-header-link-active: #fff;
}

body.home.wilken-home-hero-on-dark .site-header .site-title {
	color: #f8fafc;
}

body.home.wilken-home-hero-on-dark .site-header .site-title:hover {
	color: #a7f3d0;
}

body.home.wilken-home-hero-on-dark .site-header .lang-switcher--header {
	background: rgba(248, 250, 252, 0.08);
	border-color: rgba(248, 250, 252, 0.22);
	color: rgba(248, 250, 252, 0.92);
}

body.home.wilken-home-hero-on-dark .site-header .lang-switcher--header:hover,
body.home.wilken-home-hero-on-dark .site-header .lang-switcher--header:focus-visible {
	border-color: #a7f3d0;
	color: #a7f3d0;
	background: rgba(248, 250, 252, 0.12);
}

body.home.wilken-home-hero-on-dark .site-header .header-discovery-cta {
	color: rgba(248, 250, 252, 0.95);
	border-color: rgba(248, 250, 252, 0.55);
	background: transparent;
}

body.home.wilken-home-hero-on-dark .site-header .header-discovery-cta:hover,
body.home.wilken-home-hero-on-dark .site-header .header-discovery-cta:focus-visible {
	color: #fff;
	border-color: rgba(248, 250, 252, 0.95);
	background: rgba(248, 250, 252, 0.1);
}

body.home.wilken-home-hero-on-dark .site-header .wilken-bundled-logo--on-light {
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.hero-headline-line {
	display: block;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	color: #111;
}

/* ==========================================================================
   Hero zoom (svz section_home_zoom: dark, monumental, blurred atmos, scale)
   ========================================================================== */
.hero-zoom {
	height: 150vh;
	min-height: 600px;
	position: relative;
	overflow: hidden;
}

.hero-zoom__bg {
	display: none;
}

/* Sticky container (svz benchmark): groups hero + zoom for proper scroll/overlay stacking */
.sticky-container {
	position: relative;
	overflow: visible; /* Let hero animation extend full viewport width */
}

/* Ambient stack: fixed gradient behind GSAP-pinned children (no seams) */
.wilken-ambient-stack,
.sticky-dark-stack {
	position: relative;
	isolation: isolate;
}

.wilken-ambient-stack > *:not(.wilken-sticky-ambient),
.sticky-dark-stack .hero-zoom,
.sticky-dark-stack .hero-zoom__sticky,
.sticky-dark-stack .statement-section--dark,
.sticky-dark-stack .statement-section--dark .statement-sticky {
	background: transparent;
}

.portfolio-metrics-section.wilken-ambient-stack .wilken-vc-metrics-heading,
.portfolio-metrics-section.wilken-ambient-stack .wilken-vc-metrics__pin,
.portfolio-metrics-section.wilken-ambient-stack .wilken-vc-metrics__scene,
.portfolio-metrics-section.wilken-ambient-stack .wilken-vc-metrics__stage,
.portfolio-metrics-section.wilken-ambient-stack .wilken-vc-metrics-footer {
	background: transparent;
}

.portfolio-metrics-section.wilken-ambient-stack > *:not(.wilken-sticky-ambient) {
	position: relative;
	z-index: 3;
}

.wilken-sticky-ambient {
	position: fixed;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.55s ease, visibility 0.55s ease;
	--wilken-ambient-x: 50;
	--wilken-ambient-y: 42;
	--wilken-ambient-scroll: 0;
}

.wilken-sticky-ambient.is-visible {
	opacity: 1;
	visibility: visible;
}

.wilken-sticky-ambient__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			calc(158deg + var(--wilken-ambient-scroll, 0) * 14deg),
			var(--wilken-ci-forest-1) 0%,
			var(--wilken-ci-forest-2) 38%,
			var(--wilken-ci-forest-3) 68%,
			var(--wilken-ci-forest-deep) 100%
		);
}

.wilken-sticky-ambient__orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(72px);
	will-change: transform;
}

.wilken-sticky-ambient__orb--deep {
	width: min(72vw, 640px);
	height: min(72vw, 640px);
	left: 12%;
	top: 58%;
	background: radial-gradient(circle, rgba(13, 61, 48, 0.55) 0%, transparent 68%);
	animation: wilken-ambient-drift-deep 22s ease-in-out infinite;
}

.wilken-sticky-ambient__orb--mint {
	width: min(58vw, 520px);
	height: min(58vw, 520px);
	right: 8%;
	top: 18%;
	background: radial-gradient(circle, rgba(134, 239, 172, 0.28) 0%, transparent 70%);
	animation: wilken-ambient-drift-mint 18s ease-in-out infinite;
}

.wilken-sticky-ambient__orb--cursor {
	width: min(48vw, 440px);
	height: min(48vw, 440px);
	left: calc(var(--wilken-ambient-x, 50) * 1%);
	top: calc(var(--wilken-ambient-y, 42) * 1%);
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(26, 95, 74, 0.42) 0%, transparent 72%);
	opacity: 0.9;
}

.wilken-sticky-ambient__grain {
	position: absolute;
	inset: 0;
	opacity: 0.045;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	mix-blend-mode: overlay;
}

@keyframes wilken-ambient-drift-deep {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(4%, -3%) scale(1.06);
	}
}

@keyframes wilken-ambient-drift-mint {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(-5%, 4%) scale(1.08);
	}
}

.sticky-dark-stack .statement-section--dark {
	position: relative;
	z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
	.wilken-sticky-ambient__orb--deep,
	.wilken-sticky-ambient__orb--mint {
		animation: none;
	}

	.wilken-sticky-ambient {
		transition: none;
	}
}

.hero-zoom__sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 50;
	overflow: hidden;
	/* Layer on top of header and subsequent section during pin (svz we-are-2 behavior) */
}

.hero-zoom__inner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4vw;
	box-sizing: border-box;
}

.hero-zoom__text-wrapper {
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-zoom__text {
	display: block;
	font-size: clamp(5rem, 18vw, 16rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 0.85;
	color: #e8e8e8;
	white-space: nowrap;
	transform-origin: center center;
	text-transform: uppercase;
	font-family: "DM Sans", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Hub (svz "THE HUB": card grid, light theme)
   SVZ reference: section_agency-hub, agency-hub_card, heading-style-h5
   ========================================================================== */
.hub-section {
	padding: clamp(3rem, 6vw, 5rem) 0;
	background: #fff;
}

.hub-inner {
	margin: 0 auto;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

.hub-header--contained {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1.5rem;
}

.hub-component--fullwidth {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 0 1rem;
	box-sizing: border-box;
}

@media (min-width: 480px) {
	.hub-component--fullwidth {
		padding: 0 1.5rem;
	}
}

@media (min-width: 992px) {
	.hub-component--fullwidth {
		padding: 0 clamp(2rem, 4vw, 4rem);
	}
}

.section_agency-hub .padding-section-medium {
	padding-top: clamp(2rem, 4vw, 3rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
}

.section_agency-hub .align-center {
	text-align: center;
}

/* SVZ span-dirtyline / red-text → Wilken green accent */
.span-dirtyline,
.red-text {
	color: #1a5f4a;
}

.hub-header {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hub-title--svz {
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 800;
}

.hub-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 0.95;
	text-align: center;
	color: #0d0d0d;
	margin: 0 0 1.5rem;
	letter-spacing: -0.03em;
	font-family: "DM Sans", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: break-word;
}

/* Mobile: agency line after hero zoom; desktop: hub label (statement section ≥1024px). */
.hub-title__variant--desktop {
	display: none;
}

.hub-title-line {
	display: block;
}

@media (min-width: 1024px) {
	.hub-title__variant--mobile {
		display: none;
	}

	.hub-title__variant--desktop {
		display: block;
	}
}

.hub-logo-banner {
	margin-top: 0.5rem;
}

.hub-logo-banner-eyebrow {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #64748b;
	margin: 0;
}

/* Card grid: SVZ agency-hub_component: portfolio full width, then 3 cards */
.hub-component {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-auto-rows: auto;
	gap: 1rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/*
 * IMPORTANT: Named grid-area values only apply ≥768px alongside grid-template-areas.
 * Using grid-area names without matching template-areas caused implicit columns on phones and horizontal overflow.
 */
.hub-component > a {
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

/* SVZ benchmark: portfolio row + Services + Contact (tablet+) */
@media (min-width: 768px) {
	.hub-component {
		grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
		grid-template-rows: auto 1fr;
		grid-template-areas:
			"portfolio portfolio"
			"services contact";
		gap: 1.5rem;
	}

	.hub-component .hub-card--portfolio {
		grid-area: portfolio;
	}

	.hub-card--services {
		grid-area: services;
	}

	.hub-card--contact {
		grid-area: contact;
	}
}

/* Homepage hub when projects are gated off at launch */
@media (min-width: 768px) {
	.hub-component--projects-gated {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows: auto;
		grid-template-areas: "services contact";
	}
}

.hub-card {
	position: relative;
	display: block;
	min-height: 160px;
	padding: 1.5rem;
	border-radius: 6px;
	overflow: hidden;
	background: #f0f0f0;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s;
}

@media (min-width: 768px) {
	.hub-card {
		min-height: 220px;
		padding: 1.75rem;
		border-radius: 8px;
	}
}

.hub-card:not(.hub-card--portfolio):hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
	border-color: rgba(0, 0, 0, 0.08);
}

.hub-card-bg {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.hub-card:hover .hub-card-bg {
	opacity: 1;
}

/* Portfolio card: SVZ-style image grid with overlay and title: 60vh to match benchmark */
.hub-card--portfolio {
	padding: 0;
	display: grid;
	grid-template-areas: "stack";
	background: #0d0d0d;
	height: 60vh;
	min-height: 280px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hub-card--portfolio:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hub-card--portfolio > * {
	grid-area: stack;
}

/* SVZ: 4 columns in a row, order is-1, is-3, is-2, is-4 from left to right */
.hub-portfolio-columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-template-areas:
		"col1 col3"
		"col2 col4";
	gap: 2px;
	width: 100%;
	height: 100%;
	min-height: 280px;
	overflow: hidden;
}

@media (min-width: 768px) {
	.hub-portfolio-columns {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: 1fr;
		grid-template-areas: "col1 col3 col2 col4";
		min-height: 0;
	}
}

@media (max-width: 767px) {
	.hub-card--portfolio {
		height: 50vh;
	}
}

.hub-portfolio-columns .card_column.is-1 { grid-area: col1; }
.hub-portfolio-columns .card_column.is-2 { grid-area: col2; }
.hub-portfolio-columns .card_column.is-3 { grid-area: col3; }
.hub-portfolio-columns .card_column.is-4 { grid-area: col4; }

.hub-portfolio-columns .card_column {
	position: relative;
	overflow: hidden;
}

/* One full-height screenshot per column (SVZ); GSAP pans vertically on hover */
.hub-portfolio-columns .portfolio_card-image {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	will-change: transform;
}

/* Hub portfolio motion: GSAP-only (smooth return-to-rest on mouse leave) */

.portfolio_card-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a5f4a 0%, #0d3d30 50%, #1a5f4a 100%);
	opacity: 0.5;
}

.card_overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
	pointer-events: none;
}

.hub-card--portfolio .portoflio-card_title-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	color: #fff;
	gap: 1rem;
	z-index: 1;
	min-width: 0;
}

.hub-card--portfolio .hub-card-title--svz {
	color: #fff;
}

.hub-card--portfolio .hub-card-title--svz .span-dirtyline {
	color: #86efac;
}

.hub-card--portfolio .hub-card-arrow {
	color: #fff;
}

.heading-style-h5 {
	font-size: clamp(0.75rem, 2.8vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Webflow class used in hub markup: ensure row flex + shrink on small screens */
.section_agency-hub .w-layout-hflex {
	display: flex;
	flex-direction: row;
	align-items: center;
	min-width: 0;
}

.section_agency-hub .heading-style-h5,
.section_agency-hub .hub-card-title--svz {
	min-width: 0;
	overflow-wrap: break-word;
}

.hub-card--portfolio .hub-card-bg {
	display: none;
}

.hub-card--services .hub-card-bg {
	background: linear-gradient(160deg, rgba(26, 95, 74, 0.03) 0%, rgba(134, 239, 172, 0.05) 100%);
}

/* Services card: Wilken CI (green), CULTURE-style layout, Lottie, title at bottom */
.hub-card--services.agency-hub_card.is-culture {
	background: #1a5f4a;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60vh;
	min-height: 220px;
	padding: 2rem;
}
/* Services card: match benchmark: title wrapper only positions label at bottom, NO overlay so Lottie shows */
.hub-card--services.agency-hub_card.is-culture .culture-card_title-wrapper {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	padding: 2rem;
	z-index: 2;
	background: none;
}
.hub-card--services.agency-hub_card.is-culture .heading-style-h5 {
	color: #fff;
	line-height: 1.2;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0.4);
	position: relative;
	z-index: 1;
}
.hub-card--services.agency-hub_card.is-culture .heading-style-h5 .span-dirtyline {
	color: #86efac;
}
.hub-card--services.agency-hub_card.is-culture .agency-hub_card-title-wrapper {
	position: relative;
	z-index: 1;
	width: 100%;
}
.hub-card--services.agency-hub_card.is-culture .hub-card-arrow {
	color: #fff;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

/* Contact / Get started card: process-card with Lottie (Sliding Squares), Wilken light theme */
.agency-hub_card.is-process {
	background: #f5f7f5;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60vh;
	min-height: 220px;
	padding: 2rem;
}
.agency-hub_card.is-process .process-card_title-wrapper {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	padding: 2rem;
	z-index: 2;
	background-image: linear-gradient(356deg, rgba(245, 247, 245, 0.95) 15%, transparent 70%);
}

@media (max-width: 767px) {
	.hub-card--services.agency-hub_card.is-culture,
	.agency-hub_card.is-process {
		height: min(52vh, 28rem);
		min-height: 200px;
	}
}

/* Contact card: dezentes Grau für "Loslegen"-Look (applies when hub-card--contact + is-process) */
.hub-card--contact .hub-card-title--svz {
	color: #6b7280;
}

.hub-card--contact .hub-card-title--svz .span-dirtyline {
	color: #1a5f4a;
}

.hub-card--contact .hub-card-arrow {
	color: #9ca3af;
}

.hub-card--contact:hover .hub-card-title--svz {
	color: #4b5563;
}

.hub-card--contact:hover .hub-card-arrow {
	color: #6b7280;
}

.hub-card--contact:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hub-card-content {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	height: 100%;
	min-height: 120px;
}

@media (min-width: 768px) {
	.hub-card-content {
		min-height: 180px;
	}
}

.hub-card-title-wrapper,
.agency-hub_card-title-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 1rem;
}

.hub-card-title--svz {
	font-size: clamp(0.75rem, 2.8vw, 1rem);
	font-weight: 700;
	color: #0d0d0d;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
}

.hub-card .hub-card-arrow {
	flex-shrink: 0;
	color: #1a5f4a;
	transition: transform 0.2s ease, color 0.2s ease;
}

.hub-card--contact .hub-card-arrow {
	color: #9ca3af;
}

.hub-card:hover .hub-card-arrow {
	transform: translate(4px, -4px);
}

/* Arrow icon wrapper (benchmark layout): size for heading-style-h5 context */
.icon-embed-xxsmall.w-embed {
	display: flex;
	flex-shrink: 0;
	width: 1em;
	height: 1em;
}

.icon-embed-xxsmall.w-embed .hub-card-arrow {
	width: 100%;
	height: 100%;
}

/* SVZ-style Lottie hub cards: fix positioning so SVG content aligns at left:0, top:0 */
/* Wrapper for Services card: holds Lottie + overlay (overlay must be sibling so Lottie doesn't wipe it) */
.hub-card--services .culture-card_lottie-wrap {
	position: absolute;
	inset: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.agency-hub_card .culture-card_lottie,
.agency-hub_card .process-card_lottie {
	position: absolute;
	inset: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.agency-hub_card .culture-card_lottie svg,
.agency-hub_card .process-card_lottie svg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Services card: Lottie: Wilken green bg, white text. Background is a path (not rect) in Lottie JSON */
.hub-card--services .culture-card_lottie {
	z-index: 1;
	background: #1a5f4a;
}
.hub-card--services .culture-card_lottie svg {
	object-fit: contain;
	object-position: center center;
}
/* Background path (first layer): Wilken green. Text paths use fill #fff below */
.hub-card--services .culture-card_lottie svg > g > g:first-of-type > path {
	fill: #1a5f4a !important;
}
.hub-card--services .culture-card_lottie svg rect {
	fill: #1a5f4a !important;
}
/* Text paths: white on green */
.hub-card--services .culture-card_lottie svg path {
	fill: #fff !important;
}

/* Hide first Lottie text slot (Legacy): we overlay "Performance" / "Leistung" instead */
.hub-card--services .culture-card_lottie[data-lottie-overlay] svg > g > g:nth-child(2) {
	visibility: hidden;
}

/* Overlay for first word: synced via JS to Lottie position/opacity */
.hub-card--services .culture-card_lottie-overlay {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	color: #fff;
	font-size: clamp(0.6rem, 2.5vw, 1rem);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
	z-index: 2;
	opacity: 0;
	transition: none;
}

/* Do NOT override transform on Lottie g elements: animation uses transform for text glide effect */
.agency-hub_card .culture-card_title-wrapper,
.agency-hub_card .process-card_title-wrapper,
.agency-hub_card .enterprise-card_title-wrapper {
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   Slogan (statement section)
   ========================================================================== */
.slogan-section {
	padding: 5rem 1.5rem;
	background: linear-gradient(180deg, #f8faf8 0%, #fff 100%);
}

.slogan-inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.slogan-text {
	font-size: clamp(1.125rem, 2vw, 1.35rem);
	line-height: 1.7;
	color: #374151;
	margin: 0 0 2rem;
}

.slogan-cta {
	margin-top: 0.5rem;
}

/* ==========================================================================
   Statement (svz scroll-track sticky: full-width keywords + paragraph)
   ========================================================================== */
.statement-section {
	position: relative;
	background: #fff;
}

.statement-section.hide-tablet {
	display: none;
}

@media (min-width: 1024px) {
	.statement-section.hide-tablet {
		display: block;
	}
}

.statement-container {
	width: 100%;
	max-width: 100%;
	position: relative;
}

/* container-text: svz: wraps scroll-track + parallax-wrapper siblings */
.statement-container.container-text {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

/* Parallax-wrapper tiles: svz pattern: floating tiles around content */
.statement-section .parallax-wrapper {
	z-index: 15;
	width: clamp(10rem, 20vw, 16rem);
	aspect-ratio: 4/3;
	max-width: 30vw;
	position: absolute;
	overflow: hidden;
	border-radius: 0.375rem;
	pointer-events: none;
}

.statement-section .parallax-wrapper._3 {
	top: 10%;
	left: 1.5rem;
}

.statement-section .parallax-wrapper._4 {
	max-width: 30vw;
	height: auto;
	inset: 30% 1.5rem auto auto;
}

.statement-section .parallax-wrapper._2 {
	top: 50%;
	left: 1.5rem;
}

.statement-section .parallax-wrapper._1 {
	object-fit: cover;
	inset: 70% 1.5rem auto auto;
}

.statement-section .parallax-wrapper_overlay {
	z-index: 1;
	background-color: rgba(8, 8, 8, 0.5);
	position: absolute;
	inset: 0;
}

.statement-section .parallax-wrapper .image-parallax {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.statement-section .parallax-wrapper .image-parallax video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.statement-section .parallax-wrapper .statement-intro-tile-dummy {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
	font-size: 1.5rem;
	font-weight: 700;
	color: #9ca3af;
}

.statement-section .parallax-wrapper .details-wrapper {
	color: #fff;
	justify-content: space-between;
	padding: 0.5rem 0.75rem;
	font-size: 0.75rem;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	display: flex;
	flex-direction: column;
	position: absolute;
	inset: auto 0 0 0;
	z-index: 2;
	pointer-events: none;
}

.statement-section .parallax-wrapper .details-wrapper div:first-child {
	font-weight: 600;
}

/* Scroll track creates scroll depth; sticky pins during scroll */
.statement-scroll-track {
	min-height: 200vh;
	position: relative;
	z-index: 10;
}

.statement-sticky {
	position: sticky;
	top: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 1.5rem;
}

/* Prevent text/scattered words from overlapping parallax video tiles (desktop) */
@media (min-width: 1024px) {
	.statement-sticky {
		padding-left: max(2rem, 22vw);
		padding-right: max(2rem, 22vw);
	}
}

.statement-section:not(.statement-section--dark) .statement-sticky {
	background: linear-gradient(180deg, #fafbfa 0%, #fff 100%);
}

.statement-section--dark .statement-content {
	color: #e8e8e8;
}

.statement-section--dark .statement-words-row,
.statement-section--dark .statement-word-animated {
	color: rgba(186, 244, 200, 0.95);
}

.statement-section--dark .statement-text {
	color: rgba(232, 232, 232, 0.9);
}

.statement-section--dark .statement-text .statement-highlight {
	color: #86efac;
}

.statement-content {
	max-width: 900px;
	margin: 0 auto;
	width: 100%;
}

.statement-text-wrap {
	position: relative;
}

/* Static inline keywords: hidden; match words-row typography so they reserve same space (no overlap) */
.statement-paragraph-text [id$="-static"] {
	visibility: hidden;
	font-size: clamp(1rem, 2vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Animated keywords row: overlay layer; flex-start so matchLocation overlays inline correctly */
.statement-words-row {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1em 2em;
	padding-bottom: 2rem;
	font-size: clamp(1rem, 2vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1a5f4a;
	pointer-events: none;
	z-index: 2;
}

/* Stacked state: vertical list, no gap, center-aligned (only after white text fades) */
.statement-words-row.is-stacked {
	flex-direction: column;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: center;
	gap: 0;
	row-gap: 0;
}

.statement-word-animated {
	visibility: hidden;
	white-space: nowrap;
	will-change: transform;
	pointer-events: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
}

.statement-word {
	white-space: nowrap;
}

.statement-paragraph-text .line {
	display: block;
}

.statement-paragraph-text .word {
	display: inline-block;
}

.statement-text {
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	line-height: 1.8;
	color: #374151;
	text-align: justify;
	margin: 0 0 2rem;
}

.statement-text .statement-highlight {
	color: #1a5f4a;
	font-weight: 600;
}

.statement-cta {
	margin: 0;
	text-align: center;
}

/* Statement introduction: mobile/tablet (svz section_introduction is-mobile) */
.statement-introduction {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.statement-introduction.is-mobile {
	display: block;
}

@media (min-width: 1024px) {
	.statement-introduction.is-mobile {
		display: none;
	}
}

/* svz flat DOM: padding-global > container-small > padding-section-large */
.statement-introduction .padding-global {
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-left: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	padding-right: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-right));
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

@media (min-width: 768px) {
	.statement-introduction .padding-global {
		padding-top: 5rem;
		padding-bottom: 5rem;
		padding-left: max(2rem, env(safe-area-inset-left));
		padding-right: max(2rem, env(safe-area-inset-right));
	}
}

.statement-introduction .container-small {
	width: 100%;
	max-width: min(40rem, 100%);
	min-width: 0;
	box-sizing: border-box;
}

.statement-introduction .padding-section-large {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.statement-introduction .introduction_component {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* introduction_text: long-form copy in an h2; SplitType word reveal (no justified text on narrow viewports) */
.statement-introduction .introduction_text {
	font-size: clamp(0.95rem, 2.5vw, 1.15rem);
	line-height: 1.75;
	color: #374151;
	text-align: left;
	margin: 0;
	font-weight: 400;
	font-kerning: none; /* Prevents layout shift when SplitType splits (SplitType README) */
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	overflow-wrap: anywhere;
	hyphens: auto;
	text-wrap: pretty;
}

.statement-introduction .introduction_text .word {
	display: inline;
	vertical-align: baseline;
}

.statement-introduction .introduction_text .statement-highlight {
	color: #1a5f4a;
	font-weight: 600;
	font-size: inherit;
}

/* svz utility: container-small, padding-section-large */
.container-small {
	max-width: 40rem;
}

.padding-section-large {
	--padding-section-y: 3rem;
}

.padding-global {
	--padding-global-x: 1.5rem;
}

@media (min-width: 768px) {
	.padding-global {
		--padding-global-x: 2rem;
	}
}

/* ==========================================================================
   Blog call-out (Wilken header + image cards + serif titles)
   ========================================================================== */
.blog-callout-section {
	padding: clamp(3rem, 6vw, 5rem) max(var(--padding-global-x, 1.5rem), env(safe-area-inset-right)) clamp(3rem, 6vw, 5rem) max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	background: #fff;
	border-radius: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
}

.blog-callout-container {
	max-width: 72rem;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	min-width: 0;
}

.blog-callout-header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.blog-callout-eyebrow {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 0.75rem;
}

.blog-callout-headline {
	font-size: clamp(1.65rem, 3.5vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f172a;
	margin: 0 0 0.75rem;
	line-height: 1.15;
	font-family: "DM Sans", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.blog-callout-sub {
	font-size: 1.05rem;
	color: #64748b;
	line-height: 1.65;
	margin: 0;
}

.blog-callout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.blog-callout-item {
	margin: 0;
	padding: 0;
	list-style: none;
	min-height: 0;
	min-width: 0;
	height: 100%;
}

.blog-callout-item .blog-callout-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.blog-callout-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

.blog-callout-card {
	position: relative;
	display: block;
	border-radius: 1rem;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
	isolation: isolate;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.blog-callout-card:hover,
.blog-callout-card:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
}

.blog-callout-card:focus-visible {
	outline: 2px solid #1a5f4a;
	outline-offset: 3px;
}

.blog-callout-card__bg {
	position: absolute;
	inset: 0;
	background-color: #1a1f1a;
	background-size: cover;
	background-position: center;
	transition: transform 0.55s ease;
	pointer-events: none;
}

.blog-callout-card:hover .blog-callout-card__bg,
.blog-callout-card:focus-visible .blog-callout-card__bg {
	transform: scale(1.04);
}

.blog-callout-card--no-image .blog-callout-card__bg {
	background-image: linear-gradient(145deg, #2d3832 0%, #0f1411 100%);
}

.blog-callout-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 12, 10, 0.35) 0%, rgba(6, 8, 6, 0.72) 100%);
	pointer-events: none;
}

.blog-callout-card__arrow {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	background: #fff;
	color: #0d0d0d;
	border-radius: 0.2rem;
	pointer-events: none;
}

.blog-callout-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	text-align: center;
	flex: 1;
	width: 100%;
	min-width: 0;
	min-height: clamp(18rem, 52vw, 26.5rem);
	padding: 2.5rem 1.75rem 2rem;
	box-sizing: border-box;
	gap: 1rem;
}

.blog-callout-card__tag {
	min-width: 0;
	align-self: stretch;
	max-width: 100%;
	box-sizing: border-box;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	font-family: "DM Sans", system-ui, sans-serif;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: normal;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	hyphenate-character: "-";
}

.blog-callout-card__date {
	display: block;
	min-width: 0;
	align-self: stretch;
	max-width: 100%;
	margin: 0;
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.82);
	font-family: "DM Sans", system-ui, sans-serif;
}

.blog-callout-card__title {
	min-width: 0;
	align-self: stretch;
	max-width: min(100%, 42rem);
	margin-inline: auto;
	box-sizing: border-box;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(1.35rem, 3.2vw, 1.85rem);
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: normal;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	hyphenate-character: "-";
	text-wrap: balance;
}

.blog-callout-section .section-cta {
	margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
	text-align: center;
}

/* ==========================================================================
   FAQ teaser (SVZ-style card grid, light)
   ========================================================================== */
.faq-teaser-section {
	padding: clamp(3.5rem, 8vw, 5rem) max(1.5rem, env(safe-area-inset-right)) clamp(3.5rem, 8vw, 5rem) max(1.5rem, env(safe-area-inset-left));
	background: #f8faf9;
	border-top: 1px solid #e8eeea;
	border-bottom: 1px solid #e8eeea;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.faq-teaser-shell {
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	min-width: 0;
}

.faq-teaser-header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2.5rem;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
}

.faq-teaser-eyebrow {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 0.75rem;
}

.faq-teaser-headline {
	font-size: clamp(1.65rem, 3.5vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f172a;
	margin: 0 0 0.75rem;
	line-height: 1.15;
}

.faq-teaser-sub {
	font-size: 1.05rem;
	color: #64748b;
	line-height: 1.65;
	margin: 0;
}

.faq-teaser-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* Fourth teaser card: tablet-only (2×2); hidden on mobile, laptop, and desktop */
.faq-teaser-card--tablet-only {
	display: none;
}

@media (min-width: 560px) and (max-width: 899px) {
	.faq-teaser-card--tablet-only {
		display: flex;
		min-height: 100%;
	}

	.faq-teaser-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.35rem;
	}

	.faq-teaser-grid .faq-teaser-card {
		display: flex;
		min-height: 100%;
	}

	.faq-teaser-grid .faq-teaser-card-link {
		flex: 1;
		height: 100%;
	}
}

@media (min-width: 900px) {
	.faq-teaser-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}

	.faq-teaser-grid .faq-teaser-card:not(.faq-teaser-card--tablet-only) {
		display: flex;
		min-height: 100%;
	}

	.faq-teaser-grid .faq-teaser-card:not(.faq-teaser-card--tablet-only) .faq-teaser-card-link {
		flex: 1;
		height: 100%;
	}
}

.faq-teaser-card {
	margin: 0;
	min-width: 0;
}

.faq-teaser-card-link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 15rem;
	padding: clamp(1.35rem, 3vw, 1.65rem);
	text-decoration: none;
	color: inherit;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.faq-teaser-card-link > * {
	position: relative;
	z-index: 1;
}

.faq-teaser-card-link:hover,
.faq-teaser-card-link:focus-visible {
	outline: none;
}

.faq-teaser-card-eyebrow {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 0.85rem;
	min-width: 0;
	align-self: stretch;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.faq-teaser-card-question {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	color: #0f172a;
	margin: 0 0 auto;
	padding-right: 0.5rem;
	min-width: 0;
	align-self: stretch;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.faq-teaser-card-more {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin-top: 1.25rem;
}

.faq-teaser-actions {
	text-align: center;
	margin: 2.5rem 0 0;
}

.faq-teaser-cta {
	display: inline-block;
	min-width: min(12rem, 100%);
	max-width: 100%;
	box-sizing: border-box;
	text-align: center;
}

/* ==========================================================================
   FAQ hub & topic pages (light)
   ========================================================================== */
.page-faqs-inner {
	max-width: 960px;
	margin: 0 auto;
	padding: clamp(2.5rem, 6vw, 4rem) 1.5rem 4rem;
}

.page-faq-topic-inner {
	max-width: 56rem;
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem) 4rem;
}

/* FAQ single answer: light green page canvas (Wilken CI surface-ink family) */
.site-main.page-faq-item {
	background:
		radial-gradient(ellipse 72% 55% at 12% 8%, rgba(26, 95, 74, 0.07) 0%, transparent 52%),
		radial-gradient(ellipse 58% 48% at 88% 92%, rgba(134, 239, 172, 0.14) 0%, transparent 48%),
		linear-gradient(180deg, var(--wilken-ci-surface-ink) 0%, #f8faf8 55%, #f1f7f4 100%);
}

/* FAQ single: green main meets light footer with no strip of body background */
main.site-main.page-faq-item + footer.site-footer.site-footer--light {
	margin-top: 0;
}

/* FAQ hub hero: agency-scale masthead (SVZ faq_header rhythm, Wilken CI tokens) */
.page-faqs-hero {
	position: relative;
	padding: clamp(2.75rem, 7vw, 4.75rem) 0 clamp(2.25rem, 5vw, 3.75rem);
	background: linear-gradient(180deg, #f8faf8 0%, #fff 100%);
	overflow: hidden;
}

/* FAQ hub + contact: fill viewport below fixed header */
.page-faqs-hub .page-faqs-hero,
.page-contact .page-faqs-hero {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	min-height: calc(100vh - var(--wilken-site-header-height, 0px));
	min-height: calc(100dvh - var(--wilken-site-header-height, 0px));
	padding-block: clamp(2rem, 5vw, 3.5rem);
}

.page-faqs-hub .page-faqs-hero-inner,
.page-contact .page-faqs-hero-inner {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.page-faqs-hub .page-faqs-hero-grid,
.page-contact .page-faqs-hero-grid {
	flex: 1 1 auto;
	justify-content: center;
	align-items: center;
}

@media (max-width: 900px) {
	.page-faqs-hub .page-faqs-hero,
	.page-contact .page-faqs-hero {
		min-height: calc(100vh - 5rem);
		min-height: calc(100dvh - 5rem);
	}
}

.page-faqs-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 55% at 12% 22%, rgba(26, 95, 74, 0.08) 0%, transparent 55%),
		radial-gradient(ellipse 50% 45% at 88% 40%, rgba(26, 95, 74, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

/* FAQ hub hero: Q&A ambient layer */
.page-faqs-hub .page-faqs-hero-ambient {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
	--wilken-faq-ambient-x: 50;
	--wilken-faq-ambient-y: 50;
}

.page-faqs-hero-ambient__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0.42;
}

.page-faqs-hero-ambient__rings {
	position: absolute;
	left: 14%;
	top: 52%;
	width: min(28vw, 220px);
	height: min(28vw, 220px);
	transform: translate(-50%, -50%);
}

.page-faqs-hero-ambient__ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(26, 95, 74, 0.16);
	animation: wilken-faq-ring-pulse 4.8s ease-out infinite;
}

.page-faqs-hero-ambient__ring:nth-child(2) {
	animation-delay: -1.6s;
}

.page-faqs-hero-ambient__ring:nth-child(3) {
	animation-delay: -3.2s;
}

.page-faqs-hero-ambient__glyphs {
	position: absolute;
	inset: 0;
}

.page-faqs-hero-ambient__glyph {
	position: absolute;
	font-family: "DM Sans", system-ui, sans-serif;
	font-weight: 800;
	line-height: 1;
	opacity: 0.07;
	animation: wilken-faq-glyph-float 9s ease-in-out infinite;
}

.page-faqs-hero-ambient__glyph--q {
	font-size: clamp(2.5rem, 7vw, 4.5rem);
	color: #1a5f4a;
}

.page-faqs-hero-ambient__glyph--check {
	font-size: clamp(2rem, 5vw, 3.25rem);
	color: rgba(26, 95, 74, 0.85);
}

.page-faqs-hero-ambient__glyph:nth-child(1) {
	left: 8%;
	top: 18%;
	animation-delay: 0s;
}

.page-faqs-hero-ambient__glyph:nth-child(2) {
	right: 10%;
	top: 24%;
	animation-delay: -2.2s;
}

.page-faqs-hero-ambient__glyph:nth-child(3) {
	left: 18%;
	bottom: 16%;
	animation-delay: -4.1s;
}

.page-faqs-hero-ambient__glyph:nth-child(4) {
	right: 16%;
	bottom: 20%;
	animation-delay: -6s;
}

.page-faqs-hero-ambient__chips {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	inset: 0;
	transform: translate3d(
		calc((var(--wilken-faq-ambient-x, 50) - 50) * 0.1px),
		calc((var(--wilken-faq-ambient-y, 50) - 50) * 0.08px),
		0
	);
}

.page-faqs-hero-ambient__chip {
	position: absolute;
	animation: wilken-faq-chip-float 6.5s ease-in-out infinite;
	animation-delay: calc(var(--chip-i, 0) * -1.2s);
}

.page-faqs-hero-ambient__chip--question {
	left: clamp(0.35rem, 3vw, 2rem);
	top: 22%;
	max-width: clamp(7.5rem, 16vw, 9.5rem);
}

.page-faqs-hero-ambient__chip--answer {
	right: clamp(0.35rem, 3vw, 2rem);
	top: 28%;
	max-width: clamp(8rem, 17vw, 10rem);
}

.page-faqs-hero-ambient__chip--search {
	left: clamp(0.35rem, 4vw, 2.5rem);
	bottom: 18%;
	width: clamp(8.5rem, 18vw, 11rem);
}

.page-faqs-hero-ambient__chip--accordion {
	right: clamp(0.35rem, 4vw, 2.5rem);
	bottom: 14%;
	width: clamp(9rem, 19vw, 11.5rem);
}

.page-faqs-hero-ambient__bubble,
.page-faqs-hero-ambient__search,
.page-faqs-hero-ambient__accordion {
	display: block;
	padding: 0.55rem 0.65rem;
	border-radius: 10px;
	border: 1px solid rgba(26, 95, 74, 0.14);
	background: rgba(255, 255, 255, 0.76);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
	opacity: 0.86;
}

.page-faqs-hero-ambient__bubble--q {
	border-bottom-left-radius: 4px;
}

.page-faqs-hero-ambient__bubble--a {
	display: flex;
	align-items: flex-start;
	gap: 0.35rem;
	border-bottom-right-radius: 4px;
}

.page-faqs-hero-ambient__bubble-text {
	display: block;
	font-size: 0.5625rem;
	font-weight: 600;
	line-height: 1.35;
	color: rgba(15, 23, 42, 0.72);
}

.page-faqs-hero-ambient__typing {
	display: flex;
	gap: 0.18rem;
	margin-top: 0.35rem;
}

.page-faqs-hero-ambient__typing span {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(26, 95, 74, 0.45);
	animation: wilken-faq-typing 1.4s ease-in-out infinite;
}

.page-faqs-hero-ambient__typing span:nth-child(2) {
	animation-delay: -0.25s;
}

.page-faqs-hero-ambient__typing span:nth-child(3) {
	animation-delay: -0.5s;
}

.page-faqs-hero-ambient__answer-mark {
	flex-shrink: 0;
	width: 0.85rem;
	height: 0.85rem;
	border-radius: 50%;
	background: rgba(26, 95, 74, 0.12);
	color: #1a5f4a;
	font-size: 0.5rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.page-faqs-hero-ambient__search {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.55rem;
}

.page-faqs-hero-ambient__search-icon {
	width: 0.75rem;
	height: 0.75rem;
	flex-shrink: 0;
	color: rgba(26, 95, 74, 0.55);
}

.page-faqs-hero-ambient__search-ph {
	flex: 1;
	font-size: 0.5625rem;
	color: rgba(100, 116, 139, 0.85);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.page-faqs-hero-ambient__search-cursor {
	width: 1px;
	height: 0.65rem;
	background: #1a5f4a;
	animation: wilken-faq-cursor-blink 1.05s step-end infinite;
}

.page-faqs-hero-ambient__accordion {
	list-style: none;
	margin: 0;
	padding: 0.45rem 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
}

.page-faqs-hero-ambient__acc-row {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.page-faqs-hero-ambient__acc-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(26, 95, 74, 0.25);
	flex-shrink: 0;
}

.page-faqs-hero-ambient__acc-row.is-open .page-faqs-hero-ambient__acc-dot {
	background: #1a5f4a;
	box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.12);
}

.page-faqs-hero-ambient__acc-label {
	font-size: 0.5rem;
	font-weight: 600;
	color: rgba(15, 23, 42, 0.62);
	line-height: 1.25;
}

.page-faqs-hero-ambient__acc-row.is-open .page-faqs-hero-ambient__acc-label {
	color: rgba(15, 23, 42, 0.82);
}

.page-faqs-hero-ambient__acc-body {
	display: flex;
	flex-direction: column;
	gap: 0.18rem;
	padding-left: 0.85rem;
	margin-bottom: 0.1rem;
}

.page-faqs-hero-ambient__acc-body span {
	display: block;
	height: 0.28rem;
	border-radius: 999px;
	background: rgba(26, 95, 74, 0.1);
}

.page-faqs-hero-ambient__acc-body span:last-child {
	width: 72%;
}

@keyframes wilken-faq-ring-pulse {
	0% {
		transform: scale(0.35);
		opacity: 0.55;
	}
	100% {
		transform: scale(1.35);
		opacity: 0;
	}
}

@keyframes wilken-faq-glyph-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

@keyframes wilken-faq-chip-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-4px);
	}
}

@keyframes wilken-faq-typing {
	0%,
	100% {
		opacity: 0.35;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(-2px);
	}
}

@keyframes wilken-faq-cursor-blink {
	0%,
	49% {
		opacity: 1;
	}
	50%,
	100% {
		opacity: 0;
	}
}

@media (max-width: 768px) {
	.page-faqs-hero-ambient__chip--search,
	.page-faqs-hero-ambient__chip--accordion {
		display: none;
	}

	.page-faqs-hero-ambient__chip--question {
		top: 7%;
		left: 0.5rem;
		max-width: 6.75rem;
		opacity: 0.72;
	}

	.page-faqs-hero-ambient__chip--answer {
		top: auto;
		bottom: 11%;
		right: 0.5rem;
		max-width: 7.25rem;
		opacity: 0.72;
	}

	.page-faqs-hero-ambient__glyph {
		opacity: 0.05;
	}

	/* Spread glyphs across full hero height; keep center band clear for copy */
	.page-faqs-hero-ambient__glyph:nth-child(1) {
		left: 5%;
		top: 5%;
		bottom: auto;
	}

	.page-faqs-hero-ambient__glyph:nth-child(2) {
		right: 6%;
		top: auto;
		bottom: 24%;
	}

	.page-faqs-hero-ambient__glyph:nth-child(3) {
		left: 8%;
		top: auto;
		bottom: 7%;
	}

	.page-faqs-hero-ambient__glyph:nth-child(4) {
		right: 5%;
		top: 34%;
		bottom: auto;
	}

	.page-faqs-hero-ambient__rings {
		left: 18%;
		top: 72%;
		width: min(34vw, 150px);
		height: min(34vw, 150px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.page-faqs-hero-ambient__canvas {
		display: none;
	}

	.page-faqs-hero-ambient__ring,
	.page-faqs-hero-ambient__glyph,
	.page-faqs-hero-ambient__chip,
	.page-faqs-hero-ambient__typing span,
	.page-faqs-hero-ambient__search-cursor {
		animation: none;
	}
}

.page-faqs-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.page-faqs-hero-grid {
	display: grid;
	gap: 2rem 2.5rem;
	align-items: end;
}

.page-faqs-hero-copy {
	text-align: left;
	max-width: 100%;
}

.page-faqs-hub .page-faqs-hero-copy {
	text-align: center;
}

.page-faqs-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 1.125rem;
	opacity: 0.92;
}

.page-faqs-headline {
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f172a;
	margin: 0 0 0.75rem;
	line-height: 1.12;
}

.page-faqs-hub .page-faqs-hero-copy .page-faqs-headline {
	font-size: clamp(2.45rem, 6.5vw, 4.35rem);
	line-height: 1.04;
	margin-bottom: 1.35rem;
}

.page-faqs-sub {
	font-size: 1.05rem;
	color: #64748b;
	line-height: 1.65;
	margin: 0;
}

.page-faqs-hub .page-faqs-hero-copy .page-faqs-sub {
	font-size: clamp(1.0625rem, 1.9vw, 1.3125rem);
	color: #4b5563;
	line-height: 1.7;
	max-width: 36rem;
	margin-inline: auto;
}

/* FAQ hub + blog hub: SVZ-style bottom dock (shows after hero) */
.page-faqs-hub .page-faqs-inner,
.archive-blog--hub .archive-blog-hub-inner {
	max-width: 1200px;
	padding-top: clamp(1rem, 3vw, 1.5rem);
}

.archive-blog--hub .archive-blog-hub-inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.page-faqs-hub,
.archive-blog--hub {
	padding-bottom: 0;
}

@media (max-width: 991px) {
	.page-faqs-hub .page-faqs-subnav-dock,
	.archive-blog--hub .page-faqs-subnav-dock {
		display: none;
	}
}

@media (min-width: 992px) {
	.page-faqs-hub,
	.archive-blog--hub {
		padding-bottom: max(5.5rem, calc(5rem + env(safe-area-inset-bottom, 0px)));
	}

	.page-faqs-hub .page-faqs-subnav-dock,
	.archive-blog--hub .page-faqs-subnav-dock {
		position: fixed;
		left: max(3%, env(safe-area-inset-left, 0px));
		right: max(3%, env(safe-area-inset-right, 0px));
		bottom: max(2%, env(safe-area-inset-bottom, 0px));
		z-index: 60;
		justify-content: center;
		align-items: flex-end;
		display: flex;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transform: translateY(14px);
		transition:
			opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0.52s,
			transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.page-faqs-hub .page-faqs-subnav-dock.is-visible,
	.archive-blog--hub .page-faqs-subnav-dock.is-visible {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	@media (prefers-reduced-motion: reduce) {
		.page-faqs-hub .page-faqs-subnav-dock,
		.archive-blog--hub .page-faqs-subnav-dock {
			transition-duration: 0.01ms;
			transform: none;
		}
	}

	@media (min-width: 1440px) {
		.page-faqs-hub .page-faqs-subnav-dock,
		.archive-blog--hub .page-faqs-subnav-dock {
			left: 12%;
			right: 12%;
		}
	}

	.page-faqs-hub .page-faqs-subnav-dock-inner,
	.archive-blog--hub .page-faqs-subnav-dock-inner {
		position: relative;
		min-width: 0;
		width: max-content;
		max-width: min(100%, 73rem);
		border-radius: 1.25rem;
		overflow: hidden;
	}

	.page-faqs-hub .page-faqs-subnav--hub-dock,
	.archive-blog--hub .page-faqs-subnav--hub-dock {
		position: relative;
		z-index: 1;
		display: flex;
		width: 100%;
		align-items: stretch;
		box-sizing: border-box;
		margin: 0;
		min-height: 3.5rem;
		height: auto;
		padding: 0.25rem calc(4rem + 0.35rem) 0.25rem 0.25rem;
		border-radius: inherit;
		background: linear-gradient(
			165deg,
			rgba(255, 255, 255, 0.72) 0%,
			rgba(248, 253, 250, 0.52) 55%,
			rgba(236, 253, 245, 0.45) 100%
		);
		border: 1px solid rgba(255, 255, 255, 0.78);
		box-shadow:
			0 10px 36px rgba(15, 23, 42, 0.07),
			0 1px 0 rgba(255, 255, 255, 0.65) inset,
			0 0 0 1px rgba(26, 95, 74, 0.06);
		backdrop-filter: blur(22px) saturate(1.15);
		-webkit-backdrop-filter: blur(22px) saturate(1.15);
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		overscroll-behavior-x: contain;
	}

	.page-faqs-hub .page-faqs-subnav--hub-dock::-webkit-scrollbar,
	.archive-blog--hub .page-faqs-subnav--hub-dock::-webkit-scrollbar {
		display: none;
	}

	.page-faqs-hub .page-faqs-subnav-scroll-hint,
	.archive-blog--hub .page-faqs-subnav-scroll-hint {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		width: clamp(3.75rem, 10vw, 5rem);
		z-index: 2;
		pointer-events: none;
		background: linear-gradient(
			90deg,
			rgba(248, 253, 250, 0) 0%,
			rgba(255, 255, 255, 0.42) 42%,
			rgba(255, 255, 255, 0.82) 72%,
			rgba(255, 255, 255, 0.94) 100%
		);
	}

	.page-faqs-hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list,
	.archive-blog--hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list {
		display: flex;
		flex-flow: row nowrap;
		align-items: stretch;
		gap: 0.3rem;
		justify-content: flex-start;
		margin: 0;
		padding: 0;
		list-style: none;
		min-width: min-content;
	}

	.page-faqs-hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list li,
	.archive-blog--hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list li {
		flex: none;
		display: flex;
		align-items: stretch;
		margin: 0;
	}

	.page-faqs-hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list a,
	.archive-blog--hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list a {
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		padding: 0.35rem 0.92rem;
		border-radius: 1rem;
		border: 2px solid rgba(255, 255, 255, 0.04);
		background: rgba(236, 253, 245, 0.94);
		color: #16664e;
		font-family: inherit;
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.105em;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
		transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	}

	.page-faqs-hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list a:hover,
	.archive-blog--hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list a:hover {
		background: #f8fffc;
		color: #0f513f;
		border-color: rgba(255, 255, 255, 0.12);
		text-decoration: none;
		transform: translateY(-1px);
	}

	.page-faqs-hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list a:focus-visible,
	.archive-blog--hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list a:focus-visible {
		background: #f8fffc;
		color: #0f513f;
		border-color: rgba(236, 253, 245, 0.6);
		text-decoration: none;
		transform: translateY(-1px);
		box-shadow:
			0 0 0 2px rgba(15, 23, 42, 0.95),
			0 0 0 4px rgba(190, 242, 220, 0.85);
	}

	.page-faqs-hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list a.is-current,
	.archive-blog--hub .page-faqs-subnav--hub-dock .page-faqs-subnav-list a.is-current {
		background: #e6fbf2;
		color: #0f513f;
		border-color: rgba(255, 255, 255, 0.2);
		box-shadow:
			inset 0 0 0 1px rgba(26, 95, 74, 0.25),
			0 10px 24px rgba(15, 23, 42, 0.06);
	}
}

/* Referenzen portfolio: fixed bottom filter dock (see #wilken-portfolio-featured padding-bottom at min-width 992px) */

.wilken-projects-page .wilken-projects-portfolio46-subnav-dock {
	position: fixed;
	left: max(2.5%, env(safe-area-inset-left, 0px));
	right: max(2.5%, env(safe-area-inset-right, 0px));
	bottom: max(2%, env(safe-area-inset-bottom, 0px));
	z-index: 60;
	justify-content: center;
	align-items: flex-end;
	display: flex;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition:
		opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.52s,
		transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.wilken-projects-page .wilken-projects-portfolio46-subnav-dock.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
	.wilken-projects-page .wilken-projects-portfolio46-subnav-dock {
		transition-duration: 0.01ms;
		transform: none;
	}
}

@media (min-width: 992px) {
	.wilken-projects-page .wilken-projects-portfolio46-subnav-dock {
		left: max(3%, env(safe-area-inset-left, 0px));
		right: max(3%, env(safe-area-inset-right, 0px));
	}
}

@media (min-width: 1440px) {
	.wilken-projects-page .wilken-projects-portfolio46-subnav-dock {
		left: 12%;
		right: 12%;
	}
}

.wilken-projects-page .wilken-projects-portfolio46-subnav-dock-inner {
	position: relative;
	min-width: 0;
	width: max-content;
	max-width: min(100%, 73rem);
	border-radius: 1.25rem;
	overflow: hidden;
}

@media (max-width: 991px) {
	.wilken-projects-page .wilken-projects-portfolio46-subnav-dock {
		display: none !important;
	}
}

/* Referenzen portfolio: filter trigger + popup below intro (tablet / mobile only) */
.wilken-projects-portfolio46__mobile-filter-wrap {
	width: 100%;
	max-width: min(100%, 26rem);
	margin-inline: auto;
	margin-bottom: clamp(1.35rem, 3vw, 2rem);
	position: relative;
	z-index: 1;
}

.wilken-projects-portfolio46__mobile-filter-wrap.is-open {
	z-index: 65;
}

@media (min-width: 992px) {
	.wilken-projects-portfolio46__mobile-filter-wrap {
		display: none !important;
	}
}

.wilken-projects-portfolio46__mobile-filter-backdrop {
	position: fixed;
	inset: 0;
	z-index: 63;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	background: rgba(15, 23, 42, 0.42);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.wilken-projects-portfolio46__mobile-filter {
	position: relative;
	z-index: 64;
	width: 100%;
}

.wilken-projects-portfolio46__mobile-filter-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0.72rem 1rem;
	border-radius: 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.78);
	background: linear-gradient(
		165deg,
		rgba(255, 255, 255, 0.82) 0%,
		rgba(248, 253, 250, 0.62) 55%,
		rgba(236, 253, 245, 0.52) 100%
	);
	box-shadow:
		0 10px 32px rgba(15, 23, 42, 0.06),
		0 1px 0 rgba(255, 255, 255, 0.65) inset,
		0 0 0 1px rgba(26, 95, 74, 0.06);
	backdrop-filter: blur(18px) saturate(1.12);
	-webkit-backdrop-filter: blur(18px) saturate(1.12);
	cursor: pointer;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	text-align: left;
	color: #16664e;
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition:
		box-shadow 0.22s ease,
		transform 0.22s ease;
}

.wilken-projects-portfolio46__mobile-filter-trigger-inner {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
}

.wilken-projects-portfolio46__mobile-filter-icon {
	flex-shrink: 0;
	color: rgba(22, 102, 78, 0.92);
}

.wilken-projects-portfolio46__mobile-filter-trigger-label {
	line-height: 1.2;
}

.wilken-projects-portfolio46__mobile-filter-chevron {
	flex-shrink: 0;
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid rgba(22, 102, 78, 0.65);
	border-bottom: 2px solid rgba(22, 102, 78, 0.65);
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.22s ease;
}

.wilken-projects-portfolio46__mobile-filter-wrap.is-open .wilken-projects-portfolio46__mobile-filter-chevron {
	transform: rotate(225deg) translateY(2px);
}

@media (prefers-reduced-motion: reduce) {
	.wilken-projects-portfolio46__mobile-filter-trigger {
		transition-duration: 0.01ms;
	}

	.wilken-projects-portfolio46__mobile-filter-chevron {
		transition-duration: 0.01ms;
	}
}

.wilken-projects-portfolio46__mobile-filter-trigger:hover {
	transform: translateY(-1px);
	box-shadow:
		0 14px 36px rgba(15, 23, 42, 0.08),
		0 1px 0 rgba(255, 255, 255, 0.65) inset,
		0 0 0 1px rgba(26, 95, 74, 0.08);
}

.wilken-projects-portfolio46__mobile-filter-trigger:focus {
	outline: none;
}

.wilken-projects-portfolio46__mobile-filter-trigger:focus-visible {
	box-shadow:
		0 0 0 2px rgba(15, 23, 42, 0.95),
		0 0 0 4px rgba(190, 242, 220, 0.85),
		0 10px 32px rgba(15, 23, 42, 0.06);
}

.wilken-projects-portfolio46__mobile-filter-popup {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 0.45rem);
	z-index: 2;
	box-sizing: border-box;
	padding: 0.95rem 1rem 1rem;
	max-height: min(58vh, 22rem);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 1.05rem;
	border: 1px solid rgba(255, 255, 255, 0.88);
	background: linear-gradient(
		168deg,
		rgba(255, 255, 255, 0.96) 0%,
		rgba(250, 253, 251, 0.94) 50%,
		rgba(241, 253, 247, 0.92) 100%
	);
	box-shadow:
		0 28px 56px rgba(15, 23, 42, 0.14),
		0 10px 22px rgba(15, 23, 42, 0.07),
		0 0 0 1px rgba(26, 95, 74, 0.06);
	backdrop-filter: blur(20px) saturate(1.12);
	-webkit-backdrop-filter: blur(20px) saturate(1.12);
	transform-origin: 50% 0;
	animation: wilken-portfolio-filter-popup-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wilken-portfolio-filter-popup-in {
	from {
		opacity: 0;
		transform: translateY(-6px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wilken-projects-portfolio46__mobile-filter-popup {
		animation: none;
	}
}

.wilken-projects-portfolio46__mobile-filter-popup-title {
	margin: 0 0 0.65rem;
	padding: 0;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(22, 102, 78, 0.78);
	line-height: 1.3;
}

.wilken-projects-portfolio46__mobile-filter-popup-body {
	padding-top: 0.15rem;
}

.wilken-projects-portfolio46__mobile-filter-popup-body .wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--mobile-stack {
	padding-top: 0;
	padding-bottom: 0;
}

/* Stacked filter pills inside mobile/tablet disclosure (no horizontal dock chrome). */
.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--mobile-stack {
	flex-direction: column;
	align-items: stretch;
	flex-wrap: nowrap;
	overflow: visible;
	overflow-x: visible;
	overflow-y: visible;
	min-height: 0;
	height: auto;
	padding: 0.55rem 0 0;
	margin: 0;
	border: none;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--mobile-stack .wilken-projects-portfolio46__subnav-list {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	width: 100%;
	min-width: 0;
	flex: 1 1 auto;
	gap: 0.38rem;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--mobile-stack .wilken-projects-portfolio46__subnav-list li {
	flex: none;
	display: flex;
	align-items: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--mobile-stack .wilken-projects-portfolio46__filter-btn {
	min-height: 2.65rem;
	padding: 0.4rem 0.75rem;
	font-size: clamp(0.68rem, 2.8vw, 0.75rem);
}

.faq-hub-stack {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 0.5rem;
}

.faq-hub-section {
	scroll-margin-top: clamp(6rem, 14vw, 7.25rem);
	border-bottom: 1px solid rgba(226, 232, 228, 0.95);
}

.faq-hub-section:last-child {
	border-bottom: none;
}

/* SVZ section_faq-content > padding-global > container-large rhythm (light / Wilken tokens) */
.faq-hub-section-shell {
	padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(2.75rem, 6vw, 4.25rem);
}

.faq-hub-section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (max-width: 1023px) {
	.faq-hub-section-inner {
		padding-left: 0;
		padding-right: 0;
	}
}

.faq-hub-category-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.65rem 1.25rem;
	margin: 0 0 clamp(0.85rem, 2vw, 1.35rem);
}

.faq-hub-section-num {
	font-variant-numeric: tabular-nums;
	font-size: 0.75rem;
	font-weight: 700;
	color: #1a5f4a;
	letter-spacing: 0.1em;
	flex-shrink: 0;
}

.faq-hub-section-cat-heading {
	margin: 0;
	font-size: clamp(1.45rem, 3.4vw, 2.05rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.08;
	text-transform: uppercase;
	color: #0f172a;
}

.faq-hub-section-subline {
	margin: -0.35rem 0 1rem;
	font-size: clamp(1.05rem, 2.2vw, 1.2rem);
	font-weight: 600;
	color: #334155;
	line-height: 1.35;
}

.faq-hub-section-lead {
	margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
	font-size: clamp(1.0225rem, 2vw, 1.125rem);
	line-height: 1.68;
	color: #64748b;
	max-width: 42rem;
}

.faq-hub-cards-wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-hub-card.is-faq-hub-pagination-hidden {
	display: none;
}

.faq-hub-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1rem;
	margin-top: clamp(1.5rem, 4vw, 2.25rem);
	padding-top: 0.25rem;
}

.faq-hub-pagination[hidden] {
	display: none !important;
}

.faq-hub-pagination__status {
	flex: 1 1 8rem;
	min-width: 0;
	margin: 0;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #4b5563;
}

.faq-hub-pagination__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 2.65rem;
	padding: 0.4rem 1rem;
	border-radius: 1rem;
	border: 1px solid #d1d5db;
	background: #fff;
	color: #16664e;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.faq-hub-pagination__btn:hover:not(:disabled) {
	background: #f8fffc;
	border-color: rgba(26, 95, 74, 0.35);
}

.faq-hub-pagination__btn:focus {
	outline: none;
}

.faq-hub-pagination__btn:focus-visible {
	outline: 2px solid #1a5f4a;
	outline-offset: 3px;
}

.faq-hub-pagination__btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.faq-hub-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.75rem), 1fr));
	gap: 1rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 640px) {
	.faq-hub-card-grid {
		gap: 1.25rem 1.35rem;
	}

	/* One or two cards: same half-width column (SVZ-style) */
	.faq-hub-card-grid:has(> .faq-hub-card:only-child),
	.faq-hub-card-grid:has(> .faq-hub-card:nth-child(2):last-child) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 640px) and (max-width: 899px) {
	/* Three cards: 2+1 on tablet */
	.faq-hub-card-grid:has(> .faq-hub-card:nth-child(3):last-child) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	/* SVZ-style equal thirds when a section has exactly three cards */
	.faq-hub-card-grid:has(> .faq-hub-card:nth-child(3):last-child) {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	/* Four or more cards: stable three-column grid (no cap on count) */
	.faq-hub-card-grid:has(> .faq-hub-card:nth-child(4)) {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.faq-hub-card-grid:has(> .faq-hub-card:nth-child(4)) .faq-hub-card,
.faq-hub-card-grid:has(> .faq-hub-card:nth-child(4)) .faq-hub-card-link {
	height: 100%;
}

.faq-hub-card-grid:has(> .faq-hub-card:nth-child(2):last-child) .faq-hub-card,
.faq-hub-card-grid:has(> .faq-hub-card:nth-child(3):last-child) .faq-hub-card {
	height: 100%;
}

.faq-hub-card-grid:has(> .faq-hub-card:nth-child(2):last-child) .faq-hub-card-link,
.faq-hub-card-grid:has(> .faq-hub-card:nth-child(3):last-child) .faq-hub-card-link {
	height: 100%;
}

.faq-hub-card {
	margin: 0;
}

.faq-hub-card:hover .faq-hub-card-more-icon {
	transform: rotate(45deg);
}

.faq-hub-card-summary,
.faq-hub-card-link {
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 14.5rem;
	padding: 1.35rem 1.35rem 1.15rem;
	list-style: none;
	gap: 0;
}

.faq-hub-card-link {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.faq-hub-card-link:hover,
.faq-hub-card-link:focus-visible {
	color: inherit;
	outline: none;
}

.faq-hub-card-link:focus-visible {
	outline: none;
}

.faq-hub-card-summary::-webkit-details-marker {
	display: none;
}

.faq-hub-card-eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 0.85rem;
}

.faq-hub-card-title {
	display: block;
	font-size: clamp(1.0425rem, 2.1vw, 1.17rem);
	font-weight: 600;
	line-height: 1.32;
	color: #0f172a;
	margin: 0 0 0.85rem;
	padding-right: 0.25rem;
	text-wrap: pretty;
}

.faq-hub-card-excerpt {
	display: block;
	font-size: 0.9425rem;
	line-height: 1.62;
	color: #64748b;
	margin: 0 0 auto;
	flex-grow: 1;
}

.faq-hub-card-more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1.35rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #1a5f4a;
}

.faq-hub-card-more-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.22s cubic-bezier(0.65, 0, 0, 1);
}

.faq-hub-card-more-icon svg {
	display: block;
}

.faq-hub-card-summary > *,
.faq-hub-card-link > * {
	position: relative;
	z-index: 1;
}

.faq-hub-card-answer {
	position: relative;
	z-index: 1;
	padding: 0 1.35rem 1.35rem;
	margin: 0;
	font-size: 0.9675rem;
	line-height: 1.69;
	color: #475569;
	border-top: 1px solid #f1f5f9;
}

/* FAQ topic: hero Q&A micro card + related strip (Wilken CI, SVZ-style structure) */

.faq-micro {
	padding: 0 0 clamp(2.25rem, 5vw, 3rem);
	margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
	border-bottom: 1px solid #e8eeea;
}

/* Shared FAQ card surface (micro-style): hub tiles, homepage teaser, topic hero */
.faq-micro-card,
.faq-hub-card,
.faq-teaser-card-link {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(ellipse 88% 58% at 100% -6%, rgba(26, 95, 74, 0.1) 0%, transparent 54%),
		radial-gradient(ellipse 72% 52% at -4% 104%, rgba(134, 239, 172, 0.12) 0%, transparent 50%),
		linear-gradient(168deg, #ffffff 0%, #fbfdfc 36%, #f6faf8 72%, #f1f7f4 100%);
	border: 1px solid #cfe0d8;
	border-radius: 18px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 22px 52px rgba(26, 95, 74, 0.09);
}

.faq-hub-card,
.faq-teaser-card-link {
	transition:
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		transform 0.22s ease;
}

.faq-hub-card:hover,
.faq-hub-card:focus-within,
.faq-teaser-card-link:hover,
.faq-teaser-card-link:focus-visible {
	border-color: #b5d4c8;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 28px 58px rgba(26, 95, 74, 0.13);
	transform: translateY(-2px);
}

/* SVZ-style corner marks (Wilken green, light surface) */
.faq-micro-card::after,
.faq-hub-card::after,
.faq-teaser-card-link::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%231a5f4a' stroke-width='1.2' stroke-linecap='round' d='M6 2.25v7.5M2.25 6h7.5' opacity='0.34'/%3E%3C/svg%3E")
			clamp(0.85rem, 2.4vw, 1.15rem) clamp(0.85rem, 2.4vw, 1.15rem) no-repeat,
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%231a5f4a' stroke-width='1.2' stroke-linecap='round' d='M6 2.25v7.5M2.25 6h7.5' opacity='0.34'/%3E%3C/svg%3E")
			calc(100% - clamp(0.85rem, 2.4vw, 1.15rem)) clamp(0.85rem, 2.4vw, 1.15rem) no-repeat,
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%231a5f4a' stroke-width='1.2' stroke-linecap='round' d='M6 2.25v7.5M2.25 6h7.5' opacity='0.34'/%3E%3C/svg%3E")
			clamp(0.85rem, 2.4vw, 1.15rem) calc(100% - clamp(0.85rem, 2.4vw, 1.15rem)) no-repeat,
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%231a5f4a' stroke-width='1.2' stroke-linecap='round' d='M6 2.25v7.5M2.25 6h7.5' opacity='0.34'/%3E%3C/svg%3E")
			calc(100% - clamp(0.85rem, 2.4vw, 1.15rem)) calc(100% - clamp(0.85rem, 2.4vw, 1.15rem)) no-repeat;
}

.faq-micro-card {
	max-width: 48rem;
	margin: 0 auto;
	padding: clamp(1.85rem, 4.2vw, 2.75rem);
}

.faq-micro-card > * {
	position: relative;
	z-index: 1;
}

.faq-micro-breadcrumbs {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.45rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #64748b;
	margin: 0 0 clamp(1.35rem, 3vw, 1.85rem);
	padding: 0.42rem 0.8rem;
	line-height: 1.35;
	max-width: 44rem;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid #d8e8e0;
	border-radius: 999px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.faq-micro-breadcrumbs-hub {
	color: #1a5f4a;
	text-decoration: none;
	transition: color 0.15s ease, box-shadow 0.15s ease;
}

.faq-micro-breadcrumbs-hub:hover,
.faq-micro-breadcrumbs-hub:focus-visible {
	color: #157a5f;
	box-shadow: 0 2px 0 rgba(26, 95, 74, 0.35);
	outline: none;
}

.faq-micro-breadcrumbs-parent {
	color: #1a5f4a;
	text-decoration: none;
	transition: color 0.15s ease, box-shadow 0.15s ease;
	font-weight: 700;
}

.faq-micro-breadcrumbs-parent:hover,
.faq-micro-breadcrumbs-parent:focus-visible {
	color: #157a5f;
	box-shadow: 0 2px 0 rgba(26, 95, 74, 0.35);
	outline: none;
}

.faq-item-eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 0.75rem;
	max-width: 44rem;
}

.faq-micro-breadcrumbs-sep {
	font-weight: 400;
	opacity: 0.55;
	letter-spacing: 0;
}

.faq-micro-breadcrumbs-current {
	color: #1a5f4a;
	font-weight: 700;
}

.faq-micro-title {
	font-size: clamp(1.65rem, 4vw, 2.95rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.09;
	color: #0f172a;
	margin: 0;
	max-width: 44rem;
	text-wrap: balance;
}

.faq-micro-context {
	font-size: 1.0575rem;
	line-height: 1.62;
	color: #64748b;
	margin: 1.125rem 0 0;
	max-width: 44rem;
}

.faq-micro-summary-wrap {
	margin: clamp(1.25rem, 4vw, 2.15rem) 0 0;
	padding: clamp(1.125rem, 3vw, 1.65rem);
	background:
		radial-gradient(ellipse 90% 80% at 0% 0%, rgba(26, 95, 74, 0.06) 0%, transparent 55%),
		linear-gradient(180deg, #eef6f2 0%, #e8f3ee 100%);
	border: 1px solid #c5dfd2;
	border-radius: 12px;
	border-left: 3px solid var(--wilken-ci-green, #1a5f4a);
	max-width: 44rem;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.75),
		0 1px 3px rgba(26, 95, 74, 0.05);
}

.faq-micro-summary-tag {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 0.55rem;
}

.faq-micro-summary {
	font-size: 1.02rem;
	line-height: 1.62;
	font-weight: 500;
	color: #1e293b;
	margin: 0;
	max-width: 44rem;
}

.faq-micro-prose {
	max-width: 44rem;
	margin: clamp(1.25rem, 3.5vw, 1.9rem) 0 0;
}

.faq-micro-prose p {
	font-size: 1.02rem;
	line-height: 1.68;
	color: #475569;
	margin: 0;
}

/* FAQ micro CTA: reuses wilken-case-inline-cta__card (copy only, no kinetic/video column) */

.faq-micro-cta {
	margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
}

.wilken-case-inline-cta__card--no-visual .wilken-case-inline-cta__grid.layout42_content.is-cta {
	grid-template-columns: 1fr;
}

.faq-related {
	padding: clamp(1.85rem, 5vw, 3rem) 0 clamp(2.25rem, 5vw, 3rem);
	max-width: 56rem;
	margin: 0 auto;
}

.faq-related-heading {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #94a3b8;
	margin: 0 0 1.5rem;
	max-width: 48rem;
}

.faq-related-grid {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.15rem;
	margin: 0;
	padding: 0;
}

@media (min-width: 40rem) {
	.faq-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.35rem 1.5rem;
	}
}

.faq-related-grid > li {
	display: flex;
	min-height: 0;
}

.faq-related-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 1 auto;
	width: 100%;
	min-height: clamp(17.5rem, 38vw, 21.5rem);
	box-sizing: border-box;
	padding: clamp(1.5rem, 3.2vw, 2rem) clamp(1.45rem, 3vw, 1.85rem);
	background: #fff;
	border: 1px solid #e4ebe7;
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
	text-decoration: none;
	transition:
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		transform 0.22s ease;
}

.faq-related-card:hover {
	border-color: #c5e8d7;
	box-shadow:
		0 12px 34px rgba(26, 95, 74, 0.1),
		0 4px 8px rgba(15, 23, 42, 0.04);
	transform: translateY(-3px);
}

.faq-related-card:focus-visible {
	border-color: #1a5f4a;
	outline: 2px solid rgba(26, 95, 74, 0.45);
	outline-offset: 2px;
	transform: translateY(-1px);
}

.faq-related-card-cat {
	font-size: 0.6275rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 0.85rem;
}

.faq-related-card-q {
	display: block;
	font-size: clamp(1.0625rem, 2.1vw, 1.3125rem);
	font-weight: 600;
	line-height: 1.32;
	text-transform: none;
	letter-spacing: -0.015em;
	color: #0f172a;
	margin: 0 0 0.75rem;
}

.faq-related-card-excerpt {
	font-size: 0.9rem;
	line-height: 1.55;
	color: #64748b;
	margin: 0;
	flex: 1 1 auto;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.faq-related-card-more {
	margin-top: auto;
	padding-top: 1.35rem;
	font-size: 0.6975rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #1a5f4a;
}

/* Inline FAQs in related grid (<details>), same IDs as old #faq-topic-more-acc-n for hashes */
.faq-related-details {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	flex: 1 1 auto;
	width: 100%;
	box-sizing: border-box;
	min-height: clamp(17.5rem, 38vw, 21.5rem);
	background: #fff;
	border: 1px solid #e4ebe7;
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
	transition:
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		transform 0.22s ease;
	overflow: hidden;
}

.faq-related-details:not([open]):hover {
	border-color: #c5e8d7;
	box-shadow:
		0 12px 34px rgba(26, 95, 74, 0.1),
		0 4px 8px rgba(15, 23, 42, 0.04);
	transform: translateY(-3px);
}

.faq-related-details[open]:not(:hover) {
	transform: translateY(0);
}

.faq-related-details-summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 1 auto;
	padding: clamp(1.5rem, 3.2vw, 2rem) clamp(1.45rem, 3vw, 1.85rem);
	margin: 0;
}

.faq-related-details-summary::-webkit-details-marker {
	display: none;
}

.faq-related-details-summary:focus-visible {
	outline: 2px solid rgba(26, 95, 74, 0.45);
	outline-offset: 2px;
	border-radius: 6px;
}

.faq-related-details[open] .faq-related-details-summary {
	border-bottom: 1px solid #f1f5f9;
}

.faq-related-details[open] {
	border-color: #bbf7d0;
	box-shadow: 0 4px 14px rgba(26, 95, 74, 0.08);
}

.faq-related-details .page-faq-topic-a {
	border-top: none;
	scroll-margin-top: clamp(5.75rem, 14vw, 7rem);
}

.page-faq-topic-a {
	padding: 0 1.25rem 1.25rem;
	font-size: 0.98rem;
	line-height: 1.65;
	color: #475569;
	border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   Portfolio metrics: SVZ vc-section benchmark (pinned scroll + glass cards)
   ========================================================================== */
.portfolio-metrics-section.wilken-vc-metrics {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2.5rem) 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	overflow-x: clip;
}

.wilken-vc-metrics-heading {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 6vw clamp(1.25rem, 3vw, 2rem);
}

.wilken-vc-metrics-intro {
	max-width: 42rem;
}

.wilken-vc-metrics-eyebrow {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(134, 239, 172, 0.85);
	margin: 0 0 0.75rem;
}

.wilken-vc-metrics-headline {
	font-size: clamp(1.65rem, 3.8vw, 2.65rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.08;
	color: #fff;
	margin: 0;
}

/* CTA overlays scene bottom; stage is click-through except where cards sit */
.wilken-vc-metrics__scene .wilken-vc-metrics-footer {
	flex-shrink: 0;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: clamp(1rem, 2.5vw, 1.5rem) 6vw clamp(1.25rem, 3vh, 2rem);
	background: transparent;
	pointer-events: none;
}

.wilken-vc-metrics__scene .wilken-vc-metrics-footer .wilken-vc-metrics-cta {
	pointer-events: auto;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.portfolio-metrics-section.wilken-vc-metrics .wilken-vc-metrics-cta {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: min(100%, 52rem);
	margin: 0;
	padding: clamp(0.85rem, 2vw, 1.05rem) clamp(1.5rem, 5vw, 2.75rem);
	font-family: inherit;
	font-size: clamp(0.625rem, 1.05vw, 0.8125rem);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	color: #000;
	background-color: #ebebeb;
	border: none;
	border-radius: 6px;
	box-shadow: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.portfolio-metrics-section.wilken-vc-metrics .wilken-vc-metrics-cta:hover {
	background-color: #f5f5f5;
	color: #000;
}

.portfolio-metrics-section.wilken-vc-metrics .wilken-vc-metrics-cta:focus-visible {
	outline: 2px solid #86efac;
	outline-offset: 3px;
}

/* Scroll runway: tall on desktop so pinned scene can scrub */
.wilken-vc-metrics__pin {
	height: 400vh;
	position: relative;
	overflow: visible;
}

/* Full-viewport pinned unit: backdrop heading + stage (cards) + footer CTA */
.wilken-vc-metrics__scene {
	display: flex;
	flex-direction: column;
	height: 100vh;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	overflow: visible;
}

@media (min-width: 1025px) {
	.wilken-vc-metrics__scene .wilken-vc-metrics-heading {
		position: absolute;
		inset: 0;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		max-width: none;
		margin: 0;
		padding: 0 6vw;
		pointer-events: none;
	}

	.wilken-vc-metrics__scene .wilken-vc-metrics-intro {
		max-width: min(92vw, 56rem);
		margin: 0 auto;
		text-align: center;
	}

	.wilken-vc-metrics__scene .wilken-vc-metrics-eyebrow {
		margin-bottom: clamp(0.75rem, 1.5vh, 1.25rem);
	}

	.wilken-vc-metrics__scene .wilken-vc-metrics-headline {
		font-size: clamp(2.25rem, 5.8vw, 4.5rem);
		line-height: 0.98;
		letter-spacing: -0.03em;
		text-wrap: balance;
	}
}

.wilken-vc-metrics__stage {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 10;
	overflow: visible;
	pointer-events: none;
}

.wilken-vc-metrics__wrap {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 clamp(1rem, 5vw, 3rem) clamp(4.5rem, 12vh, 6.5rem);
	flex-wrap: nowrap;
	gap: clamp(0.65rem, 2.2vw, 1.5rem);
	box-sizing: border-box;
	will-change: transform;
	position: relative;
	z-index: 12;
	pointer-events: none;
}

.wilken-vc-metrics__wrap .card {
	flex: 1 1 0;
	min-width: 7.75rem;
	max-width: clamp(13rem, 18vw, 15.5rem);
	width: auto;
	aspect-ratio: 0.75;
	border-radius: 1vw;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #fff;
	text-transform: uppercase;
	padding: 0.85vw;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
	transform-origin: 50% 50%;
}

.wilken-vc-metrics__wrap .card:nth-child(4n + 1) {
	transform: rotate(-3deg);
}

.wilken-vc-metrics__wrap .card:nth-child(4n + 2) {
	transform: rotate(3.5deg);
}

.wilken-vc-metrics__wrap .card:nth-child(4n + 3) {
	transform: rotate(-2deg);
}

.wilken-vc-metrics__wrap .card:nth-child(4n) {
	transform: rotate(4deg);
}

.wilken-vc-metrics__wrap .card .media {
	width: 60%;
	height: auto;
	display: block;
	object-fit: contain;
	flex-shrink: 0;
}

.wilken-vc-metrics__wrap .card .wilken-vc-card-emblem.media {
	box-sizing: border-box;
	position: relative;
	width: clamp(3.25rem, 48%, 5.5rem);
	aspect-ratio: 1;
	height: auto;
	flex: 0 0 auto;
	align-self: center;
	margin-inline: auto;
	border-radius: 50%;
	background: linear-gradient(145deg, #1a5f4a 0%, #0d3d30 100%);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	display: block;
	overflow: hidden;
	color: #86efac;
}

/* Inset box keeps icons centered (percent heights fail inside rotated flex cards) */
.wilken-vc-metrics__wrap .card .wilken-vc-card-emblem.media .wilken-vc-card-emblem__icon {
	position: absolute;
	inset: 21%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.wilken-vc-metrics__wrap .card .wilken-vc-card-emblem.media .wilken-vc-card-emblem__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
}

.wilken-vc-metrics__wrap .card *:nth-child(1) {
	text-align: right;
	margin: 0;
	max-width: 100%;
	min-width: 0;
	align-self: flex-end;
}

.wilken-vc-metrics__wrap .card *:nth-child(2):not(.wilken-vc-card-emblem) {
	margin-left: auto;
	margin-right: auto;
}

.wilken-vc-metrics__wrap .card *:nth-child(3) {
	text-align: left;
	margin: 0;
}

.wilken-vc-card-value {
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
	font-size: clamp(1rem, 2vw, 1.35rem);
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.2;
	white-space: normal;
	overflow-wrap: break-word;
	hyphens: auto;
	-webkit-hyphens: auto;
	hyphenate-limit-chars: 6 4 3;
	text-wrap: balance;
}

.wilken-vc-card-value:lang(de) {
	font-size: clamp(0.78rem, 1.55vw, 1.05rem);
	letter-spacing: 0.01em;
	line-height: 1.22;
}

.wilken-vc-card-caption {
	font-size: clamp(0.55rem, 0.95vw, 0.7rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.82);
	overflow-wrap: break-word;
	hyphens: auto;
}

.wilken-vc-card-count {
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	color: #86efac;
}

@media (min-width: 1025px) {
	/* GSAP pin-spacer defaults to overflow hidden and clips rising cards at the footer edge */
	.portfolio-metrics-section.wilken-vc-metrics .wilken-vc-metrics__pin > .pin-spacer {
		overflow: visible !important;
	}
}

@media (max-width: 1024px) {
	.wilken-vc-metrics__pin {
		height: auto;
		overflow-x: clip;
	}

	.wilken-vc-metrics__scene {
		height: auto;
		min-height: 0;
		overflow-x: clip;
		overflow-y: visible;
	}

	.wilken-vc-metrics__scene .wilken-vc-metrics-footer {
		position: relative;
		pointer-events: auto;
	}

	.wilken-vc-metrics__stage {
		overflow-x: clip;
		overflow-y: visible;
		padding: clamp(1.5rem, 4vw, 2.5rem) 0;
	}

	.wilken-vc-metrics__wrap {
		height: auto;
		min-height: auto;
		width: 100%;
		max-width: 100%;
		flex-direction: column;
		flex-wrap: nowrap;
		padding: 0 max(1rem, 6vw, env(safe-area-inset-left, 0px)) 1rem
			max(1rem, 6vw, env(safe-area-inset-right, 0px));
		gap: clamp(1.25rem, 5vw, 2.75rem);
		align-items: center;
		justify-content: flex-start;
		box-sizing: border-box;
	}

	.wilken-vc-metrics__wrap .card {
		flex: 0 1 auto;
		min-width: 0;
		width: 100%;
		max-width: min(22rem, 100%);
		margin: 0;
		border-radius: clamp(12px, 3vw, 20px);
		padding: clamp(0.85rem, 3vw, 1.25rem);
	}

	/* Gentler tilt on small screens: less horizontal overflow from rotation */
	.wilken-vc-metrics__wrap .card:nth-child(4n + 1) {
		transform: rotate(-2deg);
	}

	.wilken-vc-metrics__wrap .card:nth-child(4n + 2) {
		transform: rotate(2.5deg);
	}

	.wilken-vc-metrics__wrap .card:nth-child(4n + 3) {
		transform: rotate(-1.5deg);
	}

	.wilken-vc-metrics__wrap .card:nth-child(4n) {
		transform: rotate(2deg);
	}

	.wilken-vc-metrics__scene .wilken-vc-metrics-footer {
		padding-top: clamp(1.25rem, 4vw, 2rem);
		padding-bottom: clamp(2rem, 6vw, 3rem);
	}
}

@media (max-width: 640px) {
	.wilken-vc-metrics-heading {
		padding-left: max(1rem, 5vw, env(safe-area-inset-left, 0px));
		padding-right: max(1rem, 5vw, env(safe-area-inset-right, 0px));
	}

	.wilken-vc-metrics__scene .wilken-vc-metrics-footer {
		padding-left: max(1rem, 5vw, env(safe-area-inset-left, 0px));
		padding-right: max(1rem, 5vw, env(safe-area-inset-right, 0px));
	}

	.wilken-vc-card-value {
		font-size: clamp(1.125rem, 5.2vw, 1.45rem);
	}

	.wilken-vc-card-caption {
		font-size: clamp(0.62rem, 3.15vw, 0.78rem);
		line-height: 1.4;
	}

	.portfolio-metrics-section.wilken-vc-metrics .wilken-vc-metrics-cta {
		font-size: clamp(0.6875rem, 3.4vw, 0.8125rem);
		letter-spacing: 0.09em;
		padding-left: clamp(1rem, 4vw, 1.5rem);
		padding-right: clamp(1rem, 4vw, 1.5rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wilken-vc-metrics__pin {
		height: auto;
	}

	.wilken-vc-metrics__scene {
		height: auto;
		overflow: visible;
	}

	.wilken-vc-metrics__wrap {
		height: auto;
		min-height: auto;
	}
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.button {
	display: inline-block;
	padding: 0.65rem 1.35rem;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	background: #1a5f4a;
	border: 2px solid #1a5f4a;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.button:hover {
	background: #0d3d30;
	border-color: #0d3d30;
	color: #fff;
}

.button--outline {
	background: transparent;
	color: #1a5f4a;
}

.button--outline:hover {
	background: #1a5f4a;
	color: #fff;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
	padding: 3.5rem 1.5rem;
}

.section--muted {
	background: #f9fafb;
}

.section-inner {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	box-sizing: border-box;
	min-width: 0;
}

.section-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 0.5rem;
}

.section-headline {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #111;
}

.section-sub {
	color: #6b7280;
	margin: 0 0 2rem;
	font-size: 1.05rem;
}

.section-cta {
	margin: 2rem 0 0;
}

.section-cta .button + .button {
	margin-left: 0.75rem;
}

/* ==========================================================================
   Services (homepage)
   ========================================================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 1.5rem;
	text-align: left;
	margin-top: 2rem;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* Homepage flagship row: three cards, predictable columns at each breakpoint */
.services-grid.services-flagship {
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 560px) {
	.services-grid.services-flagship {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.services-grid.services-flagship {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.service-card {
	min-width: 0;
	padding: 1.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	transition: box-shadow 0.2s, border-color 0.2s;
	box-sizing: border-box;
}

.service-card:hover {
	border-color: #86efac;
	box-shadow: 0 4px 12px rgba(26, 95, 74, 0.08);
}

.service-flagship {
	border-color: #86efac;
	background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
}

.service-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #111;
}

.service-desc {
	font-size: 0.95rem;
	color: #4b5563;
	margin: 0;
	line-height: 1.55;
	overflow-wrap: anywhere;
	hyphens: auto;
}

/* ==========================================================================
   Case studies (homepage)
   ========================================================================== */
.cases-section.section {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.cases-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem;
	text-align: left;
	margin-top: 2rem;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

@media (min-width: 560px) {
	.cases-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.cases-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.case-card {
	min-width: 0;
	padding: 1.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
}

.case-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #111;
}

.case-outcome {
	font-size: 0.9rem;
	color: #4b5563;
	margin: 0 0 0.75rem;
	line-height: 1.5;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.case-service {
	font-size: 0.8rem;
	color: #1a5f4a;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ==========================================================================
   Credibility / Certifications
   ========================================================================== */
.credibility-section.section {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.credibility-list {
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: 0.75rem 1.5rem;
	text-align: left;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.credibility-item {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.95rem;
	color: #374151;
	line-height: 1.5;
	min-width: 0;
	overflow-wrap: anywhere;
	hyphens: auto;
	box-sizing: border-box;
}

.credibility-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 6px;
	height: 6px;
	background: #1a5f4a;
	border-radius: 50%;
}

.credibility-certifications-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 0.25rem;
	color: #111;
}

.credibility-certifications-sub {
	font-size: 0.95rem;
	color: #6b7280;
	margin: 0 0 1rem;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.certifications-placeholder {
	padding: 2rem;
	background: #fff;
	border: 1px dashed #d1d5db;
	border-radius: 8px;
	margin-top: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/* Certifications grid: when owner provides logos */
.certifications-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin-top: 1rem;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.certification-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	max-width: 100%;
	padding: 0.75rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.certification-item:hover {
	border-color: #86efac;
	box-shadow: 0 2px 8px rgba(26, 95, 74, 0.08);
}

.certification-item img {
	max-height: 48px;
	width: auto;
	object-fit: contain;
}

.placeholder-note {
	color: #9ca3af;
	font-size: 0.95rem;
	margin: 0;
	overflow-wrap: anywhere;
	hyphens: auto;
}

/* ==========================================================================
   Contact section (homepage)
   ========================================================================== */
.contact-options {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.contact-link {
	font-size: 1rem;
	color: #1a5f4a;
}

/* ==========================================================================
   Footer (svz benchmark: hero tagline + 3D card parallax: light theme)
   ========================================================================== */
.site-footer {
	background: #111;
	color: #9ca3af;
	padding: 3rem 1.5rem 1.5rem;
	margin-top: 0;
}

/* Main content meets footer flush (no strip of body background) */
main.site-main + footer.site-footer {
	margin-top: 0;
}

.site-footer--light {
	background:
		radial-gradient(ellipse 72% 55% at 12% 8%, rgba(26, 95, 74, 0.07) 0%, transparent 52%),
		radial-gradient(ellipse 58% 48% at 88% 92%, rgba(134, 239, 172, 0.14) 0%, transparent 48%),
		linear-gradient(180deg, #f8faf8 0%, #f0f5f2 100%);
	color: #4b5563;
	padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
	position: relative;
	overflow-x: hidden;
	overflow-y: visible;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.footer-inner--with-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(1.25rem, 4vw, 2rem);
	align-items: start;
}

.footer-content {
	min-width: 0;
	width: 100%;
}

@media (min-width: 992px) {
	.footer-inner--with-card {
		grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
		align-items: center;
		column-gap: clamp(1.5rem, 3vw, 2.5rem);
	}
}

.footer-hero {
	text-align: center;
	margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
	padding-bottom: clamp(1.25rem, 4vw, 2.5rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer--light .footer-hero {
	border-bottom-color: rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
	.site-footer--light .footer-hero {
		text-align: left;
		margin-bottom: clamp(1.25rem, 3vw, 2rem);
		padding-bottom: 0;
		border-bottom: 0;
	}
}

.footer-eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--wilken-ci-green);
}

.footer-tagline {
	margin: 0 0 1.25rem;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.site-footer--light .footer-tagline {
	color: #111;
}

.footer-tagline-line {
	display: block;
}

.footer-tagline--accent {
	color: var(--wilken-ci-mint);
}

.site-footer--light .footer-tagline--accent {
	color: var(--wilken-ci-green);
}

.footer-cta {
	margin-top: 0.5rem;
	box-sizing: border-box;
	max-width: min(22rem, 100%);
	display: inline-block;
	vertical-align: top;
	text-align: center;
	/* Override global `a { transition: color }` so bg/border/color animate together */
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer--light .footer-cta.button:hover,
.site-footer--light .footer-cta.button:focus-visible {
	background: var(--wilken-ci-forest-deep);
	border-color: var(--wilken-ci-forest-deep);
	color: #fff;
}

/* Footer 3D card (desktop only: revolver ticker + parallax) */
.footer-card-3d {
	display: none;
}

@media (min-width: 992px) {
	.footer-card-3d {
		display: block;
		width: 100%;
		max-width: min(420px, 100%);
		margin-inline: 0 auto;
		justify-self: end;
		aspect-ratio: 0.85;
		border-radius: 12px;
		overflow: hidden;
		box-sizing: border-box;
		will-change: transform;
		transform-origin: center center;
	}
}

.footer-card-3d__medias {
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 2%;
	overflow: hidden;
}

.footer-card-3d__media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	border-radius: 2%;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.footer-card-3d__media--on {
	visibility: visible;
}

.footer-card-3d__media--ticker {
	background: linear-gradient(
		165deg,
		var(--wilken-ci-green) 0%,
		var(--wilken-ci-forest-deep) 58%,
		#0a2e24 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-card-ticker {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.footer-card-ticker__chamber {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	z-index: 1;
	height: clamp(2.25rem, 5.5vw, 3rem);
	transform: translateY(-50%);
	pointer-events: none;
}

.footer-card-ticker__viewport {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.footer-card-ticker__viewport::before,
.footer-card-ticker__viewport::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
	height: 22%;
	pointer-events: none;
}

.footer-card-ticker__viewport::before {
	top: 0;
	background: linear-gradient(180deg, rgba(13, 61, 48, 0.92) 0%, rgba(13, 61, 48, 0) 100%);
}

.footer-card-ticker__viewport::after {
	bottom: 0;
	background: linear-gradient(0deg, rgba(13, 61, 48, 0.92) 0%, rgba(13, 61, 48, 0) 100%);
}

.footer-card-ticker__track {
	list-style: none;
	margin: 0;
	padding: 0 clamp(1.35rem, 3vw, 1.85rem) 0 clamp(1.5rem, 3.2vw, 2rem);
	display: flex;
	flex-direction: column;
	gap: clamp(0.75rem, 1.9vw, 1.05rem);
	will-change: transform;
}

.footer-card-ticker__word {
	margin: 0;
	display: flex;
	align-items: center;
	gap: clamp(0.65rem, 1.6vw, 1rem);
	min-height: clamp(2rem, 4.5vw, 2.75rem);
	flex-shrink: 0;
}

.footer-card-ticker__label {
	font-size: clamp(1.2rem, 2.8vw, 2.1rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.38;
	white-space: nowrap;
	transition: opacity 0.2s ease;
	-webkit-font-smoothing: antialiased;
}

.footer-card-ticker__word.is-active .footer-card-ticker__label {
	opacity: 1;
}

.footer-card-ticker__rule {
	flex: 1 1 auto;
	height: 1px;
	min-width: 0;
	max-width: 0;
	background: rgba(255, 255, 255, 0.75);
	opacity: 0;
	transition: opacity 0.2s ease, max-width 0.25s ease;
}

.footer-card-ticker__word.is-active .footer-card-ticker__rule {
	opacity: 1;
	max-width: 100%;
	min-width: 2rem;
}

@media (prefers-reduced-motion: reduce) {
	.footer-card-ticker__label {
		transition: none;
	}

	.footer-card-ticker__rule {
		transition: none;
	}
}

.footer-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.25rem, 4vw, 2rem);
	margin-bottom: clamp(1.25rem, 4vw, 2rem);
}

@media (min-width: 640px) {
	.footer-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.footer-columns {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 0.9fr);
	}
}

.site-footer--light .footer-columns {
	margin-top: clamp(1.25rem, 4vw, 2rem);
}

@media (min-width: 992px) {
	.site-footer--light .footer-columns {
		margin-top: 0;
		padding-top: clamp(1.5rem, 3vw, 2.5rem);
		border-top: 1px solid rgba(0, 0, 0, 0.08);
	}
}

.footer-col {
	min-width: 0;
}

.footer-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.site-footer--light .footer-title {
	color: #111;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.4rem;
}

.footer-links a {
	color: #9ca3af;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.site-footer--light .footer-links a {
	color: #4b5563;
}

.footer-links a:hover {
	color: #fff;
}

.site-footer--light .footer-links a:hover {
	color: var(--wilken-ci-green);
}

.footer-links--capabilities {
	margin-bottom: 0;
}

.footer-all-capabilities {
	margin: 0.85rem 0 0;
}

.footer-all-capabilities a {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--wilken-ci-green);
}

.footer-all-capabilities a:hover {
	color: var(--wilken-ci-forest-deep);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid #374151;
}

.footer-bottom__start {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	min-width: 0;
}

@media (min-width: 640px) {
	.footer-bottom__start {
		flex-direction: row;
		align-items: center;
		gap: 1.25rem;
	}
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.footer-brand__logo {
	height: clamp(1.35rem, 2.5vw, 1.65rem);
	width: auto;
	max-width: min(9rem, 42vw);
}

@media (max-width: 520px) {
	.footer-bottom {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.footer-bottom__start {
		align-items: center;
	}

	.footer-bottom .lang-switcher--footer {
		align-self: center;
		width: fit-content;
		max-width: 100%;
		margin-inline: auto;
	}
}

.site-footer--light .footer-bottom {
	border-top-color: rgba(0, 0, 0, 0.1);
}

.site-info {
	margin: 0;
	font-size: 0.9rem;
}

.site-footer--light .site-info {
	color: #6b7280;
}

.lang-switcher--footer {
	color: #9ca3af;
	border-color: #4b5563;
	background: transparent;
}

.site-footer--light .lang-switcher--footer {
	color: #4b5563;
	border-color: #d1d5db;
	background: #fff;
}

.lang-switcher--footer:hover {
	color: #fff;
	border-color: #9ca3af;
}

.site-footer--light .lang-switcher--footer:hover {
	color: var(--wilken-ci-green);
	border-color: var(--wilken-ci-green);
}

/* Capability deep-link targets (footer + in-page nav) */
[id^="capability-"] {
	scroll-margin-top: clamp(5rem, 12vh, 7rem);
}

/* ==========================================================================
   Page templates
   ========================================================================== */
.page-content {
	max-width: 840px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem;
}

.page-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.page-eyebrow,
.referenzen-header .page-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin: 0 0 0.5rem;
}

.page-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #111;
}

.referenzen-header .page-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-subtitle {
	color: #6b7280;
	margin: 0;
	font-size: 1.1rem;
}

.page-cta {
	margin-top: 2rem;
	text-align: center;
}

/* Services page */
.services-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.service-item {
	padding: 1.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
}

.service-item--flagship {
	border-color: #86efac;
	background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
}

.service-item__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
	color: #111;
}

.service-item__desc {
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.6;
	margin: 0 0 1rem;
}

.service-item__best-for {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #e5e7eb;
}

.service-item--flagship .service-item__best-for {
	border-top-color: rgba(26, 95, 74, 0.2);
}

.service-item__best-for-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1a5f4a;
	margin-bottom: 0.5rem;
}

.service-item__best-for-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.95rem;
	color: #4b5563;
	line-height: 1.6;
}

.service-item__best-for-list li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.35rem;
}

.service-item__best-for-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	background: #1a5f4a;
	border-radius: 50%;
}

/* Referenzen page */
.referenzen-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.referenz-card {
	position: relative;
	padding: 1.5rem;
	padding-top: 2.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.referenz-card:hover {
	border-color: #86efac;
	box-shadow: 0 4px 12px rgba(26, 95, 74, 0.08);
}

.referenz-number {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: rgba(26, 95, 74, 0.15);
}

.referenz-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #111;
}

.referenz-outcome {
	font-size: 0.95rem;
	color: #4b5563;
	margin: 0 0 0.75rem;
	line-height: 1.5;
}

.referenz-service {
	font-size: 0.8rem;
	color: #1a5f4a;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Projects / Referenzen (SVZ-style sections, Wilken CI) */
.page-projects .padding-global {
	padding-left: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	padding-right: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-right));
}

.page-projects .padding-section-medium {
	padding-top: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.page-projects .container-large {
	width: 100%;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.page-projects.site-main {
	max-width: none;
	padding: 0;
	margin: 0;
}

/* Referenzen: while hero is pinned, match .site-header fill to pin shell (see syncProjectsHeroHeaderToPinShell in main.js). */
body.wilken-projects-page.wilken-projects-hero-header-pin-sync .site-header {
	--wilken-header-bg: var(--wilken-ph-header-sync-bg);
	--wilken-header-border: var(--wilken-ph-header-sync-border, rgba(0, 0, 0, 0.06));
	background-color: var(--wilken-header-bg);
	border-bottom-color: var(--wilken-header-border);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header {
	--wilken-header-link: rgba(248, 250, 252, 0.88);
	--wilken-header-link-hover: #a7f3d0;
	--wilken-header-link-active: #fff;
}

body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header .site-title {
	color: #f8fafc;
}

body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header .site-title:hover {
	color: #a7f3d0;
}

body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header .lang-switcher--header {
	background: rgba(248, 250, 252, 0.08);
	border-color: rgba(248, 250, 252, 0.22);
	color: rgba(248, 250, 252, 0.92);
}

body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header .lang-switcher--header:hover,
body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header .lang-switcher--header:focus-visible {
	border-color: #a7f3d0;
	color: #a7f3d0;
	background: rgba(248, 250, 252, 0.12);
}

body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header .header-discovery-cta {
	color: rgba(248, 250, 252, 0.95);
	border-color: rgba(248, 250, 252, 0.55);
	background: transparent;
}

body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header .header-discovery-cta:hover,
body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header .header-discovery-cta:focus-visible {
	color: #fff;
	border-color: rgba(248, 250, 252, 0.95);
	background: rgba(248, 250, 252, 0.1);
}

body.wilken-projects-page.wilken-projects-hero-header-pin-sync.wilken-projects-hero-header-sync-dark .site-header .wilken-bundled-logo--on-light {
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.wilken-projects-main {
	overflow-x: clip;
}

/* Referenzen hero: light field, CI forest (#0d3d30) on scroll (GSAP); centered stack + mosaic */
.wilken-projects-case-study_hero-wrapper {
	position: relative;
	width: 100%;
	/* Inner min-height collapses during scroll; keep pin target at least viewport-tall so
	   GSAP backgroundColor paints edge-to-edge (avoids body white showing below). */
	min-height: 100vh;
	min-height: 100dvh;
	background: #f8fafc;
	color: #111827;
	display: flex;
	flex-direction: column;
}

.wilken-projects-header-project.section_header-project {
	margin: 0;
	padding: 0;
	width: 100%;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	/* Top-align: centering the sole flex child left a ~2px gap when heights differ by rounding. */
	justify-content: flex-start;
	/* Do not shrink below hero copy (flex min-height:0 was clipping against overflow). */
	min-height: min-content;
}

.header-projects_component.wilken-projects-header-project__component {
	position: relative;
	width: 100%;
	overflow: visible;
	background: transparent;
	flex: 1 1 auto;
	min-height: min-content;
}

.header-projects_inner-wrapper.wilken-projects-header-project__inner {
	position: relative;
	width: 100%;
	/* Isolate stacking so mosaic tiles (GPU layers + 3D) never paint above hero copy */
	isolation: isolate;
	/* Fallback before JS; motion path sets min-height via GSAP pin timeline */
	min-height: clamp(32rem, calc(100dvh - 5rem), 56rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	box-sizing: border-box;
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
	overflow: visible;
}

/* Full-bleed media shell (SVZ: transforms applied here via GSAP) */
.header-projects_images-wrapper.wilken-projects-header-project__images {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	/* Flatten: avoids mosaic promoted layers jumping above sibling hero copy in some GPUs */
	transform-style: flat;
	backface-visibility: hidden;
	will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
	.header-projects_images-wrapper.wilken-projects-header-project__images {
		will-change: auto;
	}
}

.wilken-projects-header-project__media-fill {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(ellipse 82% 68% at 50% 42%, rgba(26, 95, 74, 0.06), transparent 60%),
		radial-gradient(ellipse 48% 44% at 78% 22%, rgba(134, 239, 172, 0.1), transparent 52%),
		radial-gradient(ellipse 40% 36% at 12% 75%, rgba(26, 95, 74, 0.04), transparent 50%),
		#f8fafc;
	opacity: 1;
	transition: opacity 0.6s ease;
}

/* Tablet / mobile: full-bleed hero video carousel (clips play one after another; JS rotates). Hidden on desktop. */
.wilken-projects-header-project__bg-carousel {
	display: none;
}

/* Floating video mosaic (SVZ-style is-image1 … is-image5) */
.header-projects_image-wrapper.wilken-projects-header-project__tile {
	position: absolute;
	border-radius: clamp(0.65rem, 1.2vw, 0.9rem);
	overflow: hidden;
	box-shadow:
		0 1.15rem 2.6rem rgba(15, 23, 42, 0.14),
		0 0 0 1px rgba(26, 95, 74, 0.09) inset;
	will-change: transform;
	backface-visibility: hidden;
	transform-style: flat;
	pointer-events: none;
}

.wilken-projects-header-project__tile--behind {
	z-index: 1;
}

.wilken-projects-header-project__tile--front {
	z-index: 5;
}

.header-projects_image-wrapper.wilken-projects-header-project__tile .wilken-projects-header-project__tile-embed {
	width: 100%;
	height: 100%;
	margin: 0;
	line-height: 0;
}

video.wilken-projects-header-project__tile-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
}

/* Mosaic tuned for centered headline (SVZ-style overlaps) */
.header-projects_image-wrapper.is-image1 {
	width: clamp(9rem, 19vw, 19.5rem);
	height: clamp(5.5rem, 11vw, 11.5rem);
	top: 30%;
	left: -6%;
}

.header-projects_image-wrapper.is-image2 {
	width: clamp(9rem, 18vw, 18.125rem);
	height: clamp(5.5rem, 10.8vw, 11.3rem);
	bottom: 7%;
	left: 0;
	top: auto;
}

.header-projects_image-wrapper.is-image3 {
	width: clamp(7rem, 11.5vw, 11.3rem);
	height: clamp(8.5rem, 14.5vw, 14.125rem);
	/* Sit lower so the tile does not rise into the headline block on typical viewports */
	bottom: 2%;
	left: 50%;
	top: auto;
}

.header-projects_image-wrapper.is-image4 {
	width: clamp(9rem, 14vw, 14.125rem);
	height: clamp(9rem, 14vw, 14.125rem);
	bottom: 5%;
	right: 1%;
	left: auto;
	top: auto;
	border-radius: 50%;
}

.header-projects_image-wrapper.is-image5 {
	width: clamp(9rem, 18.5vw, 18.875rem);
	height: clamp(5.5rem, 11vw, 11.3rem);
	top: 14%;
	right: -4%;
	left: auto;
}

@media screen and (max-width: 899px) {
	.header-projects_image-wrapper.wilken-projects-header-project__tile {
		display: none !important;
	}

	.wilken-projects-header-project__bg-carousel {
		display: block;
		position: absolute;
		inset: 0;
		z-index: 2;
		overflow: hidden;
		pointer-events: none;
		width: 100%;
		height: 100%;
		min-height: 100%;
	}

	.wilken-projects-header-project__bg-carousel-embed {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		min-height: 100%;
		margin: 0;
		line-height: 0;
	}

	video.wilken-projects-header-project__bg-carousel-video {
		display: block;
		width: 100%;
		height: 100%;
		min-width: 100%;
		min-height: 100%;
		object-fit: cover;
		object-position: 50% 38%;
		vertical-align: middle;
		transform: scale(1.04);
		transform-origin: center center;
	}

	.wilken-projects-header-project__bg-carousel-scrim {
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background: linear-gradient(
			165deg,
			rgba(248, 250, 252, 0.52) 0%,
			rgba(248, 250, 252, 0.14) 42%,
			rgba(248, 250, 252, 0.22) 100%
		);
	}
}

@media (prefers-reduced-motion: reduce) {
	.header-projects_image-wrapper.wilken-projects-header-project__tile {
		will-change: auto;
	}
}

.page-projects .wilken-projects-hero__center.container-small {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
	text-align: center;
}

.wilken-projects-header-project__content {
	position: relative;
	z-index: 10;
	width: 100%;
	flex-shrink: 0;
	padding-top: clamp(0.5rem, 2vw, 1.25rem);
	padding-bottom: clamp(0.5rem, 2vw, 1.25rem);
	pointer-events: auto;
	/* Own compositing layer above absolute mosaic (pairs with inner isolation) */
	--wilken-ph-vshift: 0px;
	transform: translateZ(0) translateY(var(--wilken-ph-vshift));
	background-color: transparent;
	--wilken-ph-ink: #111827;
	--wilken-ph-kicker: #1a5f4a;
	--wilken-ph-sub: rgba(15, 23, 42, 0.62);
	border-radius: 0;
	box-sizing: border-box;
	/* CI: DM Sans (matches body + About story copy) */
	font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.wilken-projects-hero__kicker {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
	color: var(--wilken-ph-kicker, #1a5f4a);
	opacity: 1;
	font-family: inherit;
}

.wilken-projects-hero__title {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.02em;
	font-size: clamp(2rem, 6.25vw, 3.85rem);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	text-wrap: balance;
	font-family: inherit;
}

.wilken-projects-page--lang-en .wilken-projects-hero__title {
	letter-spacing: -0.04em;
}

.wilken-projects-hero__title .wilken-projects-hero__line {
	display: block;
	color: var(--wilken-ph-ink, #111827);
}

.wilken-projects-hero__swash {
	display: inline-block;
	font-family: inherit;
	font-style: normal;
	font-weight: 700;
	text-transform: none;
	letter-spacing: inherit;
	line-height: inherit;
	margin-inline: 0.02em;
	vertical-align: baseline;
	color: inherit;
}

.wilken-projects-hero__sub {
	margin: clamp(1rem, 2.5vw, 1.35rem) auto 0;
	font-size: clamp(0.9rem, 1.9vw, 1.05rem);
	line-height: 1.6;
	max-width: 33rem;
	color: var(--wilken-ph-sub, rgba(15, 23, 42, 0.62));
	font-family: inherit;
	font-weight: 400;
}

/* Remove legacy green accent line (headline is single-color like SVZ) */
.wilken-projects-hero__line--accent {
	color: var(--wilken-ph-ink, #111827) !important;
}

.wilken-projects-section-head {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	max-width: 40rem;
}

.wilken-projects-section-head--archive {
	max-width: 48rem;
}

.wilken-projects-section-head__kicker {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin: 0 0 0.75rem;
}

.wilken-projects-section-head__title {
	font-size: clamp(1.65rem, 3.5vw, 2.35rem);
	font-weight: 700;
	margin: 0 0 0.75rem;
	color: #111827;
	line-height: 1.15;
}

.wilken-projects-section-head__sub {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: #6b7280;
}

.wilken-projects-portfolio {
	/* Blend from CI forest (hero end state) into white so no hard seam */
	background: linear-gradient(
		180deg,
		#0d3d30 0%,
		#0d3d30 0.35rem,
		#134a3a 4.5rem,
		#ecf8f2 9rem,
		#f8fafc 14rem,
		#ffffff 18rem
	);
	background-color: #ffffff;
	background-repeat: no-repeat;
}

.page-projects #wilken-portfolio-featured {
	scroll-margin-top: clamp(5.75rem, 14vw, 7rem);
}

/* Same mint field as projects hero handoff (see GSAP backgroundColor on .wilken-projects-case-study_hero-wrapper). */
.page-projects #wilken-portfolio-featured.wilken-projects-portfolio {
	background: rgb(223, 246, 234);
	background-color: rgb(223, 246, 234);
}

/*
 * Featured portfolio: global `.section` adds horizontal padding; `.padding-global` adds more on Referenzen.
 * Strip section padding here so width isn't eaten twice; vertical rhythm stays via .wilken-projects-portfolio__shell.
 */
.page-projects #wilken-portfolio-featured.section {
	padding: 0;
	margin: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

@media (min-width: 992px) {
	/*
	 * Dock clearance on the portfolio block only (not main). Main padding-bottom left a white
	 * band below Stimmenwand before the footer on laptop / desktop.
	 */
	.page-projects.wilken-projects-page #wilken-portfolio-featured.section {
		padding-bottom: max(5.5rem, calc(5rem + env(safe-area-inset-bottom, 0px)));
	}
}

.page-projects #wilken-portfolio-featured > .padding-global {
	--padding-global-x: 0.625rem;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	padding-left: max(var(--padding-global-x), env(safe-area-inset-left));
	padding-right: max(var(--padding-global-x), env(safe-area-inset-right));
}

.page-projects #wilken-portfolio-featured > .padding-global > .container-large {
	min-width: 0;
	width: 100%;
	max-width: 72rem;
}

@media (min-width: 480px) {
	.page-projects #wilken-portfolio-featured > .padding-global {
		--padding-global-x: 0.85rem;
	}
}

@media (min-width: 768px) {
	.page-projects #wilken-portfolio-featured > .padding-global {
		--padding-global-x: 1.125rem;
	}
}

@media (min-width: 1024px) {
	.page-projects #wilken-portfolio-featured > .padding-global {
		--padding-global-x: 1.5rem;
	}
}

/* SVZ header46-style stack: filter strip, centered intro, image-forward cards */
.wilken-projects-portfolio .wilken-projects-portfolio__shell {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	padding-block: clamp(2.75rem, 5vw, 4.5rem);
}

/* Portfolio block: participate correctly in nested flex/grid (full-width filter rail). */
.wilken-projects-portfolio46 {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.wilken-projects-portfolio46__filters-wrap {
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

/* Inline dock: same visual language as FAQ/blog hub subnav pills (not fixed). */
.wilken-projects-portfolio46__filter-dock-inner {
	position: relative;
	min-width: 0;
	width: 100%;
	max-width: min(100%, 73rem);
	margin-inline: auto;
	border-radius: 1.25rem;
	overflow: hidden;
}

.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--dock {
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 0.65rem 0.85rem;
	box-sizing: border-box;
	margin: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 3.5rem;
	height: auto;
	padding: 0.25rem calc(4rem + 0.35rem) 0.25rem 0.85rem;
	border-radius: inherit;
	background: linear-gradient(
		165deg,
		rgba(255, 255, 255, 0.72) 0%,
		rgba(248, 253, 250, 0.52) 55%,
		rgba(236, 253, 245, 0.45) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.78);
	box-shadow:
		0 10px 36px rgba(15, 23, 42, 0.07),
		0 1px 0 rgba(255, 255, 255, 0.65) inset,
		0 0 0 1px rgba(26, 95, 74, 0.06);
	backdrop-filter: blur(22px) saturate(1.15);
	-webkit-backdrop-filter: blur(22px) saturate(1.15);
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	overscroll-behavior-x: contain;
}

.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--dock::-webkit-scrollbar {
	display: none;
}

.wilken-projects-portfolio46__subnav-eyebrow {
	flex: 0 0 auto;
	display: block;
	margin: 0;
	max-width: min(7.5rem, 28vw);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(22, 102, 78, 0.72);
	line-height: 1.25;
}

.wilken-projects-portfolio46__subnav-scroll-hint {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: clamp(3.75rem, 10vw, 5rem);
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(248, 253, 250, 0) 0%,
		rgba(255, 255, 255, 0.42) 42%,
		rgba(255, 255, 255, 0.82) 72%,
		rgba(255, 255, 255, 0.94) 100%
	);
}

.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--dock .wilken-projects-portfolio46__subnav-list {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	gap: 0.3rem;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: min-content;
	flex: 1 1 auto;
}

.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--dock .wilken-projects-portfolio46__subnav-list li {
	flex: none;
	display: flex;
	align-items: stretch;
	margin: 0;
}

.wilken-projects-portfolio46__filter-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 0.35rem 0.92rem;
	border-radius: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.04);
	background: rgba(236, 253, 245, 0.94);
	color: #16664e;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.105em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wilken-projects-portfolio46__filter-btn:hover {
	background: #f8fffc;
	color: #0f513f;
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateY(-1px);
}

.wilken-projects-portfolio46__filter-btn:focus {
	outline: none;
}

.wilken-projects-portfolio46__filter-btn:focus-visible {
	background: #f8fffc;
	color: #0f513f;
	border-color: rgba(236, 253, 245, 0.6);
	transform: translateY(-1px);
	box-shadow:
		0 0 0 2px rgba(15, 23, 42, 0.95),
		0 0 0 4px rgba(190, 242, 220, 0.85);
}

.wilken-projects-portfolio46__filter-btn.is-current {
	background: #e6fbf2;
	color: #0f513f;
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow:
		inset 0 0 0 1px rgba(26, 95, 74, 0.25),
		0 10px 24px rgba(15, 23, 42, 0.06);
}

/* Referenzen filter dock: stack + wrap on narrow viewports; full-width rail + touch scroll between tablet and desktop. */
@media (max-width: 767px) {
	.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--dock {
		flex-direction: column;
		align-items: stretch;
		flex-wrap: nowrap;
		overflow-x: visible;
		overflow-y: visible;
		padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
		gap: 0.5rem 0.65rem;
		overscroll-behavior-x: auto;
	}

	.wilken-projects-portfolio46__subnav-eyebrow {
		max-width: none;
		flex: 0 0 auto;
	}

	.wilken-projects-portfolio46__filter-dock-inner .wilken-projects-portfolio46__subnav-scroll-hint,
	.wilken-projects-portfolio46-subnav-dock-inner .wilken-projects-portfolio46__subnav-scroll-hint {
		display: none !important;
	}

	.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--dock .wilken-projects-portfolio46__subnav-list {
		flex-flow: row wrap;
		width: 100%;
		min-width: 0;
		flex: 1 1 auto;
		gap: 0.38rem;
	}

	.wilken-projects-portfolio46__filter-btn {
		min-height: 2.75rem;
		padding: 0.4rem 0.75rem;
		font-size: clamp(0.68rem, 2.8vw, 0.75rem);
	}
}

@media (max-width: 380px) {
	.wilken-projects-portfolio46__filter-btn {
		padding-inline: 0.55rem;
		letter-spacing: 0.08em;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.wilken-projects-portfolio46__subnav.wilken-projects-portfolio46__subnav--dock {
		padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
		padding-right: calc(3.25rem + max(0.35rem, env(safe-area-inset-right, 0px)));
	}
}

.wilken-projects-work-card.is-wilken-filter-hidden {
	display: none;
}

.wilken-projects-work-card.is-wilken-pagination-hidden {
	display: none;
}

.wilken-projects-portfolio-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1rem;
	margin-top: clamp(1.5rem, 4vw, 2.25rem);
	padding-top: 0.25rem;
}

.wilken-projects-portfolio-pagination[hidden] {
	display: none !important;
}

.wilken-projects-portfolio-pagination__status {
	flex: 1 1 8rem;
	min-width: 0;
	margin: 0;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #4b5563;
}

.wilken-projects-portfolio-pagination__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 2.65rem;
	padding: 0.4rem 1rem;
	border-radius: 1rem;
	border: 1px solid #d1d5db;
	background: #fff;
	color: #16664e;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.wilken-projects-portfolio-pagination__btn:hover:not(:disabled) {
	background: #f8fffc;
	border-color: rgba(26, 95, 74, 0.35);
}

.wilken-projects-portfolio-pagination__btn:focus {
	outline: none;
}

.wilken-projects-portfolio-pagination__btn:focus-visible {
	outline: 2px solid #1a5f4a;
	outline-offset: 3px;
}

.wilken-projects-portfolio-pagination__btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

@media (min-width: 992px) {
	.wilken-projects-portfolio-pagination {
		display: none !important;
	}
}

.wilken-projects-portfolio46__intro {
	text-align: center;
	max-width: 38rem;
	margin-inline: auto;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	padding-inline: 0.5rem;
}

@media (max-width: 991px) {
	.wilken-projects-portfolio46__intro {
		margin-bottom: clamp(0.85rem, 2.5vw, 1.25rem);
	}
}

.wilken-projects-portfolio46__kicker {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 0.65rem;
}

.wilken-projects-portfolio46__headline {
	font-size: clamp(1.85rem, 4vw, 2.65rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0;
	color: #111827;
}

.wilken-projects-portfolio46__list-wrap {
	width: 100%;
	min-width: 0;
}

.wilken-projects-portfolio-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.wilken-projects-work-card {
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.wilken-projects-work-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wilken-projects-work-card__link:hover {
	border-color: rgba(26, 95, 74, 0.35);
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.wilken-projects-work-card__link:focus-visible {
	outline: 2px solid #1a5f4a;
	outline-offset: 3px;
}

.wilken-projects-work-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	width: 100%;
	overflow: hidden;
	transform: translateZ(0);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wilken-projects-work-card__link:hover .wilken-projects-work-card__media {
	transform: scale(1.03);
}

.wilken-projects-work-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.35), transparent 42%);
	pointer-events: none;
	opacity: 0.85;
}

.wilken-projects-work-card__icons {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(0.55rem, 2.5vw, 0.85rem);
	padding: 0.75rem;
	pointer-events: none;
}

.wilken-projects-work-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(3rem, 14vw, 4.25rem);
	height: clamp(3rem, 14vw, 4.25rem);
	border-radius: 0.75rem;
	box-sizing: border-box;
	color: rgba(255, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(10px) saturate(1.1);
	-webkit-backdrop-filter: blur(10px) saturate(1.1);
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.wilken-projects-work-card__icon svg {
	display: block;
	width: clamp(1.55rem, 7vw, 2.15rem);
	height: clamp(1.55rem, 7vw, 2.15rem);
	flex-shrink: 0;
}

.wilken-projects-work-card__media--palette-0 {
	background:
		radial-gradient(ellipse 90% 70% at 12% 88%, rgba(15, 23, 42, 0.65), transparent 58%),
		linear-gradient(135deg, #0f172a 0%, #1a5f4a 42%, #312e81 100%);
}

.wilken-projects-work-card__media--palette-1 {
	background:
		radial-gradient(ellipse 80% 60% at 88% 18%, rgba(134, 239, 172, 0.35), transparent 55%),
		linear-gradient(145deg, #111827 0%, #14532d 40%, #0f172a 100%);
}

.wilken-projects-work-card__media--palette-2 {
	background:
		radial-gradient(circle at 30% 25%, rgba(253, 224, 71, 0.2), transparent 45%),
		linear-gradient(160deg, #1e293b 0%, #7c2d12 48%, #1e3a5f 100%);
}

.wilken-projects-work-card__media--palette-3 {
	background:
		radial-gradient(ellipse 70% 55% at 70% 80%, rgba(59, 130, 246, 0.25), transparent 50%),
		linear-gradient(135deg, #0f172a 0%, #334155 45%, #1e3a8a 100%);
}

.wilken-projects-work-card__media--palette-4 {
	background:
		radial-gradient(circle at 80% 30%, rgba(52, 211, 153, 0.35), transparent 42%),
		linear-gradient(155deg, #064e3b 0%, #0f172a 55%, #14532d 100%);
}

.wilken-projects-work-card__media--palette-5 {
	background:
		radial-gradient(ellipse 65% 50% at 20% 70%, rgba(168, 85, 247, 0.22), transparent 48%),
		linear-gradient(140deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
}

.wilken-projects-work-card__media--palette-6 {
	background:
		radial-gradient(circle at 55% 55%, rgba(251, 146, 60, 0.18), transparent 46%),
		linear-gradient(125deg, #1c1917 0%, #422006 42%, #292524 100%);
}

.wilken-projects-work-card__media--palette-7 {
	background:
		radial-gradient(ellipse 75% 65% at 15% 35%, rgba(244, 114, 182, 0.2), transparent 50%),
		linear-gradient(165deg, #312e81 0%, #831843 48%, #4c1d95 100%);
}

.wilken-projects-work-card__media--palette-8 {
	background:
		radial-gradient(circle at 75% 65%, rgba(56, 189, 248, 0.28), transparent 45%),
		linear-gradient(135deg, #0c4a6e 0%, #0f172a 50%, #164e63 100%);
}

/* Warm navy and gold: luxury travel case studies */
.wilken-projects-work-card__media--palette-9 {
	background:
		radial-gradient(ellipse 85% 70% at 18% 82%, rgba(180, 134, 58, 0.42), transparent 58%),
		radial-gradient(ellipse 60% 50% at 88% 22%, rgba(212, 175, 95, 0.18), transparent 52%),
		linear-gradient(145deg, #1a1410 0%, #2c2416 38%, #0f1a2e 72%, #0c1220 100%);
}

@media (prefers-reduced-motion: reduce) {
	.wilken-projects-work-card__media {
		transition: none;
	}

	.wilken-projects-work-card__link:hover .wilken-projects-work-card__media {
		transform: none;
	}
}

.wilken-projects-work-card__body {
	padding: 1rem 1.15rem 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 auto;
}

.wilken-projects-work-card__title {
	font-size: clamp(1rem, 2vw, 1.125rem);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 0.45rem;
	color: #111827;
}

.wilken-projects-work-card__tag {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.35;
}

.wilken-projects-wip {
	--wilken-wip-ink: #f8fafc;
	--wilken-wip-ink-soft: rgba(248, 250, 252, 0.78);
	--wilken-wip-mint: #a7f3d0;
	--wilken-wip-deep: #0a1f17;
	background: linear-gradient(152deg, #0f291f 0%, #134a3a 38%, #1a5f4a 58%, #0d3d30 100%);
	color: var(--wilken-wip-ink-soft);
	box-shadow: inset 0 1px 0 rgba(167, 243, 208, 0.08);
	/* Matches portfolio hero and case copy (Wilken CI) */
	font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* WIP: centered hero band (SVZ-like) + stacked list with Wilken green palette */
.wilken-projects-wip.section {
	padding-block: 0;
	padding-inline: 0;
}

.wilken-projects-wip__padding.padding-global.padding-section-large {
	padding-block: clamp(3rem, 7vw, 5rem);
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.page-projects .wilken-projects-wip .container-large {
	width: 100%;
	max-width: 72rem;
	min-width: 0;
	box-sizing: border-box;
}

.wilken-projects-wip .wilken-projects-wip__shell {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	padding-block: 0;
}

.wilken-projects-wip__masthead {
	text-align: center;
	max-width: min(52rem, 100%);
	margin-inline: auto;
	margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.wilken-projects-wip__kicker {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
	color: var(--wilken-wip-mint);
}

.wilken-projects-wip__display {
	margin: 0;
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.03em;
	text-wrap: balance;
	color: var(--wilken-wip-ink);
	font-size: clamp(2rem, 6.25vw, 3.85rem);
}

.wilken-projects-wip--lang-en .wilken-projects-wip__display {
	text-transform: uppercase;
	letter-spacing: -0.04em;
}

.wilken-projects-wip__lede {
	margin: clamp(1rem, 2.8vw, 1.35rem) auto 0;
	max-width: 36rem;
	font-size: clamp(0.92rem, 1.95vw, 1.0625rem);
	line-height: 1.62;
	font-weight: 400;
	color: var(--wilken-wip-ink-soft);
}

.wilken-projects-wip__mast-cta {
	display: flex;
	justify-content: center;
	margin-top: clamp(1.35rem, 3.2vw, 1.85rem);
}

.wilken-projects-wip .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	box-sizing: border-box;
	min-height: 2.75rem;
	padding: 0.55rem 1.25rem;
	border: 1px solid rgba(248, 250, 252, 0.55);
	border-radius: 6px;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	color: var(--wilken-wip-ink);
	background: rgba(8, 30, 24, 0.25);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wilken-projects-wip .btn:hover {
	background: rgba(248, 250, 252, 0.12);
	color: #fff;
	border-color: rgba(248, 250, 252, 0.95);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.wilken-projects-wip .btn:focus-visible {
	outline: 2px solid var(--wilken-wip-mint);
	outline-offset: 3px;
}

.wilken-projects-wip__btn-pair {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	row-gap: 0.35rem;
}

.wilken-projects-wip__btn-label {
	display: inline-block;
	white-space: nowrap;
}

.wilken-projects-wip__lock-icon {
	flex-shrink: 0;
	display: block;
}

.wilken-projects-wip__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	min-width: 0;
}

.wilken-projects-wip__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.25rem;
	padding-block: clamp(1.15rem, 2.4vw, 1.5rem);
	border-bottom: 1px solid rgba(248, 250, 252, 0.14);
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
}

.wilken-projects-wip__list .wilken-projects-wip__row:first-child {
	border-top: 1px solid rgba(248, 250, 252, 0.14);
}

.wilken-projects-wip__row-main {
	display: flex;
	align-items: flex-start;
	gap: clamp(0.85rem, 2vw, 1.25rem);
	flex: 1 1 14rem;
	min-width: 0;
}

.wilken-projects-wip__soon {
	flex: 0 0 auto;
	align-self: flex-start;
	padding: 0.28rem 0.55rem;
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--wilken-wip-mint);
	background: rgba(8, 30, 24, 0.35);
	border: 1px solid rgba(167, 243, 208, 0.32);
	border-radius: 999px;
}

.wilken-projects-wip__row-text {
	flex: 1 1 auto;
	min-width: 0;
}

.wilken-projects-wip__sector {
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(214, 251, 237, 0.62);
	margin: 0.4rem 0 0;
}

.wilken-projects-wip__title {
	font-size: clamp(1.08rem, 2.35vw, 1.3125rem);
	font-weight: 700;
	line-height: 1.28;
	margin: 0;
	color: var(--wilken-wip-ink);
	overflow-wrap: break-word;
	word-break: normal;
}

.wilken-projects-wip__btn--row {
	flex: 0 0 auto;
	min-width: min(100%, 12rem);
}

/* Tablet: stack project copy and CTA so rows use full content width */
@media (max-width: 900px) {
	.wilken-projects-wip__padding.padding-global.padding-section-large {
		padding-block: clamp(2.5rem, 6vw, 4rem);
	}

	.wilken-projects-wip__row {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0.85rem;
	}

	.wilken-projects-wip__row-main {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
	}

	.wilken-projects-wip .wilken-projects-wip__btn--row {
		width: 100%;
		min-width: 0;
		align-self: stretch;
	}
}

@media (max-width: 767px) {
	.wilken-projects-wip__mast-cta {
		display: none;
	}
}

@media (max-width: 520px) {
	.wilken-projects-wip__btn-pair {
		width: 100%;
		justify-content: space-between;
	}

	.wilken-projects-wip .wilken-projects-wip__btn--row {
		width: 100%;
	}

	.wilken-projects-wip__row-main {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.65rem;
	}

	.wilken-projects-wip__btn-label {
		white-space: normal;
		text-align: center;
	}

	.wilken-projects-wip .btn {
		padding-inline: 1rem;
		font-size: 0.65rem;
	}
}

.wilken-projects-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.wilken-projects-card {
	position: relative;
	padding: 1.35rem 1.35rem 1.5rem;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wilken-projects-wip .wilken-projects-card {
	background: #fff;
}

.wilken-projects-card:hover {
	border-color: rgba(26, 95, 74, 0.35);
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

a.wilken-projects-card--link {
	display: flex;
	flex-direction: column;
	height: 100%;
	flex: 1;
	text-decoration: none;
	color: inherit;
}

a.wilken-projects-card--link:hover {
	color: inherit;
}

a.wilken-projects-card--link:focus-visible {
	outline: 2px solid #1a5f4a;
	outline-offset: 3px;
}

.wilken-projects-card__sector {
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #1a5f4a;
	margin: 0 0 0.5rem;
}

.wilken-projects-card__title {
	font-size: 1.12rem;
	font-weight: 700;
	margin: 0 0 0.65rem;
	color: #111827;
	line-height: 1.25;
}

.wilken-projects-card__excerpt {
	font-size: 0.92rem;
	line-height: 1.55;
	color: #4b5563;
	margin: 0 0 0.75rem;
}

.wilken-projects-card__meta {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #9ca3af;
}

.wilken-projects-card--wip {
	min-height: 10rem;
	padding-top: 2.75rem;
}

.wilken-projects-card__soon {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
	background: #1a5f4a;
	padding: 0.28rem 0.55rem;
	border-radius: 4px;
}

.wilken-projects-card__cta-muted {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #9ca3af;
}

.wilken-projects-testimonial {
	background: #fff;
	border-block: 1px solid #e5e7eb;
}

.wilken-projects-testimonial__panel {
	max-width: 48rem;
	padding: clamp(1.5rem, 3vw, 2rem);
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	background: linear-gradient(135deg, #f8faf8 0%, #fff 70%);
}

.wilken-projects-testimonial__kicker {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin: 0 0 1rem;
}

.wilken-projects-testimonial__quote {
	margin: 0;
	padding: 0;
	border: none;
}

.wilken-projects-testimonial__text {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.65;
	color: #374151;
	margin: 0 0 1rem;
	font-weight: 500;
}

.wilken-projects-testimonial__byline {
	font-size: 0.9rem;
	font-style: normal;
	color: #6b7280;
}

.wilken-projects-archive {
	background: #f3f4f6;
}

.wilken-projects-archive.radius-large {
	--wilken-projects-archive-gap: clamp(2rem, 4vw, 3rem);
	border-radius: clamp(1rem, 2vw, 1.75rem);
	margin-inline: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	margin-top: var(--wilken-projects-archive-gap);
	margin-bottom: var(--wilken-projects-archive-gap);
	overflow: hidden;
}

.wilken-projects-archive-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wilken-projects-archive-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: clamp(1rem, 2vw, 1.75rem);
	align-items: center;
	padding: clamp(1.15rem, 2vw, 1.5rem) 0;
	border-bottom: 1px solid #e5e7eb;
}

.wilken-projects-archive-row:last-child {
	border-bottom: none;
}

.wilken-projects-archive-row__index {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: rgba(26, 95, 74, 0.2);
	line-height: 1;
	min-width: 2.5rem;
}

.wilken-projects-archive-row__title {
	font-size: 1.08rem;
	font-weight: 700;
	margin: 0 0 0.25rem;
	color: #111827;
}

.wilken-projects-archive-row__sector {
	margin: 0;
	font-size: 0.85rem;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.wilken-projects-archive-row__services {
	list-style: none;
	margin: 0.55rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.wilken-projects-archive-row__service {
	flex: 0 0 auto;
	margin: 0;
	padding: 0.2rem 0.55rem;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.35;
	white-space: nowrap;
	color: #1a5f4a;
	background: rgba(26, 95, 74, 0.08);
	border: 1px solid rgba(26, 95, 74, 0.16);
	border-radius: 999px;
	letter-spacing: 0.02em;
	text-transform: none;
}

@media (min-width: 721px) {
	.wilken-projects-archive-row__body {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		column-gap: 0.65rem;
		row-gap: 0.3rem;
	}

	.wilken-projects-archive-row__title {
		flex: 1 1 100%;
		margin-bottom: 0;
	}

	.wilken-projects-archive-row__sector {
		flex: 0 0 auto;
		margin: 0;
	}

	.wilken-projects-archive-row__services {
		flex: 0 1 auto;
		margin: 0;
		flex-wrap: nowrap;
	}
}

.wilken-projects-archive-row__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	white-space: nowrap;
	font-size: 0.72rem;
	padding: 0.55rem 1rem;
}

.wilken-projects-archive-row__btn-label {
	display: inline-block;
}

/* Case study showcase single (SVZ-style flow, Wilken CI) */
.wilken-case-showcase-page.site-main {
	max-width: none;
	padding: 0;
	margin: 0;
}

.wilken-case-showcase-page .padding-global {
	padding-left: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	padding-right: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-right));
}

.wilken-case-showcase-page .container-large {
	width: 100%;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.wilken-case-showcase-page .padding-section-large {
	padding-top: clamp(2.75rem, 5vw, 4.25rem);
	padding-bottom: clamp(2.75rem, 5vw, 4.25rem);
}

.wilken-case-showcase-page .padding-section-medium {
	padding-top: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.wilken-case-showcase-page .padding-section-small {
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
	padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.wilken-case-header71 {
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
}

/* Showcase header uses padding-global; avoid double .section horizontal padding */
.wilken-case-header71.section {
	padding: 0;
	margin: 0;
}

.wilken-case-header71__grid {
	display: grid;
	gap: clamp(1.75rem, 4vw, 2.75rem);
	align-items: stretch;
}

.wilken-case-header71__copy,
.wilken-case-header71__media {
	min-width: 0;
}

@media (min-width: 960px) {
	.wilken-case-header71__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
		align-items: start;
	}
}

.wilken-case-header71__kicker {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 0.85rem;
	color: #1a5f4a;
}

.wilken-case-header71__title {
	margin: 0 0 1rem;
	font-size: clamp(1.85rem, 4vw, 2.85rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #111827;
}

.wilken-case-prose {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #374151;
}

.wilken-case-prose p {
	margin: 0 0 1rem;
}

.wilken-case-prose p:last-child {
	margin-bottom: 0;
}

.wilken-case-prose strong {
	color: #111827;
	font-weight: 700;
}

.wilken-case-header71__intro {
	font-size: 1.08rem;
}

.wilken-case-header71__video-wrap {
	position: relative;
	width: 100%;
	max-width: 100%;
	border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
	overflow: hidden;
	background: #0f172a;
	/* Height from width only; a vw min-height widens the box past the grid column */
	aspect-ratio: 16 / 10;
}

.wilken-case-header71__video,
.wilken-case-header71__video-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wilken-case-header71__video-placeholder {
	overflow: hidden;
}

.wilken-case-header71__video-placeholder::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.35), transparent 42%);
	pointer-events: none;
	opacity: 0.85;
}

.wilken-case-header71__video-placeholder .wilken-projects-work-card__icon {
	width: clamp(3.25rem, 10vw, 5rem);
	height: clamp(3.25rem, 10vw, 5rem);
	border-radius: 0.85rem;
}

.wilken-case-header71__video-placeholder .wilken-projects-work-card__icon svg {
	width: clamp(1.75rem, 5vw, 2.5rem);
	height: clamp(1.75rem, 5vw, 2.5rem);
}

/* Case showcase narrative: SVZ-style layout42 two-column grid (label | body) */
.wilken-case-showcase-page .wilken-layout42_component {
	width: 100%;
}

.wilken-case-showcase-page .wilken-layout42_grid.layout42_content {
	display: grid;
	align-items: start;
	row-gap: 1rem;
	column-gap: clamp(1.75rem, 4vw, 3.5rem);
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.wilken-case-showcase-page .wilken-layout42_grid.layout42_content {
		grid-template-columns: minmax(0, 13.5rem) minmax(0, 1fr);
		column-gap: clamp(2rem, 5vw, 4rem);
		row-gap: 0;
	}
}

.wilken-case-showcase-page .wilken-layout42_grid-label,
.wilken-case-showcase-page .wilken-layout42_grid-body {
	min-width: 0;
}

.wilken-case-showcase-page .wilken-layout42_grid .wilken-case-layout42__label {
	margin-bottom: 0;
}

.wilken-case-showcase-page .wilken-layout42_grid .wilken-case-layout42__body {
	max-width: none;
}

/* Results: label above body (copy column), not side-by-side like other layout42 rows */
.wilken-case-layout42--results .wilken-layout42_grid.layout42_content {
	grid-template-columns: 1fr;
	row-gap: clamp(0.85rem, 1.5vw, 1.15rem);
	column-gap: 0;
}

.wilken-case-layout42--results .wilken-layout42_grid .wilken-case-layout42__label {
	margin: 0;
}

.wilken-case-layout42--results .wilken-layout42_grid .wilken-case-layout42__body--results {
	max-width: 42rem;
}

.wilken-case-layout42__label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin: 0 0 1.25rem;
}

.wilken-case-layout42__body {
	max-width: 42rem;
}

.wilken-case-layout42--alt {
	background: #f9fafb;
}

.wilken-case-layout42--results {
	background: linear-gradient(180deg, #f8faf8 0%, #fff 85%);
}

.wilken-case-layout42__results-grid {
	display: grid;
	gap: clamp(1.75rem, 3vw, 2.5rem);
	align-items: start;
}

@media (min-width: 768px) {
	/* Copy left, metrics right; row height follows the taller column */
	.wilken-case-layout42__results-grid:has(.wilken-case-layout42__results-col-stats) {
		grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
		column-gap: clamp(2rem, 4vw, 3.5rem);
		row-gap: 0;
		align-items: start;
	}

	.wilken-case-layout42__results-grid:has(.wilken-case-layout42__results-col-stats)
		.wilken-case-layout42__results-col-copy {
		position: sticky;
		top: clamp(1.5rem, 6vh, 4rem);
		align-self: start;
	}
}

.wilken-case-layout42__results-col-copy {
	min-width: 0;
}

.wilken-case-layout42__results-col-copy .wilken-case-layout42__label {
	margin: 0 0 clamp(0.85rem, 1.5vw, 1.15rem);
}

.wilken-case-layout42__results-col-stats {
	min-width: 0;
}

@media (min-width: 768px) {
	.wilken-case-layout42__results-col-stats {
		position: static;
		align-self: stretch;
	}
}

.wilken-case-layout42__body--results {
	max-width: 42rem;
	margin-bottom: 0;
}

.wilken-case-layout42__results-col-stats .wilken-case-stats {
	max-width: none;
	margin-top: 0;
}

.wilken-case-gallery7__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.75rem, 2vw, 1.25rem);
}

/* Two items: span full container width, gap between, 16:10 cells (same as mosaic tiles). */
.wilken-case-gallery7__grid--duo {
	--wilken-g7-col-gap: clamp(1.5rem, 3vw, 2.5rem);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--wilken-g7-col-gap);
}

.wilken-case-gallery7__grid--duo .wilken-case-gallery7__cell {
	aspect-ratio: 16 / 10;
}

.wilken-case-gallery7__grid--duo .wilken-case-gallery7__img,
.wilken-case-gallery7__grid--duo .wilken-case-gallery7__video,
.wilken-case-gallery7__grid--duo .wilken-case-gallery7__ph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 768px) {
	.wilken-case-gallery7__grid:not(.wilken-case-gallery7__grid--single):not(.wilken-case-gallery7__grid--duo) {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* One item: 100vh CI green frame, centered 16:10 tile (after base grid so flex wins over 2-col grid). */
.wilken-case-gallery7--single .padding-global.padding-section-small {
	padding-block: 0;
}

.wilken-case-gallery7__grid.wilken-case-gallery7__grid--single {
	--wilken-g7-single-pad: clamp(2rem, 6vw, 3.5rem);
	display: flex;
	justify-content: center;
	align-items: center;
	grid-template-columns: unset;
	gap: 0;
	box-sizing: border-box;
	container-type: size;
	container-name: wilken-g7-single;
	width: 100%;
	margin: 0;
	padding: var(--wilken-g7-single-pad);
	height: 100vh;
	min-height: 100vh;
	max-height: 100vh;
	border-radius: clamp(0.65rem, 1.2vw, 0.85rem);
	background:
		radial-gradient(ellipse 88% 72% at 12% 92%, rgba(134, 239, 172, 0.28), transparent 58%),
		linear-gradient(155deg, #0d3d30 0%, #1a5f4a 46%, #14532d 100%);
	border: 1px solid rgba(13, 61, 48, 0.35);
	box-shadow: inset 0 1px 0 rgba(167, 243, 208, 0.1);
}

.wilken-case-gallery7__grid.wilken-case-gallery7__grid--single .wilken-case-gallery7__cell {
	flex: 0 0 auto;
	width: min(100cqi, calc(100cqb * 16 / 10));
	max-width: 100cqi;
	max-height: 100cqb;
	height: auto;
	margin: 0;
	aspect-ratio: 16 / 10;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.wilken-case-gallery7__grid.wilken-case-gallery7__grid--single .wilken-case-gallery7__img,
.wilken-case-gallery7__grid.wilken-case-gallery7__grid--single .wilken-case-gallery7__video,
.wilken-case-gallery7__grid.wilken-case-gallery7__grid--single .wilken-case-gallery7__ph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
	border-radius: inherit;
}

.wilken-case-gallery7__grid.wilken-case-gallery7__grid--single .wilken-case-gallery7__ph {
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

@media (max-width: 767px) {
	.wilken-case-gallery7--single .padding-global.padding-section-small {
		padding-block: var(--padding-section-y, 1.5rem);
	}

	.wilken-case-gallery7__grid.wilken-case-gallery7__grid--single {
		height: auto;
		min-height: clamp(20rem, 70vh, 100vh);
		max-height: none;
		container-type: normal;
	}

	.wilken-case-gallery7__grid.wilken-case-gallery7__grid--single .wilken-case-gallery7__cell {
		width: 100%;
		max-width: none;
		max-height: none;
	}
}

/* Mosaic gallery7: 3 (2+1), 4 (2+2), or 5 (3+2); left column matches hero/gallery24 palette; 16:10 per cell. */
.wilken-case-gallery7--mosaic-3 .padding-global.padding-section-small,
.wilken-case-gallery7--mosaic-4 .padding-global.padding-section-small,
.wilken-case-gallery7--mosaic-5 .padding-global.padding-section-small {
	padding-block: 0;
}

.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__mosaic,
.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__mosaic,
.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__mosaic {
	--wilken-g7-col-gap: clamp(1.5rem, 3vw, 2.5rem);
	display: grid;
	/* Wider left column so right tiles sit closer to the green panel; column gap matches vertical cell gap. */
	grid-template-columns: minmax(0, 2.5fr) minmax(0, 2.5fr);
	grid-template-rows: minmax(0, 100vh);
	gap: var(--wilken-g7-col-gap);
	align-items: stretch;
	height: 100vh;
	max-height: 100vh;
	min-height: 100vh;
}

.wilken-case-gallery7__col {
	list-style: none;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(0.65rem, 1.25vw, 0.85rem);
	border-radius: clamp(0.65rem, 1.2vw, 0.85rem);
}

.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--left,
.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--left,
.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--left {
	--wilken-g7-left-pad: clamp(1.75rem, 4.5vw, 3.25rem);
	box-sizing: border-box;
	container-type: size;
	container-name: wilken-g7-left;
	height: 100%;
	max-height: 100%;
	min-height: 0;
	padding: var(--wilken-g7-left-pad);
	gap: var(--wilken-g7-col-gap);
	align-items: center;
	justify-content: center;
	/* Background from .wilken-projects-work-card__media--palette-{n} (same as header71 + gallery24) */
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--left,
.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--left {
	--wilken-g7-left-slot-h: calc((100cqb - var(--wilken-g7-col-gap)) / 2);
}

.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--left {
	--wilken-g7-left-slot-h: calc((100cqb - 2 * var(--wilken-g7-col-gap)) / 3);
}

.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--left .wilken-case-gallery7__cell,
.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--left .wilken-case-gallery7__cell {
	flex: 0 0 auto;
	width: min(100%, calc(var(--wilken-g7-left-slot-h) * 16 / 10));
	max-height: var(--wilken-g7-left-slot-h);
	height: auto;
	aspect-ratio: 16 / 10;
	margin-inline: 0;
}

.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--left .wilken-case-gallery7__cell {
	flex: 0 0 auto;
	width: min(66.666%, calc(var(--wilken-g7-left-slot-h) * 16 / 10));
	max-width: 66.666%;
	max-height: var(--wilken-g7-left-slot-h);
	height: auto;
	aspect-ratio: 16 / 10;
	margin-inline: 0;
}

.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--right,
.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--right,
.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--right {
	--wilken-g7-right-slot-h: calc((100cqb - var(--wilken-g7-col-gap)) / 2);
	box-sizing: border-box;
	container-type: size;
	container-name: wilken-g7-right;
	height: 100%;
	max-height: 100%;
	min-height: 0;
	padding: 0;
	gap: var(--wilken-g7-col-gap);
	align-items: flex-start;
	background: transparent;
	justify-content: center;
	overflow: hidden;
}

/* Three items: tile 3 vertically centered beside the green pair on the left. */
.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--right {
	align-items: center;
}

.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--right .wilken-case-gallery7__cell,
.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--right .wilken-case-gallery7__cell,
.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--right .wilken-case-gallery7__cell {
	flex: 0 0 auto;
	width: min(100%, calc(var(--wilken-g7-right-slot-h) * 16 / 10));
	max-height: var(--wilken-g7-right-slot-h);
	height: auto;
	aspect-ratio: 16 / 10;
	margin-inline: 0;
}

.wilken-case-gallery7__mosaic .wilken-case-gallery7__cell {
	flex: 0 0 auto;
	width: 100%;
	margin: 0;
	aspect-ratio: 16 / 10;
}

.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--left .wilken-case-gallery7__img,
.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--left .wilken-case-gallery7__video,
.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--left .wilken-case-gallery7__ph,
.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--left .wilken-case-gallery7__img,
.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--left .wilken-case-gallery7__video,
.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--left .wilken-case-gallery7__ph,
.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--left .wilken-case-gallery7__img,
.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--left .wilken-case-gallery7__video,
.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--left .wilken-case-gallery7__ph {
	width: 100%;
	height: 100%;
}

.wilken-case-gallery7__mosaic .wilken-case-gallery7__img,
.wilken-case-gallery7__mosaic .wilken-case-gallery7__video,
.wilken-case-gallery7__mosaic .wilken-case-gallery7__ph {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
}

.wilken-case-gallery7__col--left .wilken-case-gallery7__ph {
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

@media (max-width: 767px) {
	.wilken-case-gallery7--mosaic-3 .padding-global.padding-section-small,
	.wilken-case-gallery7--mosaic-4 .padding-global.padding-section-small,
	.wilken-case-gallery7--mosaic-5 .padding-global.padding-section-small {
		padding-block: var(--padding-section-y, 1.5rem);
	}

	.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__mosaic,
	.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__mosaic,
	.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__mosaic {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		align-items: stretch;
		height: auto;
		max-height: none;
		min-height: 0;
	}

	.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--left,
	.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--left,
	.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--left {
		min-height: 0;
		height: auto;
		max-height: none;
		padding: clamp(1.25rem, 5vw, 2rem);
		container-type: normal;
	}

	.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--left .wilken-case-gallery7__cell,
	.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--left .wilken-case-gallery7__cell,
	.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--left .wilken-case-gallery7__cell {
		width: 100%;
		max-width: none;
		max-height: none;
	}

	.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--right,
	.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--right,
	.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--right {
		container-type: normal;
		height: auto;
		max-height: none;
		overflow: visible;
	}

	.wilken-case-gallery7--mosaic-3 .wilken-case-gallery7__col--right .wilken-case-gallery7__cell,
	.wilken-case-gallery7--mosaic-4 .wilken-case-gallery7__col--right .wilken-case-gallery7__cell,
	.wilken-case-gallery7--mosaic-5 .wilken-case-gallery7__col--right .wilken-case-gallery7__cell {
		width: 100%;
		max-height: none;
		margin-inline: 0;
	}
}

.wilken-case-gallery7__cell {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	background: #fff;
}

.wilken-case-gallery7__img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.wilken-case-gallery7__img--scenario,
.wilken-case-gallery24__img--scenario {
	object-fit: contain;
	background: #f4f2fb;
	padding: 0.75rem;
	box-sizing: border-box;
}

.wilken-case-gallery7__video {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.wilken-case-gallery7__ph {
	width: 100%;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, rgba(26, 95, 74, 0.12) 0%, rgba(26, 95, 74, 0.04) 45%, #f3f4f6 100%);
}

.wilken-case-inline-cta {
	background:
		radial-gradient(ellipse 110% 65% at 50% 0%, rgba(26, 95, 74, 0.06), transparent 52%),
		linear-gradient(165deg, #f9fcf9 0%, #eef5f1 44%, #e8f1ec 100%);
}

.wilken-case-inline-cta {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.wilken-case-gallery24 {
	padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Desktop scrub: full viewport band (ScrollTrigger adds --scrub from 992px) */
.wilken-case-gallery24--scrub {
	min-height: 100vh;
	min-height: 100dvh;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.wilken-case-gallery24--scrub .wilken-case-gallery24__pin {
	flex: 1 1 auto;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	box-sizing: border-box;
}

.wilken-case-gallery24__pin {
	width: 100%;
	box-sizing: border-box;
}

.wilken-case-gallery24__horizontal-scroll-wrapper {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scroll-padding-left: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	padding-left: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	padding-right: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-right));
}

.wilken-case-gallery24--scrub .wilken-case-gallery24__horizontal-scroll-wrapper {
	overflow-x: hidden;
	scroll-snap-type: none;
	scrollbar-width: none;
}

.wilken-case-gallery24--scrub .wilken-case-gallery24__horizontal-scroll-wrapper::-webkit-scrollbar {
	display: none;
	height: 0;
}

.wilken-case-gallery24--scrub .wilken-case-gallery24__slide {
	scroll-snap-align: none;
}

.wilken-case-gallery24__track {
	display: flex;
	gap: clamp(0.9rem, 2vw, 1.25rem);
	padding-bottom: 0.5rem;
	will-change: auto;
}

.wilken-case-gallery24--scrub .wilken-case-gallery24__track {
	transform-style: preserve-3d;
	will-change: transform;
	backface-visibility: hidden;
}

.wilken-case-gallery24__slide {
	flex: 0 0 min(94vw, 48rem);
	scroll-snap-align: start;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
}

.wilken-case-gallery24--static .wilken-case-gallery24__track {
	justify-content: center;
}

.wilken-case-gallery24--static .wilken-case-gallery24__slide {
	flex: 0 1 min(94vw, 48rem);
	max-width: 52rem;
}

.wilken-case-gallery24__img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.wilken-case-gallery24__video {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.wilken-case-gallery24__ph {
	width: 100%;
	aspect-ratio: 3 / 2;
	background:
		linear-gradient(120deg, #e5e7eb 0%, #f3f4f6 40%, rgba(26, 95, 74, 0.14) 100%);
}

/* Pinned horizontal scrub: uniform viewport-scale panels on every slide */
@media (min-width: 992px) {
	.wilken-case-gallery24--scrub {
		--wilken-g24-slide-width: clamp(32rem, 62vw, 58rem);
		--wilken-g24-slide-height: clamp(24rem, 72vh, 42rem);
	}

	.wilken-case-gallery24--scrub .wilken-case-gallery24__slide {
		flex: 0 0 var(--wilken-g24-slide-width);
	}

	.wilken-case-gallery24--scrub .wilken-case-gallery24__img,
	.wilken-case-gallery24--scrub .wilken-case-gallery24__video,
	.wilken-case-gallery24--scrub .wilken-case-gallery24__ph {
		aspect-ratio: auto;
		height: var(--wilken-g24-slide-height);
		width: 100%;
		object-fit: cover;
	}
}

.wilken-case-stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	max-width: 36rem;
}

@media (min-width: 768px) {
	/* Scrub metrics: stack fills one viewport; each row gets 100vh/N (set via --wilken-case-stats-bands in JS) */
	.wilken-case-stats--scrub .wilken-case-stats__item {
		min-height: calc(100vh / var(--wilken-case-stats-bands, 1));
		min-height: calc(100dvh / var(--wilken-case-stats-bands, 1));
		display: flex;
		flex-direction: column;
		justify-content: center;
		box-sizing: border-box;
		padding-block: clamp(1rem, 2.5vh, 2.25rem);
		opacity: 0.28;
		transition:
			opacity 0.45s ease,
			transform 0.45s ease;
		transform: translateY(6px);
		border-bottom-color: transparent;
	}

	.wilken-case-stats--scrub .wilken-case-stats__item.is-active {
		opacity: 1;
		transform: translateY(0);
		border-bottom-color: #e5e7eb;
	}

	.wilken-case-stats--scrub .wilken-case-stats__item:last-child.is-active {
		border-bottom: none;
	}
}

.wilken-case-stats__item {
	margin: 0;
	padding: 0 0 clamp(1.35rem, 2.2vw, 2rem);
	border-bottom: 1px solid #e5e7eb;
}

.wilken-case-stats__item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.wilken-case-stats__spacer {
	height: clamp(0.85rem, 1.5vw, 1.35rem);
	flex-shrink: 0;
	pointer-events: none;
}

.wilken-case-stats__content {
	min-width: 0;
}

.wilken-case-stats__value {
	margin: 0;
	font-size: clamp(1.85rem, 3.6vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	color: #111827;
	line-height: 1.04;
}

.wilken-case-stats__label {
	margin: 0;
	font-size: clamp(0.875rem, 1.15vw, 1rem);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #4b5563;
}

.wilken-case-inline-cta__card {
	border-radius: clamp(1rem, 2.2vw, 1.85rem);
	padding: clamp(1.35rem, 3.5vw, 2.65rem);
	color: #f9fafb;
	background: var(--wilken-ci-case-cta-gradient);
	box-shadow:
		0 1.35rem 2.85rem rgba(13, 61, 48, 0.22),
		0 0 0 1px rgba(255, 255, 255, 0.06) inset;
	overflow: hidden;
}

.wilken-case-inline-cta__grid.layout42_content.is-cta {
	display: grid;
	align-items: center;
	gap: clamp(1.35rem, 3.5vw, 2.75rem);
	grid-template-columns: 1fr;
	max-width: none;
	width: 100%;
	margin: 0;
}

@media (min-width: 900px) {
	.wilken-case-inline-cta__grid.layout42_content.is-cta {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
		column-gap: clamp(1.75rem, 4vw, 3rem);
	}

	.wilken-case-inline-cta__card--no-visual .wilken-case-inline-cta__grid.layout42_content.is-cta {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 899px) {
	.wilken-case-inline-cta__visual {
		order: 2;
	}

	.wilken-case-inline-cta__copy {
		order: 1;
	}
}

.wilken-case-inline-cta__visual {
	min-width: 0;
}

.wilken-case-inline-cta__media {
	position: relative;
	border-radius: clamp(0.65rem, 1.2vw, 1rem);
	overflow: hidden;
	background: var(--wilken-ci-forest-3);
	aspect-ratio: 16 / 10;
	min-height: 11.5rem;
	box-shadow: 0 0.65rem 2rem rgba(13, 61, 48, 0.28);
}

.wilken-case-inline-cta__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wilken-case-inline-cta__kinetic {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	gap: 0.1em;
	width: 100%;
	height: 100%;
	padding: clamp(0.85rem, 2vw, 1.35rem);
	box-sizing: border-box;
	background: var(--wilken-ci-dark-bg-glow);
}

.wilken-case-inline-cta__kinetic-line {
	display: block;
	font-family: Georgia, "Times New Roman", ui-serif, serif;
	font-weight: 700;
	font-size: clamp(2.15rem, 6.5vw, 3.65rem);
	line-height: 0.92;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	text-align: center;
	color: #d1fae5;
	text-shadow: 0 0.08em 1.2rem rgba(13, 61, 48, 0.4);
	background: linear-gradient(
		105deg,
		#6ee7b7 0%,
		#a7f3d0 35%,
		#ecfdf5 52%,
		#34d399 100%
	);
	background-size: 220% auto;
	background-position: 0% 50%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: wilken-inline-cta-kinetic-shift 9s ease-in-out infinite alternate;
}

.wilken-case-inline-cta__kinetic-line--2 {
	animation-delay: -3s;
	font-size: clamp(2.45rem, 7.5vw, 4.15rem);
}

@keyframes wilken-inline-cta-kinetic-shift {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 100% 50%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wilken-case-inline-cta__kinetic-line {
		animation: none;
		background: none;
		-webkit-background-clip: unset;
		background-clip: unset;
		color: #a7f3d0;
	}
}

.wilken-case-inline-cta__copy {
	min-width: 0;
}

.wilken-case-inline-cta__title {
	margin: 0 0 clamp(1rem, 2vw, 1.35rem);
	font-family: Georgia, "Times New Roman", ui-serif, serif;
	font-size: clamp(1.45rem, 2.65vw, 2.05rem);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: #fff;
}

.wilken-case-inline-cta__bullets {
	list-style: none;
	margin: 0 0 clamp(1.35rem, 2.5vw, 1.85rem);
	padding: 0;
	color: rgba(248, 250, 252, 0.88);
	line-height: 1.6;
	font-size: clamp(0.95rem, 1.35vw, 1.0625rem);
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.wilken-case-inline-cta__bullets li {
	position: relative;
	padding-left: 1.15rem;
}

.wilken-case-inline-cta__bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 999px;
	background: rgba(167, 243, 208, 0.85);
	box-shadow: 0 0 0 2px rgba(167, 243, 208, 0.2);
}

.wilken-case-inline-cta__action {
	margin: 0;
}

.wilken-case-inline-cta__btn.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.72rem 1.35rem 0.72rem 1.45rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #1a5f4a !important;
	background: #fafefa !important;
	border: 2px solid #fafefa !important;
	border-radius: 4px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wilken-case-inline-cta__btn.button:hover {
	background: #dcf5eb !important;
	border-color: #dcf5eb !important;
	color: #0d3d30 !important;
	transform: translateY(-1px);
}

.wilken-case-inline-cta__btn.button:focus-visible {
	outline: 2px solid rgba(167, 243, 208, 0.95);
	outline-offset: 3px;
}

.wilken-case-inline-cta__btn-icon {
	flex-shrink: 0;
}

/* Animated forest-green marketing surfaces (Stimmenwand, shared) */
.wilken-surface-green-animated,
.wilken-wall-of-fame {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--wilken-ci-forest-2);
	color: var(--wilken-ci-surface-ink);
}

.wilken-surface-green-animated::before,
.wilken-wall-of-fame::before {
	content: "";
	position: absolute;
	inset: -35%;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(
			128deg,
			var(--wilken-ci-surface-void) 0%,
			var(--wilken-ci-forest-deep) 28%,
			var(--wilken-ci-green) 52%,
			var(--wilken-ci-forest-3) 72%,
			var(--wilken-ci-forest-1) 100%
		);
	background-size: 320% 320%;
	animation: wilken-green-surface-gradient 22s ease-in-out infinite alternate;
}

.wilken-surface-green-animated::after,
.wilken-wall-of-fame::after {
	content: "";
	position: absolute;
	inset: -20%;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(circle at 22% 18%, rgba(26, 95, 74, 0.36) 0%, transparent 48%),
		radial-gradient(circle at 82% 72%, rgba(13, 61, 48, 0.34) 0%, transparent 50%),
		radial-gradient(circle at 48% 105%, rgba(134, 239, 172, 0.14) 0%, transparent 45%);
	animation: wilken-green-surface-orbs 26s ease-in-out infinite alternate;
}

.wilken-surface-green-animated > *,
.wilken-wall-of-fame > * {
	position: relative;
	z-index: 2;
}

@keyframes wilken-green-surface-gradient {
	0% {
		background-position: 0% 42%;
	}
	100% {
		background-position: 100% 58%;
	}
}

@keyframes wilken-green-surface-orbs {
	0% {
		transform: translate(0, 0) scale(1);
		opacity: 0.92;
	}
	100% {
		transform: translate(3.5%, -2.5%) scale(1.06);
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wilken-surface-green-animated::before,
	.wilken-wall-of-fame::before,
	.wilken-surface-green-animated::after,
	.wilken-wall-of-fame::after {
		animation: none;
	}
}

/* Related case studies on case showcase (light surface, no forest card) */
.wilken-case-callout {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	margin-inline: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.wilken-case-callout--related {
	color: inherit;
	background: transparent;
	box-shadow: none;
}

.wilken-case-callout.radius-large {
	border-radius: clamp(1rem, 2vw, 1.75rem);
	overflow: hidden;
}

.wilken-case-callout__intro {
	text-align: center;
	max-width: 38rem;
	margin-inline: auto;
	padding-inline: 0.5rem;
}

.wilken-case-callout__title {
	margin: 0;
}

.wilken-case-callout__spacer {
	height: clamp(1rem, 2vw, 1.35rem);
}

.wilken-case-callout__list.wilken-projects-portfolio-list {
	gap: clamp(1rem, 2.2vw, 1.65rem);
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.wilken-case-callout__list.wilken-projects-portfolio-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.wilken-case-callout__list.wilken-projects-portfolio-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.wilken-case-callout__card.wilken-projects-work-card {
	min-width: 0;
}

.wilken-case-callout__foot {
	margin: clamp(1.25rem, 2vw, 1.75rem) 0 0;
	text-align: center;
}

.wilken-case-callout__all {
	font-weight: 600;
	color: #1a5f4a;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.wilken-case-callout__all:hover {
	color: #0d3d30;
}

.wilken-case-fallback__note {
	margin: 0;
	font-size: 0.95rem;
	color: #6b7280;
}

/* Discovery / archive request page */
.page-discovery .padding-global {
	padding-left: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	padding-right: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-right));
}

.page-discovery .container-large {
	width: 100%;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.page-discovery.site-main {
	max-width: none;
	padding: 0;
	margin: 0;
}

/* Discovery overlay (SVZ section_discovery pattern: dismissible layer over same URL) */
.wilken-discovery-page {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
}

.wilken-discovery-underlay {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	padding: clamp(2rem, 6vw, 5rem) max(var(--padding-global-x, 1.5rem), env(safe-area-inset-right)) clamp(2rem, 6vw, 5rem) max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	box-sizing: border-box;
	background: linear-gradient(180deg, #eef4ec 0%, #f8faf8 55%, #fff 100%);
}

.wilken-discovery-underlay__inner {
	width: 100%;
}

.wilken-discovery-underlay__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin: 0 0 0.75rem;
}

.wilken-discovery-underlay__title {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 1rem;
	color: #111827;
}

.wilken-discovery-underlay__sub {
	font-size: 1.05rem;
	line-height: 1.65;
	color: #4b5563;
	margin: 0 0 1.5rem;
	max-width: 36rem;
}

.wilken-discovery-underlay__actions {
	margin: 0;
}

.wilken-discovery-underlay__actions-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: center;
}

@media (max-width: 480px) {
	.wilken-discovery-underlay__actions-row {
		flex-direction: column;
		align-items: stretch;
	}

	.wilken-discovery-underlay__actions-row .button {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
}

html.wilken-discovery-overlay--pref-dismissed .wilken-discovery-overlay {
	display: none !important;
}

html.wilken-discovery-overlay-open,
body.wilken-discovery-overlay-open {
	overflow: hidden;
	height: 100%;
}

.wilken-discovery-overlay {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	overflow: hidden;
	height: 100vh;
	height: 100dvh;
	max-height: 100vh;
	max-height: 100dvh;
	padding: 0;
	box-sizing: border-box;
	background: linear-gradient(165deg, #0c1815 0%, #0f291f 42%, #0d3d30 100%);
	color: #f4f7f5;
}

.wilken-discovery-overlay[hidden] {
	display: none !important;
}

.wilken-discovery-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: transparent;
	pointer-events: none;
}

.wilken-discovery-overlay__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: min(40rem, 100%);
	margin: 0 auto;
	flex: 1 1 auto;
	min-height: 0;
	min-width: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
	padding:
		max(0.75rem, env(safe-area-inset-top))
		max(0.75rem, env(safe-area-inset-right))
		max(0.75rem, env(safe-area-inset-bottom))
		max(0.75rem, env(safe-area-inset-left));
	box-sizing: border-box;
}

.wilken-discovery-overlay__panel--centered {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wilken-discovery-overlay__panel--centered .wilken-discovery--overlay {
	flex: 0 0 auto;
	width: 100%;
}

.wilken-discovery--overlay {
	padding: clamp(0.5rem, 2vw, 1.25rem) 0 clamp(1rem, 3vw, 2rem);
}

.wilken-discovery__shell {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	min-width: 0;
	padding-top: calc(2.5rem + env(safe-area-inset-top, 0px));
	box-sizing: border-box;
}

.wilken-discovery__shell--success {
	justify-content: center;
	padding-top: calc(2.75rem + env(safe-area-inset-top, 0px));
	padding-bottom: clamp(1rem, 3vw, 2rem);
}

.wilken-discovery__close {
	position: fixed;
	top: max(0.5rem, env(safe-area-inset-top, 0px));
	right: max(0.5rem, env(safe-area-inset-right, 0px));
	z-index: 9001;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	color: rgba(244, 247, 245, 0.92);
	cursor: pointer;
	transition: color 0.15s ease, opacity 0.15s ease;
}

.wilken-discovery__close:hover,
.wilken-discovery__close:focus-visible {
	color: #fff;
	opacity: 1;
	outline: 2px solid #7dd3b0;
	outline-offset: 3px;
}

.wilken-discovery__close-icon {
	display: flex;
	line-height: 0;
}

.wilken-discovery__avatars {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0 0 clamp(1rem, 3vw, 1.75rem);
	padding: 0;
	max-width: 100%;
}

.wilken-discovery__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin: 0;
	margin-left: -0.55rem;
	border-radius: 999px;
	border: 2px solid #0c1815;
	background: linear-gradient(145deg, #1a5f4a 0%, #0d3d30 100%);
	color: #d8f3e8;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.wilken-discovery__avatar:first-child {
	margin-left: 0;
}

.wilken-discovery__avatar svg {
	width: 1rem;
	height: 1rem;
}

.wilken-discovery--overlay .wilken-discovery__headline {
	font-size: clamp(1.15rem, 4.5vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 0 0 0.85rem;
	color: #f4f7f5;
	max-width: min(100%, 28ch);
	text-wrap: balance;
}

.wilken-discovery--overlay .wilken-discovery__sub {
	font-size: clamp(0.9rem, 2.5vw, 1.05rem);
	line-height: 1.6;
	color: rgba(244, 247, 245, 0.78);
	margin: 0 0 clamp(1.25rem, 4vw, 2rem);
	max-width: min(36rem, 100%);
	padding-inline: 0.15rem;
}

.wilken-discovery-form {
	width: 100%;
	min-width: 0;
}

.wilken-discovery-form__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin-bottom: 0.25rem;
}

@media (min-width: 520px) {
	.wilken-discovery-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.wilken-discovery-form .form-field--full {
	grid-column: 1 / -1;
}

.wilken-contact-form.wilken-discovery-form .form-field {
	margin: 0;
}

.wilken-discovery-form .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wilken-discovery-form input {
	width: 100%;
	min-height: 2.75rem;
	padding: 0.75rem 0.9rem;
	font-size: max(16px, 0.95rem);
	font-family: inherit;
	color: #f4f7f5;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	box-sizing: border-box;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.wilken-discovery-form input::placeholder {
	color: rgba(244, 247, 245, 0.48);
}

.wilken-discovery-form input:focus {
	outline: none;
	border-color: rgba(125, 211, 176, 0.65);
	background: rgba(255, 255, 255, 0.09);
	box-shadow: 0 0 0 2px rgba(26, 95, 74, 0.45);
}

.wilken-discovery-form .form-field__error {
	display: block;
	margin: 0.35rem 0 0;
	font-size: 0.8rem;
	line-height: 1.35;
	color: #fecaca;
	text-align: left;
}

.wilken-discovery-form .form-field__error[hidden] {
	display: none;
}

.wilken-discovery-form .wilken-form-privacy-consent {
	margin-top: 0.5rem;
}

.wilken-discovery-form .wilken-form-privacy-consent input[type="checkbox"] {
	flex: 0 0 auto;
	width: 1.125rem;
	height: 1.125rem;
	min-height: 0;
	margin: 0.15rem 0 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 4px;
	box-shadow: none;
}

.wilken-discovery-form .wilken-form-privacy-consent label {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	font-weight: 400;
	color: rgba(244, 247, 245, 0.85);
	overflow-wrap: anywhere;
	hyphens: auto;
}

.wilken-discovery-form .wilken-form-privacy-consent label a {
	color: #7dd3b0;
}

.wilken-discovery-form .wilken-form-privacy-consent label a:hover {
	color: #a7f3d0;
}

.wilken-discovery-form .wilken-form-privacy-consent.form-field--invalid label {
	color: #fecaca;
}

.wilken-discovery-form .form-field--invalid input:not([type="checkbox"]) {
	border-color: rgba(248, 113, 113, 0.75);
	box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.35);
}

.wilken-discovery-form .form-field--invalid input:not([type="checkbox"]):focus {
	border-color: rgba(252, 165, 165, 0.9);
	box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.35);
}

.wilken-discovery-form .form-message {
	margin: 0.75rem 0 0;
	text-align: left;
}

.wilken-discovery-form .form-message--success {
	background: rgba(209, 250, 229, 0.14);
	color: #bbf7d0;
	border: 1px solid rgba(125, 211, 176, 0.35);
}

.wilken-discovery-form .form-message--error {
	background: rgba(254, 226, 226, 0.12);
	color: #fecaca;
	border: 1px solid rgba(248, 113, 113, 0.35);
}

.wilken-discovery-form .form-submit {
	margin: 1rem 0 0;
}

.wilken-discovery-form__submit.button {
	display: block;
	width: 100%;
	min-height: 2.75rem;
	padding: 0.85rem 1rem;
	font-size: clamp(0.72rem, 2.5vw, 0.8rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0d3d30;
	background: #eef4ec;
	border: 2px solid #eef4ec;
	border-radius: 8px;
	cursor: pointer;
	touch-action: manipulation;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.wilken-discovery-form__submit.button:hover,
.wilken-discovery-form__submit.button:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #0d3d30;
}

.wilken-discovery-form__or {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin: 1.15rem 0 1rem;
	font-size: 0.8rem;
	color: rgba(244, 247, 245, 0.5);
	text-transform: lowercase;
}

.wilken-discovery-form__or::before,
.wilken-discovery-form__or::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.wilken-discovery-form__chat {
	margin: 0;
	display: flex;
	justify-content: center;
	width: 100%;
}

.wilken-discovery-form__chat-btn.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 2.75rem;
	padding: 0.75rem 1rem;
	font-size: clamp(0.68rem, 2.4vw, 0.72rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.35;
	text-transform: uppercase;
	text-align: center;
	white-space: normal;
	color: #0d3d30;
	background: #fff;
	border: 2px solid #fff;
	border-radius: 8px;
	text-decoration: none;
	touch-action: manipulation;
	box-sizing: border-box;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.wilken-discovery-form__chat-btn.button:hover,
.wilken-discovery-form__chat-btn.button:focus-visible {
	background: #eef4ec;
	border-color: #eef4ec;
	color: #0d3d30;
}

.wilken-discovery-form__body[hidden],
.wilken-discovery-form__success[hidden] {
	display: none !important;
}

.wilken-discovery-form__success {
	margin-top: 0;
	width: 100%;
	max-width: min(100%, 36rem);
	text-align: center;
}

.wilken-discovery-form__success-message {
	margin: clamp(1rem, 3vw, 1.35rem) 0 0;
	padding: 0;
	font-size: clamp(0.92rem, 2.6vw, 1rem);
	line-height: 1.55;
	font-weight: 500;
	color: rgba(244, 247, 245, 0.92);
	background: transparent;
	border: none;
	border-radius: 0;
}

.wilken-discovery--success-state .wilken-discovery__sub {
	margin-bottom: 0;
}

.wilken-discovery-form--success {
	width: 100%;
	max-width: min(100%, 36rem);
	text-align: center;
}

.wilken-discovery-form--success .wilken-discovery-form__chat--success {
	margin-top: clamp(1.35rem, 4vw, 1.75rem);
}

/* Discovery overlay: mobile and tablet — tighter form field rhythm */
@media (max-width: 1024px) {
	.wilken-discovery-form__grid {
		gap: 0.625rem;
	}

	.wilken-contact-form.wilken-discovery-form .form-field {
		margin: 0;
	}

	.wilken-discovery-form input {
		min-height: 2.625rem;
		padding: 0.65rem 0.85rem;
	}

	.wilken-discovery--overlay .wilken-discovery__sub {
		margin-bottom: 1rem;
	}
}

/* Discovery overlay: small phones and short viewports */
@media (max-width: 380px) {
	.wilken-discovery__avatar {
		width: 2rem;
		height: 2rem;
		margin-left: -0.35rem;
		border-width: 1.5px;
	}

	.wilken-discovery__avatar svg {
		width: 0.85rem;
		height: 0.85rem;
	}

	.wilken-discovery--overlay .wilken-discovery__headline {
		letter-spacing: 0.04em;
	}
}

@media (max-height: 700px) {
	.wilken-discovery--overlay {
		padding-top: 0;
		padding-bottom: 0.75rem;
	}

	.wilken-discovery__shell {
		padding-top: calc(2.25rem + env(safe-area-inset-top, 0px));
	}

	.wilken-discovery__avatars {
		margin-bottom: 0.85rem;
	}

	.wilken-discovery--overlay .wilken-discovery__sub {
		margin-bottom: 1rem;
	}

	.wilken-discovery-form__grid {
		gap: 0.6rem;
	}

	.wilken-discovery-form .form-submit {
		margin-top: 0.75rem;
	}

	.wilken-discovery-form__or {
		margin: 0.85rem 0 0.75rem;
	}
}

@media (min-width: 1025px) and (min-height: 720px) {
	.wilken-discovery-overlay__panel {
		flex: 0 1 auto;
		max-height: 100%;
		margin-top: auto;
		margin-bottom: auto;
	}
}

@media (max-width: 720px) {
	.wilken-projects-archive-row {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.wilken-projects-archive-row__index {
		display: none;
	}

	.wilken-projects-archive-row__action {
		justify-self: start;
	}
}

/* Contact page */
.page-contact-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #f8faf8 0%, #fff 100%);
}

.page-contact-hero-ambient {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
	--wilken-contact-ambient-x: 50;
	--wilken-contact-ambient-y: 50;
}

.page-contact-hero-ambient__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0.4;
}

.page-contact-hero-ambient__signals {
	position: absolute;
	left: 10%;
	top: 50%;
	width: min(36vw, 280px);
	height: min(18vw, 120px);
	transform: translateY(-50%);
}

.page-contact-hero-ambient__signal {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(26, 95, 74, 0.14);
	border-radius: 50%;
	transform: translateY(-50%) scaleX(2.4);
	animation: wilken-contact-signal-pulse 5s ease-out infinite;
}

.page-contact-hero-ambient__signal:nth-child(2) {
	animation-delay: -1.65s;
}

.page-contact-hero-ambient__signal:nth-child(3) {
	animation-delay: -3.3s;
}

.page-contact-hero-ambient__glyphs {
	position: absolute;
	inset: 0;
}

.page-contact-hero-ambient__glyph {
	position: absolute;
	font-family: "DM Sans", system-ui, sans-serif;
	font-weight: 800;
	line-height: 1;
	opacity: 0.06;
	animation: wilken-contact-glyph-float 8.5s ease-in-out infinite;
}

.page-contact-hero-ambient__glyph--at {
	font-size: clamp(2.25rem, 6vw, 4rem);
	color: #1a5f4a;
}

.page-contact-hero-ambient__glyph--mail {
	font-size: clamp(1.85rem, 4.5vw, 3rem);
	color: rgba(26, 95, 74, 0.85);
}

.page-contact-hero-ambient__glyph:nth-child(1) {
	left: 7%;
	top: 20%;
	animation-delay: 0s;
}

.page-contact-hero-ambient__glyph:nth-child(2) {
	right: 9%;
	top: 22%;
	animation-delay: -2s;
}

.page-contact-hero-ambient__glyph:nth-child(3) {
	left: 14%;
	bottom: 18%;
	animation-delay: -4.2s;
}

.page-contact-hero-ambient__glyph:nth-child(4) {
	right: 12%;
	bottom: 16%;
	animation-delay: -6.1s;
}

.page-contact-hero-ambient__chips {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	inset: 0;
	transform: translate3d(
		calc((var(--wilken-contact-ambient-x, 50) - 50) * 0.1px),
		calc((var(--wilken-contact-ambient-y, 50) - 50) * 0.08px),
		0
	);
}

.page-contact-hero-ambient__chip {
	position: absolute;
	animation: wilken-contact-chip-float 6.8s ease-in-out infinite;
	animation-delay: calc(var(--chip-i, 0) * -1.25s);
}

.page-contact-hero-ambient__chip--compose {
	left: clamp(0.35rem, 3vw, 2rem);
	top: 20%;
	width: clamp(8.5rem, 17vw, 10.5rem);
}

.page-contact-hero-ambient__chip--inbox {
	right: clamp(0.35rem, 3vw, 2rem);
	top: 24%;
	width: clamp(8.75rem, 18vw, 11rem);
}

.page-contact-hero-ambient__chip--calendar {
	left: clamp(0.35rem, 4vw, 2.5rem);
	bottom: 16%;
	width: clamp(8rem, 16vw, 9.75rem);
}

.page-contact-hero-ambient__chip--status {
	right: clamp(0.35rem, 4vw, 2.5rem);
	bottom: 14%;
	width: clamp(8.25rem, 16vw, 10rem);
}

.page-contact-hero-ambient__panel {
	display: block;
	padding: 0.55rem 0.65rem;
	border-radius: 10px;
	border: 1px solid rgba(26, 95, 74, 0.14);
	background: rgba(255, 255, 255, 0.76);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
	opacity: 0.88;
}

.page-contact-hero-ambient__panel-label {
	display: block;
	font-size: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(26, 95, 74, 0.72);
	margin-bottom: 0.35rem;
}

.page-contact-hero-ambient__field {
	display: block;
	border-radius: 4px;
	background: rgba(26, 95, 74, 0.06);
	margin-bottom: 0.28rem;
}

.page-contact-hero-ambient__field--subject {
	padding: 0.22rem 0.35rem;
	font-size: 0.5625rem;
	font-weight: 600;
	color: rgba(100, 116, 139, 0.9);
	background: rgba(248, 250, 248, 0.95);
	border: 1px solid rgba(26, 95, 74, 0.1);
}

.page-contact-hero-ambient__field--line {
	height: 0.32rem;
	width: 92%;
}

.page-contact-hero-ambient__field--short {
	width: 68%;
}

.page-contact-hero-ambient__field--line:nth-of-type(3) {
	animation: wilken-contact-line-grow 3.2s ease-in-out infinite;
	transform-origin: left center;
}

.page-contact-hero-ambient__send {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.15rem;
	padding: 0.22rem 0.55rem;
	border-radius: 999px;
	font-size: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #f8faf8;
	background: linear-gradient(135deg, #1a5f4a, #0d3d30);
	box-shadow: 0 4px 12px rgba(26, 95, 74, 0.22);
	animation: wilken-contact-send-pulse 2.8s ease-in-out infinite;
}

.page-contact-hero-ambient__panel--inbox {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	position: relative;
	padding-right: 1.4rem;
}

.page-contact-hero-ambient__inbox-icon {
	flex-shrink: 0;
	width: 1.35rem;
	height: 1.1rem;
	color: rgba(26, 95, 74, 0.65);
}

.page-contact-hero-ambient__inbox-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.page-contact-hero-ambient__inbox-copy {
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
	min-width: 0;
}

.page-contact-hero-ambient__inbox-title {
	font-size: 0.5625rem;
	font-weight: 700;
	color: rgba(15, 23, 42, 0.78);
	line-height: 1.2;
}

.page-contact-hero-ambient__inbox-sub {
	font-size: 0.5rem;
	font-weight: 500;
	color: rgba(100, 116, 139, 0.88);
	line-height: 1.25;
}

.page-contact-hero-ambient__inbox-badge {
	position: absolute;
	right: 0.45rem;
	top: 50%;
	transform: translateY(-50%);
	min-width: 0.95rem;
	height: 0.95rem;
	padding: 0 0.2rem;
	border-radius: 999px;
	background: #1a5f4a;
	color: #fff;
	font-size: 0.4375rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	animation: wilken-contact-badge-pop 3.5s ease-in-out infinite;
}

.page-contact-hero-ambient__cal-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.18rem;
}

.page-contact-hero-ambient__cal-day {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 0.85rem;
	border-radius: 3px;
	font-size: 0.4375rem;
	font-weight: 600;
	color: rgba(100, 116, 139, 0.75);
	background: rgba(26, 95, 74, 0.05);
}

.page-contact-hero-ambient__cal-day.is-selected {
	color: #fff;
	background: linear-gradient(135deg, #1a5f4a, #0d3d30);
	box-shadow: 0 0 0 2px rgba(26, 95, 74, 0.15);
	animation: wilken-contact-cal-select 4s ease-in-out infinite;
}

.page-contact-hero-ambient__panel--status {
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
}

.page-contact-hero-ambient__status-row {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.page-contact-hero-ambient__status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #1a5f4a;
	box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.14);
	animation: wilken-contact-status-ping 2.4s ease-in-out infinite;
}

.page-contact-hero-ambient__status-label {
	font-size: 0.5625rem;
	font-weight: 700;
	color: rgba(15, 23, 42, 0.78);
}

.page-contact-hero-ambient__status-reply {
	font-size: 0.5rem;
	font-weight: 500;
	color: rgba(100, 116, 139, 0.9);
	line-height: 1.3;
}

@keyframes wilken-contact-signal-pulse {
	0% {
		transform: translateY(-50%) scaleX(0.35) scaleY(0.35);
		opacity: 0.5;
	}
	100% {
		transform: translateY(-50%) scaleX(2.4) scaleY(1.35);
		opacity: 0;
	}
}

@keyframes wilken-contact-glyph-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

@keyframes wilken-contact-chip-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-4px);
	}
}

@keyframes wilken-contact-line-grow {
	0%,
	100% {
		transform: scaleX(1);
		opacity: 1;
	}
	50% {
		transform: scaleX(0.82);
		opacity: 0.65;
	}
}

@keyframes wilken-contact-send-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 12px rgba(26, 95, 74, 0.22);
	}
	50% {
		transform: scale(1.03);
		box-shadow: 0 6px 16px rgba(26, 95, 74, 0.28);
	}
}

@keyframes wilken-contact-badge-pop {
	0%,
	100% {
		transform: translateY(-50%) scale(1);
	}
	50% {
		transform: translateY(-50%) scale(1.08);
	}
}

@keyframes wilken-contact-cal-select {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.06);
	}
}

@keyframes wilken-contact-status-ping {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.14);
	}
	50% {
		box-shadow: 0 0 0 6px rgba(26, 95, 74, 0.06);
	}
}

@media (max-width: 960px) {
	.page-contact-hero-ambient__chip--calendar,
	.page-contact-hero-ambient__chip--status {
		display: none;
	}

	.page-contact-hero-ambient__chip--compose {
		top: 7%;
		bottom: auto;
		left: 0;
		right: 0;
		margin-inline: auto;
		width: clamp(7.5rem, 42vw, 9.5rem);
		opacity: 0.74;
	}

	.page-contact-hero-ambient__chip--inbox {
		top: auto;
		bottom: 10%;
		left: 0;
		right: 0;
		margin-inline: auto;
		width: clamp(7.75rem, 44vw, 10rem);
		opacity: 0.74;
	}

	.page-contact-hero-ambient__glyph {
		opacity: 0.045;
	}

	.page-contact-hero-ambient__glyph:nth-child(1) {
		left: 5%;
		top: 5%;
		bottom: auto;
	}

	.page-contact-hero-ambient__glyph:nth-child(2) {
		right: 6%;
		top: auto;
		bottom: 24%;
	}

	.page-contact-hero-ambient__glyph:nth-child(3) {
		left: 8%;
		top: auto;
		bottom: 7%;
	}

	.page-contact-hero-ambient__glyph:nth-child(4) {
		right: 5%;
		top: 34%;
		bottom: auto;
	}

	.page-contact-hero-ambient__signals {
		left: 50%;
		top: auto;
		bottom: 6%;
		width: min(42vw, 180px);
		height: min(22vw, 90px);
		transform: translateX(-50%);
	}

	.page-contact-hero-copy {
		padding-top: clamp(4.5rem, 14vw, 6rem);
		padding-bottom: clamp(4rem, 12vw, 5.5rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.page-contact-hero-ambient__canvas {
		display: none;
	}

	.page-contact-hero-ambient__signal,
	.page-contact-hero-ambient__glyph,
	.page-contact-hero-ambient__chip,
	.page-contact-hero-ambient__field--line:nth-of-type(3),
	.page-contact-hero-ambient__send,
	.page-contact-hero-ambient__inbox-badge,
	.page-contact-hero-ambient__cal-day.is-selected,
	.page-contact-hero-ambient__status-dot {
		animation: none;
	}
}

.page-contact-hero-copy {
	text-align: center;
	margin-inline: auto;
}

.page-contact-hero-copy .page-faqs-headline {
	font-size: clamp(2.45rem, 6.5vw, 4.35rem);
	line-height: 1.04;
	margin-bottom: 1.35rem;
}

.page-contact-hero-copy .page-faqs-sub {
	font-size: clamp(1.0625rem, 1.9vw, 1.3125rem);
	color: #4b5563;
	line-height: 1.7;
	max-width: 36rem;
	margin-inline: auto;
}

.wilken-contact-main {
	background: #f8faf9;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* Uses padding-global inside; avoid double horizontal padding from .section */
.wilken-contact-main.section {
	padding-left: 0;
	padding-right: 0;
}

.wilken-contact-main .padding-global {
	padding-left: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	padding-right: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-right));
}

.wilken-contact-main .container-large {
	width: 100%;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.wilken-contact-main .padding-section-large {
	padding-top: clamp(2.5rem, 5vw, 4rem);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.wilken-contact-grid {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2.25rem);
	min-width: 0;
}

.wilken-contact-form-panel {
	min-width: 0;
	width: 100%;
}

@media (min-width: 961px) {
	.wilken-contact-grid {
		flex-direction: row;
		align-items: stretch;
	}

	.wilken-contact-aside {
		flex: 0.92 1 0;
		min-width: 0;
		align-self: stretch;
	}

	.wilken-contact-aside__sticky {
		position: sticky;
		top: calc(5.5rem + env(safe-area-inset-top, 0px));
	}

	.wilken-contact-form-panel {
		flex: 1.28 1 0;
		min-width: 0;
		align-self: stretch;
		display: flex;
		flex-direction: column;
	}

	.wilken-contact-form-panel__shell {
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
		min-height: 100%;
		box-sizing: border-box;
	}

	.wilken-contact-form-panel__shell > .wilken-contact-form {
		flex: 1;
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	.wilken-contact-form-panel__shell .wilken-contact-form__body {
		flex: 1;
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	.wilken-contact-form-panel__shell .wilken-contact-stepper {
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		min-height: 0;
	}

	.wilken-contact-form-panel__shell .wilken-contact-stepper__panels {
		flex: 0 1 auto;
	}
}

@media (max-width: 960px) {
	.wilken-contact-aside {
		position: static;
	}
}

.wilken-contact-aside {
	display: flex;
	flex-direction: column;
}

.wilken-contact-aside__sticky {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.wilken-contact-aside__card {
	padding: clamp(1.15rem, 2.5vw, 1.5rem);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.04);
}

.wilken-contact-aside__card--trust {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.wilken-contact-aside__intro {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid #eef2f1;
}

.wilken-contact-aside__eyebrow {
	margin: 0;
	font-size: clamp(1.15rem, 2vw, 1.3rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: none;
	color: var(--wilken-ci-forest-deep, #0d3d30);
	line-height: 1.2;
}

.wilken-contact-aside__lead {
	margin: 0;
	font-size: clamp(1.05rem, 1.8vw, 1.125rem);
	line-height: 1.6;
	color: #334155;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.wilken-contact-trust-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.wilken-contact-trust-list__item {
	display: flex;
	align-items: center;
	gap: 0.525rem;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: #475569;
}

.wilken-contact-trust-list__item::before {
	content: "";
	flex-shrink: 0;
	width: 1.125rem;
	height: 1.125rem;
	border-radius: 50%;
	background-color: color-mix(in srgb, var(--wilken-ci-green, #1a5f4a) 12%, #fff);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 4.8 8.5 9.5 3.8' stroke='%231a5f4a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0.65rem;
}

.wilken-contact-aside__card--reach {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wilken-contact-details__title {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wilken-ci-green, #1a5f4a);
}

.wilken-contact-details__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.wilken-contact-details__list a,
.wilken-contact-details__list .wilken-contact-obf-link {
	color: #0d3d30;
	font-weight: 600;
	text-decoration: none;
}

.wilken-contact-obf-link[href="#"] {
	cursor: default;
}

.wilken-contact-obf-link[href^="mailto:"],
.wilken-contact-obf-link[href^="tel:"] {
	cursor: pointer;
}

.wilken-contact-obf-noscript {
	color: #0d3d30;
	font-weight: 600;
}

.wilken-contact-details__list a:hover,
.wilken-contact-details__list a:focus-visible {
	text-decoration: underline;
}

.wilken-contact-details__label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 0.2rem;
}

.wilken-contact-details__address {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	color: #334155;
	line-height: 1.45;
}

.wilken-contact-aside__booking[hidden] {
	display: none !important;
}

.wilken-contact-aside__booking {
	margin: 1.15rem 0 0;
	padding-top: 1.15rem;
	border-top: 1px solid #eef2f1;
}

.wilken-contact-aside__booking-btn.button {
	width: 100%;
	justify-content: center;
}

.wilken-contact-explore {
	margin-top: 0.15rem;
}

.wilken-contact-explore__label {
	margin: 0 0 0.65rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #64748b;
}

.wilken-contact-explore__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.wilken-contact-explore__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.85rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--wilken-ci-forest-deep, #0d3d30);
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 999px;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.wilken-contact-explore__chip:hover,
.wilken-contact-explore__chip:focus-visible {
	border-color: color-mix(in srgb, var(--wilken-ci-green, #1a5f4a) 35%, #e5e7eb);
	background: color-mix(in srgb, var(--wilken-ci-mint, #86efac) 14%, #fff);
	color: var(--wilken-ci-green, #1a5f4a);
}

.wilken-contact-form-panel__shell {
	--wilken-contact-space-2xs: 0.35rem;
	--wilken-contact-space-xs: 0.5rem;
	--wilken-contact-space-sm: 0.75rem;
	--wilken-contact-space-md: 1rem;
	--wilken-contact-space-lg: 1.25rem;
	--wilken-contact-space-xl: 1.5rem;
	padding: clamp(1.35rem, 2.8vw, 1.85rem);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.06);
	min-width: 0;
	box-sizing: border-box;
}

.wilken-contact-form-panel__title {
	margin: 0 0 var(--wilken-contact-space-2xs);
	font-size: clamp(1.3rem, 2.2vw, 1.55rem);
	font-weight: 700;
	color: var(--wilken-ci-forest-deep, #0d3d30);
	letter-spacing: -0.02em;
}

.wilken-contact-form-panel__sub {
	margin: 0 0 var(--wilken-contact-space-lg);
	padding-bottom: var(--wilken-contact-space-md);
	border-bottom: 1px solid #eef2f1;
	font-size: 0.98rem;
	line-height: 1.6;
	color: #64748b;
	max-width: 36rem;
	transition: opacity 0.2s ease;
}

.wilken-contact-stepper {
	display: flex;
	flex-direction: column;
	gap: var(--wilken-contact-space-lg);
	min-width: 0;
	width: 100%;
}

.wilken-contact-form {
	min-width: 0;
	width: 100%;
}

.wilken-contact-stepper__progress {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wilken-contact-stepper__progress-item {
	position: relative;
	display: flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
	max-width: 5.5rem;
}

.wilken-contact-stepper__progress-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(50% + 0.55rem);
	width: calc(100% - 1.1rem);
	height: 2px;
	background: #e2e8f0;
	transform: translateY(-50%);
	z-index: 0;
}

.wilken-contact-stepper__progress-item.is-complete:not(:last-child)::after {
	background: color-mix(in srgb, var(--wilken-ci-green, #1a5f4a) 55%, #e2e8f0);
}

.wilken-contact-stepper__progress-dot {
	position: relative;
	z-index: 1;
	display: block;
	width: 0.72rem;
	height: 0.72rem;
	border: 2px solid #cbd5e1;
	border-radius: 50%;
	background: #fff;
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.wilken-contact-stepper__progress-item.is-active .wilken-contact-stepper__progress-dot,
.wilken-contact-stepper__progress-item.is-complete .wilken-contact-stepper__progress-dot {
	border-color: var(--wilken-ci-green, #1a5f4a);
	background: var(--wilken-ci-green, #1a5f4a);
}

.wilken-contact-stepper__progress-item.is-active .wilken-contact-stepper__progress-dot {
	transform: scale(1.15);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--wilken-ci-green, #1a5f4a) 18%, transparent);
}

.wilken-contact-stepper__panels {
	position: relative;
	min-height: 0;
}

.wilken-contact-stepper__step {
	display: flex;
	flex-direction: column;
	gap: var(--wilken-contact-space-md);
	animation: wilken-contact-step-in 0.28s ease;
}

.wilken-contact-stepper__step[hidden] {
	display: none !important;
}

@keyframes wilken-contact-step-in {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wilken-contact-stepper__question {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--wilken-ci-forest-deep, #0d3d30);
	overflow-wrap: anywhere;
}

.wilken-contact-interest {
	margin: 0;
	padding: 0;
	border: 0;
}

.wilken-contact-interest__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wilken-contact-space-sm);
}

.wilken-contact-interest__option {
	display: block;
	margin: 0;
	cursor: pointer;
}

.wilken-contact-interest__option input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wilken-contact-interest__card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.875rem;
	padding: 0.65rem 0.75rem;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	color: #0f172a;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.wilken-contact-interest__option:hover .wilken-contact-interest__card,
.wilken-contact-interest__option input:focus-visible + .wilken-contact-interest__card {
	border-color: color-mix(in srgb, var(--wilken-ci-green, #1a5f4a) 45%, #d1d5db);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--wilken-ci-green, #1a5f4a) 16%, transparent);
}

.wilken-contact-interest__option input:checked + .wilken-contact-interest__card {
	color: var(--wilken-ci-forest-deep, #0d3d30);
	background: color-mix(in srgb, var(--wilken-ci-mint, #86efac) 18%, #fff);
	border-color: var(--wilken-ci-green, #1a5f4a);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--wilken-ci-green, #1a5f4a) 22%, transparent);
}

.wilken-contact-interest.form-field--invalid .wilken-contact-interest__card {
	border-color: #dc2626;
}

.wilken-contact-interest__error {
	margin-top: 0.5rem;
}

.wilken-contact-stepper__step[data-wilken-contact-step="1"] .wilken-contact-stepper__question {
	padding-top: var(--wilken-contact-space-sm);
	border-top: 1px solid #eef2f1;
}

.wilken-contact-range {
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
}

.wilken-contact-range__header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--wilken-contact-space-2xs) var(--wilken-contact-space-md);
	margin-bottom: var(--wilken-contact-space-xs);
}

.wilken-contact-form .wilken-contact-range__label {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--wilken-ci-forest-deep, #0d3d30);
}

.wilken-contact-range__label .required {
	color: #dc2626;
}

.wilken-contact-range__value {
	flex: 1 1 auto;
	min-width: min(100%, 9.5rem);
	max-width: 100%;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--wilken-ci-forest-deep, #0d3d30);
	text-align: right;
	white-space: normal;
	overflow-wrap: anywhere;
}

.wilken-contact-range__track-wrap {
	position: relative;
	height: 1.5rem;
	touch-action: none;
	cursor: pointer;
	user-select: none;
}

.wilken-contact-range__track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 3px;
	border-radius: 999px;
	background: #e2e8f0;
	transform: translateY(-50%);
	pointer-events: none;
}

.wilken-contact-range__fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--wilken-ci-green, #1a5f4a);
	transition: left 0.06s ease, width 0.06s ease;
}

.wilken-contact-range__track-wrap.is-dragging .wilken-contact-range__fill {
	transition: none;
}

.wilken-contact-range__handle {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	transform: translate(-50%, -50%);
	cursor: grab;
	touch-action: none;
}

.wilken-contact-range__handle--max {
	z-index: 3;
}

.wilken-contact-range__handle.is-dragging,
.wilken-contact-range__track-wrap.is-dragging .wilken-contact-range__handle {
	cursor: grabbing;
	z-index: 5;
}

.wilken-contact-range__handle-knob {
	display: block;
	width: 0.8125rem;
	height: 0.8125rem;
	border: 2px solid var(--wilken-ci-green, #1a5f4a);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
	pointer-events: none;
}

.wilken-contact-range__handle:focus-visible {
	outline: none;
}

.wilken-contact-range__handle:focus-visible .wilken-contact-range__handle-knob {
	outline: 2px solid var(--wilken-ci-mint, #86efac);
	outline-offset: 2px;
}

.wilken-contact-stepper__nav {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--wilken-contact-space-sm);
	align-items: center;
	margin: 0;
	padding-top: var(--wilken-contact-space-xs);
	border-top: 1px solid #eef2f1;
}

.wilken-contact-stepper__nav--has-back {
	grid-template-columns: auto minmax(0, 1fr);
}

.wilken-contact-stepper__nav-slot {
	display: flex;
	align-items: stretch;
	min-width: 0;
}

.wilken-contact-stepper__nav-slot--back {
	flex: 0 0 auto;
}

.wilken-contact-stepper__nav-slot--primary {
	flex: 1 1 auto;
	flex-direction: column;
}

.wilken-contact-stepper__nav-slot--back[hidden] {
	display: none !important;
}

.wilken-contact-stepper__nav .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 2.875rem;
	margin: 0;
	padding: 0.7rem 1.25rem;
	line-height: 1.25;
	white-space: nowrap;
}

.wilken-contact-stepper__nav .wilken-contact-stepper__back {
	width: auto;
	min-width: 7.25rem;
}

.wilken-contact-stepper__nav .wilken-contact-stepper__next,
.wilken-contact-stepper__nav .wilken-contact-page-form__submit {
	width: 100%;
}

.wilken-contact-stepper__nav .form-submit,
.wilken-contact-stepper__nav .wilken-contact-stepper__submit-wrap {
	display: flex;
	align-items: stretch;
	width: 100%;
	margin: 0;
	padding: 0;
}

.wilken-contact-stepper__nav .wilken-contact-stepper__next[hidden],
.wilken-contact-stepper__nav .wilken-contact-stepper__submit-wrap[hidden] {
	display: none !important;
}

.wilken-contact-stepper__alt[hidden] {
	display: none !important;
}

.wilken-contact-stepper__alt {
	margin: 0;
	padding-top: var(--wilken-contact-space-xs);
}

.wilken-contact-form__body[hidden],
.wilken-contact-form__success[hidden] {
	display: none !important;
}

.wilken-contact-form__success {
	margin-top: 0.25rem;
	text-align: center;
}

.wilken-contact-form__success-message {
	margin: 0 0 1.15rem;
	padding: 0.85rem 1rem;
	font-size: 0.98rem;
	line-height: 1.55;
	font-weight: 500;
	color: #065f46;
	background: #d1fae5;
	border-radius: 8px;
}

.wilken-contact-form__booking {
	margin: 0;
}

.wilken-contact-form__booking-btn.button {
	width: 100%;
	max-width: 22rem;
	margin: 0 auto;
}

.wilken-contact-form-panel__shell--success .wilken-contact-form-panel__sub {
	margin-bottom: var(--wilken-contact-space-lg);
}

.wilken-contact-page-form--success .wilken-contact-form__success {
	display: block;
}

@media (max-width: 520px) {
	.wilken-contact-interest__grid {
		grid-template-columns: 1fr;
	}

	.wilken-contact-form-panel__shell {
		padding-inline: clamp(1rem, 4vw, 1.35rem);
	}

	.wilken-contact-range__header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--wilken-contact-space-2xs);
	}

	.wilken-contact-range__value {
		flex: none;
		min-width: 0;
		width: 100%;
		text-align: left;
		font-size: 0.8125rem;
	}
}

@media (min-width: 560px) and (max-width: 960px) {
	.wilken-contact-trust-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 1rem;
	}
}

.wilken-contact-page-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wilken-contact-space-md);
}

.wilken-contact-page-form .form-field--full {
	grid-column: 1 / -1;
}

@media (max-width: 640px) {
	.wilken-contact-page-form__grid {
		grid-template-columns: 1fr;
	}
}

.wilken-contact-page-form .form-field {
	margin: 0;
}

.wilken-contact-page-form .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wilken-contact-page-form input:not([type="checkbox"]),
.wilken-contact-page-form textarea {
	width: 100%;
	min-height: 2.75rem;
	padding: 0.75rem 0.9rem;
	font-size: max(16px, 0.95rem);
	font-family: inherit;
	color: #0f172a;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wilken-contact-page-form textarea {
	min-height: 8rem;
	resize: vertical;
}

.wilken-contact-page-form input::placeholder,
.wilken-contact-page-form textarea::placeholder {
	color: #94a3b8;
}

.wilken-contact-page-form input:not([type="checkbox"]):focus,
.wilken-contact-page-form textarea:focus {
	outline: none;
	border-color: #1a5f4a;
	box-shadow: 0 0 0 2px rgba(26, 95, 74, 0.2);
}

.wilken-contact-page-form .form-field__error {
	display: block;
	margin: 0.35rem 0 0;
	font-size: 0.82rem;
	color: #b91c1c;
}

.wilken-contact-page-form .form-field__error[hidden] {
	display: none;
}

.wilken-contact-page-form .form-field--invalid input:not([type="checkbox"]),
.wilken-contact-page-form .form-field--invalid textarea {
	border-color: #dc2626;
}

.wilken-contact-page-form .form-message {
	margin: 0;
}

.wilken-contact-page-form .form-submit {
	margin: 1rem 0 0;
}

.wilken-contact-page-form .wilken-form-privacy-consent {
	margin: 0;
}

.wilken-form-privacy-consent {
	margin: 0.75rem 0 0;
	max-width: 100%;
}

.wilken-form-privacy-consent__row {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	max-width: 100%;
}

.wilken-form-privacy-consent input[type="checkbox"] {
	flex: 0 0 auto;
	width: 1.125rem;
	height: 1.125rem;
	min-height: 0;
	margin: 0.15rem 0 0;
	padding: 0;
	border: 1px solid #94a3b8;
	border-radius: 4px;
	background: #fff;
	box-shadow: none;
	box-sizing: border-box;
	accent-color: var(--color-primary, #1a5f4a);
	cursor: pointer;
}

.wilken-contact-page-form .wilken-form-privacy-consent input[type="checkbox"]:focus {
	outline: none;
	border-color: #1a5f4a;
	box-shadow: 0 0 0 2px rgba(26, 95, 74, 0.2);
}

.wilken-form-privacy-consent label {
	flex: 1 1 0;
	min-width: 0;
	display: block;
	margin: 0;
	font-size: clamp(0.8125rem, 2.6vw, 0.9rem);
	font-weight: 400;
	line-height: 1.5;
	color: #475569;
	cursor: pointer;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.wilken-form-privacy-consent label a {
	color: var(--color-primary, #1a5f4a);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.wilken-form-privacy-consent label a:hover {
	color: #0f3d2e;
}

.wilken-form-privacy-consent.form-field--invalid label {
	color: #b91c1c;
}

.wilken-form-privacy-consent .form-field__error {
	display: block;
	width: 100%;
	margin-top: 0.35rem;
	padding-left: calc(1.125rem + 0.65rem);
}

.wilken-contact-form .wilken-form-privacy-consent label:not(.wilken-contact-range__label) {
	font-weight: 400;
	margin-bottom: 0;
}

.wilken-contact-stepper__nav .wilken-contact-stepper__submit-wrap {
	margin: 0;
}

.wilken-contact-page-form__submit.button {
	width: 100%;
}

.wilken-contact-page-form__or {
	display: flex;
	align-items: center;
	gap: var(--wilken-contact-space-sm);
	margin: 0 0 var(--wilken-contact-space-sm);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #94a3b8;
}

.wilken-contact-page-form__or::before,
.wilken-contact-page-form__or::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e5e7eb;
}

.wilken-contact-page-form__chat {
	margin: 0;
}

.wilken-contact-page-form__chat-btn.button {
	width: 100%;
}

.wilken-form-turnstile {
	margin: 0.5rem 0 0.25rem;
}

.wilken-discovery-form .wilken-form-turnstile {
	margin: 0.75rem 0 0.35rem;
}

main.site-main.page-contact + footer.site-footer {
	margin-top: 0;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2.5rem;
	align-items: start;
}

.contact-layout--solo {
	grid-template-columns: 1fr;
}

.contact-layout--solo .contact-form-wrap {
	max-width: 40rem;
}

@media (max-width: 640px) {
	.contact-layout {
		grid-template-columns: 1fr;
	}
}

.contact-info {
	font-size: 1rem;
}

.contact-info a {
	color: #1a5f4a;
}

.contact-info p {
	margin: 0 0 0.5rem;
}

/* Contact form */
.wilken-contact-form .form-field {
	margin-bottom: 1.25rem;
}

.wilken-contact-form.wilken-discovery-form .form-field {
	margin: 0;
}

.wilken-contact-form label:not(.wilken-contact-range__label) {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
	color: #374151;
}

.wilken-contact-form input:not([type="checkbox"]),
.wilken-contact-form textarea {
	width: 100%;
	padding: 0.6rem 0.85rem;
	font-size: 1rem;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-family: inherit;
}

.wilken-contact-form input:not([type="checkbox"]):focus,
.wilken-contact-form textarea:focus {
	outline: none;
	border-color: #1a5f4a;
	box-shadow: 0 0 0 2px rgba(26, 95, 74, 0.2);
}

.form-field--honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-message {
	padding: 0.75rem 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.form-message--success {
	background: #d1fae5;
	color: #065f46;
}

.form-message--error {
	background: #fee2e2;
	color: #991b1b;
}

.form-submit {
	margin: 1.5rem 0 0;
}

/* ==========================================================================
   Language chooser modal (first-visit fallback)
   ========================================================================== */
.lang-chooser-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9997;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.lang-chooser-overlay[hidden] {
	display: none;
}

.lang-chooser-modal {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	max-width: 400px;
	width: 100%;
	z-index: 9998;
}

.lang-chooser-modal[hidden] {
	display: none;
}

.wilken-lang-modal__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #111;
}

.wilken-lang-modal__sub {
	font-size: 0.95rem;
	color: #6b7280;
	margin: 0 0 1.5rem;
	line-height: 1.5;
}

.lang-chooser-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.lang-chooser-btn {
	flex: 1;
	min-width: 120px;
}

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9998;
	transition: opacity 0.2s ease;
}

.cookie-overlay[hidden] {
	display: none;
}

.cookie-banner {
	position: fixed;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	max-width: 560px;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	padding: 1.5rem;
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #111;
}

.cookie-banner-text {
	font-size: 0.95rem;
	color: #4b5563;
	margin: 0 0 1.25rem;
	line-height: 1.5;
}

.cookie-banner-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.cookie-btn {
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
}

.cookie-banner-details {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid #e5e7eb;
}

.cookie-consent-form {
	text-align: left;
}

.cookie-consent-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.cookie-consent-row--disabled label {
	color: #9ca3af;
}

.cookie-consent-row input[type="checkbox"] {
	width: 1.1rem;
	height: 1.1rem;
}

.cookie-consent-row label {
	font-size: 0.95rem;
	cursor: pointer;
}

.cookie-btn--save {
	margin-top: 0.5rem;
}

/* Legal pages (Wilken CI: emerald, DM Sans, card sections) */
.site-main--legal {
	background: #fff;
}

.legal-page__hero {
	position: relative;
	padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(2rem, 4vw, 2.75rem);
	background: linear-gradient(165deg, #f0fdf4 0%, #fff 58%, #fafafa 100%);
	border-bottom: 1px solid rgba(26, 95, 74, 0.12);
}

.legal-page__hero::before {
	content: "";
	position: absolute;
	inset: -40% -20% auto auto;
	width: min(52vw, 420px);
	height: min(52vw, 420px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(26, 95, 74, 0.14) 0%, transparent 68%);
	pointer-events: none;
}

.legal-page__hero-inner {
	position: relative;
	z-index: 1;
	max-width: 840px;
	margin: 0 auto;
	min-width: 0;
}

.legal-page__header {
	margin-bottom: 0;
	text-align: left;
}

.legal-page__title {
	font-size: clamp(1.625rem, 4.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: #0d3d30;
	margin-bottom: 0.65rem;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.legal-page__subtitle {
	max-width: 42rem;
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(15, 23, 42, 0.68);
}

.legal-page__body.page-content {
	max-width: 840px;
	padding-top: clamp(1.75rem, 3vw, 2.5rem);
	padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.legal-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.legal-page .legal-section {
	margin: 0;
	padding: 1.35rem 1.35rem 1.25rem;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.legal-page .legal-section--highlight {
	border-color: #86efac;
	background: linear-gradient(135deg, #f0fdf4 0%, #fff 72%);
	box-shadow: 0 8px 28px rgba(26, 95, 74, 0.08);
}

.legal-page .legal-section__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.85rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid rgba(26, 95, 74, 0.12);
	color: #0d3d30;
	letter-spacing: -0.01em;
}

.legal-page .legal-section__body > :last-child {
	margin-bottom: 0;
}

.legal-page .legal-section p {
	margin: 0 0 0.65rem;
	line-height: 1.65;
	color: #374151;
}

.legal-page .legal-section h3 {
	font-size: 1rem;
	font-weight: 600;
	margin: 1rem 0 0.5rem;
	color: #111827;
}

.legal-page .legal-section ul,
.legal-page .legal-section ol {
	margin: 0 0 0.85rem 1.15rem;
	padding: 0;
	line-height: 1.65;
	color: #374151;
}

.legal-page .legal-section li {
	margin-bottom: 0.4rem;
}

.legal-page .legal-section li::marker {
	color: #1a5f4a;
}

.legal-page .legal-section a {
	color: #1a5f4a;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-color: rgba(26, 95, 74, 0.35);
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.legal-page .legal-section a:hover {
	color: #0d3d30;
	text-decoration-color: rgba(13, 61, 48, 0.55);
}

.legal-page .legal-section strong {
	color: #111827;
	font-weight: 600;
}

.legal-page .legal-section code {
	font-size: 0.88em;
	background: #ecfdf5;
	color: #0d3d30;
	padding: 0.12em 0.4em;
	border-radius: 4px;
	border: 1px solid rgba(26, 95, 74, 0.12);
}

.legal-page .legal-muted {
	font-size: 0.92rem;
	color: #4b5563;
}

.legal-note {
	font-size: 0.9rem;
	color: #4b5563;
	margin: 0.5rem 0 0;
	padding: 1rem 1.15rem;
	border: 1px dashed rgba(26, 95, 74, 0.28);
	border-radius: 10px;
	background: #f9fafb;
}

.legal-page__related {
	margin-top: 2rem;
	padding: 1.5rem 1.35rem;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.legal-page__related-label {
	margin: 0 0 0.85rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1a5f4a;
}

.legal-page__related-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.legal-page__related-links .button {
	font-size: 0.92rem;
	padding: 0.55rem 1.1rem;
	border-radius: 8px;
}

.legal-page__contact-hint {
	margin: 1rem 0 0;
	font-size: 0.95rem;
	color: #6b7280;
}

.legal-page__contact-hint a {
	color: #1a5f4a;
	font-weight: 600;
}

.legal-page__contact-hint a:hover {
	color: #0d3d30;
}

@media (max-width: 640px) {
	.legal-page__hero {
		padding-left: 1.15rem;
		padding-right: 1.15rem;
	}

	.legal-page__title {
		font-size: clamp(1.375rem, 7.5vw, 1.875rem);
	}

	.legal-page__body.page-content {
		padding-left: 1.15rem;
		padding-right: 1.15rem;
	}

	.legal-page .legal-section {
		padding: 1.15rem 1.1rem;
	}

	.legal-page__related-links {
		flex-direction: column;
		align-items: stretch;
	}

	.legal-page__related-links .button {
		width: 100%;
		text-align: center;
	}
}

/* ==========================================================================
   Blog
   ========================================================================== */
.archive-blog {
	padding: 2.5rem 1.5rem 4rem;
}

.archive-blog--hub {
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
}

.archive-blog-highlight {
	position: relative;
	width: 100%;
	margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
}

.archive-blog--hub .archive-blog-highlight {
	margin-inline: 0;
}

.archive-blog-highlight__link {
	position: relative;
	display: block;
	min-height: clamp(22rem, 58vw, 38rem);
	border-radius: 0;
	overflow: hidden;
	text-decoration: none;
	color: #f8faf8;
	border: 1px solid rgba(26, 95, 74, 0.12);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
	outline: none;
}

.archive-blog-highlight__link:hover,
.archive-blog-highlight__link:focus-visible {
	box-shadow: 0 28px 56px rgba(15, 23, 42, 0.11);
	border-color: rgba(26, 95, 74, 0.22);
}

.archive-blog-highlight__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.02);
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-blog--hub .archive-blog-highlight__bg {
	transform: scale(1);
}

.archive-blog-highlight__link:hover .archive-blog-highlight__bg,
.archive-blog-highlight__link:focus-visible .archive-blog-highlight__bg {
	transform: scale(1.06);
}

.archive-blog--hub .archive-blog-highlight__link:hover .archive-blog-highlight__bg,
.archive-blog--hub .archive-blog-highlight__link:focus-visible .archive-blog-highlight__bg {
	transform: scale(1.035);
}

.archive-blog-highlight__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(15, 23, 42, 0.1) 0%,
		rgba(15, 23, 42, 0.45) 45%,
		rgba(15, 23, 42, 0.82) 100%
	);
	pointer-events: none;
}

.archive-blog-highlight__link--no-image .archive-blog-highlight__bg {
	background: linear-gradient(152deg, #1a5f4a 0%, #134a3a 42%, #111827 100%);
}

.archive-blog-highlight__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: clamp(22rem, 58vw, 38rem);
	padding: clamp(1.5rem, 4vw, 3rem);
	max-width: 44rem;
}

@media (max-width: 1023px) {
	.archive-blog-highlight__link {
		display: flex;
		flex-direction: column;
		min-height: 70vh;
		min-height: 70dvh;
	}

	.archive-blog-highlight__inner {
		box-sizing: border-box;
		flex: 1 1 auto;
		min-height: 70vh;
		min-height: 70dvh;
		width: 100%;
	}
}

.archive-blog-highlight__labels {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.85rem;
	align-items: center;
	margin-bottom: 0.75rem;
}

.archive-blog-highlight__cat {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.94);
}

.archive-blog-highlight__title {
	font-size: clamp(1.65rem, 4vw, 2.85rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 0.5rem;
	color: #fff;
}

.archive-blog-highlight__meta {
	margin: 0;
	font-size: 0.95rem;
	color: rgba(248, 250, 248, 0.82);
}

.archive-blog__intro {
	margin: 0 0 clamp(1.25rem, 3vw, 2rem);
	max-width: 40rem;
	color: #6b7280;
	font-size: 1.05rem;
	line-height: 1.55;
}

.blog_category-break {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem 0.85rem;
	margin: clamp(2rem, 4vw, 3rem) 0 clamp(1rem, 2vw, 1.35rem);
}

.blog_category-break--first {
	margin-top: clamp(0.25rem, 1.5vw, 0.75rem);
}

.blog_category-break__cat {
	display: block;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	font-size: clamp(1.65rem, 3.25vw, 2.35rem);
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #111;
	line-height: 1.06;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: normal;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	hyphenate-character: "-";
}

.blog-hub-grid {
	list-style: none;
	margin: 0 0 clamp(2rem, 4vw, 3rem);
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: clamp(1rem, 2vw, 1.35rem);
}

.blog-hub-item {
	margin: 0;
	min-height: 100%;
}

.blog-hub-section.blog-hub-section {
	border-bottom-color: rgba(226, 232, 228, 0.75);
}

.blog-hub-section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.blog-hub-card.blog-callout-card {
	min-height: 210px;
}

.archive-blog__header {
	text-align: center;
	margin-bottom: 2.5rem;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.archive-blog__header .archive-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #111;
}

.archive-blog__header .archive-description {
	color: #6b7280;
	font-size: 1.05rem;
	margin: 0;
	line-height: 1.55;
}

.archive-blog__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto 2.5rem;
}

.blog-card {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s, border-color 0.2s;
}

.blog-card:hover {
	border-color: #86efac;
	box-shadow: 0 4px 12px rgba(26, 95, 74, 0.08);
}

.blog-card__thumb {
	display: block;
	line-height: 0;
	overflow: hidden;
}

.blog-card__thumb img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.2s;
}

.blog-card:hover .blog-card__thumb img {
	transform: scale(1.03);
}

.blog-card .entry-header {
	padding: 1.25rem 1.25rem 0;
}

.blog-card .entry-title {
	font-size: 1.15rem;
	margin: 0 0 0.35rem;
}

.blog-card .entry-title a {
	color: #111;
}

.blog-card .entry-title a:hover {
	color: #1a5f4a;
}

.blog-card .entry-meta {
	font-size: 0.875rem;
	color: #6b7280;
	margin-bottom: 0.75rem;
}

.blog-card .entry-content {
	padding: 0 1.25rem 1.25rem;
	font-size: 0.95rem;
	color: #4b5563;
	line-height: 1.55;
}

/* Radius utility (blog content shell, call-out sections) */
.radius-large {
	border-radius: 1.25rem;
}

@media (min-width: 768px) {
	.radius-large {
		border-radius: 1.5rem;
	}
}

/*
 * Single blog: full-bleed sticky hero + overlapping content sheet (Wilken CI)
 */
body.single-post article.blog-post-stack {
	max-width: none;
	width: 100%;
	min-width: 0;
	margin: 0 auto;
	padding: 0;
}

/* Single post: main is full-bleed; avoids flex/grid shrink bugs on narrow viewports */
body.single-post .site-main,
body.single-blog .site-main {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

/*
 * Blog single: sheet + footer should meet with no strip of page background.
 * Unified CPT `blog` uses body.single-blog (and single-post class on main).
 */
body.single-post .site-footer,
body.single-blog .site-footer,
main.site-main.single-blog + footer.site-footer {
	margin-top: 0;
}

.blog-post-stack {
	position: relative;
	overflow: visible;
	min-width: 0;
	width: 100%;
}

.blog-post-hero {
	position: sticky;
	top: 0;
	z-index: 1;
	/* Tall band: ~90vh matches reference sticky blog headers (~600px range on laptop viewports); capped for very tall monitors */
	min-height: clamp(22rem, 90vh, 48rem);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}

.blog-post-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.blog-post-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-post-hero__fallback {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background:
		linear-gradient(
			155deg,
			#0d3d30 0%,
			#1a5f4a 42%,
			#2d7a5f 72%,
			#86efac 130%
		);
}

/* Reference name: darkens hero for legible title; Wilken green tint */
.blog-post-hero .image-overlay-layer {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(13, 61, 48, 0.12) 0%,
		rgba(13, 48, 38, 0.5) 50%,
		rgba(10, 40, 32, 0.88) 100%
	);
}

.blog-post-hero__intro {
	position: relative;
	z-index: 2;
	width: 100%;
	/* Match .blog-post-sheet > .padding-global so title + meta align with the article column */
	max-width: 45rem;
	margin-left: auto;
	margin-right: auto;
	padding-top: clamp(3.25rem, 10vh, 7rem);
	/* Room below meta before the overlapping sheet (keeps hero text from crowding the card) */
	padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
	padding-left: max(env(safe-area-inset-left, 0px), var(--padding-global-x, 1.5rem));
	padding-right: max(env(safe-area-inset-right, 0px), var(--padding-global-x, 1.5rem));
	box-sizing: border-box;
}

.blog-post-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.65rem, 4.4vw, 2.85rem);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.38);
	overflow-wrap: break-word;
	text-wrap: balance;
}

.blog-post-hero__meta {
	display: block;
	width: 100%;
	max-width: 100%;
	font-size: clamp(0.875rem, 0.85rem + 0.35vw, 0.95rem);
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.5;
	overflow-wrap: break-word;
}

/* Content slides over hero; sits above sticky header in stacking order */
.blog-post-sheet {
	position: relative;
	z-index: 3;
	background: #fff;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	/* Softer overlap so the sheet does not tuck under the hero meta */
	margin-top: clamp(-0.75rem, -2.25vw, -1.75rem);
	box-shadow:
		0 -6px 36px rgba(26, 95, 74, 0.07),
		0 16px 48px rgba(17, 24, 39, 0.06);
	padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.blog-post-sheet > .padding-global {
	width: 100%;
	max-width: min(720px, 100%);
	min-width: 0;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	padding-left: max(env(safe-area-inset-left, 0px), var(--padding-global-x, 1.5rem));
	padding-right: max(env(safe-area-inset-right, 0px), var(--padding-global-x, 1.5rem));
	padding-top: clamp(2.25rem, 4vw, 3rem);
	padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

body.single-post .blog-post-sheet .entry-content {
	font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
	line-height: 1.68;
	color: #222;
	overflow-wrap: break-word;
	min-width: 0;
}

body.single-post .blog-post-sheet .entry-content :where(img, video, svg:not(:root)) {
	max-width: 100%;
	height: auto;
}

body.single-post .blog-post-sheet .entry-content iframe {
	max-width: 100%;
}

body.single-post .blog-post-sheet .entry-content pre {
	overflow-x: auto;
	max-width: 100%;
}

body.single-post .blog-post-sheet .entry-content .wp-block-table,
body.single-post .blog-post-sheet .entry-content figure.wp-block-table {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

body.single-post .blog-post-sheet .entry-content > *:first-child {
	margin-top: 0;
}

.blog-post-cta {
	margin-top: 2.5rem;
	padding: clamp(1.25rem, 4vw, 2rem);
	background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
	border: 1px solid #86efac;
	border-radius: 8px;
	max-width: 100%;
	box-sizing: border-box;
}

.blog-post-cta__inner {
	max-width: 480px;
	margin: 0 auto;
	text-align: center;
}

.blog-post-cta__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #111;
}

.blog-post-cta__text {
	font-size: 1rem;
	color: #4b5563;
	margin: 0 0 1rem;
	line-height: 1.55;
}

.blog-post-cta__button {
	margin-top: 0.5rem;
}

/* Blog: quick links to synced FAQ bank (same article) */
.blog-linked-faq {
	position: relative;
	z-index: 3;
	background: #f8faf8;
	border-top: 1px solid rgba(26, 95, 74, 0.12);
	padding: 2.25rem 0 2.5rem;
}

.blog-linked-faq-header {
	max-width: 48rem;
	margin: 0 auto 1.5rem;
	text-align: center;
}

.blog-linked-faq-title {
	margin: 0;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 700;
	color: #111;
	letter-spacing: -0.02em;
}

.blog-linked-faq-list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 40rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* Blog linked FAQs: native <details> accordion + link to canonical FAQ page */
.blog-linked-faq-details {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(26, 95, 74, 0.15);
	border-radius: 0.85rem;
	overflow: hidden;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}

.blog-linked-faq-details:not([open]):hover {
	border-color: #1a5f4a;
	box-shadow: 0 4px 20px rgba(13, 61, 48, 0.08);
}

.blog-linked-faq-summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1rem 1.15rem;
	margin: 0;
	text-align: left;
	font: inherit;
	color: inherit;
}

.blog-linked-faq-summary::-webkit-details-marker {
	display: none;
}

.blog-linked-faq-summary:focus-visible {
	outline: 2px solid rgba(26, 95, 74, 0.45);
	outline-offset: 2px;
	border-radius: 6px;
}

.blog-linked-faq-summary-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.blog-linked-faq-details .blog-linked-faq-q {
	margin: 0;
	font-weight: 600;
	font-size: 1.02rem;
	color: #0f172a;
	line-height: 1.35;
}

.blog-linked-faq-details .blog-linked-faq-excerpt {
	margin: 0;
	font-size: 0.9rem;
	color: #4b5563;
	line-height: 1.45;
}

.blog-linked-faq-chevron {
	flex-shrink: 0;
	width: 0.55rem;
	height: 0.55rem;
	margin-top: 0.35rem;
	border-right: 2px solid #1a5f4a;
	border-bottom: 2px solid #1a5f4a;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.blog-linked-faq-details[open] .blog-linked-faq-chevron {
	transform: rotate(-135deg);
	margin-top: 0.55rem;
}

.blog-linked-faq-details[open] .blog-linked-faq-summary {
	border-bottom: 1px solid rgba(26, 95, 74, 0.1);
}

.blog-linked-faq-panel {
	padding: 0 1.15rem 1rem;
}

.blog-linked-faq-body {
	padding-top: 0.85rem;
	font-size: 0.98rem;
	line-height: 1.65;
	color: #475569;
}

.blog-linked-faq-body--teaser .blog-linked-faq-excerpt {
	margin: 0;
}

.blog-linked-faq-page-row {
	margin: 0;
	padding-top: 0.85rem;
	border-top: none;
	font-size: 0.875rem;
	line-height: 1.5;
}

.blog-linked-faq-body + .blog-linked-faq-page-row {
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px solid #f1f5f9;
}

.blog-linked-faq-page-link {
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.8rem;
	color: #1a5f4a;
	text-decoration: none;
}

.blog-linked-faq-page-link:hover,
.blog-linked-faq-page-link:focus-visible {
	text-decoration: underline;
	outline: none;
}

/* FAQ single: blog source block shares .faq-related layout (see content-faq-single.php) */

/* ==========================================================================
   About page (SVZ /about inspired, Wilken CI)
   ========================================================================== */

body.page-template-template-about-php .site-main.page-about,
body.page-about .sticky-container {
	overflow-x: clip;
}

/* About: CI sans (DM Sans) for story, mobile intro, hero Lottie label, timeline (overrides benchmark serif) */
body.wilken-about .wilken-about-statement .statement-content,
body.wilken-about .wilken-about-statement .statement-text,
body.wilken-about .wilken-about-statement .statement-cta-button,
body.wilken-about .wilken-about-intro .introduction_text,
body.wilken-about .wilken-about-timeline.mwg_effect042 .timeline_paragraph,
body.wilken-about .wilken-timeline-card__label {
	font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.wilken-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.section_hero_culture.wilken-about-hero-culture {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	background: #f8faf8;
	/* Same as capabilities hero: sticky banner needs vertical overflow visible */
	overflow-x: clip;
	overflow-y: visible;
}

.wilken-about-hero-culture .wilken-explore-banner--culture-hero {
	flex-shrink: 0;
	align-self: stretch;
	position: sticky;
	bottom: 0;
	top: auto;
	z-index: 30;
	margin-top: 0;
	padding-left: env(safe-area-inset-left, 0);
	padding-right: env(safe-area-inset-right, 0);
	padding-bottom: env(safe-area-inset-bottom, 0);
	box-sizing: border-box;
}

.wilken-explore-banner--culture-hero .wilken-explore-banner__scroll-pin,
.wilken-explore-banner--culture-hero .wilken-explore-banner__meta {
	min-height: 2.375rem;
	align-items: center;
}

.wilken-explore-banner--culture-hero .wilken-explore-banner__meta {
	gap: 0.6rem;
	flex-wrap: nowrap;
}

.wilken-explore-banner--culture-hero .wilken-explore-banner__time {
	align-items: center;
}

/* Scroll cue redundant with sticky banner label on phones/tablets; keep local-time pill only */
@media (max-width: 1024px) {
	.wilken-explore-banner--culture-hero .wilken-explore-banner__scroll-pin {
		display: none;
	}

	.wilken-explore-banner--culture-hero .wilken-explore-banner__meta {
		grid-column: 1 / -1;
		justify-self: stretch;
	}
}

@media (max-width: 768px) {
	/* About culture hero: stretch time pill full width */
	.wilken-explore-banner--culture-hero .wilken-explore-banner__inner {
		padding: 0.5rem clamp(0.75rem, 4vw, 1.25rem);
		padding-bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
		gap: 0.45rem;
		justify-items: stretch;
		letter-spacing: 0.11em;
	}

	.wilken-explore-banner--culture-hero .wilken-explore-banner__meta {
		min-height: 0;
		width: 100%;
		max-width: 100%;
		padding: 0.4rem 0.75rem 0.45rem;
		box-sizing: border-box;
		justify-self: stretch;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		gap: 0.45rem 0.75rem;
		font-size: clamp(0.625rem, 3.25vw, 0.8125rem);
	}

	.wilken-explore-banner--culture-hero .wilken-explore-banner__time {
		flex: 1 1 auto;
		flex-wrap: wrap;
		align-items: baseline;
		white-space: normal;
		min-width: 0;
		row-gap: 0.15rem;
		column-gap: 0.35em;
	}
}

@media (max-width: 480px) {
	/* Second plus icon duplicates scroll-pin; drop it so the time pill fits narrow widths */
	.wilken-explore-banner--culture-hero .wilken-explore-banner__meta > .wilken-explore-banner__scroll-icon {
		display: none;
	}

	.wilken-explore-banner--culture-hero .wilken-explore-banner__meta {
		gap: 0;
	}

	.wilken-explore-banner--culture-hero .wilken-explore-banner__inner {
		gap: 0.35rem;
	}
}

.wilken-about-hero {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5rem 0 6rem;
	position: relative;
}

/* About hero: SVZ-style Glide Lottie stack (same asset + overlay sync as hub culture card) */
.wilken-about-hero--culture-lottie {
	padding: 0;
	padding-left: env(safe-area-inset-left, 0);
	padding-right: env(safe-area-inset-right, 0);
	flex: 1 1 auto;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	min-height: clamp(360px, 88vh, 920px);
	min-height: clamp(360px, 88svh, 920px);
	overflow: hidden;
}

.wilken-about-hero--culture-lottie .wilken-about-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: radial-gradient(
		ellipse min(120%, 140vw) min(65%, 85vh) at 50% 36%,
		rgba(26, 95, 74, 0.12),
		transparent 62%
	);
}

.wilken-about-hero__stage {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	box-sizing: border-box;
}

.wilken-about-hero__lottie-wrap {
	position: absolute;
	inset: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	pointer-events: none;
	box-sizing: border-box;
	overflow: hidden;
}

.wilken-about-hero__lottie {
	position: absolute;
	inset: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	z-index: 1;
	background: #f8faf8;
	pointer-events: none;
	box-sizing: border-box;
	overflow: hidden;
}

.wilken-about-hero__lottie svg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center center;
}

.wilken-about-hero__lottie svg > g > g:first-of-type > path {
	fill: #f8faf8 !important;
}

.wilken-about-hero__lottie svg rect {
	fill: #f8faf8 !important;
}

.wilken-about-hero__lottie svg path {
	fill: #1a5f4a !important;
}

/* Glide asset includes a word layer we replace on hub cards; about hero omits overlay copy */
.wilken-about-hero__lottie svg > g > g:nth-child(2) {
	visibility: hidden;
}

.wilken-about-hero__stage-fade {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		transparent 0%,
		transparent 38%,
		rgba(248, 250, 248, 0.65) 72%,
		#f8faf8 96%
	);
}

@media (max-width: 600px) {
	.wilken-about-hero--culture-lottie {
		min-height: clamp(320px, 82vh, 780px);
		min-height: clamp(320px, 82svh, 780px);
	}

	.wilken-about-hero__stage-fade {
		background: linear-gradient(
			180deg,
			transparent 0%,
			transparent 32%,
			rgba(248, 250, 248, 0.58) 68%,
			#f8faf8 94%
		);
	}
}

@media (max-height: 520px) and (orientation: landscape) {
	.section_hero_culture.wilken-about-hero-culture {
		min-height: auto;
	}

	.wilken-about-hero--culture-lottie {
		min-height: min(420px, calc(100vh - 5rem));
		min-height: min(420px, calc(100svh - 5rem));
	}
}

.section_banner.wilken-explore-banner {
	position: sticky;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 30;
	min-height: 3.875rem;
	--wilken-banner-glass-bg: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.82) 0%,
		rgba(248, 250, 248, 0.62) 55%,
		rgba(236, 253, 245, 0.45) 100%
	);
	--wilken-banner-glass-border: rgba(26, 95, 74, 0.16);
	--wilken-banner-glass-shadow:
		0 2px 20px rgba(26, 95, 74, 0.07),
		0 1px 3px rgba(15, 23, 42, 0.06);
	background: transparent;
	color: #0f172a;
	display: flex;
	align-items: center;
	border-top: none;
	overflow: visible;
	box-shadow: none;
}

.wilken-explore-banner__inner {
	width: 100%;
	max-width: 72rem;
	margin: 0 auto;
	padding: 0.65rem clamp(1rem, 3vw, 1.55rem);
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.5rem 2rem;
	align-items: center;
	box-sizing: border-box;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

@media (min-width: 769px) {
	.wilken-explore-banner__inner {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
		justify-content: space-between;
		justify-items: stretch;
	}
}

/* SVZ-style scroll cue (home_time parity): compact plus icon + two stacked lines */
.wilken-explore-banner__scroll-pin {
	justify-self: start;
	align-self: center;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	min-height: 1.875rem;
	padding: 0.45rem 0.95rem 0.5rem;
	border-radius: 9999px;
	background: var(--wilken-banner-glass-bg);
	border: 1px solid var(--wilken-banner-glass-border);
	box-shadow: var(--wilken-banner-glass-shadow);
	backdrop-filter: blur(14px) saturate(1.15);
	-webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.wilken-explore-banner__scroll-icon {
	display: flex;
	flex-shrink: 0;
	flex-grow: 0;
	width: 1.3125rem;
	height: 1.3125rem;
	align-items: center;
	justify-content: center;
	color: #1a5f4a;
	opacity: 0.95;
}

.wilken-explore-banner__scroll-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.wilken-explore-banner__scroll-lines {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.0625rem;
	min-width: 0;
	line-height: 1.12;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: clamp(0.5625rem, 0.92vw, 0.6875rem);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	font-feature-settings:
		"tnum" 1,
		"lnum" 1;
}

.wilken-explore-banner__scroll-line--top {
	color: rgba(15, 23, 42, 0.52);
	font-weight: 600;
	letter-spacing: 0.12em;
}

.wilken-explore-banner__scroll-line--bottom {
	color: #1a5f4a;
	font-weight: 800;
	letter-spacing: 0.09em;
}

.wilken-explore-banner__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: flex-end;
	justify-self: end;
	gap: 0.65rem 0.95rem;
	max-width: 100%;
	min-width: 0;
	padding: 0.45rem 0.95rem 0.5rem;
	border-radius: 9999px;
	background: var(--wilken-banner-glass-bg);
	border: 1px solid var(--wilken-banner-glass-border);
	box-shadow: var(--wilken-banner-glass-shadow);
	backdrop-filter: blur(14px) saturate(1.15);
	-webkit-backdrop-filter: blur(14px) saturate(1.15);
	box-sizing: border-box;
	color: rgba(15, 23, 42, 0.9);
	font-size: clamp(0.6875rem, 1.05vw, 0.8125rem);
	font-weight: 700;
	line-height: 1.35;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

@media (min-width: 769px) {
	.wilken-explore-banner__meta {
		flex-wrap: nowrap;
	}
}

.wilken-explore-banner__loc {
	flex: none;
	opacity: 0.98;
}

.wilken-explore-banner__time {
	display: inline-flex;
	flex: none;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 0.42em;
	white-space: nowrap;
	min-width: 0;
}

.wilken-explore-banner__time-label {
	color: rgba(15, 23, 42, 0.48);
	font-weight: 700;
}

.wilken-explore-banner__meta time {
	font-weight: 700;
	color: #1a5f4a;
	letter-spacing: 0.1em;
}

.wilken-about-statement .statement-scroll-track.wilken-about-scroll-track {
	min-height: 210vh;
}

/* About desktop story: same green as team section; white type; mint highlights for contrast */
.wilken-about-statement.statement-section--dark {
	background: linear-gradient(165deg, #1a5f4a 0%, #154a3c 52%, #1a5f4a 100%);
}

.wilken-about-statement.statement-section--dark .statement-sticky {
	background: linear-gradient(165deg, #1a5f4a 0%, #154a3c 52%, #1a5f4a 100%);
}

.wilken-about-statement.statement-section--dark .statement-content {
	color: rgba(255, 255, 255, 0.92);
}

/* Fly-in words use large translateX: clip so nothing peeks past the text column before scroll. */
.wilken-about-statement .wilken-about-statement__paragraph {
	overflow-x: clip;
}

/* No overlay row: inline highlight spans stay visible in the paragraph. */
.wilken-about-statement .statement-paragraph-text [id$="-static"] {
	visibility: visible;
}

.wilken-about-statement.statement-section--dark .statement-text {
	color: rgba(255, 255, 255, 0.92);
}

.wilken-about-statement.statement-section--dark .statement-text .statement-highlight {
	color: rgba(186, 244, 200, 0.98);
}

.wilken-about-statement.statement-section--dark .statement-cta-button {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.88);
	color: #fff;
}

.wilken-about-statement.statement-section--dark .statement-cta-button:hover,
.wilken-about-statement.statement-section--dark .statement-cta-button:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #1a5f4a;
}

.wilken-about-statement.statement-section--dark .statement-cta-button:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.95);
	outline-offset: 3px;
}

.wilken-about-intro.section_introduction {
	background: linear-gradient(165deg, #1a5f4a 0%, #154a3c 52%, #1a5f4a 100%);
}

.wilken-about-intro .introduction_text {
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1rem, 2vw, 1.2rem);
}

.wilken-about-intro .introduction_text .statement-highlight {
	color: rgba(186, 244, 200, 0.98);
}

.wilken-about-timeline__rail.pin-height {
	min-height: 875vh;
	position: relative;
	background: linear-gradient(180deg, #f8faf8 0%, #ffffff 45%, #f4f6f4 100%);
}

.wilken-about-timeline.mwg_effect042 .wilken-about-timeline__container.container {
	position: relative;
	width: min(1044px, 100%);
	margin: 0 auto;
	box-sizing: border-box;
}

@media (min-width: 1024px) {
	.wilken-about-timeline.mwg_effect042 .wilken-about-timeline__container.container {
		min-height: max(100vh, 28rem);
		padding-top: clamp(3.5rem, 12vmin, 7rem);
		padding-bottom: clamp(2rem, 6vmin, 4rem);
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: visible;
		position: relative;
		z-index: 1;
	}

	.wilken-about-timeline.mwg_effect042 .text.is-timeline {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100vw;
		max-width: 100vw;
		padding-left: clamp(0.75rem, 3vw, 2rem);
		padding-right: clamp(0.75rem, 3vw, 2rem);
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: clamp(0.5rem, 2vw, 1.25rem);
		transform: translate(-50%, -50%);
		z-index: 0;
		pointer-events: none;
	}

	.wilken-about-timeline.mwg_effect042 .text.is-timeline .timeline_paragraph--left {
		flex: 0 0 auto;
		text-align: left;
		margin: 0;
		padding: 0;
		max-width: none;
	}

	.wilken-about-timeline.mwg_effect042 .text.is-timeline .timeline_paragraph--right {
		flex: 0 0 auto;
		text-align: right;
		margin: 0;
		padding: 0;
		max-width: none;
	}

	.wilken-about-timeline.mwg_effect042 .timeline_paragraph--mobile {
		display: none;
	}

	.wilken-about-timeline.mwg_effect042 .wilken-about-timeline__stack {
		z-index: 1;
		isolation: isolate;
		transform-style: preserve-3d;
		perspective: min(25vw, 28rem);
		overflow: visible;
		max-width: min(28rem, 34vw);
		min-height: clamp(30rem, 52vh, 44rem);
		padding-bottom: 3rem;
		aspect-ratio: auto;
	}
}

.wilken-about-timeline.mwg_effect042 .timeline_paragraph {
	margin: 0;
	font-family: Georgia, "Times New Roman", ui-serif, serif;
	font-weight: 400;
	font-size: clamp(1.65rem, 9vmin, 4.15rem);
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: 1.3px rgba(26, 95, 74, 0.38);
	paint-order: stroke fill;
	white-space: nowrap;
}

@media (max-width: 1023px) {
	.wilken-about-timeline.mwg_effect042 .timeline_paragraph {
		font-size: clamp(1.2rem, 6vw, 2.4rem);
		-webkit-text-stroke-width: 1px;
	}
}

@media (max-width: 767px) and (orientation: portrait) {
	.wilken-about-timeline .hide-mobile-portrait {
		display: none !important;
	}

	.wilken-about-timeline.mwg_effect042 .timeline_paragraph--left,
	.wilken-about-timeline.mwg_effect042 .timeline_paragraph--right {
		display: none !important;
	}

	.wilken-about-timeline.mwg_effect042 .timeline_paragraph--mobile {
		display: block;
		margin: 0 auto;
		text-align: center;
	}
}

@media (min-width: 768px), (orientation: landscape) {
	.wilken-about-timeline.mwg_effect042 .timeline_paragraph--mobile {
		display: none !important;
	}
}

body.wilken-lang-de .wilken-about-timeline.mwg_effect042 .timeline_paragraph--left,
body.wilken-lang-de .wilken-about-timeline.mwg_effect042 .timeline_paragraph--right {
	font-size: clamp(1.5rem, 7.5vmin, 3.6rem);
	letter-spacing: 0.12em;
}

.wilken-about-timeline__stack {
	position: relative;
	width: 100%;
	max-width: 24rem;
	margin: 0 auto;
	aspect-ratio: 7 / 13;
	min-height: 22rem;
}

.wilken-timeline-card {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 88%;
	max-width: 26rem;
	margin-left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transform-style: preserve-3d;
	transform-origin: center center;
	padding: clamp(1.35rem, 2.6vw, 1.85rem);
	border-radius: 1.05rem;
	background:
		radial-gradient(circle at 18% -8%, color-mix(in srgb, var(--wilken-card-accent, #1a5f4a) 14%, transparent), transparent 42%),
		linear-gradient(165deg, #ffffff 0%, #f8faf8 100%);
	box-shadow:
		0 14px 40px rgba(15, 23, 42, 0.07),
		0 2px 8px rgba(15, 23, 42, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(26, 95, 74, 0.12);
	color: #0f172a;
	will-change: transform, opacity;
}

@media (min-width: 1024px) {
	.wilken-timeline-card {
		aspect-ratio: 3 / 4;
		width: min(88%, 26rem);
		max-height: min(58vh, 38rem);
	}
}

.wilken-timeline-card__year {
	display: block;
	font-size: clamp(2.65rem, 5.2vw, 3.85rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--wilken-card-accent, #1a5f4a);
	line-height: 1;
	margin-bottom: 0.6rem;
}

.wilken-timeline-card__label {
	margin: 0;
	font-size: clamp(1.08rem, 2vw, 1.38rem);
	line-height: 1.32;
	font-weight: 600;
	letter-spacing: -0.02em;
	font-family: Georgia, "Times New Roman", ui-serif, serif;
	color: color-mix(in srgb, var(--wilken-card-accent, #1a5f4a) 72%, #0f172a 28%);
}

.wilken-timeline-card__desc {
	margin: 0;
	margin-top: auto;
	padding-top: 1.1rem;
	font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
	line-height: 1.55;
	font-weight: 400;
	font-family: "DM Sans", system-ui, "Segoe UI", Roboto, sans-serif;
	color: rgba(51, 65, 85, 0.9);
}

/* Oldest milestone (card --1) paints on top of the stack; newest at the back. */
.wilken-timeline-card--1 { z-index: 7; }

.wilken-timeline-card--2 { z-index: 6; }

.wilken-timeline-card--3 { z-index: 5; }

.wilken-timeline-card--4 { z-index: 4; }

.wilken-timeline-card--5 { z-index: 3; }

.wilken-timeline-card--6 { z-index: 2; }

.wilken-timeline-card--7 { z-index: 1; }

@media (max-width: 1023px) {
	.wilken-about-timeline.mwg_effect042 .wilken-about-timeline__container.container {
		min-height: 0;
		padding: 4rem 1.25rem;
	}

	.wilken-about-timeline.mwg_effect042 .text.is-timeline {
		position: relative;
		top: auto;
		transform: none;
		padding: 0;
		margin-bottom: 1.25rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		pointer-events: auto;
		z-index: auto;
	}

	.wilken-about-timeline.mwg_effect042 .text.is-timeline .timeline_paragraph--left,
	.wilken-about-timeline.mwg_effect042 .text.is-timeline .timeline_paragraph--right {
		flex: 0 0 auto;
		margin: 0;
		padding: 0;
		max-width: none;
	}

	.wilken-about-timeline.mwg_effect042 .text.is-timeline .timeline_paragraph--left {
		text-align: left;
	}

	.wilken-about-timeline.mwg_effect042 .text.is-timeline .timeline_paragraph--right {
		text-align: right;
	}

	@media (orientation: portrait) {
		.wilken-about-timeline.mwg_effect042 .text.is-timeline {
			justify-content: center;
		}
	}

	.wilken-about-timeline__stack {
		max-width: 20rem;
		min-height: auto;
		perspective: none;
		isolation: auto;
	}

	.wilken-about-timeline .wilken-timeline-card {
		z-index: auto;
	}

	.wilken-timeline-card {
		position: relative;
		left: auto;
		top: auto;
		margin-left: 0;
		margin-right: auto;
		margin-bottom: 1rem;
		width: 100%;
		max-width: none;
		min-height: 0;
		transform: none;
		opacity: 1;
	}

	.wilken-about-timeline__rail.pin-height {
		min-height: auto;
	}
}

.wilken-about-team {
	background: linear-gradient(165deg, #1a5f4a 0%, #154a3c 52%, #1a5f4a 100%);
	color: #fff;
	box-sizing: border-box;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 5vh, 4rem) 0;
	padding-bottom: max(clamp(2rem, 5vh, 4rem), env(safe-area-inset-bottom, 0px));
	overflow-x: clip;
}

@media (max-width: 899px) {
	.wilken-about-team {
		min-height: 0;
		justify-content: flex-start;
		padding-top: max(clamp(1.75rem, 5vw, 2.75rem), env(safe-area-inset-top, 0px));
		padding-bottom: max(clamp(2rem, 6vw, 3.25rem), env(safe-area-inset-bottom, 0px));
	}
}

.wilken-about-team > .padding-global {
	width: 100%;
	box-sizing: border-box;
	padding-left: max(env(safe-area-inset-left, 0px), var(--padding-global-x, 1.5rem));
	padding-right: max(env(safe-area-inset-right, 0px), var(--padding-global-x, 1.5rem));
}

.wilken-about-team .container-large {
	width: 100%;
	max-width: 65.25rem;
	margin: 0 auto;
	box-sizing: border-box;
}

.wilken-about-team__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.25rem, 5vw, 3.75rem);
	align-items: start;
}

@media (min-width: 900px) {
	.wilken-about-team__layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		column-gap: clamp(2.75rem, 6vw, 5.25rem);
		row-gap: clamp(2rem, 4vw, 3rem);
		align-items: start;
	}
}

.wilken-about-team__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	max-width: none;
	padding-top: clamp(0.35rem, 1.2vw, 0.85rem);
}

.wilken-about-team__eyebrow {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
	margin: 0 0 0.75rem;
	line-height: 1.35;
	overflow-wrap: break-word;
}

@media (max-width: 479px) {
	.wilken-about-team__eyebrow {
		font-size: clamp(0.62rem, 2.8vw, 0.7rem);
	}
}

.wilken-about-team__eyebrow-prefix {
	color: rgba(134, 239, 172, 0.95);
	font-weight: 600;
	letter-spacing: 0.14em;
	margin-right: 0.12em;
}

.wilken-about-team__headline {
	margin: 0 0 1.05rem;
	font-size: clamp(1.65rem, 3.2vw, 2.45rem);
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.05;
	max-width: min(22rem, 100%);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
	overflow-wrap: anywhere;
}

@media (max-width: 899px) {
	.wilken-about-team__headline {
		max-width: 100%;
		line-height: 1.08;
	}
}

.wilken-about-team__sub {
	margin: 0 0 1.65rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.55;
	font-size: clamp(0.92rem, 1.25vw, 1rem);
	max-width: 38rem;
	overflow-wrap: break-word;
}

@media (max-width: 899px) {
	.wilken-about-team__sub {
		max-width: 100%;
		font-size: clamp(0.9rem, 2.8vw, 1rem);
	}
}

.wilken-about-team__visual {
	min-width: 0;
	display: flex;
	justify-content: center;
	align-items: stretch;
	width: 100%;
	margin-top: clamp(-0.35rem, -0.5vw, 0);
}

@media (min-width: 900px) {
	.wilken-about-team__visual {
		justify-content: flex-end;
		padding-right: clamp(0, 2vw, 0.75rem);
	}
}

.wilken-about-team__lottie {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: min(100%, 28.4375rem);
	aspect-ratio: 974 / 721;
	height: auto;
	flex-shrink: 0;
}

.wilken-about-team__chart {
	text-align: left;
	margin: 0;
	width: 100%;
	flex: 1;
	min-height: 17.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.wilken-about-team__columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: clamp(0.65rem, 2.4vw, 1.15rem);
	align-items: stretch;
	flex: 1;
	min-height: 17.5rem;
	width: 100%;
	box-sizing: border-box;
}

.wilken-about-team__columns > * {
	min-width: 0;
}

.wilken-about-team__col {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: clamp(0.55rem, 1.5vw, 0.75rem);
	min-height: 100%;
}

.wilken-about-team__bar-pane {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-self: stretch;
	width: 100%;
	min-height: 17.5rem;
	height: 17.5rem;
	max-height: 17.5rem;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
	border-radius: 0;
}

.wilken-about-team__bar-fill {
	width: 100%;
	border-radius: 0;
	min-height: 6px;
	flex-shrink: 0;
	transform-origin: bottom center;
	height: calc(var(--wilken-bar, 50) * 1%);
	will-change: transform;
	transition:
		height 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
	.wilken-about-team__bar-fill {
		will-change: auto;
	}
}

.wilken-about-team__col-label {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	font-size: clamp(0.52rem, 0.95vw, 0.68rem);
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: rgba(255, 255, 255, 0.92);
	max-width: 100%;
	min-height: 2.85rem;
	hyphens: auto;
	overflow-wrap: break-word;
}

/* Bars on CI green: contrast ladder (light accent, ink, mint, soft frost) */

.wilken-about-team__col--strat .wilken-about-team__bar-fill {
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.wilken-about-team__col--design .wilken-about-team__bar-fill {
	background: #0f172a;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.wilken-about-team__col--tech .wilken-about-team__bar-fill {
	background: rgba(167, 243, 208, 0.92);
	box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.08);
}

.wilken-about-team__col--ops .wilken-about-team__bar-fill {
	background: rgba(255, 255, 255, 0.42);
	box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.06);
}

/*
 * Below 900px: horizontal bars (label + track) read better than four skinny vertical columns.
 * Phone: one column. Tablet: two-up grid of the same row pattern.
 */
@media (max-width: 899px) {
	.wilken-about-team__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: clamp(1rem, 3.5vw, 1.35rem);
		row-gap: clamp(1.1rem, 3.2vw, 1.5rem);
		min-height: auto;
		align-items: start;
	}

	.wilken-about-team__col {
		min-height: auto;
		gap: 0.5rem;
		padding: clamp(0.65rem, 2vw, 0.85rem) clamp(0.75rem, 2.5vw, 1rem);
		background: rgba(0, 0, 0, 0.12);
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
		border-radius: 0.5rem;
		box-sizing: border-box;
	}

	.wilken-about-team__col-label {
		display: block;
		min-height: 0;
		text-align: left;
		font-size: clamp(0.62rem, 1.85vw, 0.72rem);
		line-height: 1.3;
		letter-spacing: 0.06em;
		padding-top: 0.05rem;
	}

	.wilken-about-team__bar-pane {
		flex: 0 0 auto;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		align-self: stretch;
		width: 100%;
		height: auto;
		max-height: none;
		min-height: 0;
		padding: 0;
		background: rgba(255, 255, 255, 0.07);
		border-radius: 0.35rem;
		overflow: hidden;
	}

	.wilken-about-team__bar-fill {
		width: calc(var(--wilken-bar, 50) * 1%);
		max-width: 100%;
		height: clamp(0.55rem, 2.2vw, 0.7rem);
		min-height: 0.5rem;
		transform-origin: left center;
		border-radius: 0.2rem;
	}

	.wilken-about-team__chart {
		min-height: 0;
	}

	.wilken-about-team__lottie {
		max-width: 100%;
		aspect-ratio: auto;
		min-height: 0;
		align-self: stretch;
	}

	.wilken-about-team__visual {
		margin-top: 0;
		justify-content: stretch;
		padding-right: 0;
	}
}

@media (max-width: 559px) {
	.wilken-about-team__columns {
		grid-template-columns: 1fr;
		row-gap: clamp(0.95rem, 3vw, 1.25rem);
	}

	.wilken-about-team__col-label {
		font-size: clamp(0.64rem, 3.1vw, 0.74rem);
	}

	.wilken-about-team__bar-fill {
		height: clamp(0.58rem, 2.8vw, 0.72rem);
	}
}

@media (max-width: 479px) {
	.wilken-about-team__cta {
		max-width: 100%;
		justify-content: center;
		text-align: center;
		flex-wrap: wrap;
	}
}

.wilken-about-team__cta-wrap {
	margin: 0;
}

.wilken-about-team__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.7rem 1.25rem 0.7rem 1.35rem;
	font-size: clamp(0.72rem, 2vw, 0.82rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-sizing: border-box;
	word-break: break-word;
}

.wilken-about-team__cta-icon {
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.wilken-about-team__cta:hover .wilken-about-team__cta-icon,
.wilken-about-team__cta:focus-visible .wilken-about-team__cta-icon {
	transform: translate(2px, -2px);
}

.wilken-about-team .button.button--outline.wilken-about-team__cta {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.88);
	color: #fff;
}

.wilken-about-team .button.button--outline.wilken-about-team__cta:hover,
.wilken-about-team .button.button--outline.wilken-about-team__cta:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #1a5f4a;
}

.wilken-about-team__cta:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.95);
	outline-offset: 3px;
}

.wilken-about-leaders {
	background: linear-gradient(180deg, #f8faf8 0%, #fff 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	box-sizing: border-box;
	padding-block: clamp(3.5rem, 7vw, 5rem);
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: clip;
}

.wilken-about-leaders > .padding-global {
	width: 100%;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 0;
	gap: clamp(2.75rem, 8vw, 5.5rem);
	box-sizing: border-box;
	padding-left: max(env(safe-area-inset-left, 0px), var(--padding-global-x, 1.5rem));
	padding-right: max(env(safe-area-inset-right, 0px), var(--padding-global-x, 1.5rem));
}

.wilken-about-leaders .container-large {
	width: 100%;
	max-width: 56rem;
	margin: 0 auto;
}

.wilken-about-leaders__marquee {
	width: 100%;
	max-width: none;
	min-width: 0;
	align-self: stretch;
	box-sizing: border-box;
}

.wilken-about-leaders .wilken-about-leaders__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	text-align: center;
	max-width: min(36rem, 100%);
	margin: 0 auto;
	position: relative;
	padding: clamp(1.6rem, 4.5vw, 2.35rem) clamp(1.35rem, 4vw, 2rem) clamp(1.45rem, 3.5vw, 2rem);
	border-radius: 1.25rem;
	background: linear-gradient(
		165deg,
		rgba(255, 255, 255, 0.97) 0%,
		rgba(248, 250, 248, 0.92) 45%,
		rgba(255, 255, 255, 0.88) 100%
	);
	border: 1px solid rgba(26, 95, 74, 0.14);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 22px 48px -28px rgba(13, 61, 48, 0.35),
		0 0 0 1px rgba(255, 255, 255, 0.4);
	isolation: isolate;
	overflow: hidden;
}

.wilken-about-leaders .wilken-about-leaders__top::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(90deg, #0d3d30, #1a5f4a 45%, #2dd4bf 100%);
	opacity: 0.95;
	pointer-events: none;
	z-index: 0;
}

.wilken-about-leaders .wilken-about-leaders__top::after {
	content: "";
	position: absolute;
	left: 50%;
	top: -40%;
	width: min(120%, 28rem);
	height: 75%;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at 50% 0%, rgba(26, 95, 74, 0.09), transparent 62%);
	pointer-events: none;
	z-index: 0;
}

.wilken-about-leaders .wilken-about-leaders__top > * {
	position: relative;
	z-index: 1;
}

.wilken-about-leaders__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(26, 95, 74, 0.72);
	line-height: 1.35;
}

.wilken-about-leaders__headline {
	margin: 0 0 1.05rem;
	font-size: clamp(1.65rem, 3.2vw, 2.45rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #0b1220;
	max-width: min(22rem, 100%);
	text-wrap: balance;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wilken-about-leaders__sub {
	margin: 0;
	color: #4b5563;
	line-height: 1.65;
	font-size: clamp(0.95rem, 1.35vw, 1.05rem);
	max-width: 36rem;
	text-wrap: balance;
}

.wilken-about-leaders__bottom {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3.5vw, 2.25rem);
	overflow: hidden;
	min-height: clamp(11rem, 28vw, 16rem);
	justify-content: center;
	padding-block: clamp(0.5rem, 2vw, 1.25rem);
	box-sizing: border-box;
	width: 100%;
}

.wilken-about-leaders__strip {
	display: flex;
	flex-wrap: nowrap;
	gap: clamp(0.85rem, 2vw, 1.15rem);
	width: max-content;
	max-width: none;
	will-change: transform;
	align-items: center;
}

.wilken-about-leaders__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.7rem 1.15rem 0.7rem 0.65rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(17, 24, 39, 0.08);
	box-shadow: 0 8px 28px rgba(26, 95, 74, 0.08);
	min-width: 12.5rem;
}

.wilken-about-leaders__initials {
	width: 2.55rem;
	height: 2.55rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #1a5f4a, #0d3d30);
	color: #ecfdf5;
	font-size: 0.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wilken-about-leaders__meta {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	line-height: 1.25;
	text-align: left;
	min-width: 0;
}

.wilken-about-leaders__name {
	font-size: 0.92rem;
	font-weight: 700;
	color: #111;
	overflow-wrap: anywhere;
}

.wilken-about-leaders__role {
	font-size: 0.8rem;
	color: #6b7280;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

/* Desktop: scrubbed marquee strips. Tablet / phone: one column or two-column grid, each leader once. */
.wilken-about-leaders__static {
	display: none;
}

@media (max-width: 1023px) {
	.wilken-about-leaders {
		min-height: 0;
		padding-block: clamp(2.5rem, 6vw, 4rem);
	}

	.wilken-about-leaders > .padding-global {
		gap: clamp(1.85rem, 5vw, 3.25rem);
	}

	.wilken-about-leaders__marquee {
		display: none;
	}

	.wilken-about-leaders__static {
		display: grid;
		grid-template-columns: 1fr;
		gap: clamp(0.75rem, 2.5vw, 1.05rem);
		list-style: none;
		margin: 0;
		padding: 0;
		width: 100%;
		max-width: min(36rem, 100%);
		margin-inline: auto;
		box-sizing: border-box;
	}

	.wilken-about-leaders__static-item {
		min-width: 0;
		display: flex;
		flex-direction: column;
	}

	.wilken-about-leaders .wilken-about-leaders__chip--static {
		min-width: 0;
		width: 100%;
		max-width: none;
		box-sizing: border-box;
		flex: 1 1 auto;
	}
}

@media (max-width: 1023px) and (min-width: 640px) {
	.wilken-about-leaders__static {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: min(44rem, 100%);
		gap: clamp(0.85rem, 2vw, 1.15rem);
		align-items: stretch;
	}
}

@media (max-width: 639px) {
	.wilken-about-leaders .wilken-about-leaders__top {
		padding: clamp(1.2rem, 4.5vw, 1.5rem) clamp(1rem, 4vw, 1.25rem);
		border-radius: 1rem;
	}

	.wilken-about-leaders__eyebrow {
		font-size: 0.625rem;
		letter-spacing: 0.14em;
	}

	.wilken-about-leaders__headline {
		max-width: 100%;
		font-size: clamp(1.35rem, 6.2vw, 1.65rem);
	}

	.wilken-about-leaders__sub {
		font-size: clamp(0.9rem, 3.6vw, 1rem);
	}

	.wilken-about-leaders .wilken-about-leaders__chip--static {
		padding: 0.55rem 0.95rem 0.55rem 0.55rem;
		gap: 0.6rem;
		border-radius: 1rem;
	}

	.wilken-about-leaders .wilken-about-leaders__chip--static .wilken-about-leaders__initials {
		width: 2.25rem;
		height: 2.25rem;
		font-size: 0.74rem;
	}

	.wilken-about-leaders .wilken-about-leaders__chip--static .wilken-about-leaders__name {
		font-size: 0.86rem;
	}

	.wilken-about-leaders .wilken-about-leaders__chip--static .wilken-about-leaders__role {
		font-size: 0.74rem;
	}
}

.wilken-wall-of-fame {
	position: relative;
	box-sizing: border-box;
	--wilken-wall-pad-y: clamp(2rem, 4vw, 3rem);
	--wilken-wall-title-band: clamp(4.25rem, 8.5vw, 5.75rem);
	padding: var(--wilken-wall-pad-y) 0;
	margin-inline: 0;
	margin-bottom: 0;
	width: 100%;
	max-width: none;
	border-radius: 0;
	/*
	 * Card stage: three rows; __draggable fills the section (title overlays via __header).
	 * Never taller than one viewport (padding included).
	 */
	--wilken-wall-visible-rows: 3;
	--wilken-wall-row-min: 16rem;
	--wilken-wall-gap: 1.25rem;
	--wilken-wall-stage-height: calc(
		var(--wilken-wall-visible-rows) * var(--wilken-wall-row-min) +
			(var(--wilken-wall-visible-rows) - 1) * var(--wilken-wall-gap)
	);
	--wilken-wall-content-min: calc(
		2 * var(--wilken-wall-pad-y) + var(--wilken-wall-title-band) + var(--wilken-wall-stage-height)
	);
	--wilken-wall-track-min: 17rem;
	--wilken-wall-track-max: 19.125rem;
	--wilken-wall-grid-columns: 9;
	/* Shared glass (title + drag hint; all locales) */
	--wilken-wall-glass-bg: rgba(10, 28, 22, 0.38);
	--wilken-wall-glass-bg-top: rgba(22, 55, 45, 0.48);
	--wilken-wall-glass-border: rgba(167, 243, 208, 0.42);
	--wilken-wall-glass-blur: 18px;
	--wilken-wall-glass-radius: clamp(0.65rem, 1.2vw, 0.9rem);
	--wilken-wall-glass-shadow:
		0 10px 36px rgba(0, 0, 0, 0.32),
		0 0 24px rgba(16, 185, 129, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.16);
	max-height: 100vh;
	max-height: 100dvh;
	min-height: min(var(--wilken-wall-content-min), 100vh);
	min-height: min(var(--wilken-wall-content-min), 100dvh);
	height: min(var(--wilken-wall-content-min), 100vh);
	height: min(var(--wilken-wall-content-min), 100dvh);
}

.wilken-wall-of-fame__header {
	position: absolute;
	z-index: 6;
	top: var(--wilken-wall-pad-y);
	left: 0;
	right: 0;
	margin: 0;
	padding: 0.35rem max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left)) 1.25rem;
	text-align: center;
	pointer-events: none;
}

.wilken-wall-of-fame__draggable {
	position: absolute;
	z-index: 2;
	inset: 0;
	box-sizing: border-box;
	overflow: hidden;
}

.wilken-wall-of-fame__title {
	display: inline-block;
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	font-size: clamp(1.85rem, 4.5vw, 2.75rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #f8fffb;
	text-shadow:
		0 2px 24px rgba(0, 0, 0, 0.55),
		0 0 40px rgba(6, 20, 16, 0.45);
}

.wilken-wall-of-fame__cta {
	margin: clamp(1rem, 2.5vw, 1.35rem) 0 0;
	pointer-events: auto;
}

.wilken-wall-of-fame__viewport {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	max-width: none;
	box-sizing: border-box;
}

.wilken-wall-of-fame__hint {
	position: absolute;
	right: clamp(1.25rem, 3.5vw, 2.5rem);
	top: calc(var(--wilken-wall-title-band) - var(--wilken-wall-pad-y) + clamp(0.15rem, 0.8vw, 0.35rem));
	margin: 0;
	z-index: 7;
	pointer-events: none;
}

/* Laptop / desktop: drag hint follows the pointer inside the section (see main.js). */
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
	.wilken-wall-of-fame__hint {
		left: 0;
		top: 0;
		right: auto;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease, visibility 0.2s ease;
		will-change: transform;
	}

	.wilken-wall-of-fame.is-wall-hint-active .wilken-wall-of-fame__hint {
		opacity: 1;
		visibility: visible;
	}

	.wilken-wall-of-fame.is-wall-hint-active .wilken-wall-of-fame__hint-pill {
		color: #0c1a14;
		background: #ffffff;
		border-color: rgba(255, 255, 255, 0.92);
		box-shadow:
			0 8px 28px rgba(0, 0, 0, 0.28),
			0 2px 8px rgba(0, 0, 0, 0.12);
		text-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

.wilken-wall-of-fame__hint-pill {
	display: inline-block;
	padding: 0.55rem 1rem;
	color: #ecfdf5;
	font-size: clamp(0.65rem, 1.15vw, 0.75rem);
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: linear-gradient(
		145deg,
		var(--wilken-wall-glass-bg-top),
		var(--wilken-wall-glass-bg)
	);
	border: 1px solid var(--wilken-wall-glass-border);
	border-radius: var(--wilken-wall-glass-radius);
	box-shadow: var(--wilken-wall-glass-shadow);
	backdrop-filter: blur(var(--wilken-wall-glass-blur)) saturate(1.35);
	-webkit-backdrop-filter: blur(var(--wilken-wall-glass-blur)) saturate(1.35);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-transparency: reduce) {
	.wilken-wall-of-fame__hint-pill {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(12, 32, 26, 0.92);
	}

	.wilken-wall-of-fame.is-wall-hint-active .wilken-wall-of-fame__hint-pill {
		background: #ffffff;
	}
}

.wilken-wall-canvas-wrap.draggable_canvas {
	overflow: hidden;
	cursor: grab;
	height: 100%;
	min-height: 0;
}

.wilken-wall-drag-root.draggable_wrap {
	position: relative;
	display: grid;
	/* Nine columns × nine rows @ 81 items; track width tunes ~3 cards across a 960px viewport. */
	grid-template-columns: repeat(
		9,
		minmax(var(--wilken-wall-track-min, 17rem), var(--wilken-wall-track-max, 19.125rem))
	);
	grid-auto-rows: minmax(var(--wilken-wall-row-min, 16rem), auto);
	gap: var(--wilken-wall-gap, 1.25rem);
	width: max-content;
	/* Horizontal slack for pan; keep vertical padding tight so rows are not clipped at rest. */
	padding: clamp(0.35rem, 1vw, 0.65rem) clamp(4rem, 8vw, 6rem);
	transform: translateZ(0);
	touch-action: none;
	cursor: grab;
	-webkit-user-select: none;
	user-select: none;
}

.wilken-wall-drag-root:active {
	cursor: grabbing;
}

.wilken-wall-card.draggable_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: auto;
	min-height: 10.25rem;
	width: auto;
	padding: 0.6rem 0.82rem;
	background: linear-gradient(
		152deg,
		color-mix(in srgb, var(--wilken-ci-forest-1) 72%, var(--wilken-ci-green) 28%) 0%,
		color-mix(in srgb, var(--wilken-ci-forest-deep) 88%, var(--wilken-ci-green) 12%) 48%,
		var(--wilken-ci-forest-3) 100%
	);
	border: 1px solid rgba(26, 95, 74, 0.42);
	box-shadow:
		inset 0 1px 0 rgba(167, 243, 208, 0.12),
		0 10px 28px rgba(12, 36, 30, 0.28);
	box-sizing: border-box;
	transition:
		opacity 0.32s ease,
		border-color 0.32s ease,
		box-shadow 0.32s ease,
		transform 0.32s ease;
	opacity: 0.52;
}

.wilken-wall-card.is-wall-card-focused {
	z-index: 2;
	opacity: 1;
	border-color: rgba(167, 243, 208, 0.58);
	box-shadow:
		inset 0 1px 0 rgba(236, 253, 245, 0.2),
		0 14px 36px rgba(12, 36, 30, 0.38);
	transform: scale(1.015);
}

@media (prefers-reduced-motion: reduce) {
	.wilken-wall-card.is-wall-card-focused {
		transform: none;
	}

	.wilken-wall-card.draggable_item {
		transition: opacity 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
	}
}

@supports not (background: color-mix(in srgb, red 50%, blue)) {
	.wilken-wall-card.draggable_item {
		background: linear-gradient(152deg, #245a4a 0%, #1a4538 48%, #15372d 100%);
	}
}

.wilken-wall-card__quote {
	margin: 0 0 clamp(0.7rem, 2.1vw, 1rem);
	padding: 0;
	border: none;
	width: 100%;
	text-align: center;
}

.wilken-wall-card__quote-text {
	margin: 0;
	font-family: Georgia, "Times New Roman", ui-serif, serif;
	font-size: clamp(0.95rem, 2.5vw, 1.125rem);
	font-weight: 500;
	font-style: italic;
	line-height: 1.45;
	letter-spacing: 0.01em;
	color: rgba(236, 253, 245, 0.96);
	text-align: center;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.wilken-wall-card__footer {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0.38rem;
	width: 100%;
	max-width: 100%;
}

.wilken-wall-card__avatar.wilken-wall-card__ci-icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 0.28rem;
	background: rgba(26, 95, 74, 0.38);
	border: 1px solid rgba(167, 243, 208, 0.35);
	color: rgba(216, 250, 230, 0.95);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.wilken-wall-card__avatar.wilken-wall-card__ci-icon svg {
	width: 0.875rem;
	height: 0.875rem;
	display: block;
}

.wilken-wall-card__who {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 0.12rem;
	flex: 0 1 auto;
	min-width: 0;
	max-width: calc(100% - 1.78rem);
}

.wilken-wall-card__name {
	display: block;
	width: 100%;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: clamp(0.69rem, 1.75vw, 0.8rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #ecfdf5;
	font-style: normal;
	line-height: 1.18;
}

.wilken-wall-card__role {
	display: -webkit-box;
	width: 100%;
	text-align: left;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	word-break: break-word;
	font-size: clamp(0.62rem, 1.55vw, 0.73rem);
	color: rgba(167, 243, 208, 0.72);
	line-height: 1.25;
}

/* Tablet: two card columns, two visible rows */
@media (min-width: 768px) and (max-width: 1023px) {
	.wilken-wall-of-fame {
		--wilken-wall-visible-rows: 2;
		--wilken-wall-row-min: clamp(12.5rem, 28vw, 14.5rem);
		--wilken-wall-gap: 1rem;
		--wilken-wall-title-band: clamp(4.75rem, 7.5vw, 5.5rem);
		--wilken-wall-track-min: min(15.5rem, calc(100vw / 2.2));
		--wilken-wall-track-max: min(16.75rem, calc(100vw / 2.05));
		--wilken-wall-glass-blur: 14px;
	}

	.wilken-wall-of-fame__title {
		font-size: clamp(1.65rem, 3.8vw, 2.35rem);
		letter-spacing: 0.12em;
	}

	.wilken-wall-drag-root.draggable_wrap {
		padding-inline: clamp(1.5rem, 5vw, 3.5rem);
	}
}

/* Mobile: one card column, two rows, stacked chrome */
@media (max-width: 767px) {
	.wilken-wall-of-fame {
		--wilken-wall-pad-y: clamp(1.1rem, 3.5vw, 1.6rem);
		--wilken-wall-title-band: clamp(6.5rem, 21vw, 7.75rem);
		--wilken-wall-visible-rows: 2;
		--wilken-wall-row-min: clamp(10.5rem, 33vw, 12.75rem);
		--wilken-wall-gap: 0.75rem;
		--wilken-wall-track-min: min(17.5rem, calc(100vw - 2.25rem));
		--wilken-wall-track-max: var(--wilken-wall-track-min);
		--wilken-wall-glass-blur: 10px;
		margin-inline: 0;
	}

	.wilken-wall-of-fame__header {
		padding-inline: max(var(--padding-global-x, 1.5rem), env(safe-area-inset-left));
	}

	.wilken-wall-of-fame__title {
		font-size: clamp(1.2rem, 6.2vw, 1.65rem);
		letter-spacing: 0.08em;
		max-width: calc(100% - 0.5rem);
		line-height: 1.15;
	}

	.wilken-wall-of-fame__hint {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		top: calc(var(--wilken-wall-pad-y) + clamp(3rem, 10.5vw, 3.85rem));
		width: max-content;
		max-width: calc(100% - 1.5rem);
		text-align: center;
	}

	.wilken-wall-of-fame__hint-pill {
		padding: 0.48rem 0.82rem;
		font-size: clamp(0.58rem, 2.8vw, 0.68rem);
		letter-spacing: 0.08em;
		white-space: nowrap;
	}

	.wilken-wall-drag-root.draggable_wrap {
		padding: 0.35rem clamp(0.85rem, 4vw, 1.25rem);
	}

	.wilken-wall-card.draggable_item {
		min-height: 9.5rem;
		padding: 0.5rem 0.6rem;
	}

	.wilken-wall-card__quote-text {
		font-size: clamp(0.88rem, 3.6vw, 1rem);
		-webkit-line-clamp: 4;
		line-clamp: 4;
	}

	.wilken-wall-card__name {
		font-size: clamp(0.58rem, 2.5vw, 0.68rem);
		letter-spacing: 0.03em;
	}

	.wilken-wall-card__role {
		font-size: clamp(0.54rem, 2.2vw, 0.62rem);
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.wilken-wall-card.draggable_item {
		padding: 0.55rem 0.65rem;
	}

	.wilken-wall-card__name {
		font-size: clamp(0.6rem, 2.65vw, 0.7rem);
		letter-spacing: 0.035em;
	}

	.wilken-wall-card__role {
		font-size: clamp(0.56rem, 2.35vw, 0.65rem);
		-webkit-line-clamp: 3;
		line-clamp: 3;
	}
}

/*
 * Projects + About: wall-of-fame meets light footer without a large white band.
 * Tighten footer padding-top and grid alignment beside the tall 3D card (wide).
 */
body.page-projects .wilken-wall-of-fame,
body.page-about .wilken-wall-of-fame,
body.wilken-about .wilken-wall-of-fame,
body.page-capabilities .wilken-wall-of-fame {
	padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

body.page-projects .site-footer.site-footer--light,
body.page-about .site-footer.site-footer--light,
body.wilken-about .site-footer.site-footer--light,
body.page-capabilities .site-footer.site-footer--light {
	padding-top: clamp(2.5rem, 6vw, 4rem);
}

@media (min-width: 992px) {
	body.page-projects .footer-inner--with-card,
	body.page-about .footer-inner--with-card,
	body.wilken-about .footer-inner--with-card,
	body.page-capabilities .footer-inner--with-card {
		align-items: start;
	}
}

/* ==========================================================================
   Capabilities page (SVZ benchmark + Wilken CI)
   ========================================================================== */
.page-capabilities .padding-global.is-none {
	padding-left: 0;
	padding-right: 0;
}

.page-capabilities .text-align-center {
	text-align: center;
}

.page-capabilities .padding-section-medium {
	padding-top: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.page-capabilities .container-large {
	width: 100%;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--padding-global-x, 1.5rem);
	padding-right: var(--padding-global-x, 1.5rem);
	box-sizing: border-box;
}

.wilken-process-hero {
	position: relative;
	z-index: 1;
	background: linear-gradient(180deg, #f8faf8 0%, #fff 100%);
	/* Match .hero-section--full: full-bleed Lottie uses 100vw + translate; clip hid the sides */
	overflow-x: visible;
	overflow-y: visible;
}

/* Set in main.js (syncWilkenSiteHeaderHeight); used for hero height + ScrollTrigger start */
:root {
	--wilken-site-header-height: 0px;
}

/* Pull hero under the header so pin starts at viewport top (no white band when header scrolls away) */
main#main.site-main.page-capabilities > .wilken-process-hero:first-child,
main#main.site-main.page-capabilities > .pin-spacer:first-child {
	margin-top: calc(-1 * var(--wilken-site-header-height, 0px));
}

@media (max-width: 900px) {
	main#main.site-main.page-capabilities {
		--wilken-cap-nav-clearance: calc(12px + 3.75rem + env(safe-area-inset-top, 0px));
	}

	main#main.site-main.page-capabilities > .wilken-process-hero:first-child,
	main#main.site-main.page-capabilities > .pin-spacer:first-child {
		margin-top: calc(-1 * max(var(--wilken-site-header-height, 0px), var(--wilken-cap-nav-clearance)));
	}

	main#main.site-main.page-capabilities .wilken-process-hero .process_hero_content {
		padding-top: max(var(--wilken-site-header-height, 0px), var(--wilken-cap-nav-clearance));
	}
}

/* GSAP pin-spacer can keep a pre-pin pixel width; cap looks like empty space on wide viewports */
main#main.site-main.page-capabilities > .pin-spacer {
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
}

main#main.site-main.page-capabilities > .pin-spacer > .wilken-process-hero {
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
}

main#main.site-main.page-capabilities .wilken-process-hero .padding-global.is-none,
main#main.site-main.page-capabilities .wilken-process-hero .process_hero_component,
main#main.site-main.page-capabilities .wilken-process-hero .process_hero_content,
main#main.site-main.page-capabilities .wilken-process-hero .wilken-process-hero__pin-scene {
	width: 100%;
	max-width: none;
	min-width: 0;
	box-sizing: border-box;
}

.wilken-process-hero .process_hero_component {
	position: relative;
}

.wilken-process-hero .process_hero_content {
	position: relative;
	box-sizing: border-box;
	min-height: 100vh;
	min-height: 100svh;
	padding-top: var(--wilken-site-header-height, 0px);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

/* GSAP fixed pin can keep top at header offset; force flush viewport fill while pinned */
main#main.site-main.page-capabilities .wilken-process-hero.wilken-process-hero--pinned {
	top: 0 !important;
	min-height: 100vh;
	min-height: 100svh;
}

.wilken-process-hero__pin-scene {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	overflow: hidden;
}

/* Capabilities hero: web + marketing ambient layer */
.wilken-process-hero__ambient {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	--wilken-cap-ambient-x: 50;
	--wilken-cap-ambient-y: 50;
}

.wilken-process-hero__ambient-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0.55;
}

.wilken-process-hero__ambient-grid {
	position: absolute;
	inset: -20%;
	background-image:
		linear-gradient(rgba(26, 95, 74, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(26, 95, 74, 0.07) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 72% 68% at 50% 46%, #000 18%, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 46%, #000 18%, transparent 78%);
	transform: perspective(900px) rotateX(58deg) translateY(-8%) scale(1.15);
	transform-origin: 50% 40%;
	animation: wilken-cap-ambient-grid-drift 28s ease-in-out infinite;
}

.wilken-process-hero__ambient-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(64px);
	opacity: 0.45;
	will-change: transform;
}

.wilken-process-hero__ambient-glow--a {
	width: min(42vw, 380px);
	height: min(42vw, 380px);
	left: calc(var(--wilken-cap-ambient-x, 50) * 1% - 12%);
	top: 18%;
	background: radial-gradient(circle, rgba(26, 95, 74, 0.22) 0%, transparent 70%);
	animation: wilken-cap-ambient-glow-a 20s ease-in-out infinite;
}

.wilken-process-hero__ambient-glow--b {
	width: min(36vw, 320px);
	height: min(36vw, 320px);
	right: 8%;
	bottom: 12%;
	background: radial-gradient(circle, rgba(134, 239, 172, 0.2) 0%, transparent 72%);
	animation: wilken-cap-ambient-glow-b 24s ease-in-out infinite;
}

.wilken-process-hero__chips {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	inset: 0;
	transform: translate3d(
		calc((var(--wilken-cap-ambient-x, 50) - 50) * 0.12px),
		calc((var(--wilken-cap-ambient-y, 50) - 50) * 0.1px),
		0
	);
}

.wilken-process-hero__chip {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	padding: 0.65rem 0.75rem;
	border-radius: 12px;
	border: 1px solid rgba(26, 95, 74, 0.14);
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow:
		0 12px 32px rgba(15, 23, 42, 0.06),
		0 0 0 1px rgba(255, 255, 255, 0.5) inset;
	opacity: 0.88;
	animation: wilken-cap-chip-float 7s ease-in-out infinite;
	animation-delay: calc(var(--chip-i, 0) * -1.35s);
}

.wilken-process-hero__chip--browser {
	left: clamp(0.5rem, 4vw, 2.5rem);
	top: clamp(0.75rem, 8vh, 3rem);
	width: clamp(9rem, 18vw, 11.5rem);
}

.wilken-process-hero__chip--analytics {
	right: clamp(0.5rem, 4vw, 2.5rem);
	top: clamp(1rem, 10vh, 3.5rem);
	width: clamp(8.5rem, 16vw, 10.5rem);
}

.wilken-process-hero__chip--code {
	left: clamp(0.5rem, 5vw, 3rem);
	bottom: clamp(1rem, 12vh, 4rem);
	width: clamp(10rem, 22vw, 13rem);
}

.wilken-process-hero__chip--flow {
	right: clamp(0.5rem, 5vw, 3rem);
	bottom: clamp(1.25rem, 14vh, 4.5rem);
	width: clamp(8rem, 15vw, 10rem);
}

.wilken-process-hero__chip-label {
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(26, 95, 74, 0.72);
}

.wilken-process-hero__chip-ui {
	display: block;
}

.wilken-process-hero__browser-bar {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.35rem 0.45rem;
	border-radius: 6px;
	background: rgba(248, 250, 248, 0.95);
	border: 1px solid rgba(26, 95, 74, 0.08);
}

.wilken-process-hero__browser-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(26, 95, 74, 0.25);
}

.wilken-process-hero__browser-dot:first-child {
	background: #1a5f4a;
}

.wilken-process-hero__browser-url {
	flex: 1;
	height: 4px;
	border-radius: 999px;
	margin-left: 0.2rem;
	background: linear-gradient(90deg, rgba(26, 95, 74, 0.35), rgba(26, 95, 74, 0.08));
}

.wilken-process-hero__browser-body {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	margin-top: 0.35rem;
}

.wilken-process-hero__browser-block {
	display: block;
	border-radius: 4px;
	background: rgba(26, 95, 74, 0.08);
}

.wilken-process-hero__browser-block--hero {
	height: 2rem;
	background: linear-gradient(135deg, rgba(26, 95, 74, 0.14), rgba(134, 239, 172, 0.12));
	animation: wilken-cap-browser-shimmer 4s ease-in-out infinite;
}

.wilken-process-hero__browser-block--line {
	height: 0.35rem;
	width: 88%;
}

.wilken-process-hero__browser-block--short {
	width: 62%;
}

.wilken-process-hero__browser-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.25rem;
}

.wilken-process-hero__browser-grid span {
	height: 1.1rem;
	border-radius: 3px;
	background: rgba(26, 95, 74, 0.06);
}

.wilken-process-hero__chip-ui--analytics {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.5rem;
	min-height: 3.25rem;
}

.wilken-process-hero__metric {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.wilken-process-hero__metric-value {
	font-size: 1.125rem;
	font-weight: 800;
	color: #1a5f4a;
	letter-spacing: -0.02em;
}

.wilken-process-hero__metric-label {
	font-size: 0.625rem;
	font-weight: 600;
	color: rgba(15, 23, 42, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.wilken-process-hero__bars {
	display: flex;
	align-items: flex-end;
	gap: 0.2rem;
	height: 2.5rem;
	flex: 1;
}

.wilken-process-hero__bar {
	flex: 1;
	height: var(--h, 50%);
	border-radius: 3px 3px 1px 1px;
	background: linear-gradient(180deg, rgba(26, 95, 74, 0.55), rgba(26, 95, 74, 0.18));
	transform-origin: bottom center;
	animation: wilken-cap-bar-pulse 2.8s ease-in-out infinite;
}

.wilken-process-hero__bar:nth-child(2) {
	animation-delay: -0.4s;
}

.wilken-process-hero__bar:nth-child(3) {
	animation-delay: -0.9s;
}

.wilken-process-hero__bar:nth-child(4) {
	animation-delay: -1.3s;
}

.wilken-process-hero__bar:nth-child(5) {
	animation-delay: -1.8s;
}

.wilken-process-hero__chip-ui--code {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 0.5625rem;
	line-height: 1.35;
}

.wilken-process-hero__code-line {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: rgba(15, 23, 42, 0.55);
}

.wilken-process-hero__code-line--indent {
	padding-left: 0.65rem;
}

.wilken-process-hero__code-k {
	color: rgba(26, 95, 74, 0.85);
}

.wilken-process-hero__code-a {
	color: rgba(13, 61, 48, 0.75);
}

.wilken-process-hero__code-v {
	color: rgba(26, 95, 74, 0.65);
}

.wilken-process-hero__code-cursor {
	display: inline-block;
	width: 0.35rem;
	height: 0.65rem;
	margin-left: 1px;
	vertical-align: -1px;
	background: #1a5f4a;
	animation: wilken-cap-code-blink 1.1s step-end infinite;
}

.wilken-process-hero__flow-svg {
	width: 100%;
	height: auto;
	display: block;
}

.wilken-process-hero__flow-node {
	fill: rgba(26, 95, 74, 0.35);
	stroke: rgba(26, 95, 74, 0.55);
	stroke-width: 1.2;
}

.wilken-process-hero__flow-line {
	stroke: rgba(26, 95, 74, 0.28);
	stroke-width: 1.4;
	stroke-linecap: round;
}

.wilken-process-hero__flow-pulse {
	stroke: rgba(26, 95, 74, 0.75);
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-dasharray: 8 40;
	animation: wilken-cap-flow-pulse 2.4s linear infinite;
}

@keyframes wilken-cap-ambient-grid-drift {
	0%,
	100% {
		transform: perspective(900px) rotateX(58deg) translateY(-8%) scale(1.15) translateX(0);
	}
	50% {
		transform: perspective(900px) rotateX(58deg) translateY(-6%) scale(1.17) translateX(1.5%);
	}
}

@keyframes wilken-cap-ambient-glow-a {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(3%, 5%) scale(1.08);
	}
}

@keyframes wilken-cap-ambient-glow-b {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(-4%, -3%) scale(1.06);
	}
}

@keyframes wilken-cap-chip-float {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -6px, 0);
	}
}

@keyframes wilken-cap-browser-shimmer {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.82;
	}
}

@keyframes wilken-cap-bar-pulse {
	0%,
	100% {
		transform: scaleY(1);
	}
	50% {
		transform: scaleY(0.88);
	}
}

@keyframes wilken-cap-code-blink {
	0%,
	49% {
		opacity: 1;
	}
	50%,
	100% {
		opacity: 0;
	}
}

@keyframes wilken-cap-flow-pulse {
	0% {
		stroke-dashoffset: 48;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@media (max-width: 900px) {
	.wilken-process-hero__chip {
		opacity: 0.72;
		width: min(10.25rem, 46vw);
	}

	/* Frame headline: web motif above, marketing motif below (offsets set at 1024px / 768px) */
	.wilken-process-hero__chip--browser {
		top: auto;
		bottom: auto;
		left: max(0.75rem, env(safe-area-inset-left, 0px));
		right: auto;
	}

	.wilken-process-hero__chip--analytics {
		top: auto;
		bottom: auto;
		left: auto;
		right: max(0.75rem, env(safe-area-inset-right, 0px));
	}

	.wilken-process-hero__chip--code,
	.wilken-process-hero__chip--flow {
		display: none;
	}

	.wilken-process-hero__ambient-grid {
		mask-image: radial-gradient(ellipse 72% 68% at 50% 52%, #000 18%, transparent 78%);
		-webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 52%, #000 18%, transparent 78%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wilken-process-hero__ambient-grid,
	.wilken-process-hero__ambient-glow,
	.wilken-process-hero__chip,
	.wilken-process-hero__browser-block--hero,
	.wilken-process-hero__bar,
	.wilken-process-hero__code-cursor,
	.wilken-process-hero__flow-pulse {
		animation: none;
	}

	.wilken-process-hero__ambient-canvas {
		display: none;
	}
}

.wilken-process-hero__text {
	position: relative;
	z-index: 2;
	padding: clamp(2rem, 6vw, 4rem) var(--padding-global-x, 1.5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.wilken-layout424-heading-list {
	position: relative;
	width: 100%;
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
	min-height: clamp(5.25rem, 16vw, 9.5rem);
}

.wilken-layout424-heading {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: 0;
	font-family: "DM Sans", system-ui, sans-serif;
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	text-align: center;
	color: #0f172a;
	will-change: transform, opacity;
	transform-style: preserve-3d;
}

.wilken-layout424-heading.heading-1 {
	z-index: 1;
	font-size: clamp(2rem, 5.5vw, 3.75rem);
}

.wilken-layout424-heading.heading-2 {
	z-index: 2;
	font-size: clamp(1.65rem, 4.5vw, 3.1rem);
}

.wilken-layout424-heading.heading-3 {
	z-index: 3;
	font-size: clamp(1.35rem, 3.6vw, 2.5rem);
	color: #1a5f4a;
}

.wilken-layout424-heading--compact {
	display: none;
}

@media (max-width: 1024px) {
	main#main.site-main.page-capabilities {
		--wilken-cap-nav-clearance: calc(12px + 3.75rem + env(safe-area-inset-top, 0px));
	}

	main#main.site-main.page-capabilities .wilken-process-hero,
	main#main.site-main.page-capabilities .wilken-process-hero .padding-global.is-none,
	main#main.site-main.page-capabilities .wilken-process-hero .process_hero_component,
	main#main.site-main.page-capabilities .wilken-process-hero .process_hero_content {
		min-height: 100vh;
		min-height: 100svh;
	}

	main#main.site-main.page-capabilities .wilken-process-hero .padding-global.is-none,
	main#main.site-main.page-capabilities .wilken-process-hero .process_hero_component {
		display: flex;
		flex-direction: column;
	}

	main#main.site-main.page-capabilities .wilken-process-hero .process_hero_content {
		flex: 1 1 auto;
		padding-top: 0;
	}

	.wilken-process-hero__pin-scene {
		flex: 0 0 auto;
		min-height: 100vh;
		min-height: 100svh;
		height: 100vh;
		height: 100svh;
		padding-top: var(--wilken-cap-nav-clearance, var(--wilken-site-header-height, 0px));
		box-sizing: border-box;
	}

	.wilken-process-hero__text {
		flex: 1 1 auto;
		padding-top: clamp(1.25rem, 4vw, 2rem);
		padding-bottom: clamp(1.25rem, 4vw, 2rem);
	}

	.wilken-layout424-heading--compact {
		display: block;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		will-change: auto;
		transform: none;
		font-size: clamp(1.65rem, 6.5vw, 2.35rem);
		line-height: 1.02;
		z-index: 1;
	}

	.wilken-layout424-heading-list .heading-1,
	.wilken-layout424-heading-list .heading-2,
	.wilken-layout424-heading-list .heading-3 {
		display: none !important;
	}

	.wilken-layout424-heading-list {
		min-height: 0;
	}

	.wilken-process-hero__chip--browser {
		bottom: calc(50% + 7rem);
	}

	.wilken-process-hero__chip--analytics {
		top: calc(50% + 7rem);
	}
}

@media (prefers-reduced-motion: reduce) and (min-width: 1025px) {
	.wilken-layout424-heading-list {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.35rem;
		min-height: 0;
	}

	.wilken-layout424-heading {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		will-change: auto;
		transform: none;
	}
}

.wilken-process-hero .wilken-explore-banner--capabilities {
	flex-shrink: 0;
	align-self: stretch;
	position: sticky;
	bottom: 0;
	top: auto;
	z-index: 30;
	margin-top: 0;
	padding-left: env(safe-area-inset-left, 0);
	padding-right: env(safe-area-inset-right, 0);
	padding-bottom: env(safe-area-inset-bottom, 0);
	box-sizing: border-box;
}

/* Capabilities: time pill mirrors scroll-pin (plus icon + shared min-height) */
.wilken-explore-banner--capabilities .wilken-explore-banner__scroll-pin,
.wilken-explore-banner--capabilities .wilken-explore-banner__meta {
	min-height: 2.375rem;
	align-items: center;
}

.wilken-explore-banner--capabilities .wilken-explore-banner__meta {
	gap: 0.6rem;
	flex-wrap: nowrap;
}

.wilken-explore-banner--capabilities .wilken-explore-banner__time {
	align-items: center;
}

/* Scroll cue and local-time pill hidden on phones/tablets (sticky banner not needed) */
@media (max-width: 1024px) {
	.wilken-process-hero .wilken-explore-banner--capabilities {
		display: none;
	}
}

@media (max-width: 768px) {
	.wilken-process-hero__text {
		padding-top: clamp(1rem, 3.5vw, 1.5rem);
		padding-bottom: clamp(1rem, 3vw, 1.75rem);
	}

	.wilken-process-hero__chip--browser {
		bottom: calc(50% + 7.75rem);
	}

	.wilken-process-hero__chip--analytics {
		top: calc(50% + 7.75rem);
	}
}

.page-capabilities .wilken-capabilities-intro {
	/* CI dark: forest base (brand greens), not pure black; soft brand glow matches hero-zoom */
	background:
		radial-gradient(
			ellipse 85% 65% at 50% -15%,
			rgba(26, 95, 74, 0.26) 0%,
			transparent 58%
		),
		radial-gradient(
			ellipse 55% 70% at 92% 100%,
			rgba(134, 239, 172, 0.08) 0%,
			transparent 55%
		),
		linear-gradient(
			165deg,
			#203833 0%,
			#182f28 45%,
			#172b25 100%
		);
	color: #f3f4f6;
}

.wilken-capabilities-intro__inner {
	width: 100%;
	margin: 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: clamp(1.75rem, 4vw, 2.75rem);
}

.wilken-capabilities-intro__col--headline {
	flex: 1 1 auto;
	min-width: 0;
}

.wilken-capabilities-intro__col--aside {
	flex: 1 1 auto;
	min-width: 0;
}

.wilken-capabilities-intro__headline {
	font-size: clamp(1.85rem, 4.2vw, 3.65rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.025em;
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	text-wrap: balance;
}

.wilken-capabilities-intro__label {
	margin: 0 0 0.65rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.wilken-capabilities-intro__text {
	font-size: 1.0625rem;
	color: rgba(243, 244, 246, 0.9);
	line-height: 1.65;
	margin: 0;
}

.wilken-capabilities-intro__jump {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

.wilken-capabilities-intro__jump:hover,
.wilken-capabilities-intro__jump:focus-visible {
	color: #fff;
	text-decoration: underline;
}

.wilken-capabilities-intro__jump:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.75);
	outline-offset: 3px;
}

@media (min-width: 768px) {
	.wilken-capabilities-intro__inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: clamp(2rem, 5vw, 4rem);
	}

	.wilken-capabilities-intro__col--headline {
		flex: 1 1 58%;
		max-width: min(44rem, 100%);
	}

	.wilken-capabilities-intro__col--aside {
		flex: 1 1 34%;
		max-width: 26rem;
	}
}

.wilken-capabilities-rows-section {
	--wilken-cap-panel-surface:
		radial-gradient(ellipse 88% 58% at 100% -6%, rgba(26, 95, 74, 0.1) 0%, transparent 54%),
		radial-gradient(ellipse 72% 52% at -4% 104%, rgba(134, 239, 172, 0.12) 0%, transparent 50%),
		linear-gradient(168deg, #ffffff 0%, #fbfdfc 36%, #f6faf8 72%, #f1f7f4 100%);
	--wilken-cap-panel-border: #cfe0d8;
	--wilken-cap-panel-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 22px 52px rgba(26, 95, 74, 0.09);
	--wilken-cap-panel-shadow-front:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 28px 58px rgba(26, 95, 74, 0.13);
	background:
		radial-gradient(ellipse 72% 55% at 12% 8%, rgba(26, 95, 74, 0.07) 0%, transparent 52%),
		radial-gradient(ellipse 58% 48% at 88% 92%, rgba(134, 239, 172, 0.14) 0%, transparent 48%),
		linear-gradient(180deg, var(--wilken-ci-surface-ink) 0%, #f8faf8 55%, #f1f7f4 100%);
}

.page-capabilities [data-wilken-capabilities-rows] {
	/* Viewport inset: sticky panels clear top chrome */
	--wilken-stack-base: calc(env(safe-area-inset-top, 0px) + clamp(4.75rem, 11vh, 6.85rem));
	/* Uniform sticky panel footprint (desktop stack); extra breathing room below sticky top */
	--wilken-cap-panel-pad: clamp(1rem, 3vh, 2rem);
	--wilken-cap-panel-min-h: calc(
		100svh - var(--wilken-stack-base) - var(--wilken-cap-panel-pad)
	);
}

.page-capabilities [data-wilken-capabilities-rows].wilken-capabilities-stack {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.page-capabilities .capabilities_row {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
	min-width: 0;
	padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 5.5vw, 3.5rem)
		clamp(3.5rem, 20vh, 8rem);
	margin-bottom: clamp(1.25rem, 3.5vw, 1.75rem);
	background: var(--wilken-cap-panel-surface);
	border: 1px solid var(--wilken-cap-panel-border);
	border-radius: 18px;
	box-shadow: var(--wilken-cap-panel-shadow);
}

.page-capabilities .capabilities_row::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%231a5f4a' stroke-width='1.2' stroke-linecap='round' d='M6 2.25v7.5M2.25 6h7.5' opacity='0.34'/%3E%3C/svg%3E")
			clamp(0.85rem, 2.4vw, 1.15rem) clamp(0.85rem, 2.4vw, 1.15rem) no-repeat,
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%231a5f4a' stroke-width='1.2' stroke-linecap='round' d='M6 2.25v7.5M2.25 6h7.5' opacity='0.34'/%3E%3C/svg%3E")
			calc(100% - clamp(0.85rem, 2.4vw, 1.15rem)) clamp(0.85rem, 2.4vw, 1.15rem) no-repeat,
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%231a5f4a' stroke-width='1.2' stroke-linecap='round' d='M6 2.25v7.5M2.25 6h7.5' opacity='0.34'/%3E%3C/svg%3E")
			clamp(0.85rem, 2.4vw, 1.15rem) calc(100% - clamp(0.85rem, 2.4vw, 1.15rem)) no-repeat,
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%231a5f4a' stroke-width='1.2' stroke-linecap='round' d='M6 2.25v7.5M2.25 6h7.5' opacity='0.34'/%3E%3C/svg%3E")
			calc(100% - clamp(0.85rem, 2.4vw, 1.15rem)) calc(100% - clamp(0.85rem, 2.4vw, 1.15rem)) no-repeat;
}

.page-capabilities .capabilities_row > * {
	position: relative;
	z-index: 1;
}

.page-capabilities .capabilities_row:last-child {
	margin-bottom: 0;
}

/* Alternate radial emphasis so stacked panels feel distinct (FAQ-style green contrast) */
.page-capabilities .capabilities_row.is-2,
.page-capabilities .capabilities_row.is-4,
.page-capabilities .capabilities_row.is-6 {
	--wilken-cap-panel-surface:
		radial-gradient(ellipse 88% 58% at 0% -6%, rgba(26, 95, 74, 0.11) 0%, transparent 54%),
		radial-gradient(ellipse 72% 52% at 104% 104%, rgba(134, 239, 172, 0.14) 0%, transparent 50%),
		linear-gradient(168deg, #fbfdfc 0%, #f6faf8 42%, #f1f7f4 100%);
}

.page-capabilities .capabilities_row.is-flagship {
	--wilken-cap-panel-border: #b5d4c8;
}

.page-capabilities .capabilities_row > .capability_content {
	min-width: 0;
	max-width: 100%;
}

.page-capabilities .wilken-capability-body {
	position: relative;
	min-width: 0;
}

@media (min-width: 1025px) {
	.page-capabilities .capabilities_row {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		grid-template-rows: auto;
		gap: clamp(2rem, 4vw, 3.5rem);
		align-items: stretch;
		padding-bottom: clamp(4rem, 26vh, 10rem);
		min-height: var(--wilken-cap-panel-min-h, calc(100svh - 7rem));
		/* Whole panel sticks; later rows paint above earlier ones while scrolling */
		position: sticky;
		top: var(--wilken-stack-base, 5.5rem);
		z-index: calc(10 + var(--wilken-cap-idx, 0));
		background: var(--wilken-cap-panel-surface);
		box-shadow: var(--wilken-cap-panel-shadow);
	}

	/* One panel shadow at a time while stacking (see main.js: is-cap-layer-front) */
	.page-capabilities .capabilities_row.is-cap-layer-front {
		box-shadow: var(--wilken-cap-panel-shadow-front);
	}

	.page-capabilities .capabilities_row:not(:last-child) {
		margin-bottom: clamp(1.5rem, 5vh, 3rem);
	}

	.page-capabilities .capabilities_row:last-child {
		/* Match other panels' min-height so the final sheet fully covers the sticky row beneath */
		align-items: start;
	}

	.page-capabilities .capabilities_row:last-child > .capability_visual-wrapper {
		align-self: start;
	}

	.page-capabilities .capabilities_row > .capability_content {
		grid-column: 1 / 2;
		align-self: stretch;
		justify-self: stretch;
		min-width: 0;
		width: 100%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
	}

	.page-capabilities .capabilities_row > .capability_content::after {
		content: "";
		flex: 1 1 auto;
		min-height: 0;
		width: 100%;
	}

	.page-capabilities .capabilities_row > .capability_visual-wrapper {
		grid-column: 2 / 3;
		/* Row uses viewport-tall sticky panels; graphic box stays shorter: center so upper/lower whitespace matches */
		align-self: center;
		justify-self: stretch;
		position: relative;
		top: auto;
		z-index: auto;
		min-width: 0;
		min-height: 0;
		height: fit-content;
		max-height: 100%;
		width: 100%;
		max-width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: none;
	}

	.page-capabilities .capabilities_row > .capability_content > .wilken-capability-heading-row {
		align-self: flex-start;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		margin-bottom: clamp(0.85rem, 2.2vw, 1rem);
	}
}

@media (max-width: 1024px) {
	.wilken-capabilities-rows-section.section {
		padding-left: max(clamp(0.75rem, 4vw, 1.25rem), env(safe-area-inset-left, 0px));
		padding-right: max(clamp(0.75rem, 4vw, 1.25rem), env(safe-area-inset-right, 0px));
	}

	.wilken-capabilities-rows-section .padding-global,
	.wilken-capabilities-rows-section .padding-section-medium {
		padding-left: 0;
		padding-right: 0;
	}

	.wilken-capabilities-rows-section .padding-section-medium {
		padding-top: clamp(1.25rem, 3vw, 2rem);
		padding-bottom: clamp(1.25rem, 3vw, 2rem);
	}

	.wilken-capabilities-rows-section .container-large {
		padding-left: 0;
		padding-right: 0;
		max-width: none;
	}

	.page-capabilities .capabilities_row {
		grid-template-columns: minmax(0, 1fr);
		padding-top: clamp(1.5rem, 4vw, 2rem);
		padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
		padding-left: clamp(1.25rem, 4vw, 1.75rem);
		padding-right: clamp(1.25rem, 4vw, 1.75rem);
		gap: clamp(1rem, 2.5vw, 1.5rem);
		margin-bottom: clamp(0.65rem, 2vw, 0.85rem);
	}

	.page-capabilities .capabilities_row > .capability_content {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		justify-self: stretch;
		box-sizing: border-box;
	}

	.page-capabilities .capabilities_row > .capability_visual-wrapper {
		display: none;
	}
}

.wilken-capability-heading-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.65rem 1rem;
	margin-bottom: 0.75rem;
	min-width: 0;
	max-width: 100%;
}

.wilken-capability-index {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.wilken-capability-title {
	margin: 0;
	flex: 1 1 12rem;
	min-width: 0;
	max-width: 100%;
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #0f172a;
	overflow-wrap: break-word;
	word-break: normal;
	-webkit-hyphens: auto;
	hyphens: auto;
}

.wilken-capability-lead {
	font-size: 1rem;
	line-height: 1.62;
	color: #64748b;
	margin: 0 0 1.1rem;
}

.page-capabilities .capability_list.w-list-unstyled,
.page-capabilities .capability_list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.5rem;
	align-items: center;
}

.page-capabilities .capability_list-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin: 0;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: break-word;
	word-break: normal;
	padding: 0.45rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(26, 95, 74, 0.2);
	background: rgba(26, 95, 74, 0.09);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.65) inset,
		0 1px 2px rgba(15, 23, 42, 0.04);
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0f172a;
	font-feature-settings: "kern" 1, "liga" 1;
}

@media (min-width: 768px) {
	.page-capabilities .capability_list-item {
		padding: 0.5rem 0.85rem;
		font-size: 0.65rem;
		letter-spacing: 0.11em;
	}
}

.capability_visual-wrapper {
	position: relative;
	min-width: 0;
	max-width: 100%;
	border-radius: 12px;
	background:
		radial-gradient(ellipse 90% 80% at 0% 0%, rgba(26, 95, 74, 0.06) 0%, transparent 55%),
		linear-gradient(180deg, #eef6f2 0%, #e8f3ee 100%);
	border: 1px solid #c5dfd2;
	min-height: 200px;
	overflow: hidden;
	isolation: isolate;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.75),
		0 1px 3px rgba(26, 95, 74, 0.05);
}

.wilken-capability-lottie {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	z-index: 1;
}

.wilken-capability-lottie svg {
	width: 100%;
	height: 100%;
	display: block;
}

.wilken-process-paths {
	background: linear-gradient(180deg, #f9fafb 0%, #fff 55%);
}

.wilken-process-paths .padding-section-large {
	padding-top: clamp(2.5rem, 5vw, 4rem);
	padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.wilken-process-paths__heading {
	will-change: opacity, transform;
	margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
	width: 100%;
}

.wilken-process-paths__heading-copy {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	max-width: 34rem;
	margin-inline: auto;
}

.wilken-process-paths__heading-mini {
	margin-bottom: clamp(0.35rem, 1vw, 0.5rem);
	width: 100%;
	text-align: center;
}

.wilken-process-paths__kicker {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	margin: 0;
	text-transform: uppercase;
}

.wilken-process-paths__heading-split {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 0.35rem 1rem;
	align-items: baseline;
	width: 100%;
	margin-bottom: clamp(0.15rem, 0.8vw, 0.35rem);
}

.wilken-process-paths__heading-split > .wilken-process-paths__side:first-child {
	justify-self: start;
}

.wilken-process-paths__heading-split > .wilken-process-paths__h2 {
	justify-self: center;
	text-align: center;
}

.wilken-process-paths__heading-split > .wilken-process-paths__side:last-child {
	justify-self: end;
}

.wilken-process-paths__heading-split--no-trailer {
	grid-template-columns: auto minmax(0, 1fr);
}

.wilken-process-paths__heading-split--no-trailer > .wilken-process-paths__h2 {
	justify-self: center;
}

.wilken-process-paths__heading-follow {
	width: 100%;
	text-align: center;
}

@media (max-width: 559px) {
	.wilken-process-paths__heading-copy {
		max-width: none;
		margin-inline: 0;
	}

	.wilken-process-paths__heading-mini {
		text-align: left;
	}

	.wilken-process-paths__heading-split,
	.wilken-process-paths__heading-split--no-trailer {
		grid-template-columns: 1fr;
		align-items: start;
		column-gap: 0;
	}

	.wilken-process-paths__heading-split > .wilken-process-paths__side:first-child,
	.wilken-process-paths__heading-split > .wilken-process-paths__side:last-child,
	.wilken-process-paths__heading-split > .wilken-process-paths__h2,
	.wilken-process-paths__heading-split--no-trailer > .wilken-process-paths__h2 {
		justify-self: start;
		text-align: left;
	}

	.wilken-process-paths__heading-follow {
		text-align: left;
	}
}

.wilken-process-paths__side {
	font-size: clamp(0.95rem, 2vw, 1.1rem);
	font-weight: 600;
	color: #64748b;
	text-transform: lowercase;
}

.wilken-process-paths__h2 {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #0f172a;
}

.wilken-process-paths__h2--second {
	color: #1a5f4a;
}

.wilken-process-item {
	padding: clamp(2rem, 4vw, 3rem) 0;
	border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.wilken-process-item--last {
	border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.wilken-process-item__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

@media (min-width: 900px) {
	.wilken-process-item__grid {
		grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
		gap: clamp(2.25rem, 5vw, 3.5rem);
	}
}

.wilken-process-item__col--title {
	min-width: 0;
}

@media (min-width: 900px) {
	.wilken-process-item__col--title {
		position: sticky;
		top: clamp(4.75rem, 11vh, 6.25rem);
		align-self: start;
		z-index: 3;
		padding: clamp(0.35rem, 1.2vw, 0.65rem) 0;
		box-sizing: border-box;
		max-width: 100%;
	}

	.wilken-process-item__col--title .wilken-process-item__top {
		background: linear-gradient(180deg, rgba(253, 254, 255, 0.98), #fff 92%);
		border-radius: 16px;
		border: 1px solid rgba(15, 23, 42, 0.07);
		box-shadow:
			0 1px 1px rgba(15, 23, 42, 0.04),
			0 16px 40px rgba(15, 23, 42, 0.08);
		padding: clamp(1.15rem, 2.4vw, 1.55rem);
	}

	.wilken-process-item__stack {
		padding: clamp(1.15rem, 2.4vw, 1.55rem);
	}
}

.wilken-process-item__top {
	max-width: 36rem;
}

.wilken-process-item__title-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.55rem 0.85rem;
	margin-bottom: 0.75rem;
}

.wilken-process-item__badge {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.wilken-process-item__title {
	margin: 0;
	font-size: clamp(1.15rem, 2.1vw, 1.45rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #0f172a;
	line-height: 1.12;
	flex: 1 1 auto;
	min-width: 12rem;
}

.wilken-process-item__desc {
	font-size: 1rem;
	line-height: 1.62;
	color: rgba(71, 85, 105, 0.92);
	margin: 0 0 clamp(1.25rem, 2.8vw, 1.85rem);
}

.wilken-process-item__descr-lists {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(0.95rem, 2vw, 1.35rem);
}

.wilken-process-item__descr-list {
	margin: 0;
	padding: clamp(1rem, 2.2vw, 1.25rem) clamp(1rem, 2.5vw, 1.35rem);
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(26, 95, 74, 0.12);
	border-radius: 14px;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 12px 28px rgba(15, 23, 42, 0.06);
}

@media (max-width: 899px) {
	.wilken-process-item__descr-list {
		background: #fff;
	}
}

.wilken-process-item__descr-heading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.65rem;
}

.wilken-process-item__descr-icon {
	flex: 0 0 auto;
	color: #1a5f4a;
	display: flex;
	align-items: center;
}

.wilken-process-item__descr-heading-text {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.wilken-process-item__descr-body {
	margin: 0;
	font-size: 0.905rem;
	line-height: 1.58;
	color: #475569;
}

.wilken-process-item__stack {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 0;
	box-sizing: border-box;
	background: linear-gradient(180deg, rgba(253, 254, 255, 0.98), #fff 92%);
	border-radius: 16px;
	border: 1px solid rgba(15, 23, 42, 0.07);
	box-shadow:
		0 1px 1px rgba(15, 23, 42, 0.04),
		0 16px 40px rgba(15, 23, 42, 0.08);
	padding: clamp(1rem, 3.8vw, 1.55rem);
}

.wilken-process-item__panel {
	padding: clamp(1.25rem, 2.8vw, 1.75rem) 0 clamp(1.35rem, 3vw, 1.85rem);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.wilken-process-item__panel:first-child {
	padding-top: 0;
}

.wilken-process-item__panel--faq {
	border-bottom: none;
	padding-bottom: 0;
}

@media (max-width: 1024px) {
	.wilken-process-item__panel--featured,
	.wilken-process-item__panel--quote {
		display: none;
	}
}

/* Uses blog accordion components (`blog-linked-faq-*`), scoped to capability path cards */
.wilken-process-item__faq-acc .blog-linked-faq-list {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
	gap: 0.62rem;
}

.wilken-process-item__faq-acc .blog-linked-faq-summary {
	padding: clamp(0.85rem, 2vw, 1.05rem) 1rem;
}

.wilken-process-item__faq-acc .blog-linked-faq-details .blog-linked-faq-q {
	font-weight: 700;
	font-size: clamp(0.92rem, 1.7vw, 1.05rem);
	text-transform: none;
	letter-spacing: 0.01em;
	color: #0f172a;
	line-height: 1.42;
}

.wilken-process-item__faq-acc .blog-linked-faq-panel .wilken-cap-faq-panel-teaser .blog-linked-faq-excerpt {
	margin: 0;
}

.wilken-process-item__faq-acc .blog-linked-faq-panel {
	padding: 0 1rem 1rem;
}

.wilken-process-item__faq-acc .blog-linked-faq-body {
	font-size: 0.935rem;
}

.wilken-process-item__faq-acc .blog-linked-faq-body p {
	margin: 0;
}

.wilken-process-item__panel-kicker {
	margin: 0 0 clamp(0.85rem, 2vw, 1rem);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.wilken-process-item__featured-line {
	margin: 0 0 0.6rem;
	font-size: clamp(1rem, 1.85vw, 1.085rem);
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #0f172a;
}

.wilken-process-item__inline-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #1a5f4a;
	border-bottom: 1px solid rgba(26, 95, 74, 0.35);
	text-decoration: none;
	padding-bottom: 0.06rem;
	width: fit-content;
	transition:
		color 0.15s ease,
		border-color 0.15s ease;
}

.wilken-process-item__inline-link:hover,
.wilken-process-item__inline-link:focus-visible {
	color: #0f766e;
	border-bottom-color: rgba(15, 118, 110, 0.55);
}

.wilken-process-item__blockquote {
	margin: 0;
	padding: 0;
	border: none;
}

.wilken-process-item__blockquote-text {
	margin: 0 0 0.75rem;
	font-size: clamp(1rem, 1.9vw, 1.065rem);
	line-height: 1.62;
	font-style: normal;
	font-weight: 600;
	color: #334155;
}

.wilken-process-item__blockquote-byline {
	display: block;
	font-size: 0.71rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #64748b;
}

.wilken-process-item__tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.wilken-process-tag {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #0f172a;
	background: #fff;
	border: 1px solid rgba(26, 95, 74, 0.25);
	border-radius: 999px;
}

.wilken-process-item__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: clamp(1.5rem, 3vw, 2rem) 0 0;
	padding-top: clamp(1.35rem, 2.8vw, 2rem);
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
	.hero-section--full {
		min-height: 90vh;
		min-height: 90dvh;
		padding: 5rem max(1rem, env(safe-area-inset-left)) max(4rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
	}

	.hero-headline {
		font-size: clamp(1.75rem, 6.5vw, 3rem);
	}

	.hero-lottie {
		height: clamp(6rem, 42vw, 45vh);
	}

	.hub-grid {
		grid-template-columns: 1fr;
	}

	.hub-card {
		min-height: 140px;
	}

	.section {
		padding: 2.5rem 1rem;
	}

	.main-navigation .menu {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 380px) {
	.hero-section--full {
		padding-top: 4.5rem;
		padding-bottom: 3.25rem;
	}

	.hero-headline {
		font-size: clamp(1.5rem, 8vw, 2.25rem);
	}

	.hero-eyebrow {
		font-size: 0.6875rem;
		letter-spacing: 0.14em;
	}

	.hero-ctas {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-cta {
		width: 100%;
	}
}

/* AEO direct-answer snippet: in DOM for crawlers, not shown to sighted users */
.wilken-aeo-snippet {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
