/**
 * Privatpraxis Alexandra Heyden-Sinzig – Hauptstylesheet.
 * Mobile-first. Designsystem aus dem Praxis-Flyer.
 */

/* ---------------------------------------------------------------------------
 * 1. Designsystem (Custom Properties)
 * ------------------------------------------------------------------------- */
:root {
	/* Markenfarben */
	--red:          #B81109; /* Akzent: Buttons, Links, kleine Highlights */
	--red-bright:   #C20C06; /* Hover */
	--red-dark:     #8A0D07; /* Hover/Aktiv, Tiefe */
	--charcoal:     #3A3B34; /* Verlauf, Flächen */
	--charcoal-deep:#2B2B28; /* Dunkler Grund, Footer */

	/* Neutrale & warme Hintergründe */
	--ink:   #2A2A26; /* Fließtext (etwas weicher als Schwarz) */
	--grey:  #6E6E68; /* Sekundärtext */
	--grey-dark: #4C4B44; /* Lesbarer Sekundärtext (Unterüberschriften) */
	--line:  #E7E1D8; /* Rahmen, Trenner (warm) */
	--cream: #F7F3ED; /* Seitenhintergrund */
	--sand:  #F1EAE0; /* Warme Sektionsfläche statt hartem Weiß */
	--blush: #F6ECE8; /* Sehr zarter warmer Akzent-Untergrund */
	--white: #FFFFFF; /* Karten, Text auf dunkel */

	/* Signatur-Verlauf – ruhiger, wärmer, weniger Neon */
	--gradient: linear-gradient(160deg, #2B2B28 0%, #3A3B34 30%, #5A1612 62%, #8A0D07 84%, #B81109 100%);

	/* Maße – weicher, runder */
	--maxw: 1120px;
	--radius: 20px;
	--radius-sm: 14px;
	--radius-lg: 32px;
	--shadow: 0 10px 30px rgba(42, 42, 38, 0.06);
	--shadow-strong: 0 16px 44px rgba(42, 42, 38, 0.12);

	/* Typo-Stacks: warme Serife für Überschriften, klare Sans für Text */
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	--font-head: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
}

/* ---------------------------------------------------------------------------
 * 2. Reset / Basis
 * ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: var(--font);
	font-size: 1.075rem;
	line-height: 1.78;
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--red-dark); }

h1, h2 {
	font-family: var(--font-head);
	line-height: 1.18;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 7vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
h3 { font-family: var(--font); line-height: 1.3; font-weight: 700; font-size: 1.18rem; color: var(--ink); margin: 0 0 .5em; }

p { margin: 0 0 1em; }

/* Sichtbare Fokus-Stile (Barrierefreiheit) */
:focus-visible {
	outline: 3px solid var(--red);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Skip-Link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--white);
	color: var(--red);
	padding: .75rem 1.25rem;
	z-index: 1000;
	border-radius: 0 0 var(--radius-sm) 0;
	font-weight: 700;
}
.skip-link:focus {
	left: 0;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------------------
 * 3. Layout-Helfer
 * ------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.section {
	padding-block: clamp(3.25rem, 9vw, 6rem);
}
.section--alt { background: var(--sand); }

.section__intro { max-width: 56ch; margin-bottom: 2.5rem; }
.section__intro p { color: var(--grey-dark); margin-bottom: 0; font-size: 1.12rem; }

.about-subtitle {
	color: var(--grey-dark);
	font-size: 1.12rem;
	max-width: 60ch;
	margin: 0 0 1.25rem;
	line-height: 1.6;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: .82rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--red);
	margin-bottom: .65rem;
}
.eyebrow::before {
	content: "";
	width: 1.5rem;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	opacity: .6;
}

/* ---------------------------------------------------------------------------
 * 4. Buttons
 * ------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	min-height: 3.25rem;
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
	padding: .95rem 1.8rem;
	border-radius: 999px;
	border: 2px solid transparent;
	transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease;
	line-height: 1.1;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
	background: var(--red);
	color: var(--white);
	box-shadow: var(--shadow);
}
.btn--primary:hover { background: var(--red-dark); color: var(--white); }

.btn--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.22); color: var(--white); }

.btn__icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------------------------------------------------------------------------
 * 5. Header (schlank, One-Page)
 * ------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(246, 243, 239, 0.92);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: .6rem;
}
.site-brand {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--ink);
	line-height: 1.15;
}
.site-brand:hover { color: var(--ink); }
.site-brand__name { font-weight: 800; font-size: 1.05rem; }
.site-brand__claim { font-size: .78rem; color: var(--grey); }
.site-brand img { max-height: 54px; width: auto; }

.header-call { white-space: nowrap; }
.header-call .btn { padding: .6rem 1.1rem; font-size: .95rem; }

/* ---------------------------------------------------------------------------
 * 6. Hero
 * ------------------------------------------------------------------------- */
.hero {
	background:
		radial-gradient(130% 90% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
		var(--gradient);
	color: var(--white);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero--image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(160deg, rgba(43, 43, 40, 0.86) 0%, rgba(58, 59, 52, 0.72) 32%, rgba(90, 22, 18, 0.66) 64%, rgba(138, 13, 7, 0.62) 86%, rgba(184, 17, 9, 0.60) 100%);
}
.hero--image {
	min-height: clamp(420px, 58vh, 600px);
	display: grid;
	align-items: center;
}
.hero__inner {
	position: relative;
	z-index: 2;
	padding-block: clamp(4rem, 13vw, 7.5rem);
	max-width: 42ch;
	margin-inline: auto;
}
.hero h1 { color: var(--white); margin-bottom: .35em; }
.hero__claim {
	font-family: var(--font-head);
	font-style: italic;
	font-size: clamp(1.2rem, 3.4vw, 1.6rem);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.94);
	margin-bottom: 2rem;
}
.hero__actions {
	display: flex;
	flex-direction: column;
	gap: .8rem;
	justify-content: center;
	align-items: stretch;
}
.hero__actions .btn { width: 100%; }
@media (min-width: 480px) {
	.hero__actions { flex-direction: row; flex-wrap: wrap; align-items: center; }
	.hero__actions .btn { width: auto; }
}
.hero__note {
	margin-top: 1.5rem;
	font-size: .9rem;
	color: rgba(255, 255, 255, 0.82);
}

/* ---------------------------------------------------------------------------
 * 7. Über mich
 * ------------------------------------------------------------------------- */
.about__lead {
	font-size: clamp(1.05rem, 2.4vw, 1.3rem);
	color: var(--ink);
	max-width: 60ch;
}
.about__signature {
	font-weight: 700;
	color: var(--red);
	margin-top: 1rem;
}

/* ---------------------------------------------------------------------------
 * 8. Karten-Raster (Leistungen & Kurse)
 * ------------------------------------------------------------------------- */
.group { margin-bottom: 2.5rem; }
.group:last-child { margin-bottom: 0; }
.group__title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: .25rem .7rem;
	margin-bottom: 1.35rem;
	padding-bottom: .65rem;
	border-bottom: 1px solid var(--line);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: clamp(1.35rem, 3.5vw, 1.6rem);
}
.group__sub { font-size: .92rem; color: var(--grey); font-weight: 500; font-family: var(--font); font-style: italic; }

.cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.6rem 1.6rem;
	box-shadow: var(--shadow);
	transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-strong); }
.card h3 { margin-bottom: .35rem; }
.card h3::after {
	content: "";
	display: block;
	width: 1.9rem;
	height: 3px;
	border-radius: 999px;
	background: var(--red);
	opacity: .55;
	margin-top: .6rem;
}
.card p { color: var(--grey); font-size: .99rem; line-height: 1.65; margin-bottom: 0; }
.card--plain h3::after { background: var(--charcoal); opacity: .35; }

/* Behandlungs-Menü: ruhige Liste statt Boxen */
.leistung-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 3.5rem;
	margin-top: .25rem;
}
.leistung-item {
	padding: 1.15rem .25rem;
	border-bottom: 1px solid var(--line);
	transition: background-color .15s ease;
}
.leistung-item:hover { background: rgba(184, 17, 9, 0.03); }
.leistung-item__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 .15rem;
	color: var(--ink);
}
.leistung-item p {
	margin: 0;
	color: var(--grey);
	font-size: .97rem;
	line-height: 1.6;
}

@media (min-width: 760px) {
	.leistung-list { grid-template-columns: 1fr 1fr; }
	/* In zwei Spalten die letzten beiden Items ohne Doppellinie am Fuß */
	.leistung-item:nth-last-child(-n+2):nth-child(odd):last-of-type,
	.leistung-item:last-child { border-bottom: 0; }
}

/* Leistungen: 3 Spalten mit Icon + Checkliste (Vorlagen-Layout) */
.section__head--center {
	text-align: center;
	max-width: 58ch;
	margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
}
.section__head--center h2 { margin-bottom: 0; }
.section__head--center h2::after {
	content: "";
	display: block;
	width: 3rem;
	height: 3px;
	border-radius: 999px;
	background: var(--red);
	opacity: .5;
	margin: 1.1rem auto 0;
}
.section__head--center .lead {
	margin: 1.25rem 0 0;
	color: var(--grey-dark);
	font-size: 1.12rem;
}

.leistung-cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.75rem, 6vw, 3.5rem) 2.5rem;
}
.leistung-col { text-align: center; }

.leistung-col__icon {
	position: relative;
	width: 92px;
	height: 92px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--gradient);
	color: var(--white);
	box-shadow: var(--shadow);
}
.leistung-col__icon::before {
	content: "";
	position: absolute;
	inset: -9px;
	border-radius: 50%;
	border: 1px solid rgba(184, 17, 9, 0.30);
}
.leistung-col__icon svg { width: 40px; height: 40px; }

.leistung-col__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: clamp(1.4rem, 3.5vw, 1.6rem);
	margin: 0;
	color: var(--ink);
}
.leistung-col__title::after {
	content: "";
	display: block;
	width: 2rem;
	height: 3px;
	border-radius: 999px;
	background: var(--red);
	opacity: .5;
	margin: .75rem auto 0;
}
.leistung-col__sub {
	margin: .9rem 0 0;
	color: var(--grey-dark);
	font-weight: 700;
	font-size: 1rem;
}

.leistung-checklist {
	list-style: none;
	margin: 1.6rem 0 0;
	padding: 0;
	display: inline-block;
	text-align: left;
}
.leistung-checklist li {
	display: flex;
	gap: .55rem;
	align-items: flex-start;
	justify-content: flex-start;
	padding: .5rem 0;
	color: var(--ink);
	font-size: 1rem;
	line-height: 1.45;
}
.leistung-checklist li::before { margin-top: .05em; }
.leistung-checklist li::before {
	content: "";
	flex: none;
	width: 1.2em;
	height: 1.2em;
	background: var(--red);
	-webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm4.7 7.3-5.6 5.6a1 1 0 0 1-1.4 0l-2.8-2.8 1.4-1.4 2.1 2.1 4.9-4.9 1.4 1.4Z'/%3E%3C/svg%3E");
	mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm4.7 7.3-5.6 5.6a1 1 0 0 1-1.4 0l-2.8-2.8 1.4-1.4 2.1 2.1 4.9-4.9 1.4 1.4Z'/%3E%3C/svg%3E");
}

.notice-warm--center {
	max-width: 46rem;
	margin-inline: auto;
	margin-top: clamp(2.5rem, 6vw, 3.5rem);
	justify-content: center;
	text-align: center;
}

.notice-warm {
	display: flex;
	align-items: center;
	gap: .85rem;
	margin-top: 2.25rem;
	background: var(--blush);
	border: 1px solid rgba(184, 17, 9, 0.14);
	border-radius: var(--radius);
	padding: 1.15rem 1.4rem;
	font-weight: 500;
	color: var(--ink);
}
.notice-warm::before {
	content: "";
	flex: none;
	width: 1.6rem;
	height: 1.6rem;
	background: var(--red);
	opacity: .85;
	-webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 21s-7.5-4.6-10-9.3C.4 8.2 2 4.7 5.2 4.2 7.1 3.9 9 4.9 12 7.8c3-2.9 4.9-3.9 6.8-3.6C22 4.7 23.6 8.2 22 11.7 19.5 16.4 12 21 12 21Z'/%3E%3C/svg%3E");
	mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 21s-7.5-4.6-10-9.3C.4 8.2 2 4.7 5.2 4.2 7.1 3.9 9 4.9 12 7.8c3-2.9 4.9-3.9 6.8-3.6C22 4.7 23.6 8.2 22 11.7 19.5 16.4 12 21 12 21Z'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------------------
 * 9. Kontakt
 * ------------------------------------------------------------------------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
.contact-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: .75rem; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
	display: flex;
	gap: .7rem;
	align-items: flex-start;
	padding-block: .55rem;
	border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .label { font-weight: 700; min-width: 7rem; flex: none; }
.contact-list address { font-style: normal; }
.contact-phone { font-size: 1.25rem; font-weight: 800; color: var(--red); text-decoration: none; }
.contact-phone:hover { color: var(--red-dark); }

/* Modernes Kontakt-Feld (ein Panel, Icon-Infos + Terminvergabe) */
.contact-panel {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: clamp(1.5rem, 4vw, 2.75rem);
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
.contact-panel__info { display: grid; gap: 1.5rem; align-content: start; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon {
	flex: none;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--blush);
	color: var(--red);
}
.contact-item__icon svg { width: 1.3rem; height: 1.3rem; }
.contact-item__label {
	display: block;
	font-size: .78rem;
	letter-spacing: .07em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--grey);
	margin-bottom: .2rem;
}
.contact-item__value { font-style: normal; color: var(--ink); line-height: 1.5; }
a.contact-item__value:hover { color: var(--red-dark); }

.contact-panel__appointment h3 { margin-bottom: .6rem; }

@media (min-width: 820px) {
	.contact-panel {
		grid-template-columns: 1fr 1fr;
		gap: clamp(2rem, 5vw, 3.5rem);
	}
	.contact-panel__appointment {
		border-left: 1px solid var(--line);
		padding-left: clamp(2rem, 5vw, 3.5rem);
	}
}

.contact-hint {
	display: inline-block;
	margin-top: .25rem;
	background: var(--charcoal-deep);
	color: var(--white);
	font-weight: 600;
	padding: .5rem .9rem;
	border-radius: 999px;
	font-size: .92rem;
}
.placeholder {
	display: inline-block;
	background: rgba(110, 110, 104, 0.12);
	border: 1px dashed var(--grey);
	color: var(--grey);
	padding: .15rem .5rem;
	border-radius: 6px;
	font-size: .9rem;
}

/* ---------------------------------------------------------------------------
 * 10. Karte (Consent)
 * ------------------------------------------------------------------------- */
.map-consent {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--charcoal);
	color: var(--white);
	min-height: 320px;
	display: grid;
	place-items: center;
	text-align: center;
}
.map-consent__inner { padding: 2rem 1.5rem; max-width: 46ch; }
.map-consent__inner h3 { color: var(--white); }
.map-consent__inner p { color: rgba(255, 255, 255, 0.85); }
.map-embed { width: 100%; border: 0; display: block; aspect-ratio: 16 / 9; min-height: 320px; }

/* ---------------------------------------------------------------------------
 * 11. Footer
 * ------------------------------------------------------------------------- */
.site-footer {
	background:
		radial-gradient(120% 100% at 50% 0%, rgba(255, 255, 255, 0.08), transparent 55%),
		var(--gradient);
	color: rgba(255, 255, 255, 0.85);
	padding-block: 2.75rem;
}
.site-footer a { color: var(--white); }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
.site-footer h2, .site-footer h3 { color: var(--white); font-size: 1.05rem; }
.site-footer address { font-style: normal; }
.footer-nav { list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.site-footer__bottom {
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: .85rem;
	color: rgba(255, 255, 255, 0.6);
}

/* ---------------------------------------------------------------------------
 * 12. Sticky Anruf-Button (mobil)
 * ------------------------------------------------------------------------- */
.call-fab {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: var(--red);
	color: var(--white);
	font-weight: 800;
	text-decoration: none;
	padding: .85rem 1.3rem;
	border-radius: 999px;
	box-shadow: var(--shadow-strong);
}
.call-fab:hover { background: var(--red-dark); color: var(--white); }
.call-fab__icon { width: 1.25em; height: 1.25em; }

/* ---------------------------------------------------------------------------
 * 13. Inhaltsseiten (Impressum / Datenschutz)
 * ------------------------------------------------------------------------- */
.page-legal { padding-block: clamp(2rem, 6vw, 4rem); }
.page-legal .container { max-width: 760px; }
.page-legal h2 { margin-top: 2rem; }
.page-legal h2:first-of-type { margin-top: 1rem; }
.page-legal dl { margin: 0 0 1.5rem; }
.page-legal dt { font-weight: 700; margin-top: .75rem; }
.page-legal dd { margin: 0 0 .25rem; }
.back-home { display: inline-block; margin-top: 2rem; }

/* ---------------------------------------------------------------------------
 * 13b. Fotos: Über-mich-Porträt, Galerie & Platzhalter
 * ------------------------------------------------------------------------- */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}
.about-media { margin: 0; }
.about-portrait,
.about-media .media-placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
}

.gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
.gallery__item { margin: 0; }
.gallery__img,
.gallery__item .media-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
	display: block;
}
.gallery__hint { margin-top: 1rem; }

/* Platzhalter-Box für noch fehlende Fotos */
.media-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	min-height: 180px;
	background: rgba(110, 110, 104, 0.06);
	border: 2px dashed var(--grey) !important;
	color: var(--grey);
	text-align: center;
	font-weight: 600;
	font-size: .92rem;
	box-shadow: none !important;
}
.media-placeholder svg { opacity: .7; }

/* ---------------------------------------------------------------------------
 * 13c. Entspannungspädagogik: Intro-Text + Accordion
 * ------------------------------------------------------------------------- */
.prose-block {
	max-width: 65ch;
	margin: 0 auto clamp(2rem, 5vw, 2.75rem);
}
.prose-block p { color: var(--grey-dark); line-height: 1.8; }
.prose-block p:last-child { margin-bottom: 0; }

.accordion { max-width: 760px; margin-inline: auto; }
.accordion__item {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	margin-bottom: .9rem;
	overflow: hidden;
}
.accordion__item:last-child { margin-bottom: 0; }
.accordion__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.4rem;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--ink);
}
.accordion__summary::-webkit-details-marker { display: none; }
.accordion__summary::after {
	content: "+";
	flex: none;
	color: var(--red);
	font-size: 1.5rem;
	line-height: 1;
}
.accordion__item[open] .accordion__summary::after { content: "–"; }
.accordion__summary:hover { color: var(--red-dark); }
.accordion__body { padding: 0 1.4rem 1.3rem; }
.accordion__body p { margin: 0; color: var(--grey-dark); line-height: 1.75; }

/* ---------------------------------------------------------------------------
 * 14. Responsive
 * ------------------------------------------------------------------------- */
@media (min-width: 600px) {
	.cards { grid-template-columns: repeat(2, 1fr); }
	.gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
	/* Ab Tablet braucht es keinen Floating-Button mehr – Header-CTA reicht. */
	.call-fab { display: none; }
}

@media (min-width: 760px) {
	.leistung-cols { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

@media (min-width: 900px) {
	.cards { grid-template-columns: repeat(3, 1fr); }
	.gallery { grid-template-columns: repeat(3, 1fr); }
	.contact-grid { grid-template-columns: 1.1fr 1fr; }
	.site-footer__grid { grid-template-columns: 2fr 1fr; }
	.about-grid { grid-template-columns: 1.4fr 0.9fr; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; }
}
