/*
 * www.fratzscher.me — Gestaltung
 *
 * 1. Farben und Maße     4. Abschnitte
 * 2. Grundlagen          5. Spielereien (Alarm, Warp, Meldung)
 * 3. Kopf und Start      6. Unterseiten, Fuß, Bewegung reduzieren
 *
 * Idee: tagsüber Meer, nachts Sterne. Der helle Modus ist Sand und Petrol,
 * der dunkle ein Nachthimmel. Farben stehen nur in Abschnitt 1 — jede neue
 * Farbe braucht einen Wert in beiden Blöcken.
 */

/* 1. Farben und Maße ------------------------------------------------------ */

:root {
	--grund: #f7f4ee;
	--grund-alt: #efe9de;
	--flaeche: #fffdf9;
	--text: #1d2733;
	--leise: #5a6572;
	--linie: #ddd5c7;
	--akzent: #1f7a8c;
	--akzent-stark: #155e6c;
	--akzent-text: #ffffff;
	--sonne: #e9b949;
	--sonne-hell: #f6e7b8;
	--welle-hinten: #bcdde3;
	--welle-vorn: #9ccbd4;
	--himmel-oben: #d4ebee;
	--stern: transparent;
	--alarm: #d64545;
	--ok: #2f9e6a;
	--schatten: 0 1px 2px rgb(29 39 51 / .06), 0 8px 24px rgb(29 39 51 / .06);

	--schrift: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--schrift-titel: "Bahnschrift SemiCondensed", Bahnschrift, "DIN Alternate", "Roboto Condensed", "Arial Narrow", system-ui, sans-serif;
	--schrift-mono: ui-monospace, "Cascadia Mono", Consolas, "SF Mono", Menlo, monospace;

	--rund: 14px;
	--breite: 1120px;
}

@media (prefers-color-scheme: dark) {
	:root {
		--grund: #0b1320;
		--grund-alt: #0f192a;
		--flaeche: #142034;
		--text: #e6ebf2;
		--leise: #9aa7b8;
		--linie: #243350;
		--akzent: #5cc2cf;
		--akzent-stark: #8fd8e0;
		--akzent-text: #0b1320;
		--sonne: #f2c94c;
		--sonne-hell: #3a3421;
		--welle-hinten: #13243a;
		--welle-vorn: #0f1d31;
		--himmel-oben: #060b14;
		--stern: #ffffff;
		--alarm: #ff6b6b;
		--ok: #4cd08d;
		--schatten: 0 1px 2px rgb(0 0 0 / .3), 0 8px 24px rgb(0 0 0 / .25);
	}
}

/* 2. Grundlagen ------------------------------------------------------------ */

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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
	margin: 0;
	background: var(--grund);
	color: var(--text);
	font: 17px/1.65 var(--schrift);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
	font-family: var(--schrift-titel);
	line-height: 1.15;
	margin: 0 0 .5em;
	letter-spacing: .01em;
}

p { margin: 0 0 1em; }

a { color: var(--akzent); text-underline-offset: .2em; }
a:hover { color: var(--akzent-stark); }

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

svg { stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible { outline: 3px solid var(--sonne); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2.5rem, var(--breite)); margin-inline: auto; }

.nur-vorleser {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap;
}

.sprunglink { position: absolute; left: -9999px; }
.sprunglink:focus { left: 1rem; top: 1rem; z-index: 100; background: var(--flaeche); padding: .5rem 1rem; }

.leise { color: var(--leise); }
.gross { font-size: 1.2rem; line-height: 1.6; }

.eyebrow, .deck, .etikett, .konsole__kopf, .konsole__fuss, .zeitleiste__zeit {
	font-family: var(--schrift-mono);
	font-size: .78rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.platzhalter { background: var(--sonne-hell); padding: 0 .3em; border-radius: 4px; }

.knopf {
	display: inline-flex; align-items: center; gap: .5rem;
	padding: .75rem 1.3rem;
	border-radius: 999px;
	border: 2px solid var(--akzent);
	font: 600 1rem/1 var(--schrift);
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s, background-color .15s, color .15s;
}
.knopf svg { width: 1.15em; height: 1.15em; }
.knopf:hover { transform: translateY(-1px); }
.knopf--voll { background: var(--akzent); color: var(--akzent-text); }
.knopf--voll:hover { background: var(--akzent-stark); border-color: var(--akzent-stark); color: var(--akzent-text); }
.knopf--rauch { background: transparent; color: var(--text); border-color: var(--linie); }
.knopf--rauch:hover { border-color: var(--alarm); color: var(--alarm); }
.knopf--rauch .gefuellt { fill: var(--alarm); stroke: none; }

/* 3. Kopf und Start -------------------------------------------------------- */

.kopf {
	position: sticky; top: 0; z-index: 20;
	background: color-mix(in srgb, var(--grund) 85%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--linie);
}
.kopf__innen { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4rem; }

.marke { display: flex; align-items: center; gap: .6rem; color: var(--text); text-decoration: none; font-family: var(--schrift-titel); font-size: 1.15rem; font-weight: 600; }
.marke__zeichen {
	display: grid; place-items: center;
	width: 2.2rem; height: 2.2rem;
	border-radius: 50% 50% 50% 12%;
	background: var(--akzent); color: var(--akzent-text);
	font-size: .9rem; letter-spacing: .04em;
}

.navi ul { display: flex; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.navi a {
	display: block; padding: .4rem .8rem; border-radius: 999px;
	color: var(--text); text-decoration: none; font-size: .95rem;
}
.navi a:hover { background: var(--grund-alt); color: var(--akzent-stark); }

/* Burger-Menü: Knopf, dessen drei Striche beim Öffnen zum X werden */
.menue-knopf {
	display: none;
	place-items: center;
	width: 2.75rem; height: 2.75rem;
	padding: 0; border: 1px solid var(--linie); border-radius: 12px;
	background: var(--flaeche); color: var(--text);
	cursor: pointer;
}
.menue-knopf svg { width: 1.5rem; height: 1.5rem; }
.menue-knopf .strich { transform-box: view-box; transform-origin: 12px 12px; transition: transform .2s, opacity .2s; }
.menue-knopf[aria-expanded="true"] .strich--1 { transform: rotate(45deg) translateY(5px); }
.menue-knopf[aria-expanded="true"] .strich--2 { opacity: 0; }
.menue-knopf[aria-expanded="true"] .strich--3 { transform: rotate(-45deg) translateY(-5px); }

@media (max-width: 820px) {
	/* Ohne JavaScript (oder auf Unterseiten): Leiste unter dem Namen, seitlich wischbar */
	html:not(.mit-menue) { scroll-padding-top: 7rem; }
	html:not(.mit-menue) .kopf__innen { flex-direction: column; align-items: stretch; gap: 0; padding-top: .5rem; }
	html:not(.mit-menue) .navi { overflow-x: auto; scrollbar-width: none; margin-inline: -1.25rem; padding: .3rem 1.25rem .5rem; }
	html:not(.mit-menue) .navi::-webkit-scrollbar { display: none; }
	html:not(.mit-menue) .navi ul { width: max-content; }

	/* Mit JavaScript: Burger-Knopf, Menü klappt unter der Kopfzeile auf */
	.mit-menue .menue-knopf { display: inline-grid; }
	.mit-menue .navi {
		display: none;
		position: absolute; left: 0; right: 0; top: 100%;
		background: var(--grund);
		border-bottom: 1px solid var(--linie);
		box-shadow: 0 12px 24px rgb(0 0 0 / .12);
		padding: .5rem 1.25rem 1rem;
	}
	.mit-menue .navi[data-offen="true"] { display: block; }
	.mit-menue .navi ul { flex-direction: column; gap: .15rem; }
	.mit-menue .navi a { padding: .8rem 1rem; border-radius: 10px; font-size: 1.05rem; }
}

.held {
	position: relative;
	overflow: hidden;
	padding: clamp(3rem, 8vw, 6rem) 0 clamp(5rem, 10vw, 8rem);
	background: linear-gradient(to bottom, var(--himmel-oben), var(--grund) 85%);
}

/* Sterne: nur im dunklen Modus sichtbar, weil --stern im hellen transparent ist */
.held__himmel {
	position: absolute; inset: 0;
	background-image:
		radial-gradient(1.5px 1.5px at 8% 20%, var(--stern), transparent),
		radial-gradient(1px 1px at 22% 65%, var(--stern), transparent),
		radial-gradient(1.5px 1.5px at 35% 12%, var(--stern), transparent),
		radial-gradient(1px 1px at 48% 45%, var(--stern), transparent),
		radial-gradient(2px 2px at 58% 18%, var(--stern), transparent),
		radial-gradient(1px 1px at 67% 70%, var(--stern), transparent),
		radial-gradient(1.5px 1.5px at 76% 30%, var(--stern), transparent),
		radial-gradient(1px 1px at 88% 55%, var(--stern), transparent),
		radial-gradient(1.5px 1.5px at 94% 10%, var(--stern), transparent),
		radial-gradient(1px 1px at 14% 88%, var(--stern), transparent),
		radial-gradient(1px 1px at 42% 80%, var(--stern), transparent),
		radial-gradient(1px 1px at 82% 85%, var(--stern), transparent);
	opacity: .8;
	animation: funkeln 6s ease-in-out infinite alternate;
}
@keyframes funkeln { from { opacity: .45; } to { opacity: .9; } }

/* Die Sonne. Nachts wird sie zum Planeten mit Ring. */
.held::before {
	content: "";
	position: absolute;
	right: 8%; top: 10%;
	width: clamp(90px, 14vw, 170px); aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, var(--sonne-hell), var(--sonne));
	box-shadow: 0 0 80px color-mix(in srgb, var(--sonne) 45%, transparent);
	opacity: .55;
}
@media (prefers-color-scheme: dark) {
	.held::before {
		background: radial-gradient(circle at 30% 30%, #6fa3c7, #22476b 70%);
		box-shadow: 0 0 60px rgb(92 194 207 / .15);
		opacity: .5;
	}
}

.held__raster { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center; }

.eyebrow { color: var(--akzent-stark); margin-bottom: .8rem; }
.eyebrow::before { content: ""; display: inline-block; width: 2.2rem; height: .55rem; margin-right: .6rem; border-radius: 999px 0 0 999px; background: var(--sonne); vertical-align: middle; }

.held h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 700; margin-bottom: .2em; }
.held__rolle { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--leise); margin-bottom: 1.8rem; }

.held__zitat {
	margin: 0 0 2rem;
	padding: 1rem 0 1rem 1.3rem;
	border-left: 5px solid var(--sonne);
	font-size: clamp(1.1rem, 2.4vw, 1.35rem);
	line-height: 1.5;
}
.held__zitat p { margin: 0; }
.held__zitat p + p { margin-top: .4rem; color: var(--leise); font-style: italic; }

.held__knoepfe { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Bullauge: Schiff und Raumschiff zugleich */
.bullauge { margin: 0; justify-self: center; text-align: center; }
.bullauge__rahmen {
	width: clamp(220px, 28vw, 320px); aspect-ratio: 1;
	border-radius: 50%;
	padding: 14px;
	background: conic-gradient(from 0deg, var(--linie), var(--flaeche), var(--linie), var(--flaeche), var(--linie));
	box-shadow: var(--schatten), inset 0 0 0 2px var(--linie);
	position: relative;
}
.bullauge__rahmen::after {
	/* Schrauben */
	content: ""; position: absolute; inset: 5px; border-radius: 50%;
	background:
		radial-gradient(circle at 50% 2%, var(--leise) 2.5px, transparent 3.5px),
		radial-gradient(circle at 50% 98%, var(--leise) 2.5px, transparent 3.5px),
		radial-gradient(circle at 2% 50%, var(--leise) 2.5px, transparent 3.5px),
		radial-gradient(circle at 98% 50%, var(--leise) 2.5px, transparent 3.5px);
	pointer-events: none;
}
.bullauge__glas {
	width: 100%; height: 100%; border-radius: 50%;
	display: grid; place-items: center;
	background: linear-gradient(160deg, var(--welle-hinten), var(--akzent) 140%);
	overflow: hidden;
	position: relative;
}
.bullauge__glas::before {
	content: ""; position: absolute; inset: 0;
	/* nur ein Hauch Glanz — mehr lässt das Foto blass wirken */
	background: linear-gradient(135deg, rgb(255 255 255 / .1), transparent 30%);
	z-index: 1;
}
.bullauge__glas picture { display: block; width: 100%; height: 100%; }
.bullauge__glas img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bullauge__initialen { font-family: var(--schrift-titel); font-size: clamp(3.5rem, 7vw, 5rem); font-weight: 700; color: #fffdf9; opacity: .9; text-shadow: 0 2px 12px rgb(0 0 0 / .2); letter-spacing: .05em; }
.bullauge figcaption { margin-top: 1rem; font-size: .85rem; color: var(--leise); max-width: 18rem; margin-inline: auto; }

.held__horizont { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(50px, 8vw, 110px); }
.held__horizont path { stroke: none; }
.welle--hinten { fill: var(--welle-hinten); opacity: .7; }
.welle--vorn { fill: var(--grund); }

@media (max-width: 820px) {
	.held__raster { grid-template-columns: 1fr; gap: 2rem; }
	.bullauge { order: -1; }
	.held::before { top: 3%; right: -4%; }
}

/* 4. Abschnitte ------------------------------------------------------------ */

.abschnitt { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.abschnitt--alt { background: var(--grund-alt); }

/* Kopfzeile im Stil einer Schiffskonsole: runder Knick, Nummer, Linie */
.abschnitt__kopf { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.abschnitt__kopf h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0; order: 2; }
.deck {
	order: 1;
	padding: .35rem .9rem .35rem 1.4rem;
	border-radius: 999px 6px 6px 999px;
	background: var(--akzent); color: var(--akzent-text);
	white-space: nowrap;
}
.abschnitt__kopf::after {
	content: ""; order: 3; flex: 1; height: .55rem; min-width: 2rem;
	border-radius: 0 999px 999px 0;
	background: linear-gradient(to right, var(--sonne) 0 18%, transparent 18% 20%, var(--linie) 20%);
}

.einleitung { font-size: 1.2rem; max-width: 46rem; margin-bottom: 2rem; }

.zweispaltig { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.fliesstext { max-width: 38rem; }
.stapel { display: grid; gap: 1.2rem; }

.konsole {
	background: var(--flaeche);
	border: 1px solid var(--linie);
	border-radius: var(--rund);
	padding: 1.2rem 1.4rem;
	box-shadow: var(--schatten);
}
.konsole h3 { font-size: 1.35rem; }
.konsole__kopf { display: flex; align-items: center; gap: .5rem; color: var(--akzent-stark); margin-bottom: .6rem; }
.konsole__kopf svg { width: 1.1rem; height: 1.1rem; }
.konsole__fuss { color: var(--leise); margin: .6rem 0 0; font-size: .72rem; }
.konsole--gesperrt { border-left: 6px solid var(--sonne); }
.konsole--gesperrt p:not(.konsole__fuss) { margin-bottom: 0; }

.diagnose { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .9rem; }
.diagnose li { display: grid; grid-template-columns: 1fr 5.5rem 3rem; align-items: center; gap: .7rem; }
.diagnose__zahl { font-family: var(--schrift-mono); font-size: .8rem; text-align: right; color: var(--leise); }
.balken { height: .5rem; border-radius: 999px; background: var(--grund-alt); overflow: visible; position: relative; }
.balken__wert { position: absolute; inset: 0 auto 0 0; border-radius: 999px; background: var(--akzent); }
.b-80 { width: 80%; } .b-95 { width: 95%; } .b-100 { width: 100%; } .b-120 { width: 120%; }
.diagnose__warnung .balken__wert { background: var(--alarm); animation: blinken 1.6s steps(2, jump-none) infinite; }
.diagnose__warnung .diagnose__zahl { color: var(--alarm); font-weight: 700; }
@keyframes blinken { 50% { opacity: .45; } }

@media (max-width: 820px) {
	.zweispaltig { grid-template-columns: 1fr; gap: 2rem; }
}

.kacheln { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.kachel {
	position: relative;
	background: var(--flaeche);
	border: 1px solid var(--linie);
	border-radius: var(--rund);
	padding: 1.4rem 1.4rem 1.2rem;
	box-shadow: var(--schatten);
	transition: transform .2s, border-color .2s;
}
.kachel:hover { transform: translateY(-3px); border-color: var(--akzent); }
.kachel h3 { font-size: 1.3rem; }
.kachel p { margin: 0; color: var(--leise); }
.kachel__symbol { width: 2.4rem; height: 2.4rem; color: var(--akzent); margin-bottom: .8rem; }

.kachel--zitat {
	display: flex; align-items: center;
	background: var(--akzent); border-color: var(--akzent);
}
.kachel--zitat p { color: var(--akzent-text); font-size: 1.1rem; line-height: 1.55; }
.kachel--zitat strong { color: var(--akzent-text); background: color-mix(in srgb, var(--sonne) 40%, transparent); padding: 0 .2em; border-radius: 3px; }
.kachel--zitat:hover { border-color: var(--sonne); }

.etikett {
	position: absolute; top: 1.2rem; right: 1.2rem;
	font-size: .66rem; color: var(--leise);
	border: 1px solid var(--linie); border-radius: 999px;
	padding: .15rem .55rem;
}

.kachel--trek { grid-column: span 2; border-top: 6px solid var(--sonne); }
.trek-daten { margin: 1.2rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.trek-daten div { background: var(--grund-alt); border-radius: 10px; padding: .7rem .9rem; }
.trek-daten dt { font-family: var(--schrift-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--akzent-stark); }
.trek-daten dd { margin: .2rem 0 0; font-size: .92rem; line-height: 1.45; }

@media (max-width: 960px) {
	.kacheln { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
	.kacheln { grid-template-columns: 1fr; }
	.kachel--trek { grid-column: auto; }
	.trek-daten { grid-template-columns: 1fr; }
}

/* Zeitleiste */
.zeitleiste { list-style: none; margin: 0; padding: 0; position: relative; max-width: 50rem; }
.zeitleiste::before {
	content: ""; position: absolute; left: 5.4rem; top: .5rem; bottom: .5rem; width: 6px;
	border-radius: 999px; background: linear-gradient(var(--akzent), var(--sonne));
}
.zeitleiste li { display: grid; grid-template-columns: 4.4rem 1fr; gap: 2.4rem; padding-bottom: 1.8rem; position: relative; }
.zeitleiste li::before {
	content: ""; position: absolute; left: 5.05rem; top: .35rem;
	width: 1.05rem; height: 1.05rem; border-radius: 50%;
	background: var(--grund); border: 4px solid var(--akzent);
}
.zeitleiste__zeit { font-size: .95rem; font-weight: 700; color: var(--akzent-stark); text-align: right; padding-top: .15rem; }
.zeitleiste__eintrag h3 { font-size: 1.3rem; margin-bottom: .2rem; }
.zeitleiste__eintrag p { margin: 0; color: var(--leise); }
li.zeitleiste__warp::before { border-color: var(--sonne); background: var(--sonne); box-shadow: 0 0 0 6px color-mix(in srgb, var(--sonne) 30%, transparent); }
li.zeitleiste__offen::before { border-style: dashed; border-color: var(--leise); }
li.zeitleiste__offen { padding-bottom: 0; }

@media (max-width: 520px) {
	.zeitleiste::before { left: .45rem; }
	.zeitleiste li { grid-template-columns: 1fr; gap: .2rem; padding-left: 2.2rem; }
	.zeitleiste li::before { left: 0; }
	.zeitleiste__zeit { text-align: left; }
}

.nebenjob {
	display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
	background: var(--flaeche); border: 1px solid var(--linie); border-radius: var(--rund);
	padding: clamp(1.4rem, 4vw, 2.4rem); box-shadow: var(--schatten);
}
.nebenjob p:last-child { margin-bottom: 0; }
@media (max-width: 720px) { .nebenjob { grid-template-columns: 1fr; } .nebenjob .knopf { justify-self: start; } }

/* 5. Spielereien ------------------------------------------------------------ */

.alarm {
	position: fixed; inset: 0; z-index: 50;
	display: grid; place-items: center;
	pointer-events: none;
	box-shadow: inset 0 0 0 10px var(--alarm), inset 0 0 120px color-mix(in srgb, var(--alarm) 55%, transparent);
	animation: alarmpuls .8s ease-in-out infinite alternate;
}
.alarm[hidden] { display: none; }
@keyframes alarmpuls { from { opacity: .55; } to { opacity: 1; } }
.alarm__tafel {
	pointer-events: auto;
	background: var(--flaeche); color: var(--text);
	border: 3px solid var(--alarm); border-radius: 20px 6px 20px 6px;
	padding: 1.4rem 2rem; text-align: center; max-width: min(90vw, 28rem);
	box-shadow: 0 20px 60px rgb(0 0 0 / .35);
	animation: none;
}
.alarm__titel { font-family: var(--schrift-titel); font-size: 2rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--alarm); margin: 0 0 .4rem; }
.alarm__grund { margin: 0 0 .6rem; font-size: 1.05rem; }
.alarm__entwarnung { margin: 0; font-family: var(--schrift-mono); font-size: .85rem; color: var(--leise); min-height: 1.3em; }
.alarm--entwarnt { animation: none; box-shadow: inset 0 0 0 10px var(--ok); }
.alarm--entwarnt .alarm__tafel { border-color: var(--ok); }
.alarm--entwarnt .alarm__titel { color: var(--ok); }

.meldung {
	position: fixed; left: 50%; bottom: 1.5rem; z-index: 60;
	transform: translateX(-50%);
	background: var(--text); color: var(--grund);
	padding: .7rem 1.2rem; border-radius: 999px;
	font-size: .95rem; box-shadow: 0 10px 30px rgb(0 0 0 / .25);
	max-width: calc(100vw - 2rem); text-align: center;
}

.warp { position: fixed; inset: 0; z-index: 40; width: 100%; height: 100%; pointer-events: none; }

.tee {
	margin-top: .3rem; padding: 0; border: 0; background: none; cursor: pointer;
	font: italic .85rem var(--schrift); color: var(--leise);
	text-decoration: underline dotted; text-underline-offset: .25em;
}
.tee:hover { color: var(--akzent); }

/* 6. Unterseiten, Fuß, Bewegung reduzieren --------------------------------- */

.fuss { border-top: 1px solid var(--linie); padding: 2.5rem 0; font-size: .92rem; }
.fuss__raster { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 1.5rem 2rem; align-items: start; }
.fuss p { margin: 0 0 .25rem; }
.fuss__name { font-family: var(--schrift-titel); font-size: 1.1rem; font-weight: 600; }
.fuss__links { display: flex; gap: 1.2rem; }
.lampe { display: inline-block; width: .6rem; height: .6rem; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); margin-right: .3rem; }
@media (max-width: 720px) { .fuss__raster { grid-template-columns: 1fr; } }

.unterseite { padding: clamp(2.5rem, 6vw, 4rem) 0 4rem; }
.prosa { max-width: 46rem; }
.prosa h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
.prosa h2 { font-size: 1.4rem; margin-top: 2rem; }
.prosa ul { padding-left: 1.2rem; }

.fehler { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 3rem 0; }
.fehler__code { font-family: var(--schrift-titel); font-size: clamp(5rem, 18vw, 10rem); font-weight: 700; line-height: 1; color: var(--akzent); margin: 0; }
.fehler .knopf { margin-top: 1rem; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
