:root {
	--forest: #13261c;
	--green: #27543a;
	--green-2: #356b4a;
	--moss: #7a9a6b;
	--leaf: #a7c193;
	--cream: #f6f2e7;
	--sand: #ebe3d2;
	--paper: #fbf9f2;
	--ink: #1b2a20;
	--ink-soft: #46584c;
	--accent: #d99a3c;
	--accent-dark: #c2842a;
	--warn: #b3261e;
	--shadow: 0 18px 50px -22px rgba(19, 38, 28, 0.45);
	--shadow-sm: 0 8px 24px -12px rgba(19, 38, 28, 0.35);
	--radius: 22px;
	--maxw: 1180px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: "Hanken Grotesk", sans-serif;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.65;
	overflow-x: hidden;
	font-size: 18px;
}
h1,
h2,
h3,
.serif {
	font-family: "Fraunces", serif;
	font-weight: 600;
	line-height: 1.07;
	letter-spacing: -0.015em;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 22px;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--green-2);
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--accent);
	display: inline-block;
	border-radius: 2px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: "Hanken Grotesk", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	padding: 16px 28px;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	transition:
		transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
		box-shadow 0.25s,
		background 0.25s;
	white-space: nowrap;
}
.btn svg {
	width: 18px;
	height: 18px;
}
.btn-primary {
	background: var(--accent);
	color: #3a2706;
	box-shadow: 0 10px 26px -10px rgba(217, 154, 60, 0.8);
}
.btn-primary:hover {
	background: var(--accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 16px 32px -12px rgba(217, 154, 60, 0.9);
}
.btn-ghost {
	background: transparent;
	color: var(--cream);
	border: 1.5px solid rgba(246, 242, 231, 0.4);
}
.btn-ghost:hover {
	background: rgba(246, 242, 231, 0.12);
	transform: translateY(-2px);
}
.btn-green {
	background: var(--green);
	color: var(--cream);
}
.btn-green:hover {
	background: var(--green-2);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px -14px rgba(19, 38, 28, 0.7);
}
.cta-pair {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 44px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	transition:
		background 0.3s,
		box-shadow 0.3s,
		padding 0.3s,
		backdrop-filter 0.3s;
	padding: 18px 0;
}
header.scrolled {
	background: var(--baumwerk-sticky-header-bg, rgba(251, 249, 242, 0.38));
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 8px 32px -12px rgba(19, 38, 28, 0.22);
	padding: 10px 0;
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 11px;
	font-family: "Fraunces", serif;
	font-weight: 600;
	font-size: 1.28rem;
	color: var(--cream);
	transition: color 0.3s;
	min-width: 0;
}
.logo .baumwerk-logo-img {
	height: auto;
	width: auto;
	object-fit: contain;
	display: block;
}
header.scrolled .logo .baumwerk-logo-img {
	filter: none;
}
header.scrolled .logo {
	color: var(--forest);
}
.logo .mark {
	width: 38px;
	height: 38px;
	flex: none;
	background: var(--accent);
	border-radius: 11px;
	display: grid;
	place-items: center;
}
.logo .mark svg {
	width: 23px;
	height: 23px;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
}
.nav-links a {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--baumwerk-header-nav-color, var(--cream));
	opacity: 0.92;
	transition:
		color 0.3s,
		opacity 0.2s;
}
header.scrolled .nav-links a {
	color: var(--baumwerk-header-nav-color-scrolled, var(--ink));
}
.nav-links a:hover {
	opacity: 1;
	color: var(--accent);
}
.nav-cta {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}
.nav-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--cream);
	transition: color 0.3s;
}
header.scrolled .nav-phone {
	color: var(--forest);
}
.nav-phone svg {
	width: 18px;
	height: 18px;
}
.burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
}
.burger span {
	width: 26px;
	height: 2.5px;
	background: var(--cream);
	border-radius: 3px;
	transition: 0.3s;
}
header.scrolled .burger span {
	background: var(--forest);
}

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: var(--forest);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding: 0 30px;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.5, 0, 0.1, 1);
}
.mobile-menu.open {
	transform: translateX(0);
}
.mobile-menu a {
	color: var(--cream);
	font-family: "Fraunces", serif;
	font-size: 1.7rem;
	padding: 13px 0;
	border-bottom: 1px solid rgba(246, 242, 231, 0.12);
}
.mobile-menu .btn {
	margin-top: 26px;
}
.menu-close {
	position: absolute;
	top: 24px;
	right: 24px;
	background: none;
	border: none;
	color: var(--cream);
	font-size: 2.2rem;
	cursor: pointer;
	line-height: 1;
}

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: 130px 0 90px;
	overflow: hidden;
	background: linear-gradient(160deg, #0e1d15 0%, #1d3c2a 48%, #2a5239 100%);
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
	pointer-events: none;
	mix-blend-mode: overlay;
}
.hero-glow {
	position: absolute;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(217, 154, 60, 0.22), transparent 65%);
	top: -160px;
	right: -120px;
	filter: blur(10px);
}
.hero-trees {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 38%;
	opacity: 0.5;
	pointer-events: none;
}
.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: 50px;
	align-items: center;
	width: 100%;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(246, 242, 231, 0.1);
	border: 1px solid rgba(246, 242, 231, 0.2);
	color: var(--cream);
	padding: 7px 15px;
	border-radius: 100px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 24px;
}
.hero-badge .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #7ee0a0;
	box-shadow: 0 0 0 4px rgba(126, 224, 160, 0.25);
}
.hero h1 {
	color: var(--cream);
	font-size: clamp(2.4rem, 5.4vw, 4rem);
	font-weight: 600;
	margin-bottom: 20px;
}
.hero h1 em {
	font-style: italic;
	color: var(--accent);
}
.hero p.lead {
	color: rgba(246, 242, 231, 0.84);
	font-size: 1.18rem;
	max-width: 540px;
	margin-bottom: 30px;
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 22px;
}
.hero-promise {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--leaf);
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 28px;
}
.hero-promise svg {
	width: 18px;
	height: 18px;
}
.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.hero-trust .t {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--cream);
	font-size: 0.92rem;
	font-weight: 600;
}
.hero-trust .t svg {
	width: 19px;
	height: 19px;
	color: var(--leaf);
	flex: none;
}

.hero-card {
	background: var(--paper);
	border-radius: 26px;
	padding: 30px;
	box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}
.hero-card h3 {
	font-size: 1.4rem;
	margin-bottom: 6px;
}
.hero-card .sub {
	color: var(--ink-soft);
	font-size: 0.95rem;
	margin-bottom: 22px;
}
.field {
	margin-bottom: 14px;
}
.field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--ink-soft);
}
.field input,
.field select {
	width: 100%;
	padding: 13px 15px;
	border: 1.5px solid var(--sand);
	border-radius: 13px;
	font-family: inherit;
	font-size: 1rem;
	background: #fff;
	color: var(--ink);
	transition:
		border 0.2s,
		box-shadow 0.2s;
}
.field input:focus,
.field select:focus {
	outline: none;
	border-color: var(--green-2);
	box-shadow: 0 0 0 4px rgba(53, 107, 74, 0.12);
}
.hero-card .btn {
	width: 100%;
	margin-top: 6px;
}
.hero-card .btn[disabled] {
	opacity: 0.7;
	cursor: not-allowed;
}
.consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.82rem;
	color: var(--ink-soft);
	margin: 4px 0 14px;
	cursor: pointer;
	line-height: 1.45;
}
.consent input {
	margin-top: 3px;
	width: 17px;
	height: 17px;
	flex: none;
	accent-color: var(--green-2);
}
.consent a {
	color: var(--green-2);
	text-decoration: underline;
}
.form-err {
	display: none;
	text-align: center;
	font-size: 0.85rem;
	font-weight: 600;
	color: #b3261e;
	background: #fdecea;
	border-radius: 10px;
	padding: 9px 12px;
	margin-top: 12px;
}
.hero-card .note {
	text-align: center;
	font-size: 0.8rem;
	color: var(--ink-soft);
	margin-top: 13px;
}
.form-success {
	display: none;
	text-align: center;
	padding: 30px 10px;
}
.form-success.show {
	display: block;
}
.form-success .check {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #e6f2ea;
	display: grid;
	place-items: center;
}
.form-success .check svg {
	width: 32px;
	height: 32px;
	color: var(--green-2);
}

.marquee {
	background: var(--forest);
	padding: 18px 0;
	overflow: hidden;
	white-space: nowrap;
}
.marquee-track {
	display: inline-flex;
	gap: 48px;
	animation: scroll 26s linear infinite;
}
.marquee-track span {
	color: var(--cream);
	font-family: "Fraunces", serif;
	font-size: 1.12rem;
	opacity: 0.85;
	display: inline-flex;
	align-items: center;
	gap: 14px;
}
.marquee-track span::before {
	content: "✦";
	color: var(--accent);
}
@keyframes scroll {
	to {
		transform: translateX(-50%);
	}
}

section {
	position: relative;
}
.pad {
	padding: 96px 0;
}
.section-head {
	max-width: 740px;
	margin-bottom: 54px;
}
.section-head.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.section-head h2 {
	font-size: clamp(2.1rem, 4.2vw, 3.1rem);
	margin: 16px 0 16px;
}
.section-head p {
	color: var(--ink-soft);
	font-size: 1.13rem;
}

/* PAINPOINTS */
.pain {
	background: var(--paper);
}
.pain-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.pain-card {
	background: var(--cream);
	border-radius: 18px;
	padding: 26px 26px 26px 28px;
	border-left: 4px solid var(--accent);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.pain-card .pic {
	width: 42px;
	height: 42px;
	flex: none;
	border-radius: 50%;
	background: #f6e3cf;
	display: grid;
	place-items: center;
}
.pain-card .pic svg {
	width: 22px;
	height: 22px;
	color: var(--accent-dark);
}
.pain-card p {
	font-size: 1.04rem;
	color: var(--ink);
}
.pain-card p strong {
	display: block;
	font-family: "Fraunces", serif;
	font-size: 1.12rem;
	margin-bottom: 3px;
}
.pain-bridge {
	text-align: center;
	margin-top: 44px;
	font-family: "Fraunces", serif;
	font-size: clamp(1.4rem, 3vw, 2rem);
	color: var(--green-2);
}
.pain-bridge span {
	color: var(--accent);
}

/* TRANSFORMATION */
.trans {
	background: var(--green);
	color: var(--cream);
}
.trans h2 {
	color: var(--cream);
}
.trans-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 10px;
}
.trans-col {
	border-radius: var(--radius);
	padding: 32px;
}
.trans-col h3 {
	font-size: 1.4rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.trans-before {
	background: rgba(0, 0, 0, 0.18);
}
.trans-before h3 {
	color: rgba(246, 242, 231, 0.7);
}
.trans-after {
	background: rgba(246, 242, 231, 0.97);
	color: var(--ink);
}
.trans-after h3 {
	color: var(--green-2);
}
.trans-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.trans-col li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 1.02rem;
}
.trans-col li svg {
	width: 21px;
	height: 21px;
	flex: none;
	margin-top: 3px;
}
.trans-before li {
	color: rgba(246, 242, 231, 0.72);
}
.trans-before li svg {
	color: rgba(246, 242, 231, 0.55);
}
.trans-after li svg {
	color: var(--green-2);
}

.services {
	background: var(--cream);
}
.svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.svc {
	background: var(--paper);
	border-radius: var(--radius);
	padding: 32px 28px;
	border: 1px solid var(--sand);
	transition:
		transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
		box-shadow 0.35s,
		border-color 0.35s;
	position: relative;
	overflow: hidden;
}
.svc::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s;
}
.svc:hover {
	transform: translateY(-7px);
	box-shadow: var(--shadow);
	border-color: transparent;
}
.svc:hover::before {
	transform: scaleX(1);
}
.svc-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: linear-gradient(145deg, var(--green), var(--green-2));
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	transition: transform 0.35s;
}
.svc:hover .svc-icon {
	transform: rotate(-6deg) scale(1.05);
}
.svc-icon svg {
	width: 30px;
	height: 30px;
	color: var(--leaf);
}
.svc h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
}
.svc p {
	color: var(--ink-soft);
	font-size: 0.97rem;
}

/* GALLERY (Fotos) */
.gallery {
	background: var(--paper);
}
.gal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: start;
}
.gal-grid .gal-slot {
	aspect-ratio: 3/4;
	width: 100%;
	min-height: 0;
	padding: 0;
}
.gal-grid .gal-slot:has(> img) {
	border-style: solid;
	border-color: transparent;
	background: #1a1a1a;
}
.gal-grid .gal-slot > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gal-grid .gal-slot .gal-slot-inner {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 20px;
	height: 100%;
}
.ph {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	display: grid;
	place-items: center;
	min-height: 240px;
	text-align: center;
	color: #7a6f55;
	padding: 20px;
}
.ph svg {
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
	opacity: 0.6;
}
.ph .ph-t {
	font-weight: 700;
	font-size: 0.95rem;
}
.ph .ph-s {
	font-size: 0.8rem;
	opacity: 0.85;
	max-width: 220px;
	margin: 4px auto 0;
}

.stats {
	background: var(--forest);
	color: var(--cream);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}
.stat .num {
	font-family: "Fraunces", serif;
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	color: var(--accent);
	font-weight: 600;
	line-height: 1;
}
.stat .lbl {
	margin-top: 10px;
	opacity: 0.85;
	font-size: 0.98rem;
}

/* OWNER */
.owner {
	background: var(--cream);
}
.owner-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 50px;
	align-items: center;
}
.owner .cta-pair {
	justify-content: flex-start;
}
.owner .ph {
	min-height: 380px;
}
.owner blockquote {
	font-family: "Fraunces", serif;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 1.25;
	color: var(--ink);
}
.owner blockquote span {
	color: var(--green-2);
}
.owner .sign {
	margin-top: 22px;
	font-weight: 700;
	color: var(--green-2);
}
.owner .sign small {
	display: block;
	font-weight: 500;
	color: var(--ink-soft);
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.why-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 30px;
}
.why-item {
	display: flex;
	gap: 16px;
}
.why-item .ic {
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 13px;
	background: var(--cream);
	display: grid;
	place-items: center;
}
.why-item .ic svg {
	width: 24px;
	height: 24px;
	color: var(--green-2);
}
.why-item h4 {
	font-family: "Fraunces", serif;
	font-size: 1.2rem;
	margin-bottom: 3px;
}
.why-item p {
	color: var(--ink-soft);
	font-size: 0.96rem;
}
.why-visual {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 3 / 4;
	width: 100%;
	min-height: 0;
	max-height: 620px;
	background: linear-gradient(160deg, #1d3c2a, #356b4a);
	box-shadow: var(--shadow);
}
.why-visual > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.why-visual--placeholder {
	display: grid;
	place-items: center;
}
.why-visual-placeholder {
	display: grid;
	place-items: center;
	text-align: center;
	padding: 24px;
	color: #a7c193;
}
.why-visual-placeholder svg {
	width: 55%;
	max-width: 200px;
	opacity: 0.92;
	margin-bottom: 12px;
}
.why-visual-placeholder .ph-t {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--cream);
}
.why-visual-placeholder .ph-s {
	font-size: 0.8rem;
	opacity: 0.85;
	max-width: 220px;
	margin: 4px auto 0;
	color: rgba(251, 249, 242, 0.85);
}
.why-visual .float-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	background: rgba(251, 249, 242, 0.95);
	backdrop-filter: blur(8px);
	border-radius: 16px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: var(--shadow-sm);
}
.why-visual .float-badge .star {
	color: var(--accent);
	font-size: 1.1rem;
}
.why-visual .float-badge strong {
	font-family: "Fraunces", serif;
	font-size: 1.35rem;
}

.process {
	background: var(--cream);
}
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.step {
	padding-top: 14px;
}
.step .n {
	font-family: "Fraunces", serif;
	font-size: 3.4rem;
	color: var(--leaf);
	font-weight: 600;
	line-height: 1;
	margin-bottom: 12px;
}
.step h4 {
	font-size: 1.25rem;
	font-family: "Fraunces", serif;
	margin-bottom: 8px;
}
.step p {
	color: var(--ink-soft);
	font-size: 0.95rem;
}

/* RISK REVERSAL */
.risk {
	background: var(--paper);
}
.risk-box {
	background: linear-gradient(150deg, #13261c, #27543a);
	border-radius: var(--radius);
	padding: 54px 40px;
	color: var(--cream);
	text-align: center;
	box-shadow: var(--shadow);
}
.risk-box h2 {
	color: var(--cream);
	font-size: clamp(1.9rem, 3.6vw, 2.6rem);
	margin-bottom: 10px;
}
.risk-box .sub {
	color: rgba(246, 242, 231, 0.8);
	max-width: 560px;
	margin: 0 auto 34px;
	font-size: 1.1rem;
}
.risk-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-bottom: 36px;
}
.risk-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.risk-item .ic {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(167, 193, 147, 0.15);
	display: grid;
	place-items: center;
}
.risk-item .ic svg {
	width: 26px;
	height: 26px;
	color: var(--leaf);
}
.risk-item b {
	font-size: 1rem;
}
.risk-item span {
	font-size: 0.85rem;
	color: rgba(246, 242, 231, 0.7);
}

.more-svc {
	background: var(--cream);
}
.ms-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 10px;
}
.ms {
	background: var(--paper);
	border: 1px solid var(--sand);
	border-radius: 18px;
	padding: 24px 18px;
	text-align: center;
	transition:
		transform 0.3s,
		box-shadow 0.3s,
		border-color 0.3s;
}
.ms:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-sm);
	border-color: transparent;
}
.ms-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: linear-gradient(145deg, var(--green), var(--green-2));
	display: grid;
	place-items: center;
	margin: 0 auto 14px;
}
.ms-icon svg {
	width: 25px;
	height: 25px;
	color: var(--leaf);
}
.ms h4 {
	font-family: "Fraunces", serif;
	font-size: 1.12rem;
	margin-bottom: 6px;
}
.ms p {
	font-size: 0.86rem;
	color: var(--ink-soft);
	line-height: 1.5;
}

.tst {
	background: var(--paper);
}
.tst-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.tst-card {
	background: var(--cream);
	border: 1px solid var(--sand);
	border-radius: var(--radius);
	padding: 30px;
}
.tst-card .stars {
	color: var(--accent);
	margin-bottom: 14px;
	letter-spacing: 2px;
}
.tst-card p {
	font-size: 1.02rem;
	margin-bottom: 20px;
	color: var(--ink);
}
.tst-card .who {
	display: flex;
	align-items: center;
	gap: 12px;
}
.tst-card .av {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--green), var(--moss));
	display: grid;
	place-items: center;
	color: var(--cream);
	font-weight: 700;
	font-family: "Fraunces", serif;
}
.tst-card .who b {
	display: block;
	font-size: 0.95rem;
}
.tst-card .who span {
	font-size: 0.84rem;
	color: var(--ink-soft);
}

.faq {
	background: var(--cream);
}
.faq-wrap {
	max-width: 800px;
	margin: 0 auto;
}
.faq-item {
	background: var(--paper);
	border: 1px solid var(--sand);
	border-radius: 16px;
	margin-bottom: 13px;
	overflow: hidden;
	transition: box-shadow 0.3s;
}
.faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	font-weight: 700;
	font-size: 1.05rem;
}
.faq-q .pl {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--cream);
	display: grid;
	place-items: center;
	transition:
		transform 0.3s,
		background 0.3s;
	font-size: 1.3rem;
	line-height: 1;
	color: var(--green-2);
}
.faq-item.open {
	box-shadow: var(--shadow-sm);
}
.faq-item.open .pl {
	transform: rotate(45deg);
	background: var(--accent);
	color: #3a2706;
}
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-a p {
	padding: 0 24px 22px;
	color: var(--ink-soft);
}

.area {
	background: var(--green);
	color: var(--cream);
}
.area h2 {
	color: var(--cream);
}
.area-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}
.area-tags span {
	background: rgba(246, 242, 231, 0.12);
	border: 1px solid rgba(246, 242, 231, 0.2);
	padding: 8px 16px;
	border-radius: 100px;
	font-size: 0.9rem;
	font-weight: 600;
}
.area-map {
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 340px;
	background: linear-gradient(160deg, #0e1d15, #1d3c2a);
	display: grid;
	place-items: center;
	box-shadow: var(--shadow);
}
.area-map svg {
	width: 78%;
	opacity: 0.9;
}

.cta-final {
	background: linear-gradient(150deg, #13261c, #27543a);
	color: var(--cream);
	text-align: center;
}
.cta-final h2 {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	margin-bottom: 18px;
}
.cta-final p {
	color: rgba(246, 242, 231, 0.82);
	font-size: 1.15rem;
	max-width: 580px;
	margin: 0 auto 32px;
}
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

footer {
	background: var(--forest);
	color: rgba(246, 242, 231, 0.7);
	padding: 60px 0 30px;
}
.foot-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	margin-bottom: 44px;
}
.foot-grid h5 {
	color: var(--cream);
	font-family: "Fraunces", serif;
	font-size: 1.1rem;
	margin-bottom: 16px;
}
.foot-grid a {
	display: block;
	padding: 5px 0;
	font-size: 0.95rem;
	transition: color 0.2s;
}
.foot-grid a:hover {
	color: var(--accent);
}
.foot-grid p {
	font-size: 0.95rem;
	margin-bottom: 8px;
}
.foot-logo {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--cream);
	font-family: "Fraunces", serif;
	font-size: 1.3rem;
	margin-bottom: 16px;
}
.foot-logo .mark {
	width: 36px;
	height: 36px;
	background: var(--accent);
	border-radius: 10px;
	display: grid;
	place-items: center;
}
.foot-logo .mark svg {
	width: 21px;
	height: 21px;
}
.foot-bottom {
	border-top: 1px solid rgba(246, 242, 231, 0.12);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.86rem;
}
.foot-bottom a {
	display: inline;
	color: rgba(246, 242, 231, 0.7);
}

.impressum {
	background: #0e1d15;
	color: rgba(246, 242, 231, 0.7);
	padding: 54px 0;
}
.impressum h3 {
	color: var(--cream);
	font-family: "Fraunces", serif;
	font-size: 1.5rem;
	margin-bottom: 20px;
}
.imp-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 780px;
}
.imp-grid .blk b {
	color: var(--cream);
	display: block;
	margin-bottom: 4px;
	font-size: 0.95rem;
}
.imp-grid .blk p {
	font-size: 0.95rem;
	margin-bottom: 4px;
}
.imp-note {
	font-size: 0.82rem;
	margin-top: 24px;
	opacity: 0.6;
	max-width: 720px;
}

.call-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 90;
	display: none;
	grid-template-columns: 1fr 1fr;
	background: var(--forest);
	box-shadow: 0 -8px 24px -12px rgba(0, 0, 0, 0.5);
}
.call-bar a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 15px;
	font-weight: 700;
	font-size: 1rem;
}
.call-bar a svg {
	width: 19px;
	height: 19px;
}
.call-bar .call {
	background: var(--accent);
	color: #3a2706;
}
.call-bar .quote {
	color: var(--cream);
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
	opacity: 1;
	transform: none;
}
.reveal.d1 {
	transition-delay: 0.08s;
}
.reveal.d2 {
	transition-delay: 0.16s;
}
.reveal.d3 {
	transition-delay: 0.24s;
}
.reveal.d4 {
	transition-delay: 0.32s;
}
.reveal.d5 {
	transition-delay: 0.4s;
}

@media (max-width: 980px) {
	.nav-links,
	.nav-phone {
		display: none;
	}
	.nav-cta-btn {
		display: none;
	}
	.burger {
		display: flex;
	}
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.svc-grid,
	.tst-grid,
	.gal-grid {
		grid-template-columns: 1fr 1fr;
	}
	.stats-grid,
	.risk-grid {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
	}
	.split,
	.owner-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.steps {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
	}
	.ms-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.foot-grid {
		grid-template-columns: 1fr 1fr;
	}
	.pain-grid,
	.trans-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 680px) {
	body {
		font-size: 17px;
	}
	.pad {
		padding: 66px 0;
	}
	.svc-grid,
	.tst-grid,
	.gal-grid,
	.stats-grid,
	.risk-grid,
	.steps,
	.foot-grid,
	.imp-grid,
	.ms-grid {
		grid-template-columns: 1fr;
	}
	.hero {
		padding: 110px 0 90px;
		min-height: auto;
	}
	.hero p.lead {
		font-size: 1.08rem;
	}
	.hero-actions .btn {
		flex: 1;
		min-width: 140px;
	}
	.cta-pair {
		gap: 10px;
		margin-top: 34px;
	}
	.cta-pair .btn {
		flex: 1 1 0;
		min-width: 0;
		padding: 14px 14px;
		font-size: 0.92rem;
	}
	.hero-actions,
	.cta-pair,
	.cta-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.hero-actions .btn,
	.cta-pair .btn,
	.cta-actions .btn {
		width: 100%;
		flex: none;
		min-width: 0;
	}
	.btn {
		white-space: normal;
		text-align: center;
	}
	.call-bar {
		display: grid;
	}
	.owner .ph {
		min-height: 300px;
	}
	.section-head {
		margin-bottom: 38px;
	}
	.risk-box {
		padding: 40px 22px;
	}
	footer {
		padding-bottom: 30px;
	}
	.impressum {
		padding-bottom: 96px;
	}
	.foot-bottom {
		flex-direction: column;
	}
}

/* Leistungs-Checkliste */
.check-band {
	background: var(--paper);
	padding: 50px 0;
	border-bottom: 1px solid var(--sand);
}
.check-band .cb-head {
	text-align: center;
	margin-bottom: 26px;
}
.check-band .cb-head h2 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	margin-top: 10px;
}
.check-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	list-style: none;
}
.check-list li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--cream);
	border: 1px solid var(--sand);
	border-radius: 100px;
	padding: 12px 20px;
	font-weight: 600;
	font-size: 1rem;
	color: var(--ink);
}
.check-list li svg {
	width: 20px;
	height: 20px;
	color: var(--green-2);
	flex: none;
}
@media (max-width: 680px) {
	.check-list li {
		width: 100%;
		justify-content: flex-start;
	}
}
/* Vorher/Nachher Foto */
.trans-photo {
	max-width: 980px;
	margin: 0 auto 38px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(246, 242, 231, 0.2);
}
.trans-photo img {
	width: 100%;
	display: block;
}
.trans-photo figcaption {
	background: rgba(0, 0, 0, 0.2);
	color: rgba(246, 242, 231, 0.85);
	font-size: 0.88rem;
	text-align: center;
	padding: 11px 14px;
}
.foot-contact a {
	display: inline;
	padding: 0;
	color: rgba(246, 242, 231, 0.92);
}
.foot-contact a:hover {
	color: var(--accent);
}
