:root {
	--petrol-900: #12262f;
	--petrol-800: #1b3a4b;
	--petrol-700: #24506a;
	--petrol-100: #e4ecef;
	--amber-600: #c1652e;
	--amber-500: #d9793c;
	--amber-100: #f5e2d2;
	--ink-900: #23262b;
	--ink-600: #5b6268;
	--surface-050: #f5f3ee;
	--surface-000: #ffffff;
	--line: #e2ded2;
	--success: #4b7a5e;
	--white-78: rgba(255, 255, 255, 0.78);
	--font-display: "Space Grotesk", sans-serif;
	--font-body: "Inter", sans-serif;
	--font-mono: "IBM Plex Mono", monospace;
	--radius-s: 8px;
	--radius-m: 14px;
	--radius-l: 22px;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink-900);
	background: var(--surface-050);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
img,
svg {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
}
h1,
h2,
h3 {
	font-family: var(--font-display);
	margin: 0;
	line-height: 1.12;
	letter-spacing: -0.01em;
}
p {
	margin: 0;
}
.wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}
.eyebrow {
	font-family: var(--font-mono);
	font-size: 12.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--amber-600);
}
:focus-visible {
	outline: 3px solid var(--amber-600);
	outline-offset: 3px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15.5px;
	padding: 14px 24px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition:
		transform 0.15s ease,
		background 0.15s ease;
}
.btn:hover {
	transform: translateY(-1px);
}
.btn-primary {
	background: var(--amber-600);
	color: #fff;
}
.btn-primary:hover {
	background: #a9552a;
}
.btn-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
}
.btn-outline {
	background: transparent;
	color: var(--petrol-800);
	border-color: var(--petrol-800);
}
.btn-outline:hover {
	background: var(--petrol-800);
	color: #fff;
}

/* Nav */
header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(245, 243, 238, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	color: var(--petrol-900);
	text-decoration: none;
}
.brand-mark {
	width: auto;
	height: 68px;
	flex-shrink: 0;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-links a {
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	color: var(--ink-900);
}
.nav-links a:hover {
	color: var(--amber-600);
}
.nav-cta {
	display: flex;
	align-items: center;
	gap: 10px;
}
.nav-cta .btn {
	padding: 11px 20px;
	font-size: 14.5px;
}
.nav-cta .btn-outline {
	border-color: var(--petrol-800);
}
#nav-toggle {
	display: none;
}
.burger {
	display: none;
	cursor: pointer;
}
@media (max-width: 880px) {
	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--surface-000);
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		border-bottom: 1px solid var(--line);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}
	.nav-links li {
		width: 100%;
	}
	.nav-links a {
		display: block;
		padding: 16px 24px;
		width: 100%;
		border-top: 1px solid var(--line);
	}
	#nav-toggle:checked ~ .nav-links {
		max-height: 400px;
	}
	.burger {
		display: flex;
		flex-direction: column;
		gap: 5px;
		background: none;
		border: none;
		padding: 8px;
	}
	.burger span {
		width: 22px;
		height: 2px;
		background: var(--petrol-900);
		display: block;
	}
	.nav-cta {
		display: none;
	}
}

/* Hero */
.hero {
	background: linear-gradient(155deg, var(--petrol-900), var(--petrol-800) 70%);
	color: #fff;
	overflow: hidden;
	position: relative;
}
.hero .wrap {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
	padding-top: 76px;
	padding-bottom: 64px;
}
.badge.badge-hero {
	display: inline-block;
	background: transparent;
	color: var(--amber-500);
	border: 1.5px solid var(--amber-600);
	padding: 6.5px 14px;
	font-size: 13px;
	margin-bottom: 18px;
}
.hero h1 {
	font-size: clamp(30px, 4vw, 44px);
	color: #fff;
}
.hero-sub {
	margin-top: 20px;
	font-size: 17.5px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 46ch;
}
.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}
.hero-art {
	position: relative;
}
.about-photo.hero-photo {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.7);
}

/* Section basics */
section {
	padding: 88px 0;
}
.section-head {
	max-width: 640px;
	margin-bottom: 48px;
}
.section-head h1,
.section-head h2 {
	font-size: clamp(24px, 3vw, 32px);
	color: var(--petrol-900);
	margin-top: 10px;
}
.section-head p {
	margin-top: 14px;
	color: var(--ink-600);
	font-size: 16.5px;
}

/* Why section */
.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.why-card {
	background: var(--surface-000);
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
	padding: 28px;
}
.why-card-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}
.why-card h3 {
	font-size: 18px;
	color: var(--petrol-900);
}
.why-card p {
	margin-top: 10px;
	color: var(--ink-600);
	font-size: 15px;
}

.usp-icon {
	width: 38px;
	height: 38px;
	color: var(--amber-600);
	flex-shrink: 0;
}

/* Ablauf - route/floor-plan motif */
.ablauf {
	position: relative;
}
.route {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-top: 24px;
}
.route::before {
	content: "";
	position: absolute;
	top: 19px;
	left: 24px;
	right: 24px;
	height: 0;
	border-top: 2px dashed var(--petrol-700);
	opacity: 0.35;
}
.route-step {
	flex: 1;
	text-align: center;
	padding: 0 10px;
	position: relative;
}
.route-num {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--petrol-800);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-family: var(--font-mono);
	font-size: 14px;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 0 6px var(--surface-050);
}
.route-step h3 {
	font-size: 15px;
	color: var(--petrol-900);
}
.route-step p {
	margin-top: 6px;
	font-size: 13.5px;
	color: var(--ink-600);
}
@media (max-width: 760px) {
	.route {
		flex-direction: column;
		gap: 28px;
	}
	.route::before {
		display: none;
	}
}

/* Zielgruppen split */
.split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.split-card {
	border-radius: var(--radius-l);
	padding: 36px;
}
.split-card.dark {
	background: var(--petrol-800);
	color: #fff;
}
.split-card.light {
	background: var(--surface-000);
	border: 1px solid var(--line);
}
.split-card h3 {
	font-size: 21px;
}
.split-card.dark h3 {
	color: #fff;
}
.split-card.light h3 {
	color: var(--petrol-900);
}
.split-card ul {
	margin: 20px 0 28px;
	padding: 0;
	list-style: none;
}
.split-card li {
	display: flex;
	gap: 10px;
	font-size: 15px;
	margin-bottom: 10px;
}
.split-card.dark p,
.split-card.dark li {
	color: rgba(255, 255, 255, 0.82);
}
.split-card.light p,
.split-card.light li {
	color: var(--ink-600);
}
.check {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

/* Termin highlight */
#termine {
	background: var(--petrol-100);
}
.termin-card {
	background: var(--surface-000);
	border: 2px solid var(--amber-600);
	border-radius: var(--radius-l);
	padding: 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}
.termin-left {
	display: flex;
	align-items: center;
	gap: 20px;
}
.termin-date {
	font-family: var(--font-mono);
	background: var(--amber-100);
	color: var(--amber-600);
	border-radius: var(--radius-s);
	padding: 14px 18px;
	text-align: center;
	min-width: 84px;
}
.termin-date .d {
	display: block;
	font-size: 22px;
	font-weight: 600;
}
.termin-date .m {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.termin-left h3 {
	font-size: 19px;
	color: var(--petrol-900);
}
.termin-left p {
	margin-top: 6px;
	color: var(--ink-600);
	font-size: 14.5px;
}
.termine-liste {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}
.termin-card--empty {
	justify-content: center;
	text-align: center;
}
.termin-card--empty p {
	color: var(--ink-600);
	font-size: 15px;
}
.termin-card--empty a {
	color: var(--amber-600);
	font-weight: 600;
}

/* About teaser */
.about-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 48px;
	align-items: center;
}
.about-photo {
	aspect-ratio: 4/5;
	border-radius: var(--radius-l);
	background: var(--petrol-100);
	border: 1.5px dashed var(--petrol-700);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--petrol-700);
	font-family: var(--font-mono);
	font-size: 13px;
	text-align: center;
	padding: 20px;
}
.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}
.badge {
	font-family: var(--font-mono);
	font-size: 12.5px;
	background: var(--petrol-100);
	color: var(--petrol-800);
	padding: 8px 14px;
	border-radius: 999px;
}
.about-grid h2 {
	margin-top: 10px;
	color: var(--petrol-900);
}
.about-lead {
	margin-top: 16px;
	color: var(--ink-600);
	font-size: 16px;
	max-width: 56ch;
}
.about-grid .btn-outline {
	margin-top: 26px;
}

/* FAQ */
.faq-item {
	border-bottom: 1px solid var(--line);
	padding: 22px 0;
}
.faq-item summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16.5px;
	color: var(--petrol-900);
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item summary::after {
	content: "+";
	font-size: 22px;
	color: var(--amber-600);
	flex-shrink: 0;
	margin-left: 16px;
}
.faq-item[open] summary::after {
	content: "–";
}
.faq-item p {
	margin-top: 14px;
	color: var(--ink-600);
	font-size: 15px;
	max-width: 70ch;
}
.faq-item ul {
	margin-top: 8px;
	padding-left: 20px;
	color: var(--ink-600);
	font-size: 15px;
	max-width: 70ch;
}
.faq-item li {
	margin-top: 4px;
}
#faq {
	background: var(--surface-000);
}
#faq .wrap {
	max-width: 780px;
}

/* Legal pages (Impressum, Datenschutz) */
.legal-page .wrap {
	max-width: 780px;
}
.legal-content h3 {
	font-size: 17px;
	color: var(--petrol-900);
	margin-top: 36px;
}
.legal-content h3:first-child {
	margin-top: 0;
}
.legal-content p {
	margin-top: 10px;
	color: var(--ink-600);
	font-size: 15px;
	max-width: 70ch;
}
.legal-content a {
	color: var(--amber-600);
}
.legal-content a.btn {
	color: #fff;
}
.legal-placeholder {
	color: var(--amber-600);
}

/* Final CTA band */
.cta-band {
	background: var(--petrol-900);
	color: #fff;
	text-align: center;
}
.cta-band h2 {
	color: #fff;
	font-size: clamp(24px, 3.4vw, 34px);
}
.cta-band p {
	margin-top: 14px;
	color: var(--white-78);
	font-size: 16.5px;
}
.cta-band .hero-ctas {
	justify-content: center;
	margin-top: 30px;
}
.cta-contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
}
.contact-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--white-78);
	font-size: 15px;
	text-decoration: underline;
}
.contact-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Kontakt / Inhouse-Anfrage Formular */
#kontakt .wrap {
	max-width: 640px;
}
.kontakt-form-card {
	background: var(--surface-000);
	border: 1px solid var(--line);
	border-radius: var(--radius-m);
	padding: 32px;
	display: grid;
	gap: 20px;
}
.form-row {
	display: grid;
	gap: 6px;
}
.form-row label {
	font-size: 14px;
	font-weight: 600;
	color: var(--petrol-900);
}
.optional-tag {
	font-weight: 400;
	color: var(--ink-600);
	font-size: 12.5px;
}
.form-row input,
.form-row textarea {
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink-900);
	background: var(--surface-050);
	border: 1px solid var(--line);
	border-radius: var(--radius-s);
	padding: 12px 14px;
	width: 100%;
}
.form-row textarea {
	min-height: 120px;
	resize: vertical;
}
.form-hint {
	font-size: 13px;
	color: var(--ink-600);
}
.kontakt-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--ink-600);
	line-height: 1.5;
}
.kontakt-checkbox input[type="checkbox"] {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	accent-color: var(--amber-600);
	flex-shrink: 0;
}
.kontakt-checkbox a {
	color: var(--amber-600);
}
.kontakt-form-card .btn {
	justify-self: start;
}
/* Netlify honeypot field: hidden from sighted users; aria-hidden +
   tabindex="-1" on the field itself keep AT/keyboard users from
   stumbling into it, only bots that blindly fill every input get caught */
.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

footer {
	background: var(--surface-000);
	border-top: 1px solid var(--line);
	padding: 48px 0 28px;
}
.foot-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}
.foot-links {
	display: flex;
	gap: 22px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}
.foot-links a {
	text-decoration: none;
	font-size: 14px;
	color: var(--ink-600);
}
.foot-note {
	margin-top: 24px;
	font-size: 13px;
	color: var(--ink-600);
}
.foot-brand {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--petrol-900);
}

@media (max-width: 900px) {
	.hero .wrap {
		grid-template-columns: 1fr;
		padding-top: 44px;
	}
	.why-grid {
		grid-template-columns: 1fr 1fr;
	}
	.split-grid,
	.about-grid {
		grid-template-columns: 1fr;
	}
	.about-photo {
		max-width: 280px;
	}
}
@media (max-width: 600px) {
	.why-grid {
		grid-template-columns: 1fr;
	}
	section {
		padding: 60px 0;
	}

	/* Center headings, text and buttons on smartphones */
	.hero .wrap,
	.section-head,
	.why-card,
	.split-card,
	.about-grid,
	.termin-card,
	.danke-cta,
	footer {
		text-align: center;
	}
	.section-head {
		margin-left: auto;
		margin-right: auto;
	}
	.about-photo {
		margin-left: auto;
		margin-right: auto;
	}
	.why-card-head {
		justify-content: center;
	}
	.hero-ctas,
	.hero-stats,
	.badge-row,
	.foot-links {
		justify-content: center;
	}
	.split-card li {
		text-align: left;
	}
	.termin-card,
	.termin-left {
		flex-direction: column;
		align-items: center;
	}
	.foot-grid {
		flex-direction: column;
		align-items: center;
	}
}
