/* ==========================================================================
   ChiMedica – Stylesheet 2026
   Farben und Anmutung der bisherigen Website (stil26.css), neu umgesetzt
   mit modernem CSS: Custom Properties, Grid, Flexbox, clamp(), :focus-visible
   ========================================================================== */

@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/open-sans-v20-latin-regular.woff2") format("woff2");
}
@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/open-sans-v20-latin-700.woff2") format("woff2");
}

:root {
	/* Farbwelt der bisherigen Website */
	--band: #b1ac8f;          /* Kopfband (aus dem Logo-Bild) */
	--beige: #b9b49a;         /* Reiter, Fusszeile, Linien */
	--beige-hell: #e4e2d5;    /* Seitenhintergrund */
	--beige-zart: #f3f1e9;    /* Flächen, Tabellenzeilen */
	--oliv: #766c39;          /* aktiver Reiter, Hover */
	--akzent: #ba6c09;        /* Links */
	--akzent-dunkel: #944500; /* Links in der Fusszeile */
	--gold: #e3b24f;          /* Dreieck im Logo */
	--text: #333;
	--text-leise: #5b5745;
	--weiss: #fff;

	--radius-bild: 17px;
	--radius-reiter: 9px;
	--seite-max: 1100px;
	--logo-h: 98px;           /* Höhe Logo (Desktop) */
	--band-h: calc(var(--logo-h) * 0.58);

	--schrift: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color-scheme: light;
}

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

html {
	font-family: var(--schrift);
	font-size: 100%;
	color: var(--text);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
	margin: 0;
	background: var(--beige-hell);
	font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
	line-height: 1.65;
}

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

a {
	color: var(--akzent);
	font-weight: 700;
	text-decoration: none;
	border-radius: 3px;
	transition: background-color .15s, color .15s;
}
a:hover { color: var(--weiss); background-color: var(--akzent); }
a:focus-visible, button:focus-visible, summary:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 2px;
}

h1, h2, h3 { color: var(--text); line-height: 1.3; text-wrap: balance; }
h1 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.6rem); margin: 0 0 .8em; }
h2 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.3rem); margin: 0 0 .5em; }
h3 { font-size: 1.05rem; margin: 0 0 .4em; }
p { margin: 0 0 1em; }

.skip-link {
	position: absolute; left: 1rem; top: -4rem; z-index: 2000;
	background: var(--oliv); color: var(--weiss); padding: .6em 1em;
}
.skip-link:focus { top: 1rem; }

/* ---------- Seitenrahmen ---------- */
.seite {
	max-width: var(--seite-max);
	margin: 0 auto;
	background: var(--weiss);
	box-shadow: 0 0 0 1px rgba(118,108,57,.08), 0 10px 40px rgba(118,108,57,.12);
}
@media (min-width: 1140px) {
	.seite { margin-block: 1.5rem; }
}

/* ---------- Kopf ---------- */
@property --logo-h {
	syntax: "<length>";
	inherits: true;
	initial-value: 98px;
}
.kopf {
	--band-h: calc(var(--logo-h) * 0.58);
	position: sticky; top: 0; z-index: 50;
	min-height: calc(var(--logo-h) + 12px);
	background: linear-gradient(var(--band), var(--band)) top / 100% var(--band-h) no-repeat, var(--weiss);
	border-bottom: 1px solid var(--beige);
	transition: --logo-h .35s ease, box-shadow .35s ease;
}
/* Kompakter Kopf nach dem Scrollen */
.kopf.kompakt {
	--logo-h: 62px;
	box-shadow: 0 6px 20px rgba(80,72,30,.14);
}
@media (max-width: 879.98px) {
	.kopf.kompakt { --logo-h: 54px; }
	.kopf.nav-offen { max-height: 100dvh; overflow-y: auto; }
}
.logo {
	position: absolute; left: 0; top: 0;
	display: block; line-height: 0;
	border-radius: 0;
}
.logo:hover { background: none; }
.logo img { height: var(--logo-h); width: auto; }

.drucklogo { display: none; }

/* Hauptnavigation – Reiter wie bisher */
.nav-knopf { display: none; }
.hauptnav ul { list-style: none; margin: 0; padding: 0; }
.hauptnav a {
	display: block;
	color: #000;
	font-weight: 400;
	white-space: nowrap;
	border-radius: 0;
}
.hauptnav a:hover,
.hauptnav a[aria-current="page"],
.hauptnav .ist-aktiv > a {
	background: var(--oliv);
	color: var(--weiss);
}

@media (min-width: 880px) {
	.hauptnav {
		position: absolute; right: 0; bottom: 0;
	}
	.hauptnav > ul { display: flex; gap: 1px; }
	.hauptnav > ul > li { position: relative; }
	.hauptnav > ul > li > a {
		background: var(--beige);
		padding: 0 .75rem;
		line-height: 30px;
		border-radius: var(--radius-reiter) var(--radius-reiter) 0 0;
	}
	.hauptnav li.hat-unter > a::after { content: " \25BE"; }
	.hauptnav li ul {
		position: absolute; top: 100%; left: 0; z-index: 100;
		min-width: 100%;
		background: var(--beige);
		box-shadow: 0 8px 18px rgba(0,0,0,.15);
		opacity: 0; visibility: hidden; transform: translateY(-4px);
		transition: opacity .15s, transform .15s, visibility .15s;
	}
	.hauptnav li ul li + li { border-top: 1px solid #eee; }
	.hauptnav li ul a { padding: .35rem .75rem; }
	.hauptnav li:hover > ul,
	.hauptnav li:focus-within > ul {
		opacity: 1; visibility: visible; transform: none;
	}
}
@media (min-width: 1100px) {
	.hauptnav > ul > li > a { padding: 0 1rem; }
}

/* Mobile Navigation */
@media (max-width: 879.98px) {
	:root { --logo-h: 76px; }
	.nav-knopf {
		display: flex; align-items: center; gap: .6rem;
		position: absolute; right: 8px; top: calc((var(--band-h) - 40px) / 2);
		height: 40px; padding: 0 10px;
		font: inherit; font-size: .95rem; color: #222;
		background: none; border: 0; border-radius: 6px; cursor: pointer;
	}
	.nav-knopf:hover { background: rgba(255,255,255,.25); }
	.nav-knopf .striche { position: relative; width: 26px; height: 18px; }
	.nav-knopf .striche span {
		position: absolute; left: 0; width: 100%; height: 3px; background: #333;
		border-radius: 2px; transition: transform .3s, opacity .3s;
	}
	.nav-knopf .striche span:nth-child(1) { top: 0; }
	.nav-knopf .striche span:nth-child(2) { top: 7.5px; }
	.nav-knopf .striche span:nth-child(3) { top: 15px; }
	.nav-knopf[aria-expanded="true"] .striche span:nth-child(1) { transform: translateY(7.5px) rotate(-45deg); }
	.nav-knopf[aria-expanded="true"] .striche span:nth-child(2) { opacity: 0; }
	.nav-knopf[aria-expanded="true"] .striche span:nth-child(3) { transform: translateY(-7.5px) rotate(45deg); }

	.hauptnav {
		padding-top: calc(var(--logo-h) + 12px);
	}
	.js .hauptnav { display: none; }
	.js .kopf.nav-offen .hauptnav { display: block; }
	.hauptnav > ul { border-top: 1px solid var(--beige); }
	.hauptnav li { border-bottom: 1px solid #ddd; }
	.hauptnav a { padding: .7rem 1rem; }
	.hauptnav li ul { background: var(--beige-zart); }
	.hauptnav li ul li { border-bottom: 0; border-top: 1px solid #e8e5da; }
	.hauptnav li ul a { padding: .5rem 1rem .5rem 2rem; font-size: .95em; }
}

/* ---------- Titelbild (Hero) ---------- */
.hero {
	position: relative;
	height: clamp(170px, 23vw, 250px);   /* Fotos sind 1100 × 200 px */
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(135deg, #8d8558, var(--band));
}
.hero-start { height: clamp(230px, 27vw, 290px); }
.hero-bild {
	position: absolute; inset: -6% 0 0;
	z-index: -2;
}
.hero-bild img {
	width: 100%; height: 100%; object-fit: cover;
	animation: hero-zoom 2.2s cubic-bezier(.2,.7,.2,1) both;
}
.hero::after {           /* sanfter Verlauf für gut lesbare Schrift */
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(to top, rgba(52,48,24,.72) 0%, rgba(52,48,24,.25) 45%, rgba(52,48,24,0) 75%);
}
.hero-text {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 0 clamp(1rem, 3.5vw, 2.5rem) clamp(1.1rem, 3vw, 2rem);
	color: var(--weiss);
	text-shadow: 0 1px 12px rgba(0,0,0,.25);
}
.hero-text > * { animation: hero-text .9s cubic-bezier(.2,.7,.2,1) both; }
.hero-text > :nth-child(2) { animation-delay: .12s; }
.hero-text > :nth-child(3) { animation-delay: .24s; }
.hero-pfad {
	margin: 0 0 .15rem;
	font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
	opacity: .92;
}
.hero-pfad a { color: inherit; font-weight: 400; }
.hero-pfad a:hover { background: none; text-decoration: underline; }
.hero-titel {
	margin: 0;
	font-size: clamp(1.45rem, 1rem + 1.8vw, 2.2rem);
	font-weight: 700; line-height: 1.15;
	text-wrap: balance;
}
.hero-start .hero-titel { font-size: clamp(1.6rem, 1rem + 2.4vw, 2.5rem); }
.hero-knoepfe { margin: .8rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.hero-knoepfe .knopf { text-shadow: none; }
.knopf-hell { background: rgba(255,255,255,.92); color: var(--oliv); }
.knopf-hell:hover { background: var(--weiss); color: var(--akzent); }

/* Ersatzfläche, solange das Foto fehlt */
.hero-bild.foto-fehlt { position: absolute; }
.hero-bild.foto-fehlt::after {
	background: radial-gradient(circle at 78% 40%, rgba(227,178,79,.35), transparent 55%),
	            linear-gradient(135deg, #8d8558, var(--band));
	color: rgba(255,255,255,.28);
	font-size: clamp(6rem, 18vw, 12rem);
	place-items: center end;
	padding-right: 8%;
	border-radius: 0;
}

@keyframes hero-zoom { from { transform: scale(1.05); } to { transform: none; } }
@keyframes hero-text { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Leichter Parallax-Effekt beim Scrollen (moderne Browser, reines CSS) */
@supports (animation-timeline: scroll()) {
	@media (prefers-reduced-motion: no-preference) {
		.hero-bild {
			animation: hero-parallax linear both;
			animation-timeline: scroll(root);
			animation-range: 0 600px;
		}
		@keyframes hero-parallax { to { transform: translateY(10%); } }
	}
}

/* ---------- Einblenden beim Scrollen ---------- */
.einblenden {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
	transition-delay: var(--verz, 0ms);
}
.einblenden.sichtbar { opacity: 1; transform: none; }

/* ---------- Seitenwechsel mit sanfter Überblendung ---------- */
@view-transition { navigation: auto; }
.kopf { view-transition-name: kopf; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .35s; }

/* ---------- Nach oben ---------- */
.nach-oben {
	position: fixed; right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
	z-index: 60;
	width: 46px; height: 46px; border-radius: 50%;
	border: 0; cursor: pointer;
	background: var(--oliv); color: var(--weiss);
	font-size: 1.3rem; line-height: 1;
	box-shadow: 0 6px 18px rgba(0,0,0,.2);
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity .3s, transform .3s, visibility .3s, background-color .2s;
}
.nach-oben.da { opacity: 1; visibility: visible; transform: none; }
.nach-oben:hover { background: var(--akzent); }

/* ---------- Inhalt ---------- */
.inhalt {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	padding: clamp(1.25rem, 3.5vw, 2.5rem) clamp(1rem, 3.5vw, 2.5rem) clamp(2rem, 4vw, 3rem);
}
@media (min-width: 760px) {
	.inhalt.mit-seitenbild { grid-template-columns: 260px minmax(0, 1fr); }
}
.seitenbild { margin: 0; }
.seitenbild img, .seitenbild .platzhalter {
	width: 100%;
	border-radius: var(--radius-bild);
}
@media (max-width: 759.98px) {
	.seitenbild { display: none; }
}
@media (min-width: 760px) {
	.seitenbild { position: sticky; top: 1.5rem; align-self: start; }
}

.artikel { max-width: 68ch; }
.artikel ul { padding-left: 1.2em; margin: 0 0 1em; }
.artikel li { margin-bottom: .2em; }
.artikel li::marker { color: var(--oliv); }

.einleitung { font-size: 1.08em; }

blockquote {
	margin: 1.2em 0;
	padding: .9em 1.2em;
	background: var(--beige-zart);
	border-radius: 0 var(--radius-bild) var(--radius-bild) 0;
	border-left: 4px solid var(--gold);
	font-style: italic;
}
blockquote p:last-child { margin-bottom: 0; }

/* Übersichtsseiten (Patienteninfo, Therapien) */
.teaser-liste { display: grid; gap: 1.75rem; }
.teaser { padding-top: 1.25rem; border-top: 1px solid var(--beige); }
.teaser:first-child { padding-top: 0; border-top: 0; }
.teaser h2 { margin-bottom: .35em; }
.teaser p { margin-bottom: .6em; }
.weiter { display: inline-block; padding: .1em .25em; margin-left: -.25em; }
.weiter::after { content: " \2192"; }

/* Methoden (Startseite) */
.methoden {
	list-style: none; padding: 0 !important;
	display: flex; flex-wrap: wrap; gap: .5rem;
}
.methoden li {
	margin: 0;
	padding: .3em .85em;
	background: var(--beige-zart);
	border: 1px solid var(--beige);
	border-radius: 999px;
	font-size: .95em;
}
.methoden a { font-weight: 700; }

/* Indikationen */
.indikationen {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
	gap: 1.5rem 2rem;
	margin-top: 1.5rem;
}
.indikationen section h2 {
	font-size: 1rem;
	padding-bottom: .35em;
	border-bottom: 2px solid var(--beige);
	margin-bottom: .5em;
}
.indikationen ul { margin: 0; }

/* Methoden-Abschnitte (Akupunktur) */
.methode { margin-top: 2rem; }
.methode h2 { display: flex; align-items: baseline; gap: .5rem; }

/* Kosten */
.tabelle-rahmen { overflow-x: auto; }
table.kosten {
	width: 100%;
	border-collapse: collapse;
	font-variant-numeric: tabular-nums;
}
table.kosten th, table.kosten td {
	padding: .65em .5em;
	border-bottom: 1px solid #ddcec4;
	vertical-align: top;
	text-align: left;
}
table.kosten thead th {
	font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
	color: var(--text-leise); border-bottom: 2px solid var(--beige);
}
table.kosten .zahl { text-align: right; white-space: nowrap; }
table.kosten tbody tr:hover { background: #fbf8e0; }
table.kosten .zusatz td { color: var(--text-leise); font-size: .92em; padding-top: 0; }
table.kosten .zusatz td:first-child { padding-left: 1.25em; }

/* Lebenslauf */
.lebenslauf { list-style: none; padding: 0 !important; margin: 1.5rem 0; }
.lebenslauf li {
	display: grid; grid-template-columns: 7.5rem 1fr; gap: 1rem;
	padding: .7em 0; border-top: 1px solid var(--beige-hell);
	margin: 0 !important;
}
.lebenslauf li:last-child { border-bottom: 1px solid var(--beige-hell); }
.lebenslauf .jahr { font-weight: 700; color: var(--oliv); font-variant-numeric: tabular-nums; }
@media (max-width: 480px) {
	.lebenslauf li { grid-template-columns: 1fr; gap: .1rem; }
}

/* Kontakt */
.kontakt-raster { display: grid; gap: 1.5rem; margin-top: .5rem; }
@media (min-width: 620px) {
	.kontakt-raster { grid-template-columns: 1fr 1fr; }
}
.kontakt-karte {
	padding: 1.25rem 1.4rem;
	background: var(--beige-zart);
	border-radius: var(--radius-bild);
}
.kontakt-karte h2 { font-size: 1rem; }
.kontakt-karte address { font-style: normal; }
.knopf {
	display: inline-block;
	padding: .7em 1.4em;
	background: var(--oliv); color: var(--weiss);
	border-radius: 999px;
	font-weight: 700;
}
.knopf:hover { background: var(--akzent); }

/* Galerie / Lightbox */
.galerie { margin-top: 1.5rem; }
.galerie a { display: inline-block; border-radius: var(--radius-bild); overflow: hidden; }
.galerie a:hover { background: none; }
.galerie a:hover img { filter: contrast(1.15); }
.galerie img { border-radius: var(--radius-bild); max-width: 290px; width: 100%; }

.lightbox {
	padding: 0; border: 0; background: transparent; max-width: 94vw; max-height: 94vh;
}
.lightbox::backdrop { background: rgba(118,108,57,.95); }
.lightbox img { max-width: 94vw; max-height: 88vh; width: auto; border-radius: 6px; }
.lightbox button {
	position: fixed; top: 1rem; right: 1rem;
	width: 44px; height: 44px; border-radius: 50%;
	border: 0; background: var(--weiss); color: #000; font-size: 1.5rem; cursor: pointer;
}

/* Platzhalter, falls ein Foto (noch) fehlt */
.foto-fehlt { position: relative; }
.foto-fehlt img { visibility: hidden; }
.foto-fehlt::after {
	content: "康";
	position: absolute; inset: 0;
	display: grid; place-items: center;
	font-size: clamp(3rem, 8vw, 5rem);
	color: rgba(118,108,57,.25);
	background: linear-gradient(135deg, var(--beige-zart), var(--beige-hell));
	border-radius: inherit;
}
.seitenbild.foto-fehlt { aspect-ratio: 3 / 4; border-radius: var(--radius-bild); }
.seitenbild.foto-fehlt img { position: absolute; }

/* ---------- Fusszeile ---------- */
.fuss {
	background: var(--beige);
	color: #000;
	text-align: center;
	font-size: .9rem;
	line-height: 1.6;
	padding: 1rem;
}
.fuss ul {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; justify-content: center; gap: .1rem 0;
}
.fuss li + li::before { content: "|"; margin: 0 .55em; color: #6b6750; }
.fuss a { color: var(--akzent-dunkel); }
.fuss a:hover { color: var(--weiss); background: var(--akzent-dunkel); }

/* ---------- Druck ---------- */
@media print {
	body { background: none; font-size: 10pt; }
	.seite { box-shadow: none; max-width: none; }
	.kopf, .hero, .seitenbild, .skip-link, .galerie, .nach-oben { display: none !important; }
	.einblenden { opacity: 1 !important; transform: none !important; }
	.drucklogo { display: block; width: 300px; margin-bottom: 1.5rem; }
	.inhalt { display: block; padding: 0; }
	a { color: #000; }
	.fuss { background: none; text-align: left; border-top: 1px solid #999; padding: .6em 0; }
}

/* Kleine Abstände (statt Inline-Styles, CSP-freundlich) */
.hinweis { margin-top: 1.5em; }
.kontakt-karte .notiz { margin: .6em 0 0; }

/* Kleine Hover-Details */
.weiter::after { display: inline-block; transition: transform .25s ease; }
.weiter:hover::after { transform: translateX(4px); }
.seitenbild img, .galerie img { transition: transform .6s ease, filter .3s; }
.galerie a:hover img { transform: scale(1.03); }
.kontakt-karte { transition: box-shadow .3s ease, transform .3s ease; }
.kontakt-karte:hover { box-shadow: 0 10px 28px rgba(118,108,57,.14); transform: translateY(-2px); }

/* Nur für Screenreader und Suchmaschinen sichtbar */
.nur-sr {
	position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hero-knoepfe .knopf:first-child { background: var(--akzent); }
.hero-knoepfe .knopf:first-child:hover { background: var(--akzent-dunkel); }

/* Fusszeile bleibt auch bei kurzen Seiten unten */
.seite { display: flex; flex-direction: column; min-height: 100dvh; }
.seite > main { flex: 1 0 auto; }
@media (min-width: 1140px) { .seite { min-height: calc(100dvh - 3rem); } }

/* ---------- Kontaktformular ---------- */
.formular-bereich { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--beige); scroll-margin-top: 90px; }
.pflicht-hinweis { font-size: .9rem; color: var(--text-leise); }
.stern { color: #d9342b; font-size: .95em; }
.kontaktformular { display: grid; gap: .85rem; margin-top: 1rem; }
.formular-zeile { display: grid; gap: .3rem; }
@media (min-width: 560px) {
	.formular-zeile { grid-template-columns: 9.5rem minmax(0, 1fr); align-items: start; gap: 1rem; }
	.formular-zeile > label { padding-top: .55rem; }
	.formular-zeile.ohne-label .eingabe { grid-column: 2; }
}
.formular-zeile > label { font-weight: 400; }
.kontaktformular input[type=text],
.kontaktformular input[type=email],
.kontaktformular input[type=tel],
.kontaktformular textarea {
	width: 100%;
	font: inherit; color: var(--text);
	padding: .55rem .7rem;
	background: var(--weiss);
	border: 1px solid #cfcab6;
	border-radius: 8px;
	transition: border-color .2s, box-shadow .2s;
}
.kontaktformular textarea { resize: vertical; min-height: 8rem; }
.kontaktformular input:focus, .kontaktformular textarea:focus {
	outline: none;
	border-color: var(--oliv);
	box-shadow: 0 0 0 3px rgba(227,178,79,.35);
}
.plz-ort { display: grid; grid-template-columns: 7rem minmax(0, 1fr); gap: .6rem; }
.zustimmung { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; line-height: 1.5; cursor: pointer; }
.zustimmung input { margin-top: .25rem; width: 1.1rem; height: 1.1rem; accent-color: var(--oliv); flex: none; }
.feld-fehler { color: #b3261e; font-size: .85rem; margin: .3rem 0 0; }
.ist-falsch input, .ist-falsch textarea { border-color: #b3261e !important; }
.kontaktformular button.knopf { border: 0; font: inherit; font-weight: 700; cursor: pointer; }
.kontaktformular button[disabled] { opacity: .6; cursor: progress; }
.formular-meldung { margin: .9rem 0 0; padding: .75rem 1rem; border-radius: 10px; background: var(--beige-zart); }
.formular-meldung.fehler { background: #fbeae8; color: #7d1b14; }
.formular-danke {
	padding: 1.4rem 1.5rem; border-radius: var(--radius-bild);
	background: var(--beige-zart); border: 1px solid var(--beige);
}
.formular-danke h3 { margin-bottom: .3rem; }
/* Honeypot: für Menschen unsichtbar, für Bots ein normales Feld */
.honig { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.kopie-hinweis { margin: .6rem 0 0; font-size: .88rem; color: var(--text-leise); }
.region { margin-top: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--beige-hell); color: var(--text-leise); font-size: .95em; }
