/* julok.media – Layout und Komponenten.
 * Portiert aus _docs/design-draft.html, Farben/Radius/Maxwidth ausschliesslich
 * ueber die Variablen aus tokens.css, keine eigenen Werte.
 * Ergaenzt: Leistungen, Ablauf, Budget (kein Vorbild im Entwurf, siehe
 * Sprint-2-Freigabe fuer die Gestaltungsregeln).
 */

* { box-sizing: border-box; }

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: var(--lh-body);
	font-size: var(--fs-body);
}

.mono {
	font-family: var(--font-mono);
	font-variant-numeric: tabular-nums;
}

.display {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: var(--ls-display);
}

/* Klassisches Clip-Pattern statt display:none, damit Screenreader den
   Inhalt weiterhin vorlesen. */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

a { color: inherit; }

.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 28px;
}

@media (max-width: 640px) {
	.wrap { padding: 0 var(--gutter); }
}

h2 { font-size: var(--fs-h2); font-weight: 800; margin: 0; }
h3 { font-size: var(--fs-h3); }

/* ---- Kopfbereich ---- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: color-mix(in srgb, var(--bg) 88%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.logo { display: flex; align-items: center; }
.logo img { display: block; height: 30px; width: auto; }
@media (min-width: 768px) { .logo img { height: 36px; } }

nav.primary {
	display: none;
	align-items: center;
	gap: 28px;
}

nav.primary a {
	text-decoration: none;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-dim);
	padding: 6px 0;
	border-bottom: 1px solid transparent;
}

nav.primary a:hover,
nav.primary a:focus-visible {
	color: var(--text);
	border-color: var(--accent);
}

.nav-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--text);
	cursor: pointer;
}

@media (min-width: 760px) {
	.nav-toggle { display: none; }
	nav.primary { display: flex; }
}

/* Mobil: Nav klappt als volle Leiste unter dem Header auf, Sprungmarken
   untereinander statt nebeneinander -- ohne das ist die Seite auf der
   Laenge nicht navigierbar. */
@media (max-width: 759px) {
	nav.primary.is-open {
		display: flex;
		flex-direction: column;
		gap: 0;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg);
		border-bottom: 1px solid var(--line);
		padding: 8px var(--space-md) 16px;
	}
	nav.primary.is-open a {
		padding: 14px 0;
		border-bottom: 1px solid var(--line);
		font-size: 0.95rem;
	}
	nav.primary.is-open a:last-child { border-bottom: 0; }
}

.site-header .wrap { position: relative; }

.back-to-top {
	display: none;
	position: fixed;
	right: 16px;
	bottom: calc(16px + env(safe-area-inset-bottom));
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: var(--accent);
	color: var(--accent-ink);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
	cursor: pointer;
	z-index: 50;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.2s, transform 0.2s;
	pointer-events: none;
}

@media (max-width: 759px) {
	.back-to-top { display: flex; }
	.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
}

.rec-live {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	color: var(--text-faint);
	text-transform: uppercase;
}

.rec-live .led {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 6px 1px color-mix(in srgb, var(--accent) 70%, transparent);
}

@media (prefers-reduced-motion: no-preference) {
	.rec-live .led { animation: pulse 1.6s ease-in-out infinite; }
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

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

.hero { padding: 56px 0 40px; }

.viewer {
	position: relative;
	border: 1px solid var(--line);
	background:
		radial-gradient(120% 140% at 15% 0%, rgb(36, 27, 18) 0%, transparent 55%),
		radial-gradient(120% 140% at 85% 100%, rgb(20, 32, 42) 0%, transparent 55%),
		linear-gradient(160deg, rgb(27, 27, 29) 0%, rgb(14, 14, 16) 70%);
	aspect-ratio: 2.35 / 1;
	min-height: 420px; /* verhindert, dass das Panel bei drei Zeilen Subline-Text zu knapp wird */
	overflow: hidden;
}

.viewer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		rgba(255, 255, 255, 0.024) 0px, rgba(255, 255, 255, 0.024) 1px,
		transparent 1px, transparent 3px
	);
	mix-blend-mode: overlay;
	pointer-events: none;
}

.viewer .letterbox-top,
.viewer .letterbox-bottom {
	position: absolute;
	left: 0; right: 0;
	height: 14%;
	background: #000;
}

.viewer .letterbox-top { top: 0; }
.viewer .letterbox-bottom { bottom: 0; }

.bracket {
	position: absolute;
	width: 26px; height: 26px;
	border-color: var(--accent);
	opacity: 0.75;
}

.bracket.tl { top: 22px; left: 22px; border-top: 2px solid; border-left: 2px solid; }
.bracket.tr { top: 22px; right: 22px; border-top: 2px solid; border-right: 2px solid; }
.bracket.bl { bottom: 22px; left: 22px; border-bottom: 2px solid; border-left: 2px solid; }
.bracket.br { bottom: 22px; right: 22px; border-bottom: 2px solid; border-right: 2px solid; }

.hud-top {
	position: absolute;
	top: 22px; left: 60px; right: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.72rem;
	color: var(--text-dim);
	letter-spacing: 0.05em;
}

.hud-top .rec {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--accent);
}

.hud-top .rec .led {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--accent);
}

@media (prefers-reduced-motion: no-preference) {
	.hud-top .rec .led { animation: pulse 1.6s ease-in-out infinite; }
}

.hero-copy {
	position: absolute;
	left: 60px; right: 60px; bottom: 84px; /* deutlich ueber der 14% hohen Letterbox-Leiste, auch bei --viewer-Mindesthoehe */
	max-width: 760px;
}

.hero-eyebrow { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.14em; color: var(--accent); margin: 0 0 14px; text-transform: uppercase; }

.hero-copy p.display {
	margin: 0;
	font-size: var(--fs-hero);
	line-height: var(--lh-display);
	font-weight: 800;
	text-wrap: balance;
}

.hero-subline { margin: 16px 0 0; max-width: 52ch; color: var(--text-dim); font-size: 1rem; }

@media (max-width: 760px) {
	/*
	 * Ursache der mobilen Ueberlappung: hud-top und hero-copy waren beide
	 * absolut in einem per aspect-ratio hoehenfixierten .viewer platziert.
	 * Der Container waechst nicht mit dem Inhalt, deshalb ueberlagerte die
	 * Headline bei mehrzeiliger Subline die HUD-Zeile darueber. Fix: unter
	 * 760px verlaesst beides den Absolut-Layer und flieszt normal
	 * uebereinander, das Panel bekommt eine variable statt fixe Hoehe.
	 */
	.viewer {
		aspect-ratio: auto;
		min-height: 0;
		display: flex;
		flex-direction: column;
	}

	.viewer .letterbox-top,
	.viewer .letterbox-bottom {
		display: none;
	}

	.bracket { display: none; }

	.hud-top {
		position: static;
		flex-wrap: wrap;
		row-gap: 6px;
		padding: 20px 24px 0;
	}

	.hero-copy {
		position: static;
		left: auto; right: auto; bottom: auto;
		max-width: none;
		padding: 20px 24px 28px;
	}
}

.hero-actions { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--radius);
	font-weight: 600;
	border: 1px solid transparent;
}

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 85%, white); }

.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--text-dim); }

.scrub { margin-top: 18px; height: 3px; background: var(--line); position: relative; }
.scrub::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 38%; background: var(--accent); }

/* ---- Trusted ---- */

.trusted { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trusted .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 28px 40px; }

.trusted .label { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--text-faint); text-transform: uppercase; }

.trusted .names { display: flex; flex-wrap: wrap; gap: 26px 38px; }
.trusted .names span {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.02em;
	font-size: 1.15rem;
	color: var(--text-dim);
	text-transform: uppercase;
}

/* ---- Arbeiten / Bibliothek ---- */

.library { padding: 72px 0; }

.library-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 34px;
}

.library-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.library-head .count { color: var(--text-faint); font-size: 0.85rem; text-transform: uppercase; }

.h2-eyebrow {
	display: block;
	font-size: 0.76rem;
	font-weight: 400;
	letter-spacing: var(--ls-mono);
	text-transform: uppercase;
	color: var(--text-dim);
	margin-bottom: 6px;
}

.library-intro { color: var(--text-dim); max-width: 64ch; margin: var(--space-sm) 0 30px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }

.filter-btn {
	font-family: var(--font-mono);
	font-size: 0.76rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 8px 14px;
	background: transparent;
	color: var(--text-dim);
	border: 1px solid var(--line);
	border-radius: 999px;
	cursor: pointer;
}

.filter-btn:hover { color: var(--text); border-color: var(--text-dim); }
.filter-btn[aria-pressed="true"] { background: var(--text); color: var(--bg); border-color: var(--text); }

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--line);
	border: 1px solid var(--line);
}

@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }

.case-card-wrap {
	background: var(--bg);
	display: flex;
	flex-direction: column;
}

.case-card-wrap[hidden] { display: none; }

.case-card {
	background: transparent;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: background var(--dur-fast);
}

.case-card:hover { background: var(--surface); }
.case-card:hover .case-thumb { filter: brightness(1.12); }
.case-card:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.case-badge {
	position: absolute;
	top: 10px; right: 10px;
	display: flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-mono);
	font-size: 0.6rem;
	letter-spacing: 0.05em;
	padding: 3px 7px;
	border-radius: 999px;
	text-transform: uppercase;
	background: rgba(12, 12, 13, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: rgb(233, 231, 223);
	backdrop-filter: blur(2px);
}

.case-badge.is-video { border-color: color-mix(in srgb, var(--accent) 55%, transparent); color: var(--accent); }
.case-badge svg { width: 9px; height: 9px; fill: currentcolor; }

.case-thumb { aspect-ratio: 16 / 10; position: relative; overflow: hidden; }

.case-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case-thumb::after {
	content: "";
	position: absolute; inset: 0;
	background-image: repeating-linear-gradient(
		rgba(0, 0, 0, 0.12) 0px, rgba(0, 0, 0, 0.12) 1px,
		transparent 1px, transparent 3px
	);
	mix-blend-mode: multiply;
}

.case-thumb .tc { position: absolute; left: 10px; bottom: 8px; font-size: 0.66rem; color: rgba(255, 255, 255, 0.75); letter-spacing: 0.02em; }

.case-thumb .play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
}

.case-thumb .play svg { width: 12px; height: 12px; fill: #fff; margin-left: 2px; }

.case-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.case-tag {
	align-self: flex-start;
	font-size: 0.66rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 999px;
	font-family: var(--font-mono);
}

.tag-musik  { background: color-mix(in srgb, var(--tag-musik) 22%, transparent);  color: rgb(226, 151, 127); }
.tag-mode   { background: color-mix(in srgb, var(--tag-mode) 22%, transparent);   color: rgb(143, 196, 214); }
.tag-health { background: color-mix(in srgb, var(--tag-health) 22%, transparent); color: rgb(169, 202, 161); }
.tag-events { background: color-mix(in srgb, var(--tag-events) 22%, transparent); color: rgb(207, 163, 224); }

.case-body h3 { margin: 0; font-size: 1.05rem; font-weight: 600; }
.case-body .client { color: var(--text-dim); font-size: 0.88rem; }

.case-meta {
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid var(--line);
	font-size: 0.72rem;
	color: var(--text-faint);
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.case-details { border-top: 1px solid var(--line); }

.case-details summary {
	cursor: pointer;
	padding: 10px 18px;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: var(--ls-mono);
	text-transform: uppercase;
	color: var(--text-faint);
	list-style: none;
}

.case-details summary::-webkit-details-marker { display: none; }
.case-details summary::marker { content: ""; }
.case-details summary::before { content: "+ "; color: var(--accent); }
.case-details[open] summary::before { content: "\2212 "; }
.case-details[open] summary { color: var(--text-dim); }

.case-details-body {
	padding: 0 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 0.82rem;
	color: var(--text-dim);
}

/* ---- Leistungen ---- */

.leistungen { padding: 72px 0; border-top: 1px solid var(--line); }
.leistungen h2 { margin-bottom: var(--space-md); }
.leistungen-intro { color: var(--text-dim); max-width: 64ch; margin: 0 0 34px; }

.leistungen-group { margin-bottom: var(--space-xl); }
.leistungen-group:last-child { margin-bottom: 0; }

.leistungen-group-title {
	text-transform: uppercase;
	letter-spacing: var(--ls-mono);
	font-size: 0.76rem;
	color: var(--text-faint);
	margin: 0 0 var(--space-md);
}

.leistung-card {
	background: var(--bg);
	border: 1px solid var(--line);
	padding: var(--space-md);
	font-size: 0.92rem;
	font-weight: 600;
}

.leistung-card + .leistung-card { margin-top: 2px; }

/* ---- Ablauf ---- */

.ablauf { padding: 72px 0; border-top: 1px solid var(--line); }
.ablauf h2 { margin-bottom: 34px; }

.ablauf-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }

.ablauf-step {
	padding: var(--space-md) 0;
	border-top: 1px solid var(--line);
}

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

.ablauf-title {
	margin: 0 0 4px;
	font-size: 0.95rem;
	font-weight: 600;
}

.ablauf-title .seq {
	letter-spacing: var(--ls-mono);
	text-transform: uppercase;
	color: var(--accent);
}

.ablauf-content { margin: 0; color: var(--text-dim); font-size: 0.88rem; }

.ablauf-zusagen {
	display: flex;
	flex-wrap: wrap;
	gap: 10px var(--space-lg);
	margin-top: var(--space-lg);
	font-size: 0.78rem;
	color: var(--text-faint);
}

/* ---- Budget ---- */

.budget { padding: 72px 0; border-top: 1px solid var(--line); }
.budget h2 { margin-bottom: var(--space-md); }
.budget-intro { color: var(--text-dim); max-width: 64ch; margin: 0 0 34px; }

.budget-block-title { margin: var(--space-lg) 0 10px; font-size: 1.05rem; font-weight: 600; }
.budget-rate { margin: 0 0 10px; color: var(--accent); font-family: var(--font-mono); font-size: 0.85rem; }

.budget-table { width: 100%; max-width: 64ch; border-collapse: collapse; }
.budget-table tr { border-top: 1px solid var(--line); }
.budget-table tr:last-child { border-bottom: 1px solid var(--line); }
.budget-table td { padding: 10px var(--space-md) 10px 0; color: var(--text-dim); font-size: 0.9rem; }
.budget-table td:last-child { text-align: right; font-family: var(--font-mono); color: var(--text); padding-right: 0; }

.budget-examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-md); }
@media (max-width: 900px) { .budget-examples { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .budget-examples { grid-template-columns: 1fr; } }

.budget-example { background: var(--bg); border: 1px solid var(--line); padding: var(--space-md); }
.budget-example h4 { margin: 0 0 6px; font-size: 1rem; font-weight: 600; }
.budget-example p { margin: 0; color: var(--text-dim); font-size: 0.82rem; }
.budget-example strong { color: var(--accent); }

.budget-note { margin: var(--space-lg) 0 0; color: var(--text-faint); font-size: 0.82rem; max-width: 64ch; }

.budget-extra {
	margin-top: var(--space-lg);
	max-width: 64ch;
	color: var(--text-dim);
	font-size: 0.85rem;
}

.budget-extra p { margin: 0 0 8px; }
.budget-extra ul { margin: 0; padding-left: 1.2em; }
.budget-extra li { margin-bottom: 4px; }

/* ---- Ueber ---- */

.about { padding: 70px 0; border-top: 1px solid var(--line); }
.about .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; }

@media (max-width: 820px) { .about .wrap { grid-template-columns: 1fr; gap: 36px; } }

.about h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0 0 18px; }
.about p { color: var(--text-dim); max-width: 56ch; }
.ueber-highlight { color: var(--accent); font-weight: 600; }

.timeline { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }

.timeline li { display: grid; grid-template-columns: 88px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }

.timeline .when { font-size: 0.78rem; color: var(--accent); }
.timeline .what strong { display: block; font-size: 0.92rem; font-weight: 600; }
.timeline .what span { color: var(--text-faint); font-size: 0.82rem; }

/* ---- FAQ ---- */

.faq { padding: 72px 0; border-top: 1px solid var(--line); }
.faq h2 { margin-bottom: 34px; }

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: var(--line);
	border: 1px solid var(--line);
}

.faq-item { background: var(--bg); }
.faq-item h3 { margin: 0; font-size: 0.95rem; font-weight: 600; }

.faq-toggle {
	width: 100%;
	cursor: pointer;
	padding: var(--space-md);
	background: transparent;
	border: 0;
	color: inherit;
	font: inherit;
	text-align: left;
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.faq-toggle::before { content: "\2212"; color: var(--accent); font-family: var(--font-mono); flex: 0 0 auto; }
.faq-item.is-collapsed .faq-toggle::before { content: "+"; }

.faq-answer { padding: 0 var(--space-md) var(--space-md) calc(var(--space-md) + 20px); }
.faq-answer p { margin: 0; color: var(--text-dim); font-size: 0.9rem; }

.faq-item.is-collapsed .faq-answer { display: none; }

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

.kontakt { padding: 72px 0; border-top: 1px solid var(--line); }
.kontakt h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0 0 var(--space-md); max-width: 16ch; text-wrap: balance; }
.kontakt-intro { color: var(--text-dim); max-width: 56ch; margin: 0 0 var(--space-lg); }

.channel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	color: var(--accent);
	background: var(--bg);
	border: 1.5px solid var(--line);
	border-radius: 16px;
	transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.channel-btn:hover,
.channel-btn:focus-visible { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, var(--bg)); transform: translateY(-1px); }
.channel-icon { width: 28px; height: 28px; }

.kontakt-channels { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

.kontakt-phone-text { margin: var(--space-md) 0 0; color: var(--text-faint); font-size: 0.82rem; }
.kontakt-phone-text a { color: var(--text-dim); }
.kontakt-hours { margin: var(--space-lg) 0 0; color: var(--text-faint); font-size: 0.82rem; }

/* ---- Fusszeile ---- */

.slate { margin-top: 20px; background: repeating-linear-gradient(135deg, var(--accent) 0 22px, var(--accent-ink) 22px 44px); height: 10px; }

footer { background: var(--bg-raise); padding: 44px 0 30px; }

.footer-top { margin-bottom: 28px; }
.footer-name { margin: 0 0 4px; font-size: 0.95rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.footer-name img { height: 26px; width: auto; flex: 0 0 auto; }
.footer-address { margin: 0 0 16px; color: var(--text-faint); font-size: 0.85rem; }

.footer-contact { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-contact .channel-btn { width: 44px; height: 44px; border-radius: 12px; }
.footer-contact .channel-icon { width: 20px; height: 20px; }

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	font-size: 0.72rem;
	color: var(--text-faint);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.footer-legal-nav { display: flex; gap: 16px; }
.footer-legal-nav a { color: inherit; text-decoration: none; }
.footer-legal-nav a:hover { color: var(--accent); }

/* ---- Rechtsseiten (Impressum, Datenschutz) ---- */

.legal-page { padding: 72px 0 90px; }
.legal-page h1 { margin: 0 0 var(--space-lg); }
.legal-page h2 { font-size: 1.05rem; font-weight: 600; margin: var(--space-lg) 0 8px; }
.legal-page p { color: var(--text-dim); max-width: 64ch; margin: 0 0 4px; }
.legal-page a { color: var(--accent); }
