/* ==========================================================================
   HUMAN ALCHEMIE – style.css
   Farben aus der Startseite (Navy #000b3d, Gold) und den Flyern (Grün, Blau)
   ========================================================================== */

@font-face {
	font-family: 'Jost';
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url('fonts/jost-latin.woff2') format('woff2');
}
@font-face {
	font-family: 'Jost';
	font-style: italic;
	font-weight: 300 800;
	font-display: swap;
	src: url('fonts/jost-italic-latin.woff2') format('woff2');
}
@font-face {
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url('fonts/cormorant-garamond-latin.woff2') format('woff2');
}
@font-face {
	font-family: 'Cormorant Garamond';
	font-style: italic;
	font-weight: 300 700;
	font-display: swap;
	src: url('fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
}

:root {
	--navy: #000b3d;
	--navy-2: #00167a;
	--slate: #4f5d9e;
	--ink: #1c2247;
	--muted: #6b7292;

	--cream: #fbf8f1;
	--cream-2: #f3eee1;
	--paper: #ffffff;
	--line: #e7e0cf;

	--gold: #c9985a;
	--gold-dark: #a3692e;
	--gold-light: #ecd493;
	--gold-pale: #f8f0dc;

	--green-tint: #e4efda;
	--green-ink: #2f6b2f;
	--plum: #6d1f4c;

	--blue-tint: #d9eaf6;
	--blue-ink: #1b4f8a;
	--red: #c9261e;

	--font-sans: 'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;
	--font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

	--radius: 22px;
	--radius-sm: 12px;
	--shadow: 0 18px 50px -20px rgba(0, 11, 61, .25);
	--shadow-sm: 0 6px 24px -12px rgba(0, 11, 61, .25);
	--header-h: 74px;
	--maxw: 1140px;
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Basis ---------- */

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

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

body {
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--navy-2);
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-decoration-thickness: 1px;
	text-underline-offset: .18em;
	transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}

a:hover {
	color: var(--gold-dark);
	text-decoration-color: currentColor;
}

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

h1, h2, h3 {
	font-weight: 600;
	line-height: 1.15;
	color: var(--navy);
	letter-spacing: -.01em;
}

h2 {
	font-size: clamp(1.9rem, 1.4rem + 2vw, 2.7rem);
}

h3 {
	font-size: 1.35rem;
}

p + p {
	margin-top: 1em;
}

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

.svg-defs {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 100;
	padding: .6rem 1rem;
	background: var(--navy);
	color: #fff;
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus {
	top: 0;
}

[id] {
	scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* ---------- Buttons & Badges ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .8rem 1.6rem;
	border-radius: 999px;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: .01em;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.btn--gold {
	color: var(--navy);
	background: linear-gradient(135deg, #e6c882 0%, #f3e0a8 45%, #d4a865 100%);
	box-shadow: 0 10px 24px -12px rgba(163, 105, 46, .7);
}

.btn--gold:hover {
	color: var(--navy);
	box-shadow: 0 14px 28px -12px rgba(163, 105, 46, .8);
}

.btn--navy {
	color: #fff;
	background: var(--navy);
	box-shadow: 0 10px 24px -12px rgba(0, 11, 61, .6);
}

.btn--navy:hover {
	color: #fff;
	background: var(--navy-2);
}

.btn--ghost {
	color: var(--navy);
	border-color: rgba(0, 11, 61, .25);
	background: transparent;
}

.btn--ghost:hover {
	color: var(--navy);
	border-color: var(--navy);
	background: rgba(255, 255, 255, .6);
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: .45rem 1rem;
	border-radius: 999px;
	font-size: .9rem;
	font-weight: 600;
	color: var(--gold-dark);
	background: var(--gold-pale);
	border: 1px solid var(--gold-light);
	white-space: nowrap;
}

.eyebrow {
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-dark);
	margin-bottom: .75rem;
}

/* ---------- Header & Navigation ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(251, 248, 241, .82);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 8px 30px -20px rgba(0, 11, 61, .35);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--header-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	color: var(--navy);
	text-decoration: none;
}

.brand__mark {
	width: 38px;
	height: 38px;
	flex: none;
	transition: transform .6s var(--ease);
}

.brand:hover .brand__mark {
	transform: rotate(180deg);
}

.brand__name {
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: .12em;
	white-space: nowrap;
}

.nav {
	display: flex;
	align-items: center;
	gap: .25rem;
	list-style: none;
}

.nav__item {
	position: relative;
}

.nav__link {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .55rem .95rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	font: inherit;
	font-weight: 500;
	color: var(--navy);
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s var(--ease), color .2s var(--ease);
}

.nav__link:hover,
.nav__item.is-open > .nav__link,
.nav__item.is-active > .nav__link {
	background: rgba(201, 152, 90, .14);
	color: var(--navy);
	text-decoration: none;
}

.nav__item--sub > .nav__link::after {
	content: '';
	width: .45em;
	height: .45em;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-.15em) rotate(45deg);
	transition: transform .25s var(--ease);
}

.nav__item--sub.is-open > .nav__link::after {
	transform: translateY(.1em) rotate(225deg);
}

.sub {
	list-style: none;
}

.sub__link {
	display: flex;
	align-items: center;
	gap: .6rem;
	padding: .55rem .9rem;
	border-radius: var(--radius-sm);
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .2s var(--ease), color .2s var(--ease);
}

.sub__link::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	opacity: .6;
	transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.sub__link:hover,
.sub__link.is-active {
	background: var(--gold-pale);
	color: var(--navy);
}

.sub__link:hover::before,
.sub__link.is-active::before {
	opacity: 1;
	transform: scale(1.3);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: .6rem;
	padding: .5rem .9rem;
	border: 1.5px solid rgba(0, 11, 61, .2);
	border-radius: 999px;
	background: transparent;
	font: inherit;
	font-weight: 500;
	color: var(--navy);
	cursor: pointer;
}

.menu-toggle__bars {
	position: relative;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: background-color .2s var(--ease);
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
	content: '';
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform .3s var(--ease);
}

.menu-toggle__bars::before { top: -6px; }
.menu-toggle__bars::after  { top:  6px; }

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
	background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* Desktop: Dropdowns */
@media (min-width: 900px) {
	.sub {
		position: absolute;
		top: calc(100% + .5rem);
		left: 50%;
		min-width: 220px;
		padding: .5rem;
		background: var(--paper);
		border: 1px solid var(--line);
		border-radius: 16px;
		box-shadow: var(--shadow);
		opacity: 0;
		visibility: hidden;
		transform: translate(-50%, 8px);
		transition: opacity .2s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
	}

	.sub::before {
		content: '';
		position: absolute;
		top: -.6rem;
		left: 0;
		right: 0;
		height: .6rem;
	}

	.nav__item--sub:hover > .sub,
	.nav__item--sub:focus-within > .sub,
	.nav__item--sub.is-open > .sub {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
		transition-delay: 0s;
	}
}

/* Mobile: ausklappbares Panel */
@media (max-width: 899px) {
	.menu-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: .5rem 1.25rem 1.25rem;
		background: var(--cream);
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity .2s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
	}

	.menu-is-open .site-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition-delay: 0s;
	}

	.nav {
		flex-direction: column;
		align-items: stretch;
		gap: .15rem;
	}

	.nav__link {
		width: 100%;
		justify-content: space-between;
		padding: .8rem 1rem;
		font-size: 1.1rem;
	}

	.sub {
		display: none;
		padding: .25rem 0 .5rem 1rem;
	}

	.nav__item--sub.is-open > .sub {
		display: block;
	}

	.sub__link {
		padding: .65rem .9rem;
		font-size: 1.02rem;
	}
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3.5rem, 8vw, 6rem);
	text-align: center;
	background:
		radial-gradient(60% 55% at 50% 38%, rgba(236, 212, 147, .45) 0%, rgba(236, 212, 147, 0) 70%),
		linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
}

.hero::before,
.hero::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	background: radial-gradient(circle, rgba(79, 93, 158, .10) 0%, rgba(79, 93, 158, 0) 70%);
}

.hero::before {
	width: 520px;
	height: 520px;
	left: -180px;
	top: -120px;
}

.hero::after {
	width: 620px;
	height: 620px;
	right: -240px;
	bottom: -260px;
	background: radial-gradient(circle, rgba(201, 152, 90, .16) 0%, rgba(201, 152, 90, 0) 70%);
}

.hero__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: rise .9s var(--ease) both;
}

.hero__logo {
	width: clamp(150px, 26vw, 230px);
	height: clamp(150px, 26vw, 230px);
	filter: drop-shadow(0 22px 34px rgba(163, 105, 46, .28));
	margin-bottom: 1.75rem;
}

.hero__title {
	font-size: clamp(2.2rem, 2rem + 4vw, 4.4rem);
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.05;
	background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero__tagline {
	margin-top: .6rem;
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.3rem);
	color: var(--slate);
	letter-spacing: .01em;
}

.hero__lead {
	max-width: 34ch;
	margin-top: 1.75rem;
	font-size: clamp(1.1rem, 1rem + .6vw, 1.35rem);
	line-height: 1.5;
	color: var(--navy);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .75rem;
	margin-top: 2.25rem;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .6rem;
	margin-top: 2.5rem;
	font-size: .85rem;
	letter-spacing: .04em;
	color: var(--muted);
}

@keyframes rise {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: none; }
}

/* ---------- Sections ---------- */

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

.section--tinted {
	background: var(--cream-2);
}

.section--courses {
	background: linear-gradient(180deg, var(--cream) 0%, #fff 30%, #fff 100%);
}

.section__head {
	max-width: 62ch;
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section__lead {
	margin-top: 1rem;
	font-size: 1.15rem;
	color: var(--slate);
}

/* Themenblöcke (Verein / Ideal / Zweck, Mitmachen) */

.topic {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: .75rem 3rem;
	padding: 2.25rem 0;
	border-top: 1px solid var(--line);
}

.topic:last-child {
	border-bottom: 1px solid var(--line);
}

.topic__title {
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold-dark);
}

.topic__body {
	max-width: 62ch;
}

.topic__body > * + * {
	margin-top: 1.25rem;
}

@media (min-width: 760px) {
	.topic {
		grid-template-columns: 220px minmax(0, 1fr);
	}

	.topic__title {
		padding-top: .35rem;
	}
}

.quote {
	font-family: var(--font-serif);
	font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem);
	font-weight: 500;
	line-height: 1.35;
	color: var(--navy);
}

.links {
	list-style: none;
}

.links li {
	padding: .45rem 0 .45rem 1.25rem;
	position: relative;
}

.links li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.1em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
}

/* Platzhalter für noch fehlende Texte */

.placeholder {
	display: inline-block;
	padding: .55rem .9rem;
	border: 1.5px dashed var(--gold);
	border-radius: var(--radius-sm);
	background: var(--gold-pale);
	font-size: .9rem;
	font-style: italic;
	color: var(--gold-dark);
}

.placeholder--inline {
	padding: .1rem .5rem;
	margin-top: .25rem;
}

/* ---------- Kurse ---------- */

.courses {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
	gap: 2rem;
}

.course {
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid rgba(0, 11, 61, .06);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.course:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px -24px rgba(0, 11, 61, .35);
}

.course__figure {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--blue-tint);
}

.course__figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s var(--ease);
}

.course:hover .course__figure img {
	transform: scale(1.04);
}

.course--taiji .course__figure {
	background: #c2e6f7;
}

.course--taiji .course__figure img {
	object-fit: contain;
	object-position: center bottom;
	padding-top: 1rem;
}

.course__head {
	padding: 1.6rem 1.75rem 1.4rem;
}

.course--qigong .course__head {
	background: var(--green-tint);
}

.course--taiji .course__head {
	background: var(--blue-tint);
}

.course__kind {
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	margin-bottom: .5rem;
}

.course--qigong .course__kind { color: var(--green-ink); }
.course--taiji  .course__kind { color: var(--blue-ink); }

.course__title {
	font-size: clamp(1.45rem, 1.25rem + .9vw, 1.75rem);
	font-weight: 700;
	color: var(--navy);
	text-wrap: balance;
}

.course__title em {
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.course--qigong .course__title em { color: var(--plum); }
.course--taiji  .course__title em { color: var(--red); }

.course__form {
	margin-top: .35rem;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.3rem;
	color: var(--slate);
}

.course__body {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.75rem;
	flex: 1;
}

.course__body p {
	margin: 0;
}

.checks {
	list-style: none;
	display: grid;
	gap: .5rem;
}

.checks li {
	position: relative;
	padding-left: 1.75rem;
	font-weight: 500;
	color: var(--navy);
}

.checks li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .35em;
	width: 1.05rem;
	height: 1.05rem;
	border-radius: 50%;
	background: var(--gold-pale);
	border: 1px solid var(--gold-light);
}

.checks li::after {
	content: '';
	position: absolute;
	left: .34rem;
	top: .55em;
	width: .3rem;
	height: .5rem;
	border-right: 2px solid var(--gold-dark);
	border-bottom: 2px solid var(--gold-dark);
	transform: rotate(45deg);
}

.facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1rem;
	padding: 1.25rem;
	border-radius: 16px;
	background: var(--cream);
	border: 1px solid var(--line);
}

.facts__item dt {
	display: flex;
	align-items: center;
	gap: .4rem;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold-dark);
	margin-bottom: .3rem;
}

.facts__item dd {
	font-size: .98rem;
	line-height: 1.5;
	color: var(--ink);
}

.facts__item strong {
	color: var(--navy);
	font-weight: 600;
}

.icon {
	width: 1rem;
	height: 1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.course__note {
	font-size: .95rem;
	color: var(--muted);
}

.course__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	margin-top: auto;
	padding-top: .5rem;
}

.courses__footnote {
	max-width: 70ch;
	margin: 2.5rem auto 0;
	text-align: center;
	font-size: .95rem;
	color: var(--muted);
}

/* ---------- Kontakt ---------- */

.section__lead a {
	white-space: nowrap;
}

.people {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 2rem;
	max-width: 860px;
}

.person {
	padding: 2.25rem 2rem;
	background: var(--paper);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(0, 11, 61, .06);
	text-align: center;
}

.person__photo {
	width: 148px;
	height: 148px;
	margin: 0 auto 1.25rem;
	border-radius: 50%;
	object-fit: cover;
	object-position: center top;
	box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--gold-light);
}

.person__photo--empty {
	display: grid;
	place-items: center;
	background: var(--cream-2);
}

.person__photo--empty svg {
	width: 64px;
	height: 64px;
	opacity: .45;
}

.person__role {
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold-dark);
}

.person__name {
	margin-top: .3rem;
	font-size: 1.5rem;
}

.person__about {
	margin-top: .3rem;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.2rem;
	color: var(--slate);
}

.person .placeholder {
	margin-top: 1rem;
}

.person__links {
	list-style: none;
	margin-top: 1.25rem;
	display: grid;
	gap: .35rem;
}

/* ---------- Footer ---------- */

.site-footer {
	background: var(--navy);
	color: rgba(255, 255, 255, .78);
	font-size: .95rem;
}

.site-footer a {
	color: #fff;
	text-decoration-color: rgba(236, 212, 147, .6);
}

.site-footer a:hover {
	color: var(--gold-light);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: 2.5rem;
	padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}

.site-footer__mark {
	width: 56px;
	height: 56px;
	margin-bottom: 1rem;
}

.site-footer__name {
	font-weight: 700;
	letter-spacing: .12em;
	color: #fff;
}

.site-footer__tagline {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.25rem;
	color: var(--gold-light);
}

.site-footer__heading {
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: .9rem;
}

.site-footer__col p + p {
	margin-top: .8rem;
}

.site-footer .placeholder {
	border-color: rgba(236, 212, 147, .6);
	background: rgba(255, 255, 255, .06);
	color: var(--gold-light);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .75rem 1.5rem;
	padding: 1.25rem 0 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: .85rem;
	color: rgba(255, 255, 255, .6);
}

.site-footer__bottom p {
	margin: 0;
}

.credit a {
	color: rgba(255, 255, 255, .75);
}

.credit a:hover {
	color: var(--gold-light);
}

.to-top {
	text-decoration: none;
}

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

/* ---------- Druck ---------- */

@media print {
	.site-header, .hero__actions, .course__actions, .to-top, .menu-toggle {
		display: none;
	}

	.course {
		break-inside: avoid;
		box-shadow: none;
	}
}
