:root
{
	--rosa:      #eeacb8;
	--rosa-hell: #f6d2d9;
	--rosa-tief: #d9808f;
	--pflaume:   #3a1522;
	--beere:     #a8244e;
	--schrift:   #2e1019;

	--grotesk: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;
}

*
{
	box-sizing: border-box;
}

html,
body
{
	max-width: 100%;
	overflow-x: clip;
}

html
{
	background: var(--rosa);
}

body
{
	margin: 0;
	background: transparent;
	color: var(--schrift);
	font-family: var(--grotesk);
	font-weight: 300;
	font-size: clamp(1.02rem, .97rem + .32vw, 1.16rem);
	line-height: 1.75;
	letter-spacing: .005em;
	-webkit-font-smoothing: antialiased;
}

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

p
{
	margin: 0 0 1.25rem;
	text-wrap: pretty;
}

p:last-child
{
	margin-bottom: 0;
}

a
{
	color: inherit;
}

strong
{
	font-weight: 500;
	color: var(--pflaume);
}

.bahn
{
	width: min(90%, 74rem);
	margin-inline: auto;
}

.schmal
{
	max-width: 38rem;
}

/* ---------- Typografie: durchgehend leicht, weit, groß ---------- */

h1
{
	margin: 0 0 1.5rem;
	font-size: clamp(2.4rem, 1rem + 5.6vw, 5.4rem);
	font-weight: 200;
	line-height: 1.02;
	letter-spacing: -.025em;
	color: var(--pflaume);
}

h2
{
	margin: 0 0 1.6rem;
	font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.9rem);
	font-weight: 200;
	line-height: 1.12;
	letter-spacing: -.02em;
	color: var(--pflaume);
}

h3
{
	margin: 0 0 .6rem;
	font-size: 1.15rem;
	font-weight: 500;
	letter-spacing: .01em;
	color: var(--pflaume);
}

.marke
{
	margin: 0 0 1.6rem;
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: .34em;
	text-transform: uppercase;
	color: var(--beere);
}

.gross
{
	font-size: clamp(1.15rem, 1.05rem + .7vw, 1.55rem);
	font-weight: 200;
	line-height: 1.48;
	color: var(--pflaume);
}

/* ---------- Titel: Bild verschmilzt mit der Fläche ---------- */

/* feste Fläche im Ton der Bildhintergründe — nur so bleibt das freigestellte
   Tier ohne sichtbare Kante, auch während der Hintergrund weiter unten wandert */
.kopf
{
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
	background: var(--rosa);
}

.kopf__raster
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
	gap: clamp(1rem, 3vw, 2.5rem);
	align-items: center;
}

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

.kopf__text p
{
	max-width: 27rem;
	font-size: clamp(1.05rem, 1rem + .45vw, 1.32rem);
	font-weight: 300;
}

/* kein Radius, kein Rahmen: der Bildgrund ist die Seitenfläche */
.kopf__bild img
{
	width: 100%;
}

/* ---------- Abschnitte ---------- */

section
{
	padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.rasse__raster
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

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

.rasse__bild img
{
	width: 100%;
	border-radius: 3px;
}

/* ---------- Vollbild-Zwischentitel ---------- */

.zwischen
{
	background: var(--pflaume);
	color: var(--rosa-hell);
	text-align: center;
	padding: clamp(4.5rem, 12vw, 9rem) 0;
}

.zwischen p
{
	margin: 0 auto;
	max-width: 24ch;
	font-size: clamp(2rem, 1rem + 4.4vw, 4.2rem);
	font-weight: 200;
	line-height: 1.08;
	letter-spacing: -.025em;
	color: #fff;
}

.zwischen span
{
	display: block;
	margin-top: 1.8rem;
	font-size: .72rem;
	font-weight: 400;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: #e79aad;
}

/* ---------- Diptychon mit versetzter Achse ---------- */

.diptychon
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
	gap: clamp(1.5rem, 4vw, 3.5rem);
	margin-top: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.tafel
{
	min-width: 0;
	margin: 0;
}

/* der Versatz — die zweite Tafel sitzt tiefer */
.tafel--tief
{
	margin-top: clamp(2rem, 7vw, 5.5rem);
}

.tafel img
{
	width: 100%;
	border-radius: 3px;
}

.tafel figcaption
{
	margin-top: 1.2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(58,21,34,.28);
}

.tafel b
{
	display: block;
	font-weight: 500;
	font-size: 1.1rem;
	color: var(--pflaume);
	margin-bottom: .3rem;
}

.tafel span
{
	font-size: .92rem;
	color: rgba(46,16,25,.75);
}

@media (max-width: 40rem)
{
	.tafel--tief
	{
		margin-top: 0;
	}
}

/* ---------- Was geprüft wird ---------- */

.punkte
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
	gap: clamp(1.6rem, 4vw, 3rem);
	margin-top: clamp(2rem, 5vw, 3rem);
}

.punkte > div
{
	min-width: 0;
	padding-top: 1.1rem;
	border-top: 2px solid var(--beere);
}

.punkte p
{
	margin: 0;
	font-size: .97rem;
}

/* ---------- ZEUS ---------- */

.zeus
{
	background: var(--pflaume);
	color: var(--rosa-hell);
}

.zeus h2,
.zeus strong
{
	color: #fff;
}

.zeus .marke
{
	color: #e79aad;
}

.zeus p
{
	color: rgba(246,210,217,.86);
}

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

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

.zeus__bild
{
	margin: 0;
}

.zeus__bild img
{
	width: 100%;
	border-radius: 3px;
}

.zeus__bild figcaption
{
	margin-top: .9rem;
	font-size: .86rem;
	color: rgba(246,210,217,.7);
}

/* rechte Spalte: Welpenbild und darunter das Siegel */
.zeus__spalte
{
	display: grid;
	gap: clamp(1.8rem, 4vw, 2.6rem);
	min-width: 0;
}

.zeus__siegel
{
	margin: 0;
}

/* das Siegel ist schwarze Linie auf transparentem Grund — vor der Pflaumen-
   fläche braucht es eine helle Kachel, hier im Rosaton der Bildhintergründe */
.zeus__siegel a
{
	display: block;
	width: min(13rem, 100%);
	padding: 1.1rem;
	background: var(--rosa-hell);
	border-radius: 3px;
}

.zeus__siegel img
{
	width: 100%;
}

.zeus__siegel figcaption
{
	margin-top: .9rem;
	max-width: 22rem;
	font-size: .86rem;
	color: rgba(246,210,217,.7);
}

.knopf
{
	display: inline-block;
	margin-top: 1.8rem;
	padding: .95rem 2.2rem;
	background: var(--beere);
	color: #fff;
	text-decoration: none;
	font-size: .74rem;
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
	border-radius: 2px;
}

.knopf:hover
{
	background: #8c1c40;
}

/* ---------- Querlinks: große dünne Zeilen ---------- */

.themen:not(:has(a))
{
	display: none;
}

.themen h2
{
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: .34em;
	text-transform: uppercase;
	color: var(--beere);
	margin-bottom: 1.5rem;
}

.zeilen
{
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(58,21,34,.28);
}

.zeilen li
{
	border-bottom: 1px solid rgba(58,21,34,.28);
}

.zeilen a
{
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.15rem 0;
	text-decoration: none;
	font-size: clamp(1rem, .95rem + .5vw, 1.3rem);
	font-weight: 200;
	color: var(--pflaume);
}

.zeilen a::after
{
	content: "\2192";
	flex: none;
	color: var(--beere);
	transition: transform .25s ease;
}

.zeilen a:hover
{
	color: var(--beere);
}

.zeilen a:hover::after
{
	transform: translateX(.35rem);
}

/* ---------- Impressum: kleine Kapitälchen, schmale Spalte ---------- */

.fuss
{
	padding: clamp(2.5rem, 6vw, 4rem) 0 3.5rem;
}

.fuss__inhalt
{
	max-width: 26rem;
	font-size: .8rem;
	line-height: 1.85;
	color: rgba(46,16,25,.8);
	font-variant: small-caps;
	letter-spacing: .04em;
}

.fuss__inhalt p
{
	margin-bottom: 1.1rem;
}

.fuss b
{
	display: block;
	font-variant: normal;
	font-size: .64rem;
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--beere);
	margin-bottom: .1rem;
}

.fuss a
{
	color: var(--pflaume);
	text-decoration: underline;
	text-decoration-color: var(--beere);
	text-underline-offset: .18em;
}

/* ---------- Bewegung ---------- */

.steig
{
	opacity: 0;
	transform: translateY(1.1rem);
	transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.25,1);
}

.steig.da
{
	opacity: 1;
	transform: none;
}

.kein-js .steig
{
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce)
{
	.steig
	{
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ---------- Weiterreichen: alles rund, wie die Kopfform, um die es geht ---------- */

.weiterreichen
{
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 0;
}

.weiterreichen__satz
{
	max-width: 34rem;
	font-size: clamp(1.05rem, 1rem + .45vw, 1.32rem);
	font-weight: 300;
	color: var(--pflaume);
}

.weiterreichen__runde
{
	display: flex;
	flex-wrap: wrap;
	gap: .6rem .7rem;
	margin-top: clamp(1.4rem, 3vw, 2rem);
}

.pille
{
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .62rem 1.35rem .62rem 1.1rem;
	border: 1px solid var(--rosa-tief);
	border-radius: 999px;
	background: transparent;
	color: var(--pflaume);
	font-family: inherit;
	font-size: .88rem;
	font-weight: 300;
	letter-spacing: .01em;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.pille[hidden]
{
	display: none;
}

.pille:hover,
.pille:focus-visible
{
	background: var(--rosa-hell);
	border-color: var(--beere);
	color: var(--beere);
}

.pille svg
{
	flex: none;
}

/* ---------- Randperlen: rechts, fünf Kreise untereinander ---------- */

.randperlen
{
	display: none;
}

@media (min-width: 87.5rem)
{
	.randperlen
	{
		display: flex;
		flex-direction: column;
		gap: .45rem;
		position: fixed;
		right: 1.4rem;
		top: 50%;
		transform: translateY(-50%);
		z-index: 20;
	}

	.randperlen a,
	.randperlen button
	{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 2.5rem;
		height: 2.5rem;
		padding: 0;
		border: 1px solid var(--rosa-tief);
		border-radius: 50%;
		background: var(--rosa-hell);
		color: var(--pflaume);
		cursor: pointer;
		transition: background-color .25s ease, color .25s ease;
	}

	.randperlen a:hover,
	.randperlen a:focus-visible,
	.randperlen button:hover,
	.randperlen button:focus-visible
	{
		background: var(--pflaume);
		border-color: var(--pflaume);
		color: var(--rosa-hell);
	}

	.randperlen .kopiert
	{
		background: var(--beere);
		border-color: var(--beere);
		color: var(--rosa-hell);
	}
}

.randperlen [hidden]
{
	display: none;
}
