/**
 * Rohrreinigung Schäfer – Komponenten (HTML-Version)
 * Modernisierter Look, gleicher Wiedererkennungswert.
 */

@keyframes schaefer-fade-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes schaefer-fade-in-up {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

.schaefer-btn,
.schaefer-child-theme a.schaefer-cta-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--btn-min-height);
	padding: 14px 28px;
	font-size: var(--text-base);
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--text-inverse);
	background-color: var(--brand-primary);
	border: none;
	border-radius: var(--radius);
	text-decoration: none;
	transition: transform var(--duration-fast) var(--ease), box-shadow var(--duration-normal) var(--ease), background-color var(--duration-fast) var(--ease);
	white-space: nowrap;
}
.schaefer-btn:hover,
.schaefer-child-theme a.schaefer-cta-primary:hover {
	background-color: var(--brand-primary-hover);
	color: var(--text-inverse);
}
.schaefer-btn:active,
.schaefer-child-theme a.schaefer-cta-primary:active { opacity: 0.95; }
.schaefer-btn:focus-visible,
.schaefer-child-theme a.schaefer-cta-primary:focus-visible {
	outline: 2px solid var(--brand-secondary);
	outline-offset: 2px;
}
.schaefer-btn-secondary {
	background: var(--surface);
	color: var(--brand-primary);
	border: 2px solid var(--border-strong);
}
.schaefer-btn-secondary:hover {
	background: rgba(var(--brand-primary-rgb), 0.06);
	border-color: var(--brand-primary);
	color: var(--brand-primary);
}
.schaefer-btn-wa {
	background: var(--brand-whatsapp) !important;
	border: none !important;
	min-height: var(--btn-min-height);
}
.schaefer-btn-wa:hover {
	background: #20bd5a !important;
	color: var(--text-inverse) !important;
}

.schaefer-cta-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-1); }
.schaefer-cta-tel { font-size: var(--text-sm); color: var(--text-muted); }
.schaefer-cta-tel a { color: inherit; text-decoration: none; }

/* ========== Site-Header (zwei Zeilen, professionell) ========== */
.schaefer-child-theme .site-header {
	position: sticky;
	top: 0;
	z-index: 1020;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
}
.schaefer-child-theme .header-top {
	border-bottom: 1px solid var(--border);
}
.schaefer-child-theme .header-inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	min-height: 72px;
}
.schaefer-child-theme .header-logo {
	display: block;
	flex-shrink: 0;
}
.schaefer-child-theme .header-logo img {
	height: 44px;
	width: auto;
	display: block;
	transition: opacity var(--duration-fast) var(--ease);
}
.schaefer-child-theme .header-logo:hover img { opacity: 0.85; }
.schaefer-child-theme .header-logo:focus-visible {
	outline: 2px solid var(--brand-primary);
	outline-offset: 4px;
	border-radius: var(--radius);
}
.schaefer-child-theme .header-cta {
	display: none;
	align-items: center;
	gap: var(--space-4);
	flex-shrink: 0;
}
@media (min-width: 992px) {
	.schaefer-child-theme .header-cta { display: flex; }
}
.schaefer-child-theme .header-phone {
	font-size: var(--text-base);
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--duration-fast) var(--ease);
}
.schaefer-child-theme .header-phone:hover { color: var(--brand-primary); }
.schaefer-child-theme .header-cta .header-btn {
	padding: 10px 20px;
	font-size: var(--text-sm);
	min-height: 40px;
}
.schaefer-child-theme .header-toggle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	cursor: pointer;
	transition: background var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}
.schaefer-child-theme .header-toggle:hover {
	background: var(--surface-alt);
	border-color: var(--border-strong);
}
.schaefer-child-theme .header-toggle .icon-bar {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text);
	margin: 3px 0;
	border-radius: 1px;
}
@media (min-width: 992px) {
	.schaefer-child-theme .header-toggle { display: none; }
}
/* Zeile 2: Navigationsleiste */
.schaefer-child-theme .header-nav-wrap {
	background: var(--surface);
	border-bottom: 1px solid var(--border);
}
.schaefer-child-theme .header-inner + .header-nav-wrap { display: block; }
.schaefer-child-theme .header-nav {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}
@media (min-width: 992px) {
	.schaefer-child-theme .header-nav {
		display: block;
	}
	.schaefer-child-theme .header-nav.collapse { display: block !important; }
	.schaefer-child-theme .header-nav-list {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0;
		list-style: none;
		margin: 0;
		padding: var(--space-3) 0;
	}
	.schaefer-child-theme .header-nav-list li { margin: 0; }
	.schaefer-child-theme .header-nav-list a {
		display: block;
		font-size: var(--text-sm);
		font-weight: 500;
		color: var(--text);
		text-decoration: none;
		padding: var(--space-3) var(--space-4);
		border-radius: var(--radius);
		transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
		white-space: nowrap;
	}
	.schaefer-child-theme .header-nav-list a:hover {
		background: var(--surface);
		color: var(--brand-primary);
	}
	.schaefer-child-theme .header-nav-list .active > a,
	.schaefer-child-theme .header-nav .active a {
		background: rgba(var(--brand-primary-rgb), 0.12);
		color: var(--brand-primary);
		font-weight: 600;
	}
	.schaefer-child-theme .header-nav-list a:focus-visible {
		outline: 2px solid var(--brand-primary);
		outline-offset: 2px;
	}
	.schaefer-child-theme .header-nav-cta-mobile { display: none; }
}
@media (max-width: 991px) {
	.schaefer-child-theme .header-nav-wrap { border-bottom: none; }
	.schaefer-child-theme .header-nav.collapse { display: none; }
	.schaefer-child-theme .header-nav.collapse.in {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--surface);
		border-top: 1px solid var(--border);
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
		z-index: 1010;
		max-height: calc(100vh - 64px);
		overflow-y: auto;
	}
	.schaefer-child-theme .header-nav-wrap { position: static; }
	.schaefer-child-theme .header-nav.in {
		padding: var(--space-4);
	}
	.schaefer-child-theme .header-nav-list {
		list-style: none;
		margin: 0 0 var(--space-4);
		padding: 0;
		border-bottom: 1px solid var(--border);
		padding-bottom: var(--space-4);
	}
	.schaefer-child-theme .header-nav-list li { margin: 0; }
	.schaefer-child-theme .header-nav-list a {
		display: block;
		padding: var(--space-4);
		font-size: var(--text-base);
		color: var(--text);
		text-decoration: none;
		border-radius: var(--radius);
		transition: background var(--duration-fast) var(--ease);
	}
	.schaefer-child-theme .header-nav-list a:hover {
		background: var(--surface-alt);
		color: var(--brand-primary);
	}
	.schaefer-child-theme .header-nav-cta-mobile {
		display: flex;
		flex-direction: column;
		gap: var(--space-3);
	}
	.schaefer-child-theme .header-nav-cta-mobile .header-phone {
		font-size: var(--text-lg);
	}
	.schaefer-child-theme .header-nav-cta-mobile .schaefer-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Legacy Navbar (falls andere Seiten noch .navbar nutzen) */
.schaefer-child-theme .navbar.navbar-default {
	position: sticky;
	top: 0;
	z-index: 1020;
	margin-top: 0;
	background: var(--surface) !important;
	border-bottom: 1px solid var(--border);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
	transition: box-shadow var(--duration-fast) var(--ease);
}
@media (max-width: 991px) {
	.schaefer-child-theme .navbar.navbar-default {
		position: relative;
	}
	.schaefer-child-theme .navbar .container-fluid {
		position: relative;
	}
}
.schaefer-child-theme .navbar .container-fluid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-4);
	min-height: 72px;
}
.schaefer-child-theme .navbar-header {
	flex-shrink: 0;
}
.schaefer-child-theme .navbar-header .img-responsive {
	max-height: 48px;
	width: auto;
	transition: opacity var(--duration-fast) var(--ease);
}
.schaefer-child-theme .navbar-header .img-responsive:hover { opacity: 0.85; }
.schaefer-child-theme .navbar-header .logo-link:focus-visible {
	outline: 2px solid var(--brand-primary);
	outline-offset: 4px;
	border-radius: var(--radius);
}
.schaefer-child-theme .navbar .col-md-10 {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	min-width: 0;
	gap: var(--space-6);
}
.schaefer-child-theme #bs-example-navbar-collapse-1 {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
	justify-content: space-between;
}
/* Navigationsleiste – klare Zeile, einheitliche Abstände */
.schaefer-child-theme .navbar .rohr {
	background: transparent;
	border-radius: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-1) 0;
	margin: 0;
	list-style: none;
}
.schaefer-child-theme .navbar .navbar-nav > li.schaefer-nav-cta-item {
	border-left: 1px solid var(--border);
	margin-left: var(--space-2);
	padding-left: var(--space-4);
}
.schaefer-child-theme .navbar .navbar-nav > li {
	margin: 0;
}
.schaefer-child-theme .navbar .navbar-nav > li > a {
	font-size: var(--text-sm);
	font-weight: 500;
	padding: var(--space-2) var(--space-3);
	color: var(--text);
	text-decoration: none;
	border-radius: var(--radius);
	transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
	white-space: nowrap;
}
.schaefer-child-theme .navbar .navbar-nav > li > a:hover {
	background: var(--surface-alt);
	color: var(--brand-primary);
}
.schaefer-child-theme .navbar .navbar-nav > .active > a {
	background: rgba(var(--brand-primary-rgb), 0.1);
	color: var(--brand-primary);
	font-weight: 600;
}
.schaefer-child-theme .navbar .navbar-nav > li > a:focus-visible {
	outline: 2px solid var(--brand-primary);
	outline-offset: 2px;
}
/* CTA-Bereich rechts – klar getrennt */
.schaefer-header-cta {
	display: none;
	align-items: center;
	gap: var(--space-3);
	flex-shrink: 0;
}
.schaefer-header-cta .schaefer-cta-wrap {
	align-items: flex-end;
}
.schaefer-header-cta .schaefer-btn {
	margin: 0;
	padding: 10px 20px;
	font-size: var(--text-sm);
	min-height: 40px;
}
.schaefer-nav-cta-item {
	list-style: none;
	margin: 0;
}
.footer .schaefer-nav-cta-item { display: none !important; }
@media (min-width: 992px) {
	.schaefer-header-cta { display: flex; }
}
@media (max-width: 991px) {
	.navbar .schaefer-nav-cta-item { display: none !important; }
	.schaefer-child-theme .navbar .navbar-nav > li.schaefer-nav-cta-item {
		border-left: none;
		margin-left: 0;
		padding-left: 0;
	}
}

/* Bottom-Bar (Mobile) – modern */
.bottom-bar,
.schaefer-bottom-callbar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1010;
	background: var(--surface);
	border-top: 1px solid var(--border);
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
	.schaefer-bottom-callbar,
	.bottom-bar { display: flex; }
	body.schaefer-child-theme { padding-bottom: 56px; }
}
.bottom-bar a,
.schaefer-bottom-callbar a {
	flex: 1;
	padding: 16px;
	text-align: center;
	font-weight: 600;
	font-size: var(--text-sm);
	text-decoration: none;
	color: var(--text-inverse);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s var(--ease), filter 0.2s var(--ease);
}
.schaefer-bottom-callbar a:first-of-type,
.bottom-bar a:first-of-type { background: var(--brand-primary); }
.schaefer-bottom-callbar a:last-of-type,
.bottom-bar a:last-of-type { background: var(--brand-whatsapp); }
.schaefer-bottom-callbar a:hover,
.bottom-bar a:hover { opacity: 0.92; }
.schaefer-bottom-callbar a:focus-visible,
.bottom-bar a:focus-visible { outline: 2px solid var(--brand-secondary); outline-offset: 2px; }

/* Hero – ruhig, viel Weißraum */
.schaefer-hero {
	padding: var(--space-16) var(--container-padding) var(--space-20);
	text-align: center;
	background: var(--surface);
	width: 100%;
}
.hero-inner {
	max-width: 720px;
	margin: 0 auto;
}
.schaefer-hero h1 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--text);
	margin: 0 0 var(--space-4);
}
.schaefer-hero .schaefer-hero-sub {
	font-size: 1.0625rem;
	line-height: 1.55;
	color: var(--text-muted);
	margin-bottom: var(--space-6);
	max-width: 36em;
	margin-left: auto;
	margin-right: auto;
}
.schaefer-hero-image {
	margin: 0 auto var(--space-8);
	max-width: 900px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
}
.schaefer-hero-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
.schaefer-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	justify-content: center;
	margin-bottom: var(--space-8);
}
.schaefer-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	justify-content: center;
}
.chip {
	display: inline-flex;
	align-items: center;
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius);
	background: var(--surface-alt);
	border: 1px solid var(--border);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--text-muted);
	transition: border-color var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}
.chip:hover {
	border-color: var(--border-strong);
	color: var(--text);
}

/* Willkommen – ruhig, gut lesbar */
.welcome-section {
	padding: var(--space-16) var(--container-padding);
	width: 100%;
	background: var(--surface);
}
.welcome-inner {
	max-width: 680px;
	margin: 0 auto;
}
.welcome-section h2 {
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0 0 var(--space-6);
	color: var(--text);
	line-height: 1.3;
}
.welcome-section p {
	margin: 0 0 var(--space-4);
	line-height: 1.65;
	color: var(--text-muted);
	font-size: 1rem;
}
.welcome-section p:last-child { margin-bottom: 0; }

/* Leistungen – Listen-Layout: Zeile pro Leistung, Bild links, Text Mitte, Link rechts */
.services-section {
	padding: var(--space-16) var(--container-padding) var(--space-20);
	width: 100%;
	background: var(--surface-alt);
}
.services-section-header {
	max-width: var(--container-wide);
	margin: 0 auto var(--space-6);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--space-4);
}
.services-section .section-title {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0;
	color: var(--text);
}
.services-view-toggle {
	display: inline-flex;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2px;
}
.services-view-btn {
	padding: var(--space-2) var(--space-4);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--text-muted);
	background: transparent;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}
.services-view-btn:hover {
	color: var(--text);
	background: var(--surface-alt);
}
.services-view-btn.active {
	background: var(--brand-primary);
	color: var(--text-inverse);
}
.services-view-btn:focus-visible {
	outline: 2px solid var(--brand-primary);
	outline-offset: 2px;
}
.service-grid {
	display: flex;
	flex-direction: column;
	max-width: var(--container-wide);
	margin: 0 auto;
	list-style: none;
	padding: 0;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.service-card {
	display: flex;
	align-items: center;
	gap: var(--space-6);
	padding: var(--space-4) var(--space-6);
	border-bottom: 1px solid var(--border);
	transition: background var(--duration-fast) var(--ease);
}
.service-card:last-child {
	border-bottom: none;
}
.service-card:hover {
	background: var(--surface-alt);
}
.service-card:focus-within {
	outline: 2px solid var(--brand-primary);
	outline-offset: -2px;
}
.service-card-image-link {
	flex-shrink: 0;
	width: 88px;
	height: 88px;
	line-height: 0;
	overflow: hidden;
	border-radius: var(--radius);
}
.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.service-card-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: var(--space-2) var(--space-4);
}
.service-card-content h3 {
	font-size: 1.0625rem;
	font-weight: 600;
	margin: 0;
	padding: 0;
	background: none;
	color: var(--brand-primary);
	width: 100%;
}
.service-card-content p {
	font-size: var(--text-sm);
	color: var(--text-muted);
	margin: 0;
	line-height: 1.5;
	flex: 1;
	min-width: 0;
}
.service-card-link {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--brand-primary);
	text-decoration: none;
	flex-shrink: 0;
	white-space: nowrap;
	transition: color var(--duration-fast) var(--ease);
}
.service-card-link:hover {
	color: var(--brand-primary-hover);
	text-decoration: underline;
}
.service-card-link:focus-visible {
	outline: 2px solid var(--brand-primary);
	outline-offset: 2px;
}

/* Leistungen – Kartenansicht (umschaltbar) */
.services-section.view-cards .service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--space-6);
	background: transparent;
	border: none;
	border-radius: 0;
	overflow: visible;
}
.services-section.view-cards .service-card {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 0;
	border-bottom: none;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.services-section.view-cards .service-card:hover {
	background: var(--surface);
	border-color: var(--border-strong);
}
.services-section.view-cards .service-card-image-link {
	width: 100%;
	height: 200px;
	border-radius: 0;
}
.services-section.view-cards .service-card img {
	height: 200px;
}
.services-section.view-cards .service-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	padding: var(--space-5);
	min-width: 0;
}
.services-section.view-cards .service-card-content h3 {
	width: auto;
	margin: 0 calc(-1 * var(--space-5)) 0;
	padding: var(--space-3) var(--space-4);
	text-align: center;
	background: var(--brand-primary);
	color: var(--text-inverse);
	font-size: 1rem;
}
.services-section.view-cards .service-card-content p {
	flex: 1;
}
.services-section.view-cards .service-card-link {
	width: auto;
	margin-top: auto;
}

/* Leistungen – Modern (richtig modern) */
.services-section.view-modern .service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--space-6);
	background: transparent;
	border: none;
	border-radius: 0;
	overflow: visible;
}
.services-section.view-modern .service-card {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 0;
	border: none;
	border-bottom: none;
	background: var(--surface);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-section.view-modern .service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
	background: var(--surface);
}
.services-section.view-modern .service-card:focus-within {
	outline: 2px solid var(--brand-primary);
	outline-offset: 2px;
	border-radius: 20px;
}
.services-section.view-modern .service-card-image-link {
	position: relative;
	width: 100%;
	height: 220px;
	border-radius: 0;
	overflow: hidden;
}
.services-section.view-modern .service-card-image-link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.35s ease;
}
.services-section.view-modern .service-card:hover .service-card-image-link::after {
	opacity: 1;
}
.services-section.view-modern .service-card img {
	height: 220px;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-section.view-modern .service-card:hover img {
	transform: scale(1.08);
}
.services-section.view-modern .service-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	padding: var(--space-6);
	min-width: 0;
}
.services-section.view-modern .service-card-content h3 {
	width: auto;
	margin: 0;
	padding: 0 0 0 var(--space-4);
	border-left: 4px solid var(--brand-primary);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
	background: none;
	line-height: 1.3;
}
.services-section.view-modern .service-card-content p {
	flex: 1;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--text-muted);
}
.services-section.view-modern .service-card-link {
	width: auto;
	margin-top: auto;
	font-weight: 600;
	font-size: 0.9375rem;
}
/* In Modern-Ansicht: Kontakt-Karte ausblenden */
.services-section.view-modern .service-card:last-child {
	display: none;
}

/* Kontaktblock – ruhig */
.schaefer-contact-block {
	background: var(--surface-alt);
	border-radius: var(--radius-lg);
	padding: var(--space-8);
	margin: var(--space-8) 0;
	border: 1px solid var(--border);
}
.schaefer-contact-block h2 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-4); color: var(--text); letter-spacing: -0.01em; }
.schaefer-contact-tel { font-size: var(--text-2xl); font-weight: 700; margin: var(--space-2) 0; }
.schaefer-contact-tel a { color: var(--brand-primary); text-decoration: none; transition: color 0.2s var(--ease); }
.schaefer-contact-tel a:hover { color: var(--brand-primary-hover); }
.schaefer-contact-meta { font-size: var(--text-base); color: var(--text-muted); line-height: 1.6; }

/* Footer – ruhig, klar */
.footer {
	background: var(--surface-alt);
	border-top: 1px solid var(--border);
	margin-top: auto;
	padding-top: var(--space-12);
	width: 100%;
}
.footer-container {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: var(--space-16) var(--container-padding);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--space-12);
}
.footer-heading,
.footer .widgettitle {
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 var(--space-4);
	color: var(--text);
}
.footer-text,
.footer .textwidget p {
	font-size: var(--text-sm);
	color: var(--text-muted);
	margin: 0 0 var(--space-2);
	line-height: 1.6;
}
.footer-text a,
.footer .textwidget a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color var(--duration-fast) var(--ease);
}
.footer-text a[href^="tel:"],
.footer .textwidget a[href^="tel:"] {
	font-weight: 600;
	color: var(--brand-primary);
}
.footer-text a:hover,
.footer .textwidget a:hover { color: var(--brand-primary); }
.footer-cta {
	margin-top: var(--space-4);
	display: inline-flex;
}
.footer-wa {
	margin-top: var(--space-3);
	display: inline-flex;
}
.footer-menu,
.footer .menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-menu li,
.footer .menu li { margin-bottom: var(--space-2); }
.footer-menu a,
.footer .menu a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: var(--text-sm);
	transition: color var(--duration-fast) var(--ease);
}
.footer-menu a:hover,
.footer .menu a:hover { color: var(--brand-primary); }
.footer .copyright {
	border-top: 1px solid var(--border);
	margin: 0;
	padding: var(--space-6) var(--container-padding);
	font-size: var(--text-xs);
	color: var(--text-muted);
	text-align: center;
}

/* Einzugsgebiet Akkordeon – modern */
.schaefer-einzugsgebiet-wrap { margin: var(--space-4) 0 0; }
.schaefer-einzugsgebiet-toggle {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-3) var(--space-4);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--text);
	cursor: pointer;
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.schaefer-einzugsgebiet-toggle:hover {
	background: var(--surface-alt);
	border-color: var(--border-strong);
}
.schaefer-einzugsgebiet-toggle:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.schaefer-einzugsgebiet-content {
	display: none;
	margin-top: var(--space-3);
	padding: var(--space-4);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: 1.7;
}
.schaefer-einzugsgebiet-content.is-open { display: block; }
.schaefer-einzugsgebiet-content p:last-child { margin-bottom: 0; }

.schaefer-child-theme .the_title {
	border-bottom: 2px solid var(--brand-secondary);
	padding-bottom: var(--space-2);
	margin-bottom: var(--space-4);
	font-size: var(--text-2xl);
	font-weight: 700;
	letter-spacing: -0.01em;
}

/* Mobile */
@media (max-width: 767px) {
	.services-section:not(.view-cards):not(.view-modern) .service-grid {
		border-radius: var(--radius);
	}
	.services-section:not(.view-cards):not(.view-modern) .service-card {
		flex-wrap: wrap;
		padding: var(--space-4);
		gap: var(--space-3);
	}
	.services-section:not(.view-cards):not(.view-modern) .service-card-image-link {
		width: 64px;
		height: 64px;
	}
	.services-section:not(.view-cards):not(.view-modern) .service-card-content {
		flex: 1 1 200px;
	}
	.services-section:not(.view-cards):not(.view-modern) .service-card-link {
		width: 100%;
		margin-top: var(--space-2);
	}
	.services-section.view-cards .service-grid,
	.services-section.view-modern .service-grid {
		grid-template-columns: 1fr;
		gap: var(--space-5);
	}
	.services-section.view-modern .service-card-image-link,
	.services-section.view-modern .service-card img {
		height: 180px;
	}
	.schaefer-hero-ctas {
		flex-direction: column;
		width: 100%;
	}
	.schaefer-hero-ctas .schaefer-btn {
		width: 100%;
	}
	.footer-container {
		grid-template-columns: 1fr;
		padding: var(--space-10) var(--container-padding);
	}
}
