/* ==========================================================================
   DrW-Management Theme - Design System
   Premium B2B Consulting / Interim Management
   System Fonts (DSGVO-freundlich, keine externen Google Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens (CSS Custom Properties)
   -------------------------------------------------------------------------- */
:root {
	/* Farben - Markenwelt aus dem Logo abgeleitet */
	--color-navy: #16243f;          /* Hauptfarbe - tiefes Navy */
	--color-navy-700: #1d3358;      /* dunkles Navy fuer Verlaeufe */
	--color-navy-600: #27406b;      /* mittleres Navy */
	--color-anthracite: #222a35;    /* Anthrazit fuer Text */
	--color-accent: #2f8fd0;        /* kuehles Blau (Akzent, aus Logo) */
	--color-accent-dark: #1f6fa8;   /* Akzent Hover */
	--color-accent-soft: #e8f2fa;   /* sehr helle Akzentflaeche */

	--color-bg: #ffffff;            /* Grundflaeche */
	--color-bg-alt: #f5f7fa;        /* sehr helles Grau */
	--color-bg-dark: #16243f;       /* dunkle Sektionen */
	--color-border: #e2e7ee;        /* dezente Linien */

	--color-text: #222a35;          /* Body-Text - sehr guter Kontrast */
	--color-text-muted: #56627a;    /* gedaempfter Text */
	--color-text-light: #f5f7fa;    /* Text auf dunklem Grund */
	--color-text-light-muted: #b9c4d6;

	/* Typografie - System-Font-Stack (keine externen Fonts) */
	--font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
	--font-heading: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;

	--fs-base: 1.0625rem;   /* 17px */
	--fs-sm: 0.9375rem;     /* 15px */
	--fs-lead: 1.1875rem;   /* 19px */
	--lh-base: 1.7;
	--lh-heading: 1.18;

	/* Abstaende (ruhige, grosszuegige Spacing-Skala) */
	--space-2xs: 0.5rem;
	--space-xs: 0.75rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4rem;
	--space-2xl: 6rem;

	/* Layout */
	--container: 1240px;
	--container-narrow: 820px;
	--radius: 10px;
	--radius-sm: 6px;
	--radius-lg: 16px;

	/* Schatten - dezent, hochwertig */
	--shadow-sm: 0 1px 3px rgba(22, 36, 63, 0.06), 0 1px 2px rgba(22, 36, 63, 0.04);
	--shadow-md: 0 6px 24px rgba(22, 36, 63, 0.08);
	--shadow-lg: 0 18px 48px rgba(22, 36, 63, 0.12);

	--header-height: 80px;
	--transition: 220ms ease;
}

/* --------------------------------------------------------------------------
   2. Reset / Base
   -------------------------------------------------------------------------- */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
	margin: 0;
	font-family: var(--font-base);
	font-size: var(--fs-base);
	line-height: var(--lh-base);
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: transparent;
}

/* Sicherheitsnetz gegen horizontalen Scroll auf Mobile. */
/* Auf <html> statt <body>, damit position: sticky am Header funktioniert. */
html {
	overflow-x: clip; /* moderne Browser: kein neuer Scroll-Container */
}

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

a {
	color: var(--color-accent-dark);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-accent);
}

/* Sichtbarer Fokus-Status fuer Tastaturnutzung (Barrierefreiheit) */
:focus-visible {
	outline: 3px solid var(--color-accent);
	outline-offset: 2px;
	border-radius: 2px;
}

/* --------------------------------------------------------------------------
   3. Typografie
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-navy);
	line-height: var(--lh-heading);
	font-weight: 700;
	margin: 0 0 var(--space-sm);
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
	margin: 0 0 var(--space-sm);
}

ul, ol {
	margin: 0 0 var(--space-sm);
	padding-left: 1.3rem;
}

li {
	margin-bottom: 0.4rem;
}

strong {
	color: var(--color-navy);
}

blockquote {
	margin: var(--space-md) 0;
	padding: var(--space-md) var(--space-lg);
	border-left: 4px solid var(--color-accent);
	background: var(--color-bg-alt);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: var(--fs-lead);
	color: var(--color-navy);
}

.eyebrow {
	display: inline-block;
	font-size: var(--fs-sm);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-accent-dark);
	margin-bottom: var(--space-xs);
}

.lead {
	font-size: var(--fs-lead);
	color: var(--color-text-muted);
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. Layout / Container
   -------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--space-md);
}

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

.section {
	padding-block: var(--space-2xl);
}

/* Erste Section direkt nach Page-Hero/Breadcrumbs hat reduzierten Top-Abstand */
.page-hero + .section,
.page-hero + .breadcrumbs + .section {
	padding-top: var(--space-xl);
}

.section--alt {
	background-color: var(--color-bg-alt);
}

.section--dark {
	background-color: var(--color-bg-dark);
	color: var(--color-text-light);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
	color: #fff;
}

.section--dark .lead,
.section--dark p {
	color: var(--color-text-light-muted);
}

.section-head {
	max-width: 760px;
	margin-bottom: var(--space-lg);
}

.section-head--center {
	margin-inline: auto;
	text-align: center;
}

.section-head h2 {
	max-width: 22em;
}

.section-head--center h2 {
	margin-inline: auto;
}

/* Screenreader-only */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--color-navy);
	color: #fff;
	padding: 0.75rem 1.25rem;
	border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
	left: 0;
	color: #fff;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.7rem;
	font-family: var(--font-base);
	font-size: var(--fs-base);
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
	min-height: 52px; /* gute Touch-Groesse */
}

.btn--primary {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
}

.btn--primary:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: #fff;
}

.btn--secondary {
	background: transparent;
	color: var(--color-navy);
	border-color: var(--color-navy);
}

.btn--secondary:hover {
	background: var(--color-navy);
	color: #fff;
}

.btn--light {
	background: #fff;
	color: var(--color-navy);
	border-color: #fff;
}

.btn--light:hover {
	background: var(--color-accent-soft);
	color: var(--color-navy);
}

.btn--ghost-light {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
}

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

.btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

/* --------------------------------------------------------------------------
   6. Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: saturate(180%) blur(8px);
	-webkit-backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--color-border);
	transition: box-shadow var(--transition), background var(--transition);
}

/* Backdrop / Overlay-Hintergrund hinter dem Mobile-Menue.
   WICHTIG: Startet UNTER dem Header (top: --header-height), damit Header
   nicht abgedunkelt wird und der Schliessen-Button klar sichtbar bleibt. */
.menu-backdrop {
	display: none;
	position: fixed;
	top: var(--header-height);
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(22, 36, 63, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
	z-index: 104;
}

.menu-backdrop.is-visible {
	opacity: 1;
	pointer-events: auto;
}

/* Mobile-only CTA am unteren Ende des Drawer-Menues */
.mobile-menu-cta { display: none; }

.site-header.is-scrolled {
	box-shadow: var(--shadow-md);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	min-height: var(--header-height);
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-branding img,
.custom-logo {
	max-height: 52px;
	width: auto;
}

.site-title {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0;
	line-height: 1.1;
}

.site-title a { color: inherit; }

.site-tagline {
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--color-text-muted);
	letter-spacing: 0.02em;
}

/* Hauptnavigation */
.main-navigation .menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
}

.main-navigation a {
	display: block;
	padding: 0.55rem 0.7rem;
	color: var(--color-navy);
	font-weight: 600;
	font-size: 0.98rem;
	line-height: 1.2;
	border-radius: var(--radius-sm);
	position: relative;
	white-space: nowrap; /* verhindert Zeilenumbruch in der Navigation */
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--color-accent-dark);
	background: var(--color-accent-soft);
}

/* Sub-Menue */
.main-navigation .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	padding: 0.4rem;
	list-style: none;
	margin: 0;
	display: none;
	z-index: 120;
}

.main-navigation .menu-item-has-children {
	position: relative;
}

.main-navigation .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children:focus-within > .sub-menu {
	display: block;
}

/* Kompakter Header-CTA: passend zur schlanken Kopfzeile, kein Umbruch */
.header-cta.btn {
	padding: 0.55rem 1.15rem;
	min-height: 0;
	font-size: 0.95rem;
	line-height: 1.2;
	white-space: nowrap;
	flex: 0 0 auto;
}

/* Toggle als Pill-Button mit Text + Icon (Menü / X). */
.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.55rem;
	height: 40px;
	padding: 0 0.9rem 0 1rem;
	background: transparent;
	color: var(--color-navy);
	border: 1.5px solid var(--color-accent);
	border-radius: 999px;
	cursor: pointer;
	font-family: var(--font-base);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.01em;
	position: relative;
	z-index: 110;
	-webkit-appearance: none;
	appearance: none;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
	background: var(--color-accent-soft);
}

.menu-toggle .toggle-label {
	display: inline-block;
}

.menu-toggle .toggle-icon {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.menu-toggle .toggle-icon::before,
.menu-toggle .toggle-icon::after {
	content: "";
	position: absolute;
	left: 1px;
	right: 1px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: top 220ms ease, bottom 220ms ease, transform 220ms ease;
}

.menu-toggle .toggle-icon::before { top: 4px; }
.menu-toggle .toggle-icon::after  { bottom: 4px; }

/* Offen: 2 Linien rotieren zur Mitte und kreuzen sich zum X. */
.menu-toggle[aria-expanded="true"] .toggle-icon::before {
	top: 7px;
	transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .toggle-icon::after {
	bottom: 7px;
	transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	background:
		radial-gradient(ellipse at top right, rgba(47, 143, 208, 0.22), transparent 55%),
		linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-600) 100%);
	color: #fff;
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../img/hero-pattern.svg");
	background-size: cover;
	background-position: center right;
	opacity: 0.28;
	pointer-events: none;
}

/* Sanfter Verlauf vom Hero in die helle Trust-Bar (kein harter Cut) */
.hero::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 90px;
	background: linear-gradient(to bottom, rgba(22, 36, 63, 0), rgba(245, 247, 250, 0.6));
	pointer-events: none;
	z-index: 1;
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: var(--space-xl);
	align-items: center;
	padding-block: clamp(4rem, 9vw, 7.5rem);
}

.hero-content h1 {
	color: #fff;
	margin-bottom: var(--space-md);
	max-width: 14em;
}

.hero-content .eyebrow {
	color: var(--color-accent);
}

.hero-subtitle {
	font-size: var(--fs-lead);
	color: var(--color-text-light-muted);
	margin-bottom: var(--space-lg);
	max-width: 36em;
}

.hero-visual {
	position: relative;
}

.hero-visual img,
.hero-visual svg {
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	border-radius: var(--radius-lg);
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

/* --------------------------------------------------------------------------
   8. Trust / Key Facts Leiste
   -------------------------------------------------------------------------- */
.trust-bar {
	background: var(--color-bg-alt);
	border-bottom: 1px solid var(--color-border);
	position: relative;
	z-index: 3;
	margin-top: -1px; /* keine 1px-Lücke zum Hero */
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-md);
	padding-block: var(--space-lg);
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	min-width: 0; /* erlaubt Text-Truncation/Umbruch ohne Overflow */
}

.trust-item .icon {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	color: var(--color-accent);
}

.trust-item strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-navy);
	line-height: 1.3;
	letter-spacing: -0.005em;
}

.trust-item span {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	line-height: 1.4;
}

/* --------------------------------------------------------------------------
   9. Cards / Grid
   -------------------------------------------------------------------------- */
.grid {
	display: grid;
	gap: var(--space-md);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-lg);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-accent);
}

.card-icon {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	background: var(--color-accent-soft);
	color: var(--color-accent-dark);
	margin-bottom: var(--space-sm);
}

.card-icon svg {
	width: 26px;
	height: 26px;
	flex: 0 0 auto;
}

.card h3 {
	margin-bottom: var(--space-2xs);
	font-size: 1.2rem;
	/* Reserviert Platz fuer 2 Zeilen, damit der Folge-Absatz in allen Karten
	   auf gleicher Hoehe beginnt (auch wenn die Headline nur 1 Zeile hat). */
	min-height: calc(2em * var(--lh-heading));
}

.card p {
	color: var(--color-text-muted);
	font-size: var(--fs-sm);
	margin-bottom: 0;
}

.card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: var(--space-sm);
	font-weight: 600;
	font-size: var(--fs-sm);
	align-self: flex-start;
}

/* Pfeil-Icon in Text-Links klein und konstant halten */
.card-link svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

/* Sicherheitsnetz: Inline-Icons schrumpfen nicht und bleiben begrenzt */
svg.icon,
svg.check {
	flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   10. "Warum DrW" / Feature-Liste
   -------------------------------------------------------------------------- */
.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--space-sm);
}

.feature-list li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	margin: 0;
}

.feature-list .check {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	color: var(--color-accent);
	margin-top: 2px;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	align-items: start;
}

/* Variante mit vertikal zentrierten Spalten (z. B. Teaser-Sektionen) */
.split--center {
	align-items: center;
}

/* --------------------------------------------------------------------------
   11. Branchen / Tags
   -------------------------------------------------------------------------- */
.industry-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.75rem;
}

.industry-item {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1rem 1.15rem;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.3;
	color: var(--color-navy);
	min-width: 0;
}

.industry-item span:last-child {
	min-width: 0;
	flex: 1 1 auto;
}

.industry-item .icon {
	width: 22px;
	height: 22px;
	color: var(--color-accent);
	flex: 0 0 auto;
}

/* In schmalen Containern (z. B. .split rechte Spalte) zweispaltig */
.split .industry-grid {
	grid-template-columns: repeat(2, 1fr);
}

/* --------------------------------------------------------------------------
   12. Team
   -------------------------------------------------------------------------- */
.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
}

.team-card {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-md);
	box-shadow: var(--shadow-sm);
	height: 100%;
}

/* Inner Container der Team-Karte: Flex-Column, damit der "Profil ansehen"-Link
   per margin-top: auto sauber an die Unterkante geschoben wird – Buttons auf gleicher Hoehe. */
.team-card > div {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

/* H3-Name reserviert immer 1 Zeile, Role-Span reserviert 2 Zeilen ->
   p und Link starten in allen Karten auf gleicher Y-Position. */
.team-card h3 {
	min-height: calc(1.2em * var(--lh-heading));
}

.team-card .role {
	min-height: calc(2em * 1.4);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.team-card .photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--radius-sm);
	background: var(--color-bg-alt);
	margin-bottom: var(--space-sm);
}

.team-card h3 {
	margin-bottom: 0.15rem;
}

.team-card .role {
	color: var(--color-accent-dark);
	font-weight: 600;
	font-size: var(--fs-sm);
	margin-bottom: var(--space-xs);
	display: block;
}

.team-card p {
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
}

/* Profil-Seite: Karriere-/Werdegang-Liste */
.career-list {
	list-style: none;
	padding: 0;
	margin: var(--space-sm) 0 var(--space-lg);
	display: grid;
	gap: var(--space-md);
}

.career-item {
	border-left: 3px solid var(--color-accent);
	padding: 0.15rem 0 0.15rem var(--space-md);
	margin: 0;
}

.career-item header { margin-bottom: 0.35rem; }

.career-item .career-company {
	display: block;
	color: var(--color-navy);
	font-weight: 700;
	font-size: 1.02rem;
	line-height: 1.3;
}

.career-item .career-role {
	display: block;
	color: var(--color-accent-dark);
	font-weight: 600;
	font-size: var(--fs-sm);
	line-height: 1.4;
}

.career-item .career-meta {
	display: block;
	font-size: 0.82rem;
	color: var(--color-text-muted);
	letter-spacing: 0.02em;
	margin-top: 0.15rem;
}

.career-item p {
	font-size: var(--fs-sm);
	color: var(--color-text);
	margin: 0.4rem 0 0;
	line-height: 1.55;
}

.career-item ul {
	font-size: var(--fs-sm);
	margin: 0.4rem 0 0;
	padding-left: 1.1rem;
}

.career-item ul li { margin-bottom: 0.2rem; }

.education-list {
	list-style: none;
	padding: 0;
	margin: var(--space-sm) 0 var(--space-md);
	display: grid;
	gap: var(--space-sm);
}

.education-list li {
	background: var(--color-bg-alt);
	border-radius: var(--radius-sm);
	padding: var(--space-sm) var(--space-md);
	margin: 0;
	font-size: var(--fs-sm);
	line-height: 1.5;
}

.education-list strong {
	display: block;
	color: var(--color-navy);
	font-size: 1rem;
	margin-bottom: 0.1rem;
}

.education-list .edu-meta {
	display: block;
	color: var(--color-text-muted);
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	margin-top: 0.15rem;
}

/* Profil-Seite */
.profile-header {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: var(--space-xl);
	align-items: start;
}

.profile-header .photo {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.profile-meta {
	list-style: none;
	padding: 1.25rem;
	margin: var(--space-md) 0 0;
	display: grid;
	gap: 0.6rem;
	background: var(--color-bg-alt);
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
}

.profile-meta li {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1rem;
	font-size: var(--fs-sm);
	line-height: 1.5;
	margin: 0;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--color-border);
}

.profile-meta li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.profile-meta .label {
	font-weight: 700;
	color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   13. Case Study
   -------------------------------------------------------------------------- */
.case-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-md);
	counter-reset: step;
}

.case-step {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-lg);
	position: relative;
}

.case-step::before {
	counter-increment: step;
	content: counter(step);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--color-navy);
	color: #fff;
	font-weight: 700;
	margin-bottom: var(--space-sm);
}

.case-step h3 {
	font-size: 1.15rem;
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.metric {
	padding: 1.25rem 1rem;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.metric:first-child {
	border-left: none;
	padding-left: 0;
}

.metric .value {
	display: block;
	font-size: clamp(1.5rem, 1.8vw, 1.85rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	white-space: nowrap;
	letter-spacing: -0.01em;
}

.metric .label {
	font-size: 0.85rem;
	color: var(--color-text-light-muted);
	display: block;
	line-height: 1.4;
	letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   14. CTA-Sektion
   -------------------------------------------------------------------------- */
.cta-band {
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-600) 100%);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	text-align: center;
}

.cta-band h2 {
	color: #fff;
	max-width: 22em;
	margin-inline: auto;
}

.cta-band p {
	color: var(--color-text-light-muted);
	max-width: 40em;
	margin-inline: auto;
	margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   15. Kontakt
   -------------------------------------------------------------------------- */
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: var(--space-xl);
	align-items: start;
}

.contact-info {
	list-style: none;
	padding: 0;
	margin: var(--space-md) 0 0;
	display: grid;
	gap: var(--space-md);
}

.contact-info li {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	margin: 0;
}

.contact-info .icon {
	width: 26px;
	height: 26px;
	color: var(--color-accent);
	flex: 0 0 auto;
	margin-top: 3px;
}

.contact-info .label {
	display: block;
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
}

.contact-info a {
	font-weight: 600;
	color: var(--color-navy);
	font-size: 1.05rem;
}

/* Formular (statisches Markup, ohne Plugin-Abhaengigkeit) */
.contact-form {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-lg);
	box-shadow: var(--shadow-sm);
}

.form-row {
	margin-bottom: var(--space-md);
}

.form-row label {
	display: block;
	font-weight: 600;
	color: var(--color-navy);
	margin-bottom: 0.4rem;
	font-size: var(--fs-sm);
}

.form-row input,
.form-row textarea,
.form-row select {
	width: 100%;
	padding: 0.85rem 1rem;
	font-family: inherit;
	font-size: var(--fs-base);
	color: var(--color-text);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-bg-alt);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(47, 143, 208, 0.18);
	outline: none;
	background: #fff;
}

.form-row textarea {
	min-height: 150px;
	resize: vertical;
}

.form-consent {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
}

.form-consent input {
	width: auto;
	margin-top: 4px;
}

.form-note {
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
	background: var(--color-accent-soft);
	border-radius: var(--radius-sm);
	padding: var(--space-sm) var(--space-md);
	margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   Contact Form 7 - Integration in das Theme-Form-Styling
   -------------------------------------------------------------------------- */
.contact-form--cf7 .wpcf7-form p {
	margin: 0 0 var(--space-md);
}

.contact-form--cf7 .wpcf7-form label {
	display: block;
	font-weight: 600;
	color: var(--color-navy);
	margin-bottom: 0.4rem;
	font-size: var(--fs-sm);
}

.contact-form--cf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.contact-form--cf7 input.wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.contact-form--cf7 textarea.wpcf7-form-control,
.contact-form--cf7 select.wpcf7-form-control {
	width: 100%;
	padding: 0.85rem 1rem;
	font-family: inherit;
	font-size: var(--fs-base);
	color: var(--color-text);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-bg-alt);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form--cf7 input.wpcf7-form-control:focus,
.contact-form--cf7 textarea.wpcf7-form-control:focus,
.contact-form--cf7 select.wpcf7-form-control:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(47, 143, 208, 0.18);
	outline: none;
	background: #fff;
}

.contact-form--cf7 textarea.wpcf7-form-control {
	min-height: 150px;
	resize: vertical;
}

/* CF7 Acceptance/Checkbox-Zeile (DSGVO) */
.contact-form--cf7 .wpcf7-acceptance label,
.contact-form--cf7 .wpcf7-checkbox label {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	font-weight: 400;
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
	cursor: pointer;
}

.contact-form--cf7 .wpcf7-acceptance input,
.contact-form--cf7 .wpcf7-checkbox input {
	width: auto;
	margin-top: 4px;
	flex: 0 0 auto;
}

/* Submit-Button - greift auf .btn styles zurueck */
.contact-form--cf7 .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.7rem;
	font-family: var(--font-base);
	font-size: var(--fs-base);
	font-weight: 600;
	line-height: 1.1;
	border: 2px solid var(--color-accent);
	border-radius: var(--radius-sm);
	background: var(--color-accent);
	color: #fff;
	cursor: pointer;
	min-height: 52px;
	transition: background var(--transition), border-color var(--transition);
}

.contact-form--cf7 .wpcf7-submit:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
}

.contact-form--cf7 .wpcf7-spinner {
	margin: 0 0 0 0.75rem;
}

/* CF7 Response-Messages */
.contact-form--cf7 .wpcf7 form .wpcf7-response-output,
.contact-form--cf7 .wpcf7-response-output {
	margin: var(--space-md) 0 0;
	padding: var(--space-sm) var(--space-md);
	border-radius: var(--radius-sm);
	border-width: 1px;
	border-style: solid;
	font-size: var(--fs-sm);
}

.contact-form--cf7 .wpcf7 form.sent .wpcf7-response-output {
	border-color: #2f8d4a;
	background: #ecf7ee;
	color: #1f5a30;
}

.contact-form--cf7 .wpcf7 form.invalid .wpcf7-response-output,
.contact-form--cf7 .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form--cf7 .wpcf7 form.failed .wpcf7-response-output {
	border-color: #c0392b;
	background: #fdecea;
	color: #832119;
}

/* CF7 Validation-Tips an den Feldern */
.contact-form--cf7 .wpcf7-not-valid-tip {
	color: #c0392b;
	font-size: var(--fs-sm);
	margin-top: 0.3rem;
	display: block;
}

.contact-form--cf7 .wpcf7-not-valid {
	border-color: #c0392b !important;
}

/* Page-Header */
.page-hero {
	background:
		radial-gradient(ellipse at top right, rgba(47, 143, 208, 0.10), transparent 60%),
		linear-gradient(180deg, #f8fafd 0%, var(--color-bg-alt) 100%);
	border-bottom: 1px solid var(--color-border);
	padding-block: clamp(3rem, 6vw, 4.5rem);
	text-align: center;
}

.page-hero .container {
	max-width: 880px;
}

.page-hero .eyebrow {
	margin-bottom: var(--space-2xs);
}

.page-hero h1 {
	margin-bottom: var(--space-sm);
	max-width: 18em;
	margin-inline: auto;
}

.page-hero .lead {
	max-width: 44em;
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
   17. Beitraege / News / Archive
   -------------------------------------------------------------------------- */
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-lg);
}

.post-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
	display: flex;
	flex-direction: column;
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.post-card .thumb {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	background: var(--color-bg-alt);
}

.post-card .post-body {
	padding: var(--space-md);
	display: flex;
	flex-direction: column;
	flex: 1;
}

.post-card .post-meta {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
}

.post-card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.post-card .excerpt {
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
	margin-bottom: var(--space-sm);
}

.post-card .card-link {
	margin-top: auto;
}

/* Single Post */
.entry-content {
	font-size: var(--fs-base);
}

.entry-content h2 { margin-top: var(--space-lg); }
.entry-content h3 { margin-top: var(--space-md); }

.entry-content img {
	border-radius: var(--radius);
	margin-block: var(--space-md);
}

.entry-header {
	margin-bottom: var(--space-lg);
}

.entry-meta {
	color: var(--color-text-muted);
	font-size: var(--fs-sm);
	margin-bottom: var(--space-sm);
}

/* Pagination */
.pagination {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: var(--space-xl);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.75rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-navy);
	font-weight: 600;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--color-navy);
	color: #fff;
	border-color: var(--color-navy);
}

/* Empty-State Card (z. B. News-Seite ohne Beitraege) */
.empty-state {
	max-width: 640px;
	margin-inline: auto;
	padding: var(--space-xl) var(--space-lg);
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	text-align: center;
}

.empty-state-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto var(--space-md);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-accent-soft);
	color: var(--color-accent-dark);
	border-radius: 50%;
}

.empty-state-icon svg {
	width: 32px;
	height: 32px;
}

.empty-state h2 {
	margin-bottom: var(--space-sm);
}

.empty-state .lead {
	margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   18. 404
   -------------------------------------------------------------------------- */
.error-404 {
	text-align: center;
	padding-block: var(--space-2xl);
}

.error-404 .code {
	font-size: clamp(4rem, 12vw, 8rem);
	font-weight: 800;
	color: var(--color-accent-soft);
	line-height: 1;
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--color-navy);
	color: var(--color-text-light-muted);
	padding-top: var(--space-2xl);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: var(--space-lg);
	padding-bottom: var(--space-xl);
}

.site-footer h4 {
	color: #fff;
	font-size: 1.05rem;
	margin-bottom: var(--space-sm);
}

.site-footer p {
	color: var(--color-text-light-muted);
	font-size: var(--fs-sm);
}

.footer-brand .footer-logo {
	max-height: 56px;
	width: auto;
	margin-bottom: var(--space-md);
	/* Logo auf dunklem Grund: weisser Hintergrund-Chip fuer Lesbarkeit */
	background: #fff;
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.5rem;
}

.footer-menu a {
	color: var(--color-text-light-muted);
	font-size: var(--fs-sm);
}

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

.footer-contact a {
	color: #fff;
	font-weight: 600;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-block: var(--space-md);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-sm);
	font-size: var(--fs-sm);
}

.footer-bottom .legal-links {
	display: flex;
	gap: var(--space-md);
	list-style: none;
	padding: 0;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Footer-Credit "Website erstellt von CompleteOne"
   -------------------------------------------------------------------------- */
.footer-credit {
	background: rgba(0, 0, 0, 0.18);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-block: var(--space-md);
	text-align: center;
}

.credit-link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--color-text-light-muted);
	font-size: var(--fs-sm);
	font-weight: 500;
	letter-spacing: 0.01em;
	transition: color var(--transition);
	padding: 0.35rem 0.5rem;
	border-radius: var(--radius-sm);
}

.credit-link:hover,
.credit-link:focus-visible {
	color: #fff;
}

.credit-link:hover .c1-letter,
.credit-link:focus-visible .c1-letter {
	color: var(--color-accent);
}

.credit-link:hover .c1-number,
.credit-link:focus-visible .c1-number {
	color: #fff;
}

/* C1-Logo: SVG-Schriftzug auf weisser, abgerundeter Flaeche */
.credit-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 12px;
	padding: 12px 22px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
	transition: transform var(--transition), box-shadow var(--transition);
}

.credit-link:hover .credit-logo,
.credit-link:focus-visible .credit-logo {
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.credit-logo img {
	display: block;
	height: 60px;
	width: auto;
	max-width: 100%;
}

/* Auf Desktop: C1-Logo sichtbar, Textname versteckt.
   Auf Mobile: stattdessen Textname "CompleteOne" als Klartext. */
.credit-name {
	display: none;
	color: #fff;
	font-weight: 700;
}

@media (max-width: 560px) {
	.credit-logo {
		display: none;
	}
	.credit-name {
		display: inline;
	}
	.credit-link {
		font-size: var(--fs-sm);
	}
}

/* --------------------------------------------------------------------------
   20. Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.hero-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
	.hero-visual { max-width: 520px; }
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.trust-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
	:root { --space-2xl: 4rem; --space-xl: 3rem; --header-height: 64px; }

	/* WICHTIG: backdrop-filter erzeugt einen Containing-Block fuer position:fixed.
	   Auf Mobile deaktivieren, damit das mobile Overlay-Menue korrekt zum Viewport
	   positioniert wird. Zusaetzlich verschiebt das Inline-JS die Nav ans Body-Ende. */
	.site-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: #fff;
	}

	/* Logo auf Mobile etwas kleiner -> kompakter Header */
	.site-branding img,
	.custom-logo { max-height: 42px; }

	/* Mobile-Navigation */
	.menu-toggle { display: flex; }

	.header-cta { display: none; }

	/* Full-width dark Overlay-Menue - kein Backdrop noetig, da Menue opak. */
	.menu-backdrop { display: none; }

	.main-navigation {
		position: fixed;
		top: var(--header-height);
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		background: var(--color-navy);
		color: #fff;
		transform: translateY(-12px);
		opacity: 0;
		transition: transform 260ms ease, opacity 220ms ease;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: var(--space-md) 0 calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
		visibility: hidden;
		pointer-events: none;
		z-index: 105;
		-webkit-overflow-scrolling: touch;
		display: flex;
		flex-direction: column;
	}

	.main-navigation.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.main-navigation .menu {
		list-style: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		flex: 0 0 auto;
		margin: 0;
		padding: 0;
	}

	.main-navigation .menu > li {
		margin: 0;
	}

	/* Grosse, fette weisse Items, klare Trennlinien */
	.main-navigation a {
		padding: 1.15rem var(--space-md);
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 1.2;
		letter-spacing: -0.005em;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 0;
		white-space: normal;
		min-height: 56px;
		display: flex;
		align-items: center;
		background: transparent;
		color: #fff;
	}

	.main-navigation a:hover,
	.main-navigation a:focus-visible,
	.main-navigation .current-menu-item > a,
	.main-navigation .current_page_item > a {
		background: transparent;
		color: var(--color-accent);
	}

	.main-navigation .sub-menu {
		position: static;
		display: block;
		box-shadow: none;
		border: none;
		padding: 0;
		margin: 0;
		background: rgba(255, 255, 255, 0.04);
		list-style: none;
	}

	.main-navigation .sub-menu a {
		padding-left: calc(var(--space-md) + 1.25rem);
		font-size: 1.1rem;
		font-weight: 500;
		min-height: 48px;
		color: rgba(255, 255, 255, 0.85);
	}

	/* CTA am Ende des Menues - Accent-Pill-Button, NICHT margin-top: auto
	   (im Layout der Referenz steht der Button direkt nach den Items). */
	.mobile-menu-cta {
		display: block;
		padding: var(--space-lg) var(--space-md) 0;
	}

	.mobile-menu-cta .btn {
		width: auto;
		display: inline-flex;
		background: var(--color-accent);
		color: #fff;
		border-color: var(--color-accent);
		border-radius: 999px;
		padding: 0.85rem 1.6rem;
		min-height: 48px;
		font-weight: 600;
		box-shadow: 0 6px 18px rgba(47, 143, 208, 0.35);
	}

	.mobile-menu-cta .btn:hover {
		background: var(--color-accent-dark);
		border-color: var(--color-accent-dark);
	}

	.split,
	.contact-grid,
	.profile-header {
		grid-template-columns: 1fr;
	}

	.team-grid { grid-template-columns: repeat(2, 1fr); }

	.grid--2,
	.grid--3,
	.case-steps,
	.metric-grid {
		grid-template-columns: 1fr;
	}

	/* Metriken im gestapelten Layout: vertikale Trennlinien werden zu horizontalen */
	.metric {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding: var(--space-sm) 0 0;
	}
	.metric:first-child {
		border-top: none;
		padding-top: 0;
	}

	/* Profil-Meta: Label-Spalte etwas schmaler auf Tablet, aber ausreichend fuer "Schwerpunkte" */
	.profile-meta li {
		grid-template-columns: 105px 1fr;
		gap: 0.85rem;
	}

	/* Cards bekommen auf kleinen Screens etwas weniger Padding */
	.card { padding: var(--space-md); }

	.cta-band { padding: var(--space-lg); }
}

@media (max-width: 560px) {
	:root { --fs-base: 1rem; }

	/* Container-Padding etwas reduzieren - mehr Inhaltsbreite auf 320-360 px */
	.container { padding-inline: 1.1rem; }

	.grid--4,
	.trust-grid,
	.footer-grid,
	.post-grid,
	.industry-grid,
	.team-grid {
		grid-template-columns: 1fr;
	}

	/* Auch im .split-Kontext auf Phone einspaltig (statt erzwungen 2 Spalten) */
	.split .industry-grid {
		grid-template-columns: 1fr;
	}

	/* Profil-Meta auf Phone komplett einspaltig fuer bessere Lesbarkeit */
	.profile-meta li {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	/* Section-Padding auf Phone weiter reduzieren - kein Leerraum-Overkill */
	.section { padding-block: var(--space-xl); }

	/* Hero-Visual auf Phone: weichere Schatten, kein Ueberlauf */
	.hero-visual img,
	.hero-visual svg { filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3)); }

	/* Hero-Headline darf auf Phone enger sitzen */
	.hero-content h1 { max-width: none; }

	/* Cards: noch etwas weniger Padding */
	.card { padding: 1.25rem; }
	.card h3 { min-height: 0; } /* gleiche Hoehen-Reservierung auf Phone unnoetig (single column) */

	/* Team-Card auf Phone: Foto darf nicht ganzen Screen fuellen */
	.team-card .photo { aspect-ratio: 16 / 12; }

	/* Profile-Header Bild: nicht uebermaessig hoch auf Phone */
	.profile-header .photo { aspect-ratio: 4 / 5; }

	.btn { width: 100%; }
	.btn-group .btn { width: 100%; }

	.footer-bottom { flex-direction: column; align-items: flex-start; }

	/* Footer-Bottom legal-links auf Phone unter Copyright stapeln */
	.footer-bottom .legal-links { flex-wrap: wrap; gap: var(--space-sm); }

	/* page-hero Padding kompakter auf Phone */
	.page-hero { padding-block: clamp(2rem, 6vw, 3rem); }

	/* h1 etwas kleiner-startend, da clamp-Untergrenze 2rem auf Phone sehr gross wirkt */
	h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}

/* --------------------------------------------------------------------------
   22. Reduced Motion (Barrierefreiheit)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

/* Print */
@media print {
	.site-header, .site-footer, .cta-band, .menu-toggle { display: none; }
	body { color: #000; }
}
