:root
{
	--rose: #b8918d;
	--rose-tief: #9c7370;
	--perle: #dcd9d4;
	--perle-warm: #e8e4de;
	--kastanie: #392625;
	--kastanie-weich: #573c3a;
	--nacht: #2a1c1b;
}

*
{
	box-sizing: border-box;
}

html
{
	-webkit-text-size-adjust: 100%;
}

body
{
	margin: 0;
	background: var(--rose);
	color: var(--nacht);
	font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: clamp(1rem, 0.95rem + 0.28vw, 1.1rem);
	line-height: 1.78;
	-webkit-font-smoothing: antialiased;
}

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

a
{
	color: inherit;
}

.bahn
{
	max-width: 68rem;
	margin: 0 auto;
	padding: 0 clamp(1.2rem, 5vw, 3.5rem);
}

/* ---------------------------------------------------------------
   Typografie: Die Seite ist durchgehend in einer Grotesk gesetzt.
   Die einzige Serif-Zeile der ganzen Seite ist die Überschrift —
   sonst kommt keine zweite Schriftfamilie vor.
   --------------------------------------------------------------- */
h1
{
	margin: 1.8rem 0 0;
	font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
	font-size: clamp(2.2rem, 1.2rem + 4.2vw, 4rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.015em;
	color: var(--kastanie);
}

h2
{
	position: relative;
	margin: 0 0 1.1rem;
	padding-left: 1.9rem;
	font-size: clamp(1.15rem, 1rem + 0.6vw, 1.42rem);
	font-weight: 600;
	line-height: 1.32;
	color: var(--kastanie);
}

h2::before
{
	content: "";
	position: absolute;
	left: 0;
	top: 0.52em;
	width: 0.85rem;
	height: 0.85rem;
	border-radius: 50%;
	border: 2px solid var(--kastanie);
}

p
{
	margin: 0 0 1.2em;
	max-width: 36rem;
}

.auszeichnung
{
	display: inline-block;
	margin: 0;
	padding: 0.25rem 0.85rem;
	border: 1px solid var(--kastanie-weich);
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--kastanie-weich);
}

/* ---------------------------------------------------------------
   Kopf
   --------------------------------------------------------------- */
.kopf
{
	padding: clamp(2.6rem, 7vw, 5rem) 0 clamp(2.4rem, 6vw, 4rem);
}

.kopf p
{
	max-width: 33rem;
	margin: 1.6rem 0 0;
	font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.24rem);
	line-height: 1.62;
	color: var(--kastanie-weich);
}

/* ---------------------------------------------------------------
   Die Leitform: der Kreis. Alle Bilder dieser Seite sind rund.
   --------------------------------------------------------------- */
.rund
{
	margin: 0;
	position: relative;
}

.rund img
{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	clip-path: circle(50% at 50% 50%);
}

@media (prefers-reduced-motion: no-preference)
{
	.js .rund img
	{
		clip-path: circle(0% at 50% 50%);
		transition: clip-path 1.15s cubic-bezier(0.2, 0.75, 0.25, 1);
	}

	.js .rund.offen img
	{
		clip-path: circle(50% at 50% 50%);
	}
}

.rund figcaption
{
	max-width: 22rem;
	margin: 1rem auto 0;
	text-align: center;
	font-size: 0.85rem;
	line-height: 1.55;
	color: var(--kastanie-weich);
}

/* Das Titelbild bleibt querformatig — als einziges. Es ist der Blick
   in einen Raum, kein Porträt. */
.kopf__bild
{
	margin: clamp(2rem, 5vw, 3.2rem) 0 0;
	border-radius: 1.6rem;
	overflow: hidden;
}

.kopf__bild img
{
	width: 100%;
}

.kopf__bild figcaption
{
	max-width: 34rem;
	margin: 1rem 0 0;
	font-size: 0.86rem;
	line-height: 1.55;
	color: var(--kastanie-weich);
}

/* ---------------------------------------------------------------
   Abschnitte: Text und rundes Bild versetzt nebeneinander
   --------------------------------------------------------------- */
.satz
{
	padding: clamp(2.8rem, 6vw, 4.6rem) 0;
}

.satz--perle
{
	background: var(--perle);
}

.satz--warm
{
	background: var(--perle-warm);
}

.versatz
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
	gap: clamp(1.8rem, 5vw, 4rem);
	align-items: center;
}

.versatz > *
{
	min-width: 0;
}

.versatz--gedreht .versatz__bild
{
	order: -1;
}

.versatz__bild
{
	max-width: 24rem;
	width: 100%;
	justify-self: center;
}

/* ---------------------------------------------------------------
   Die vier Varietäten — als Text, nicht als Größenleiter
   --------------------------------------------------------------- */
.vier
{
	list-style: none;
	margin: 1.6rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr));
	gap: 0.9rem;
}

.vier li
{
	min-width: 0;
	padding: 1.1rem 1.2rem;
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.42);
	font-size: 0.92rem;
	line-height: 1.5;
}

.vier b
{
	display: block;
	font-size: 1.02rem;
	color: var(--kastanie);
}

/* ---------------------------------------------------------------
   Merksatz
   --------------------------------------------------------------- */
.merksatz
{
	background: var(--rose-tief);
	padding: clamp(3rem, 7vw, 5rem) 0;
	color: #fdfbf9;
}

.merksatz p
{
	max-width: 30rem;
	margin: 0 auto;
	text-align: center;
	font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
	font-size: clamp(1.5rem, 1.1rem + 1.9vw, 2.4rem);
	line-height: 1.22;
}

/* ---------------------------------------------------------------
   Schluss
   --------------------------------------------------------------- */
.schluss
{
	background: var(--kastanie);
	color: var(--perle-warm);
	padding: clamp(3rem, 7vw, 5rem) 0;
}

.schluss h2,
.schluss h2::before
{
	color: var(--perle-warm);
	border-color: var(--perle-warm);
}

.knopf
{
	display: inline-block;
	margin-top: 0.6rem;
	padding: 0.9rem 1.9rem;
	border-radius: 999px;
	background: var(--rose);
	color: var(--nacht);
	font-weight: 700;
	font-size: 0.94rem;
	text-decoration: none;
}

.knopf:hover,
.knopf:focus
{
	background: var(--perle-warm);
}

.siegel
{
	margin: 2.6rem 0 0;
	display: flex;
	gap: 1.4rem;
	align-items: center;
	flex-wrap: wrap;
}

.siegel img
{
	width: 8rem;
	padding: 0.8rem;
	border-radius: 50%;
	background: var(--perle-warm);
}

.siegel figcaption
{
	max-width: 23rem;
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--perle);
}

/* ---------------------------------------------------------------
   Querlinks: zweispaltig, jede Zeile mit einem leeren Ring, der
   sich beim Überfahren füllt
   --------------------------------------------------------------- */
.themen
{
	background: var(--perle);
	padding: clamp(2.8rem, 6vw, 4.4rem) 0;
}

.themenliste
{
	list-style: none;
	margin: 1.4rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
	gap: 0.15rem 2.4rem;
}

.themenliste li
{
	min-width: 0;
}

.themenliste li[hidden]
{
	display: none;
}

.themenliste a
{
	display: flex;
	gap: 0.75rem;
	align-items: baseline;
	padding: 0.5rem 0;
	font-size: 0.9rem;
	line-height: 1.4;
	text-decoration: none;
}

.themenliste a::before
{
	content: "";
	flex: none;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	border: 1.5px solid var(--rose-tief);
	transform: translateY(-0.1rem);
	transition: background 0.25s ease;
}

.themenliste a:hover::before,
.themenliste a:focus::before
{
	background: var(--rose-tief);
}

.themenliste a:hover,
.themenliste a:focus
{
	color: var(--kastanie);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* ---------------------------------------------------------------
   Impressum: ein Kasten mit vollrunden Ecken, Beschriftungen als
   kleine Kapseln
   --------------------------------------------------------------- */
.fuss
{
	background: var(--rose);
	padding: clamp(2.4rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 4.6rem);
}

.fuss__kasten
{
	border: 1px solid var(--kastanie-weich);
	border-radius: 2rem;
	padding: clamp(1.4rem, 4vw, 2.6rem);
	font-size: 0.86rem;
	line-height: 1.7;
}

.fuss__zeile
{
	margin: 0 0 1rem;
	max-width: none;
}

.fuss__zeile:last-child
{
	margin-bottom: 0;
}

.fuss__kasten b
{
	display: inline-block;
	margin-right: 0.6rem;
	padding: 0.1rem 0.7rem;
	border-radius: 999px;
	background: var(--kastanie);
	color: var(--perle-warm);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	vertical-align: 0.1em;
}

.fuss a
{
	text-decoration: underline;
	text-decoration-color: var(--kastanie);
	text-underline-offset: 0.2em;
}

/* ---------------------------------------------------------------
   Empfehlung: ein durchgehendes Band aus fünf flachen Feldern.
   Zwischen den Feldern kein Abstand, nur ein Haarstrich; gerundet
   ist allein das Band als Ganzes — wie die Kreise der Seite.
   --------------------------------------------------------------- */

.reichen
{
	background: var(--perle-warm);
	padding: clamp(2.2rem, 5vw, 3.4rem) 0 clamp(2.6rem, 6vw, 4rem);
}

.reichen__satz
{
	max-width: 38rem;
	margin: 0 0 clamp(1.3rem, 3vw, 2rem);
	font-size: 0.9rem;
	line-height: 1.68;
	color: var(--kastanie-weich);
}

.reichen__band
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
	gap: 0;
	overflow: hidden;
	border-radius: 1.6rem;
	background: var(--rose);
}

.reichen__feld
{
	display: flex;
	align-items: center;
	gap: .6rem;
	min-width: 0;
	margin: 0;
	padding: 1.05rem 1.1rem;
	border: 0;
	border-left: 1px solid var(--perle-warm);
	background: var(--perle);
	font-family: inherit;
	font-size: 0.85rem;
	line-height: 1.35;
	color: var(--kastanie);
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .24s ease, color .24s ease;
}

.reichen__feld:first-child { border-left: 0; }

.reichen__feld svg { flex: none; color: var(--rose-tief); transition: color .24s ease; }

.reichen__feld:hover,
.reichen__feld:focus-visible
{
	background: var(--kastanie);
	color: var(--perle-warm);
}

.reichen__feld:hover svg,
.reichen__feld:focus-visible svg { color: var(--rose); }

.reichen__feld[hidden] { display: none; }

/* ---- Mitscrollende Leiste: rechter Rand, runde Marken.
   Erst ab 1240 px, davor steht die Bahn zu nah am Rand. ---- */

.kreisleiste { display: none; }

@media (min-width: 1240px)
{
	.kreisleiste
	{
		display: flex;
		position: fixed;
		right: 1.3rem;
		top: 50%;
		transform: translateY(-50%);
		flex-direction: column;
		gap: .5rem;
		z-index: 20;
	}

	.kreisleiste__punkt
	{
		display: grid;
		place-items: center;
		width: 2.6rem;
		height: 2.6rem;
		padding: 0;
		border: 1px solid var(--kastanie-weich);
		border-radius: 50%;
		background: var(--perle-warm);
		color: var(--kastanie);
		cursor: pointer;
		transition: background-color .22s ease, color .22s ease, transform .22s ease;
	}

	.kreisleiste__punkt:hover,
	.kreisleiste__punkt:focus-visible,
	.kreisleiste__punkt.ist-kopiert
	{
		background: var(--kastanie);
		border-color: var(--kastanie);
		color: var(--perle-warm);
		transform: scale(1.07);
	}

	.kreisleiste__punkt[hidden] { display: none; }
}
