body {
	background: #FBF7EC;
	color: #2A2724;
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1,h2,h3 {
	font-family: "PT Serif", Georgia, serif;
	font-weight: 700;
	line-height: 1.2;
	text-wrap: balance;
	margin: 0;
}

.wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 32px;
}

@media (max-width:640px) {
	.wrap {
		padding: 0 20px;
	}
}

header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: color-mix(in srgb, #FBF7EC 88%, transparent);
	border-bottom: 1px solid #E7DCC0;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 32px;
	max-width: 1120px;
	margin: 0 auto;
}

@media (max-width:640px) {
	.nav {
		padding: 14px 20px;
	}
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.brand img {
	height: 34px;
	width: auto;
	display: block;
	transition: transform 260ms cubic-bezier(.22,1,.36,1), filter 260ms ease;
}

.brand img:hover {
	transform: translateY(-4px) scale(1.08);
	filter: drop-shadow(0 10px 18px rgba(42,39,36,0.30));
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 20px;
	font-size: .86rem;
	color: #5C5650;
}

.nav-links a {
	text-decoration: none;
	color: inherit;
	transition: color .15s ease;
}

.nav-links a:hover {
	color: #3D5E76;
}

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

.btn-primary,.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 24px;
	border-radius: 10px;
	font-size: .98rem;
	font-weight: 600;
	text-decoration: none;
	font-family: inherit;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
	border: 1px solid transparent;
	cursor: pointer;
}

.btn-primary {
	background: #3D5E76;
	color: #FBF7EC;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 20px 50px -30px rgba(21,27,34,0.35);
}

.btn-secondary {
	background: transparent;
	color: #2A2724;
	border-color: #E7DCC0;
}

.btn-secondary:hover {
	border-color: #3D5E76;
	color: #3D5E76;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Open Sans", sans-serif;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: #3D5E76;
}

.hero {
	padding: 64px 0 56px;
}

.hero .wrap {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 56px;
	align-items: center;
}

@media (max-width:900px) {
	.hero .wrap {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

.hero h1 {
	font-size: clamp(1.65rem,2.8vw + 0.78rem,2.65rem);
	margin: 18px 0 20px;
}

.hero h1 .h1-kicker {
	display: block;
	font-family: "Open Sans", sans-serif;
	font-size: .32em;
	font-weight: 700;
	letter-spacing: .02em;
	color: #3D5E76;
	margin-bottom: 12px;
}

.hero h1 em {
	font-style: italic;
	color: #3D5E76;
	font-weight: 400;
}

.hero p.lead {
	font-size: 1.12rem;
	color: #5C5650;
	max-width: 44ch;
	margin: 0 0 30px;
}

.hero-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-photo {
	position: relative;
}

.hero-photo img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 24px 60px -24px rgba(21,27,34,0.4);
	display: block;
}

.problems {
	padding: 8px 0 64px;
}

.problems .wrap > p.section-eyebrow {
	margin-bottom: 8px;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
	margin-top: 26px;
}

@media (max-width:980px) {
	.problem-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media (max-width:560px) {
	.problem-grid {
		grid-template-columns: 1fr;
	}
}

.problem-tile {
	background: #FFFFFF;
	border: 1px solid #E7DCC0;
	border-radius: 14px;
	padding: 22px 20px;
	font-weight: 600;
	font-size: .98rem;
	line-height: 1.45;
	transition: border-color .15s ease, transform .15s ease;
}

.problem-tile:hover {
	border-color: #3D5E76;
	transform: translateY(-2px);
}

.services-section {
	padding: 8px 0 64px;
}

.section-head {
	max-width: 60ch;
}

.section-head h2 {
	font-size: clamp(1.7rem,2vw + 1rem,2.3rem);
	margin-top: 12px;
}

.section-head p {
	color: #5C5650;
	font-size: 1.03rem;
	margin-top: 14px;
}

.services {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1px;
	background: #E7DCC0;
	border: 1px solid #E7DCC0;
	border-radius: 14px;
	overflow: hidden;
	margin-top: 32px;
}

@media (max-width:820px) {
	.services {
		grid-template-columns: 1fr;
	}
}

.service {
	background: #FFFFFF;
	padding: 28px 26px;
}

.service h3 {
	font-size: 1.08rem;
	margin-bottom: 10px;
}

.service p {
	color: #5C5650;
	font-size: .95rem;
	margin: 0;
}

.trust {
	padding: 8px 0 64px;
}

.trust .wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

@media (max-width:820px) {
	.trust .wrap {
		grid-template-columns: 1fr;
	}
}

.trust-block h2 {
	font-size: clamp(1.6rem,2vw + 1rem,2.1rem);
	margin-top: 12px;
}

.trust-block p {
	color: #5C5650;
	margin-top: 14px;
}

.trust-block p strong {
	color: #2A2724;
}

.location-band {
	position: relative;
	line-height: 0;
	margin: 0 !important;
	padding: 0 !important;
}

.location-band img {
	width: 100%;
	display: block;
	height: clamp(160px, 26vw, 320px);
	object-fit: cover;
	filter: grayscale(1) contrast(1.02);
}

.location-caption {
	position: absolute;
	right: 24px;
	bottom: 14px;
	margin: 0;
	line-height: 1.4;
	font-size: .76rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #F2F0EA;
	background: rgba(20, 19, 17, 0.55);
	padding: 5px 12px;
	border-radius: 999px;
}

.faq {
	padding: 64px 0;
}

.acc-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 30px;
}

.acc-item {
	background: #F3EAD6;
	border: 1px solid #E7DCC0;
	border-radius: 14px;
	padding: 0 22px;
	transition: border-color .15s ease;
}

.acc-item[open] {
	border-color: #3D5E76;
}

.acc-item summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	font-weight: 600;
	font-size: .98rem;
}

.acc-item summary::-webkit-details-marker {
	display: none;
}

.acc-item .chevron {
	flex: none;
	transition: transform .15s ease;
	color: #8A9099;
}

.acc-item[open] .chevron {
	transform: rotate(180deg);
}

.acc-body {
	padding: 0 0 20px;
	color: #5C5650;
	font-size: .95rem;
}

.acc-body p {
	margin: 0;
}

.cta-banner {
	background: #3D5E76;
	color: #FBF7EC;
	padding: 52px 0;
	text-align: center;
}

.cta-banner h2 {
	color: #FBF7EC;
	font-size: clamp(1.5rem,2vw + 1rem,2rem);
}

.cta-banner p {
	color: #FBF7EC;
	opacity: .85;
	margin: 12px 0 26px;
}

.cta-banner .btn-secondary {
	background: #FBF7EC;
	color: #3D5E76;
	border-color: transparent;
}

.cta-banner .btn-secondary:hover {
	transform: translateY(-1px);
}

footer {
	position: relative;
	background:
		linear-gradient(180deg, rgba(42,39,36,.55) 0%, rgba(42,39,36,.78) 55%, #2A2724 100%),
		url('https://erbrechtroebel.wordpress.com/wp-content/uploads/2026/09/fassade.jpg') center 15% / cover no-repeat,
		#2A2724;
	color: #D9DEE3;
	padding: 52px 0 30px;
	font-size: .9rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 36px;
}

@media (max-width:720px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

.footer-grid h4 {
	font-family: "Open Sans", sans-serif;
	font-size: .76rem;
	text-transform: uppercase;
	letter-spacing: .09em;
	color: #8894A0;
	margin: 0 0 14px;
}

.footer-grid p,.footer-grid a {
	color: #D9DEE3;
	margin: 0 0 6px;
	text-decoration: none;
	display: block;
}

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

.footer-legal-note {
	font-size: .68rem;
	color: #8894A0;
	background: #8FA6AE;
	color: #1a1400;
	display: inline-block;
	padding: 2px 7px;
	border-radius: 5px;
	margin-left: 6px;
}

.footer-bottom {
	border-top: 1px solid #2a3138;
	margin-top: 36px;
	padding-top: 20px;
	font-size: .78rem;
	color: #8894A0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	justify-content: space-between;
}

.brand-fallback {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #3D5E76;
	color: #FBF7EC;
	display: grid;
	font-family: "PT Serif", serif;
	font-weight: 700;
	font-size: .85rem;
}

.legal-page {
	padding: 56px 0 80px;
}

.legal-page .wrap {
	max-width: 820px;
}

.legal-h2 {
	font-size: 1.6rem;
	margin-top: 48px;
	margin-bottom: 6px;
	padding-top: 24px;
	border-top: 1px solid #E7DCC0;
}

.legal-page h2.legal-h2:first-of-type {
	border-top: none;
	padding-top: 0;
	margin-top: 32px;
}

.legal-h3 {
	font-size: 1.05rem;
	margin-top: 26px;
	margin-bottom: 8px;
}

.legal-page p {
	color: #5C5650;
	margin: 0 0 14px;
	line-height: 1.7;
}

.legal-page p strong {
	color: #2A2724;
}

.legal-page a {
	color: #3D5E76;
}

.legal-back {
	margin-top: 40px;
}

.legal-back a {
	font-weight: 600;
	text-decoration: none;
}

.entry-content.is-layout-constrained > * {
	max-width: none;
}

.entry-content.is-layout-constrained {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.hero-card {
	background: #FFFFFF;
	border: 1px solid #E7DCC0;
	border-radius: 16px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 24px 60px -24px rgba(21,27,34,0.4);
}

.hero-card .hero-photo {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
	object-position: center 15%;
	display: block;
	filter: grayscale(1);
}

.hero-card-body {
	padding: 24px 28px 28px;
}

.hero-card .quote {
	font-family: "PT Serif", serif;
	font-style: italic;
	font-size: 1.2rem;
	line-height: 1.45;
	color: #2A2724;
	margin: 0 0 18px;
}

.hero-card .who {
	font-size: .86rem;
	color: #5C5650;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 16px;
	border-top: 1px solid #E7DCC0;
}

.hero-card .who-photo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	filter: grayscale(1);
	flex-shrink: 0;
}

.hero-card .who-note {
	font-size: .86rem;
	color: #5C5650;
	line-height: 1.55;
	margin: 14px 0 0;
}

.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #3D5E76;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 1.3rem;
	line-height: 1;
	box-shadow: 0 14px 30px -10px rgba(21,27,34,0.45);
	transition: transform .15s ease, box-shadow .15s ease;
}

.back-to-top:hover {
	transform: translateY(-3px);
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	
	.back-to-top {
		transition: none;
	}
}

/* Kontaktformular (DSGVO) */
#kontakt {
	padding: 8px 0 64px;
}

#kontakt h2 {
	font-size: clamp(1.7rem,2vw + 1rem,2.3rem);
	margin-bottom: 8px;
}

#kontakt > .wrap > p {
	color: #5C5650;
	margin: 0 0 28px;
}

#kontakt .wp-block-jetpack-contact-form {
	background: #FFFFFF;
	border: 1px solid #E7DCC0;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 24px 60px -24px rgba(21,27,34,0.4);
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 560px;
}

#kontakt .grunion-field-label {
	display: block;
	font-weight: 600;
	font-size: .9rem;
	color: #2A2724;
	margin-bottom: 8px;
}

#kontakt .grunion-label-required {
	font-weight: 400;
	color: #3D5E76;
	margin-left: 4px;
}

#kontakt input[type="text"],
#kontakt input[type="email"],
#kontakt input[type="tel"],
#kontakt textarea {
	width: 100%;
	box-sizing: border-box;
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: .95rem;
	padding: 11px 13px;
	border-radius: 8px;
	border: 1px solid #E7DCC0;
	background: #FBF7EC;
	color: #2A2724;
}

#kontakt input:focus,
#kontakt textarea:focus {
	outline: 2px solid #3D5E76;
	outline-offset: 1px;
	border-color: #3D5E76;
}

#kontakt textarea {
	min-height: 130px;
	resize: vertical;
}

#kontakt .grunion-field-consent-wrap .grunion-field-label {
	display: block;
	position: relative;
	padding-left: 34px;
	font-weight: 400;
	font-size: .88rem;
	line-height: 1.55;
	color: #5C5650;
}

#kontakt .grunion-field-consent-wrap input[type="checkbox"] {
	position: absolute;
	left: 0;
	top: -1px;
	width: 24px;
	height: 24px;
	margin: 0;
	accent-color: #3D5E76;
}

#kontakt .grunion-field-consent-wrap a {
	color: #3D5E76;
	font-weight: 600;
}

#kontakt button[type="submit"] {
	align-self: flex-start;
	background: #3D5E76;
	color: #FBF7EC;
	border: none;
	border-radius: 10px;
	padding: 14px 26px;
	font-size: .98rem;
	font-weight: 600;
	font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease;
}

#kontakt button[type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 20px 50px -30px rgba(21,27,34,0.35);
}

#kontakt .contact-form__error {
	color: #6B2833;
	font-size: .85rem;
}

/* Blocksatz */
p {
	text-align: justify;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}



a[href^="tel:"],
a[href^="mailto:"] {
	display: inline-block;
	padding: 4px 0;
}