:root {
	--bg: #f8f6ef;
	--ink: #0f1f0a;
	--muted: #5f7361;
	--line: #e4e0d4;
	--accent: #2ecc12;
	--white: #ffffff;
	--pill-bg: #f1efe6;
	--max: 1120px;
	--gutter: 64px;
	--cell-pad-x: 40px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	min-height: 100%;
}

body {
	font-family: "Plus Jakarta Sans", sans-serif;
	background: var(--bg);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
	-webkit-user-drag: none;
	user-select: none;
	-webkit-touch-callout: none;
}

.legal,
.legal--protected {
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

.page {
	position: relative;
	min-height: 100vh;
	overflow-x: clip;
	display: flex;
	flex-direction: column;
}

.page::before,
.page::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--line);
	z-index: 2;
	pointer-events: none;
}

.page::before {
	left: max(var(--gutter), calc(50% - var(--max) / 2));
}

.page::after {
	right: max(var(--gutter), calc(50% - var(--max) / 2));
}

.shell {
	width: min(100%, calc(var(--max) + var(--gutter) * 2));
	margin: 0 auto;
	padding-inline: var(--gutter);
}

.header-inner,
.footer-grid,
.footer-bottom {
	padding-inline: 8px;
}

.header {
	border-bottom: 1px solid var(--line);
	min-height: 64px;
	padding: 20px 0;
	display: flex;
	align-items: center;
}

.header-inner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: min(100%, 92vw);
	color: #000000;
	text-decoration: none;
	margin-inline: auto;
}

.brand-name {
	display: inline-flex;
	align-items: center;
	font-family: "Archivo Black", sans-serif;
	font-weight: 400;
	font-size: clamp(22px, 5.6vw, 52px);
	letter-spacing: 0.01em;
	line-height: 0.92;
	text-transform: uppercase;
	white-space: nowrap;
}

.brand-a {
	height: 0.95em;
	width: 0.95em;
	flex: 0 0 auto;
	margin: 0 0.02em;
	stroke: currentColor;
	overflow: visible;
}

.page-main {
	flex: 1 1 auto;
}

.page-intro {
	padding: 72px 0 48px;
	text-align: center;
	border-bottom: 1px solid var(--line);
}

.page-intro h1 {
	font-size: clamp(30px, 3.4vw, 40px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--ink);
}

.page-intro p {
	margin: 14px auto 0;
	max-width: 48ch;
	font-size: 15px;
	line-height: 1.55;
	color: var(--muted);
}

.page-body {
	min-height: 40vh;
	padding: 48px 0 96px;
}

.page-content {
	max-width: 68ch;
	margin: 0 auto;
	padding-inline: 8px;
	text-align: left;
}

.page-content > * + * {
	margin-top: 18px;
}

.page-content > h2 {
	margin-top: 40px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--ink);
}

.page-content > h2:first-child {
	margin-top: 0;
}

.page-content p,
.page-content li {
	font-size: 15px;
	line-height: 1.55;
	color: #3d342c;
}

.page-content ul,
.page-content ol {
	margin: 0;
	padding-left: 1.25em;
	display: grid;
	gap: 10px;
}

.page-content strong {
	font-weight: 700;
	color: var(--ink);
}

.page-content a:not(.page-cta) {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.page-content a:not(.page-cta):hover {
	color: #1a8f0a;
}

.page-steps {
	display: grid;
	gap: 12px;
	margin-top: 8px;
	padding: 0;
	list-style: none;
}

.page-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	padding: 16px 18px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--white);
}

.page-step-num {
	position: relative;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: block;
	flex: 0 0 20px;
	margin: 0;
	padding: 0;
	background: var(--accent);
	color: transparent;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	user-select: none;
}

.page-step-num::before {
	content: attr(data-n);
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	/* Optischer Ausgleich: Ziffern sitzen in der Font zu hoch */
	transform: translateY(0.1em);
}

.page-step strong {
	display: block;
	font-size: 14.5px;
	margin-bottom: 4px;
}

.page-step > div span {
	display: block;
	font-size: 14px;
	line-height: 1.45;
	color: var(--muted);
	font-weight: 400;
}

.page-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	margin-top: 28px;
	border-radius: 999px;
	background: var(--accent);
	color: #102016;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: -0.01em;
}

.page-cta:hover {
	filter: brightness(0.97);
}

.page-faq {
	display: grid;
	gap: 10px;
	margin-top: 8px;
}

.page-faq details {
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	padding: 14px 16px;
}

.page-faq summary {
	cursor: pointer;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--ink);
	list-style: none;
}

.page-faq summary::-webkit-details-marker {
	display: none;
}

.page-faq details p {
	margin-top: 10px;
	font-size: 14.5px;
	line-height: 1.5;
	color: #3d342c;
}

.legal {
	max-width: 68ch;
	margin: 0 auto;
	padding-inline: 8px;
	text-align: left;
}

.legal > * + * {
	margin-top: 14px;
}

.legal > h2 {
	margin-top: 36px;
}

.legal-lead {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--muted);
}

.legal h2 {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--ink);
}

.legal p,
.legal address,
.legal li {
	font-size: 15px;
	line-height: 1.55;
	color: #3d342c;
	font-style: normal;
}

.legal ul {
	margin: 0;
	padding-left: 1.2em;
	display: grid;
	gap: 10px;
}

.legal li + li {
	margin-top: 0;
}

.legal strong {
	font-weight: 700;
	color: var(--ink);
}

.legal a {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 2px;
	-webkit-user-select: none;
	user-select: none;
}

.legal a:hover {
	color: #1a8f0a;
}

.site-footer {
	margin-top: auto;
	border-top: 1px solid var(--line);
	padding: 56px 0 28px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px 24px;
}

.footer-col h4 {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
	display: grid;
	gap: 11px;
}

.footer-col a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #53483f;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	line-height: 1.2;
}

.footer-col a:hover {
	color: var(--ink);
}

.footer-col a img {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	display: block;
	opacity: 0.75;
}

.footer-bottom {
	margin-top: 48px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-bottom p {
	font-size: 13px;
	color: #91867c;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 14px;
}

.footer-social a {
	display: grid;
	place-items: center;
	opacity: 0.7;
}

.footer-social a:hover {
	opacity: 1;
}

.footer-social img {
	width: 18px;
	height: 18px;
	display: block;
}

@media (max-width: 1100px) {
	:root {
		--gutter: 48px;
		--cell-pad-x: 32px;
	}
}

@media (max-width: 900px) {
	:root {
		--gutter: 28px;
		--cell-pad-x: 24px;
	}

	.header {
		padding: 22px 0;
	}

	.brand {
		padding-block: 0.1em;
	}

	.header-inner,
	.footer-grid,
	.footer-bottom {
		padding-inline: 4px;
	}

	.page-intro {
		padding: 56px 0 40px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 36px 24px;
	}

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

@media (max-width: 480px) {
	:root {
		--gutter: 24px;
		--cell-pad-x: 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}
