:root {
	--color-bg: #fbfbfb;
	--color-surface: #ffffff;
	--color-soft: #f3f4f6;
	--color-soft-red: #fff1f1;
	--color-text: #1d1d1f;
	--color-muted: #62646a;
	--color-heading: #101114;
	--color-accent: #ed1018;
	--color-accent-dark: #a70008;
	--color-black: #050505;
	--color-silver: #e5e7eb;
	--color-border: rgba(16, 17, 20, 0.12);
	--shadow-soft: 0 20px 55px rgba(12, 12, 14, 0.08);
	--shadow-card: 0 12px 34px rgba(12, 12, 14, 0.07);
	--radius: 20px;
	--wrap: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: auto;
}

section[id],
[id].section-anchor {
	scroll-margin-top: 118px;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.72;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

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

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

button,
input,
textarea {
	font: inherit;
}

button,
a,
input,
textarea {
	outline-color: var(--color-accent);
	outline-offset: 3px;
}

.wrap {
	width: min(var(--wrap), calc(100% - 40px));
	margin-inline: auto;
}

.narrow-wrap {
	max-width: 980px;
}

.section {
	padding: 76px 0;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 10px 14px;
	background: #fff;
	border: 2px solid var(--color-accent);
}

.top-bar {
	background: var(--color-black);
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
}

.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
	min-height: 38px;
}

.top-item {
	position: relative;
	white-space: nowrap;
}

.top-item + .top-item::before {
	content: "";
	position: absolute;
	left: -12px;
	top: 50%;
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-50%);
}

.main-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
}

.admin-bar .main-header {
	top: 32px;
}

.main-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	min-height: 88px;
}

.site-branding img {
	max-width: 218px;
	max-height: 78px;
	object-fit: contain;
}

.default-logo {
	display: inline-flex;
	align-items: center;
}

.primary-navigation {
	justify-self: end;
}

.primary-menu,
.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	font-size: 14px;
	font-weight: 700;
	color: #18191c;
}

.primary-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 30px 0;
}

.primary-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 24px;
	width: 0;
	height: 2px;
	background: var(--color-accent);
	transition: width 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus::after {
	width: 100%;
}

.header-cta,
.button,
.consultation-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 18px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-accent), #ff4b52);
	color: #fff;
	font-weight: 800;
	font-size: 14px;
	box-shadow: 0 14px 34px rgba(237, 16, 24, 0.2);
	cursor: pointer;
}

.header-cta:hover,
.header-cta:focus,
.button:hover,
.button:focus,
.consultation-form button:hover,
.consultation-form button:focus {
	color: #fff;
	background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
}

.menu-toggle {
	display: none;
	justify-self: end;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: #fff;
	padding: 10px 14px;
	font-weight: 800;
	color: var(--color-text);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 10px;
	background: var(--color-black);
}

.menu-toggle-lines {
	position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
	content: "";
	position: absolute;
	left: 0;
}

.menu-toggle-lines::before {
	top: -6px;
}

.menu-toggle-lines::after {
	top: 6px;
}

.hero-slider {
	position: relative;
	background: #0b0b0c;
	overflow: hidden;
}

.slides {
	position: relative;
	height: clamp(255px, 31vw, 500px);
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 420ms ease;
}

.slide.is-active {
	opacity: 1;
}

.slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02) 45%, rgba(0, 0, 0, 0.18));
	pointer-events: none;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider-controls {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	z-index: 2;
	pointer-events: none;
}

.slider-prev,
.slider-next {
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	padding: 10px 16px;
	background: rgba(5, 5, 5, 0.54);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	backdrop-filter: blur(10px);
	cursor: pointer;
	pointer-events: auto;
}

.slider-prev:hover,
.slider-prev:focus,
.slider-next:hover,
.slider-next:focus {
	background: var(--color-accent);
	color: #fff;
}

h1,
h2,
h3 {
	line-height: 1.16;
	letter-spacing: -0.035em;
	margin: 0 0 18px;
	color: var(--color-heading);
}

h1 {
	font-size: clamp(38px, 5vw, 64px);
	text-align: center;
}

h2 {
	font-size: clamp(30px, 4vw, 46px);
	text-align: center;
}

h3 {
	font-size: 20px;
}

p {
	margin: 0 0 20px;
	color: var(--color-muted);
}

.eyebrow {
	margin: 0 0 10px;	
	color: var(--color-accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.eyebrow.centered {
	text-align: center;
}

.eyebrow.light {
	color: rgba(255, 255, 255, 0.9);
}

.section-anchor {
	display: block;
	position: relative;
	top: -118px;
}

.welcome-section {
	background:
		radial-gradient(circle at 50% 0, rgba(237, 16, 24, 0.08), transparent 32%),
		linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.welcome-section .narrow-wrap {
	background: #fff;
	border: 1px solid rgba(16, 17, 20, 0.08);
	border-radius: 28px;
	box-shadow: var(--shadow-soft);
	padding: clamp(30px, 5vw, 58px);
}

.welcome-section p {
	font-size: 16px;
}

.welcome-section .button {
	margin: 18px auto 0;
	display: table;
}

.services-section {
	background: var(--color-soft);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
	margin-top: 34px;
}

.service-card {
	background: var(--color-surface);
	border: 1px solid rgba(16, 17, 20, 0.08);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow-card);
	height: 100%;
}

.service-media {
	margin: -4px -4px 18px;
}

.service-card img {
	width: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(16, 17, 20, 0.08);
}

.service-card h3 {
	text-align: center;
	font-size: 19px;
	margin-bottom: 14px;
}

.service-card p,
.service-card li {
	font-size: 14px;
	line-height: 1.66;
}

.service-card ol {
	padding-left: 19px;
	margin: 0 0 18px;
	color: var(--color-muted);
}

.service-card li + li {
	margin-top: 8px;
}

.service-featured {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(240px, 320px) 1fr;
	gap: 30px;
	align-items: start;
	padding: 26px;
	background:
		linear-gradient(135deg, rgba(237, 16, 24, 0.06), rgba(255, 255, 255, 0.9)),
		#fff;
}

.service-featured .service-media {
	margin: 0;
	position: sticky;
	top: 118px;
}

.service-featured img {
	aspect-ratio: 1 / 1;
}

.service-featured h3 {
	text-align: left;
	font-size: clamp(24px, 3vw, 36px);
}

.service-featured ol {
	columns: 2;
	column-gap: 34px;
}

.service-featured li {
	break-inside: avoid;
}

.service-featured-flip {
	background:
		linear-gradient(135deg, rgba(5, 5, 5, 0.05), rgba(255, 255, 255, 0.94)),
		#fff;
}

.why-section {
	background: #fff;
}

.reasons-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	max-width: 870px;
	margin: 34px auto 0;
}

.reason-card {
	position: relative;
	min-height: 166px;
	display: grid;
	place-items: center;
	padding: 30px 24px 34px;
	background: #fff;
	border: 1px solid rgba(16, 17, 20, 0.08);
	border-radius: 18px;
	box-shadow: var(--shadow-card);
	text-align: center;
	overflow: hidden;
}

.reason-card::before {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(237, 16, 24, 0.08);
	border-radius: 14px;
	pointer-events: none;
}

.reason-icon {
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
	color: #0b0b0c;
	position: relative;
	z-index: 1;
}

.reason-card strong {
	max-width: 170px;
	font-size: 13px;
	line-height: 1.35;
	margin-top: 10px;
	position: relative;
	z-index: 1;
}

.reason-number {
	position: absolute;
	left: 16px;
	bottom: 12px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 58px;
	font-style: italic;
	line-height: 1;
	color: rgba(237, 16, 24, 0.13);
}

.gallery-section {
	background:
		radial-gradient(circle at 10% 10%, rgba(237, 16, 24, 0.06), transparent 24%),
		var(--color-bg);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 520px));
	justify-content: center;
	gap: 34px;
	margin-top: 34px;
}

.before-after {
	position: relative;
	isolation: isolate;
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 20px;
	overflow: hidden;
	background: #111;
	box-shadow: var(--shadow-soft);
	touch-action: pan-y;
	user-select: none;
}

.before-after-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.before-after-after {
	position: absolute;
	inset: 0;
	clip-path: inset(0 calc(100% - var(--position)) 0 0);
	z-index: 2;
}

.before-after-after .before-after-image {
	max-width: none;
}

.before-after::before,
.before-after::after {
	position: absolute;
	top: 14px;
	z-index: 4;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.52);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.before-after::before {
	content: "Before";
	left: 14px;
}

.before-after::after {
	content: "After";
	right: 14px;
}

.before-after-handle {
	position: absolute;
	top: 0;
	left: var(--position);
	z-index: 5;
	width: 46px;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	transform: translateX(-50%);
	cursor: ew-resize;
}

.before-after-handle::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background: rgba(255, 255, 255, 0.95);
	transform: translateX(-50%);
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.35);
}

.before-after-handle::after {
	content: "↔";
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	color: var(--color-accent);
	font-weight: 900;
	transform: translate(-50%, -50%);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.testimonials-section {
	padding-top: 0;
	background: var(--color-bg);
	text-align: center;
}

.contact-section {
	position: relative;
	background-image:
		linear-gradient(135deg, rgba(5, 5, 5, 0.74), rgba(237, 16, 24, 0.58)),
		var(--contact-bg);
	background-size: cover;
	background-position: center;
	color: #fff;
}

.contact-section h2 {
	color: #fff;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.contact-wrap {
	max-width: 880px;
}

.contact-form-shell {
	margin-top: 28px;
	padding: 26px;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.17);
	border: 1px solid rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(10px);
}

.consultation-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.consultation-form label {
	display: grid;
	gap: 7px;
	color: #fff;
	font-weight: 800;
	font-size: 13px;
}

.consultation-form .form-wide,
.consultation-form button,
.consultation-form .form-note {
	grid-column: 1 / -1;
}

.consultation-form input,
.consultation-form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
	width: 100%;
	border: 0;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.94);
	padding: 13px 14px;
	color: var(--color-text);
}

.wpcf7-form label {
	color: #fff;
	font-weight: 800;
}

.wpcf7-form input[type="submit"] {
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: var(--color-accent);
	font-weight: 900;
	padding: 12px 22px;
	cursor: pointer;
}

.consultation-form button {
	justify-self: start;
	background: #fff;
	color: var(--color-accent);
	box-shadow: none;
}

.consultation-form button[disabled],
.consultation-form input[disabled],
.consultation-form textarea[disabled] {
	cursor: not-allowed;
	opacity: 0.92;
}

.consultation-form .form-note {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.82);
}

.content-wrap {
	max-width: 860px;
	background: #fff;
	border-radius: 24px;
	padding: 44px;
	box-shadow: var(--shadow-soft);
}

.entry-card {
	padding: 22px 0;
	border-bottom: 1px solid var(--color-border);
}

.entry-title a {
	color: var(--color-text);
}

.site-footer {
	background: var(--color-black);
	color: rgba(255, 255, 255, 0.76);
	padding: 34px 0;
	font-size: 13px;
	text-align: center;
}

.footer-inner {
	display: grid;
	gap: 12px;
	place-items: center;
}

.footer-social {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
}

.footer-social a {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-weight: 900;
}

.footer-social a:hover,
.footer-social a:focus {
	background: var(--color-accent);
	color: #fff;
}

.footer-social .youtube-link {
	background: #ff0000;
	color: #fff;
}

.footer-social .youtube-link:hover,
.footer-social .youtube-link:focus {
	background: #cc0000;
	color: #fff;
}

.footer-social svg {
	display: block;
}


.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	justify-content: center;
}

.site-footer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
}

.site-footer .imprint {
	color: #fff;
	font-weight: 800;
}

.site-footer .imprint:hover,
.site-footer .imprint:focus {
	color: #ff4b52;
}

@media (max-width: 1100px) {
	.main-header-inner {
		grid-template-columns: auto auto;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-navigation {
		grid-column: 1 / -1;
		justify-self: stretch;
		display: none;
		padding-bottom: 18px;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		background: #fff;
		border: 1px solid var(--color-border);
		border-radius: 18px;
		padding: 10px;
		box-shadow: var(--shadow-card);
	}

	.primary-menu a {
		display: block;
		padding: 12px 14px;
	}

	.primary-menu a::after {
		display: none;
	}

	.header-cta {
		display: none;
	}

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

@media (max-width: 900px) {
	.service-featured {
		grid-template-columns: 1fr;
	}

	.service-featured .service-media {
		position: static;
		max-width: 360px;
	}

	.service-featured ol {
		columns: 1;
	}

	.reasons-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	section[id],
	[id].section-anchor {
		scroll-margin-top: 96px;
	}

	.admin-bar .main-header {
		top: 46px;
	}

	.top-bar-inner {
		justify-content: center;
		flex-wrap: wrap;
		gap: 8px 18px;
		padding: 8px 0;
	}

	.top-item + .top-item::before {
		display: none;
	}

	.section {
		padding: 54px 0;
	}

	.slides {
		height: 290px;
	}

	.slider-controls {
		bottom: 18px;
		flex-wrap: wrap;
	}

	.services-grid,
	.consultation-form {
		grid-template-columns: 1fr;
	}

	.service-card {
		padding: 18px;
	}

	.welcome-section .narrow-wrap,
	.content-wrap {
		padding: 28px;
	}
}

@media (max-width: 540px) {
	.wrap {
		width: min(var(--wrap), calc(100% - 28px));
	}

	.main-header-inner {
		min-height: 76px;
		gap: 12px;
	}

	.site-branding img,
	.default-logo img {
		max-width: 166px;
		max-height: 66px;
	}

	.menu-toggle-text {
		display: none;
	}

	h1 {
		font-size: 36px;
	}

	.slider-prev,
	.slider-next {
		padding: 8px 11px;
	}

	.before-after {
		aspect-ratio: 4 / 3;
	}

	.reason-card {
		min-height: 150px;
	}
}
