/* ==========================================================================
   Praxis für funktionelle muskeltherapie nach tamura
   Modernes, responsives Redesign — 2026
   Farbwelt aus dem Bestand: fmt-Blau, Mint, Sand, Koralle (#F05252)
   ========================================================================== */

/* ---- Schriften ---------------------------------------------------------- */
@font-face {
	font-family: "Gradl";
	src: url("../fnt/GRADL.TTF") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

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

:root {
	--blue:        #1378ad;   /* fmt-Blau                 */
	--blue:        #32ad8c;   /* fmt-Blau                 */
	--blue-deep:   #0c577f;   /* dunkles Blau für Text    */
	--blue-soft:   #eaf3f8;   /* sehr helles Blau         */
	--coral:       #ef5350;   /* Akzent (aus Bestand)     */
	--coral-deep:  #d83f3c;
	--mint:        #e6f0ea;   /* Mintfläche (Banner)      */
	--mint-line:   #cfe3d7;
	--sand:        #f3ece1;   /* warmer Sandton (Portrait)*/
	--sand-deep:   #e6d8c3;
	--ink:         #243038;   /* Haupttext                */
	--muted:       #5d6b73;   /* gedämpfter Text          */
	--paper:       #ffffff;
	--bg:          #fbfaf6;   /* warmes Off-White         */
	--line:        #e7e2d8;

	--maxw: 1180px;
	--pad: clamp(20px, 5vw, 64px);
	--radius: 18px;
	--radius-lg: 28px;
	--shadow: 0 18px 50px -24px rgba(20, 50, 70, .35);
	--shadow-soft: 0 10px 30px -18px rgba(20, 50, 70, .28);
	--ease: .45s cubic-bezier(.22, .61, .36, 1);

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

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

body {
	margin: 0;
	font-family: var(--sans);
	font-size: 18px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-deep); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--coral); }

h1, h2, h3, h4 { line-height: 1.12; color: var(--ink); font-weight: 600; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p  { margin: 0 0 1.1em; }
strong { font-weight: 600; }
sup { font-size: 0.5em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---- Hilfsklassen ------------------------------------------------------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: .55em;
	font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
	color: var(--blue); margin-bottom: 1.1rem;
}
.eyebrow::before {
	content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 2px;
}
.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--muted); line-height: 1.6; }

.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--mint) 0%, #f1f6f2 100%); }
.section--sand { background: linear-gradient(180deg, var(--sand) 0%, #faf5ec 100%); }
.section-head { max-width: 680px; margin-bottom: clamp(38px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
	display: inline-flex; align-items: center; gap: .6em;
	font-size: 1rem; font-weight: 600; line-height: 1;
	padding: 1rem 1.7rem; border-radius: 999px; cursor: pointer;
	border: 1.5px solid transparent; transition: all var(--ease);
	white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--ease); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 12px 26px -12px rgba(239,83,80,.7); }
.btn-primary:hover { background: var(--coral-deep); color: #fff; transform: translateY(-2px); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--blue-deep); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; }

/* ---- Logo (aus der Schrift GRADL gebaut) -------------------------------- */
.logo { display: inline-flex; align-items: baseline; gap: .65rem; line-height: 1; }
.logo__mark {
	font-family: var(--display);
	font-size: 2.5rem;
	color: var(--blue);
	letter-spacing: .02em;
	line-height: .8;
	transition: color var(--ease);
}
.logo:hover .logo__mark { color: var(--coral); }
.logo__sub {
	font-size: .72rem; color: var(--muted); letter-spacing: .04em;
	max-width: 16ch; line-height: 1.25; font-weight: 500;
}

/* ==========================================================================
   Kopfzeile / Navigation
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(251, 250, 246, .82);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color var(--ease), box-shadow var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -20px rgba(0,0,0,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 84px; }
.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); list-style: none; margin: 0; padding: 0; }
.nav__menu a {
	color: var(--ink); font-size: .98rem; font-weight: 500; position: relative; padding: .3rem 0;
}
.nav__menu a::after {
	content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
	background: var(--coral); border-radius: 2px; transition: width var(--ease);
}
.nav__menu a:hover, .nav__menu a.active { color: var(--blue-deep); }
.nav__menu a:hover::after, .nav__menu a.active::after { width: 100%; }
.nav__cta { margin-left: .4rem; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }

/* Sprachumschalter */
.lang { display: inline-flex; align-items: center; gap: .1rem; margin-top: 4px; }
.lang__item {
	font-size: .8rem; font-weight: 600; letter-spacing: .04em; line-height: 1;
	color: var(--muted); padding: .4em .5em; border-radius: 8px;
	transition: color var(--ease), background var(--ease);
}
a.lang__item:hover { color: var(--blue-deep); background: var(--blue-soft); }
.lang__item.is-active { color: var(--blue); }
.lang__item + .lang__item { position: relative; }
.lang__item + .lang__item::before {
	content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%);
	width: 1px; height: 12px; background: var(--line);
}

.nav__toggle {
	display: none; width: 46px; height: 46px; border: 1px solid var(--line);
	background: var(--paper); border-radius: 12px; cursor: pointer; padding: 0;
	align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
	content: ""; display: block; width: 22px; height: 2px; background: var(--ink);
	border-radius: 2px; transition: transform var(--ease), opacity var(--ease);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after  { position: absolute; top:  7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding-block: clamp(48px, 7vw, 96px); overflow: hidden; }
.hero__grid {
	display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}
.hero__title { margin-bottom: 1rem; }
.hero__title .accent { color: var(--blue); }
.hero__lead { max-width: 46ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin-top: 2.6rem; }
.hero__meta div { position: relative; padding-left: 1rem; }
.hero__meta div::before { content: ""; position: absolute; left: 0; top: .15em; bottom: .15em; width: 3px; background: var(--mint-line); border-radius: 3px; }
.hero__meta b { display: block; font-size: 1.5rem; color: var(--blue-deep); line-height: 1; }
.hero__meta span { font-size: .82rem; color: var(--muted); }

.hero__media { position: relative; }
.hero__photo {
	position: relative; z-index: 2; border-radius: 240px 240px var(--radius-lg) var(--radius-lg);
	overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/3.6; background: var(--sand);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__blob {
	position: absolute; inset: -8% -10% -6% -8%; z-index: 1;
	/* background: radial-gradient(60% 55% at 70% 25%, var(--mint) 0%, transparent 70%),
	            radial-gradient(50% 50% at 20% 85%, var(--sand-deep) 0%, transparent 70%); */
	filter: blur(6px);
}
.hero__watermark {
	position: absolute; right: -2%; bottom: 4%; z-index: 3;
	font-family: var(--display); font-size: clamp(3rem, 7vw, 5.5rem); color: #fff;
	background: var(--blue); width: clamp(96px,12vw,150px); height: clamp(96px,12vw,150px);
	display: grid; place-items: center; border-radius: 50%;
	box-shadow: var(--shadow-soft); line-height: 1; padding-top: .12em;
}
.hero__badge {
	position: absolute; left: -3%; top: 8%; z-index: 3;
	background: var(--paper); border-radius: 14px; padding: .8rem 1.1rem;
	box-shadow: var(--shadow-soft); font-size: .85rem; line-height: 1.3; max-width: 200px;
	display: flex; gap: .7rem; align-items: center;
}
.hero__badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #4caf50; flex: none; box-shadow: 0 0 0 4px rgba(76,175,80,.18); }

/* ==========================================================================
   Ansatz / Wie fmt wirkt
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.card {
	background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 2rem 1.8rem; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--mint-line); }
.card__icon {
	width: 54px; height: 54px; border-radius: 14px; background: var(--blue-soft);
	display: grid; place-items: center; margin-bottom: 1.2rem; color: var(--blue);
}
.card__icon svg { width: 26px; height: 26px; }
.card__num { font-family: var(--display); font-size: 1.6rem; color: var(--coral); margin-bottom: .4rem; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* Zweispalter Therapie */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; object-fit: cover; }
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--blue); flex: none; margin-top: .15em; }

/* Checkliste aus dem CKEditor-Feld (Listen werden als Checkliste dargestellt) */
.checklist-rich ul { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: grid; gap: .9rem; }
.checklist-rich li { position: relative; padding-left: 2rem; line-height: 1.5; }
.checklist-rich li::before {
	content: ""; position: absolute; left: 0; top: .12em; width: 22px; height: 22px;
	background-color: var(--blue);
	-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='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%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='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.checklist-rich p { margin: 0; }

/* ==========================================================================
   Behandlungsgebiete
   ========================================================================== */
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.area {
	position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px;
	display: flex; align-items: flex-end; color: #fff; isolation: isolate;
	box-shadow: var(--shadow-soft);
}
.area img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.area::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(12,60,90,0) 30%, rgba(10,45,68,.86) 100%);
}
.area:hover img { transform: scale(1.06); }
.area__body { padding: 1.4rem 1.5rem; }
.area__body h3 { color: #fff; margin-bottom: .25rem; }
.area__body p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }

/* Illustrierte Kachel (z. B. Tinnitus – kein Foto vorhanden) */
.area--illu { background: linear-gradient(150deg, var(--blue) 0%, var(--blue-deep) 100%); }
.area--illu::after { background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(8,40,60,.45) 100%); }
.area--illu .area__icon {
	position: absolute; top: 1.3rem; right: 1.3rem; width: 56px; height: 56px;
	color: rgba(255,255,255,.92); z-index: 1;
}

/* ==========================================================================
   Behandlungsgebiet – Einzelseite
   ========================================================================== */
.gebiet__hero {
	padding-block: clamp(38px, 6vw, 78px) clamp(28px, 4vw, 50px);
	background: linear-gradient(180deg, var(--mint) 0%, #f1f6f2 100%);
}
.gebiet__back {
	display: inline-flex; align-items: center; gap: .45em;
	font-size: .9rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 1.3rem;
}
.gebiet__back svg { width: 18px; height: 18px; transition: transform var(--ease); }
.gebiet__back:hover { color: var(--coral); }
.gebiet__back:hover svg { transform: translateX(-3px); }
.gebiet__hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); letter-spacing: -.015em; margin: .15em 0 .5em; }
.gebiet__hero .lead { max-width: 52ch; }

.gebiet__body {
	display: grid; grid-template-columns: minmax(0, 1fr) 300px;
	gap: clamp(2rem, 5vw, 4.5rem); padding-block: clamp(40px, 6vw, 74px); align-items: start;
}

.gebiet__aside { position: sticky; top: 104px; display: grid; gap: 1.6rem; }
.cta-card { background: var(--blue-soft); border: 1px solid var(--mint-line); border-radius: var(--radius); padding: 1.7rem; }
.cta-card h3 { margin-bottom: .4rem; }
.cta-card p { font-size: .95rem; color: var(--muted); margin-bottom: 1.2rem; }
.cta-card .btn { width: 100%; justify-content: center; }
.related h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
.related ul { list-style: none; padding: 0; margin: 0; display: grid; }
.related a { display: block; padding: .7em 0; border-top: 1px solid var(--line); color: var(--ink); font-weight: 500; }
.related a:hover { color: var(--coral); }

/* Fließtext (CKEditor-Inhalt) */
.prose { max-width: 70ch; font-size: 1.07rem; color: var(--ink); }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--blue); margin: 2em 0 .55em; }
.prose h3 { font-size: 1.2rem; color: var(--blue-deep); margin: 1.8em 0 .5em; }
.prose h4 { font-size: 1.1rem; color: var(--blue-deep); margin: 1.7em 0 .5em; font-weight: 600; }
.prose p { margin: 0 0 1.15em; }
.prose strong { font-weight: 600; }
.prose em { font-style: italic; }
.prose a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--coral); }
.prose blockquote {
	border-left: 3px solid var(--coral); margin: 1.7em 0; padding: .1em 0 .1em 1.3em;
	color: var(--blue-deep); font-size: 1.18rem; font-weight: 500; line-height: 1.5;
}
.prose blockquote p { margin: 0; }
.prose ul { margin: 0 0 1.3em; padding: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 1.5em; margin-bottom: .6em; }
.prose ul li::before { content: "–"; position: absolute; left: .2em; color: var(--blue-deep); }
.prose figure { margin: 1.8em 0; }
.prose figure img { border-radius: var(--radius); width: 100%; height: auto; }
.prose figcaption { font-size: .85rem; color: var(--muted); margin-top: .6em; }

@media (max-width: 860px) {
	.gebiet__body { grid-template-columns: 1fr; }
	.gebiet__aside { position: static; }
}

/* Rechtstexte (Impressum / Datenschutz) */
.legal__body { padding-block: clamp(40px, 6vw, 72px); }
.legal__body .prose { margin-inline: auto; max-width: 78ch; }
.legal__body .prose h4 { font-size: 1.05rem; }

/* ==========================================================================
   Über mich
   ========================================================================== */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.about__media .tag {
	position: absolute; bottom: -18px; left: -18px; background: var(--coral); color: #fff;
	padding: 1rem 1.3rem; border-radius: 16px; box-shadow: var(--shadow-soft); max-width: 60%;
}
.about__media .tag b { font-family: var(--display); font-size: 2rem; display: block; line-height: 1; }
.about__media .tag span { font-size: .82rem; }
.timeline { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1.1rem; }
.timeline li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: baseline; }
.timeline .year { font-family: var(--display); color: var(--blue); font-size: 2rem; min-width: 3.5ch; }
.timeline .what { color: var(--muted); }
.timeline .what b { color: var(--ink); font-weight: 600; }

.credentials { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; margin-top: 2.2rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.credentials img { height: 46px; width: auto; opacity: .9; }
.credentials .cmsc { height: 95px; }

/* ==========================================================================
   Buch
   ========================================================================== */
.book { display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.book__cover img { width: clamp(180px, 24vw, 260px); border-radius: 8px; box-shadow: var(--shadow); }
.book__badge { display: inline-block; background: var(--coral); color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.2rem; }

/* ==========================================================================
   IFS
   ========================================================================== */
.ifs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.ifs__visual {
	background: radial-gradient(120% 120% at 30% 20%, #fff 0%, var(--mint) 100%);
	border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center;
	border: 1px solid var(--mint-line);
}
.ifs__visual img { width: clamp(120px, 18vw, 180px); margin: 0 auto 1.4rem; }
.ifs__visual .quote { font-size: 1.2rem; color: var(--blue-deep); font-weight: 500; line-height: 1.5; }
.podcast {
	display: inline-flex; align-items: center; gap: .8rem; margin-top: 1rem;
	background: #1db954; color: #fff; padding: .8rem 1.4rem; border-radius: 999px; font-weight: 600;
	box-shadow: 0 12px 26px -12px rgba(29, 185, 84, .7);
}
.podcast:hover { color: #fff; filter: brightness(1.06); transform: translateY(-2px); }
.podcast svg { width: 20px; height: 20px; }

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.locations { display: grid; gap: 1.2rem; }
.loc {
	background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 1.6rem 1.8rem; transition: border-color var(--ease), box-shadow var(--ease);
}
.loc { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.loc:hover { border-color: var(--mint-line); box-shadow: var(--shadow-soft); }
.loc:hover h3 { color: var(--coral); }
.loc h3 { display: flex; align-items: center; gap: .6rem; transition: color var(--ease); }
.loc h3 svg { width: 20px; height: 20px; color: var(--coral); }
.loc address { font-style: normal; color: var(--muted); line-height: 1.6; }
.loc address p { margin: 0; }
.contact__methods { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.contact__methods a { display: inline-flex; align-items: center; gap: .55rem; background: var(--blue-soft); color: var(--blue-deep); padding: .7rem 1.1rem; border-radius: 999px; font-weight: 500; }
.contact__methods a:hover { background: var(--blue); color: #fff; }
.contact__methods svg { width: 18px; height: 18px; }

/* Preise (Behandlungskosten) */
.prices { margin-top: 2.2rem; }
.prices > h3 { margin-bottom: 1rem; }
.prices__body h4 { font-size: 1rem; color: var(--blue-deep); margin: 1.3em 0 .5em; }
.prices__body h4:first-child { margin-top: 0; }
.prices__body ul { list-style: none; padding: 0; margin: 0 0 .4em; }
.prices__body li {
	padding: .6rem 0; border-bottom: 1px solid var(--line);
	font-size: .98rem; color: var(--muted); line-height: 1.45;
}
.prices__body li:last-child { border-bottom: 0; }
.prices__body strong { color: var(--ink); font-weight: 600; white-space: nowrap; }

/* Karten-Popup (MapKit JS) */
body.modal-open { overflow: hidden; }
.map-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: clamp(1rem, 4vw, 2rem); }
.map-modal[hidden] { display: none; }
.map-modal__overlay { position: absolute; inset: 0; background: rgba(20, 40, 55, .55); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.map-modal__dialog { position: relative; width: min(760px, 100%); background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-modal__map { width: 100%; height: min(520px, 65vh); background: var(--mint); }
.map-modal__close {
	position: absolute; top: .7rem; right: .7rem; z-index: 2; width: 40px; height: 40px;
	border: 0; border-radius: 50%; cursor: pointer; background: rgba(255, 255, 255, .92);
	color: var(--ink); font-size: 1.7rem; line-height: 33px; box-shadow: var(--shadow-soft);
	transition: color var(--ease), background var(--ease);
}
.map-modal__close:hover { background: #fff; color: var(--coral); }
.map-modal__foot {
	display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
	gap: .6rem 1rem; padding: 1rem 1.3rem; border-top: 1px solid var(--line);
	font-size: .9rem; color: var(--muted);
}
.map-modal__foot strong { color: var(--ink); font-weight: 600; }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-soft); }
.form h3 { margin-bottom: 1.2rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink); }
.field input, .field textarea {
	width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
	padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg);
	transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.field textarea { min-height: 120px; resize: vertical; }
.form .btn-primary { width: 100%; justify-content: center; }
.form__hint { font-size: .78rem; color: var(--muted); margin: .9rem 0 0; }

/* Honeypot – für Menschen unsichtbar, für Bots ein Köder */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Rückmeldung nach dem Absenden */
.form__note { font-size: .92rem; padding: .85rem 1rem; border-radius: 12px; margin: 0 0 1.2rem; line-height: 1.45; }
.form__note--ok { background: #e8f5ec; color: #1f7a43; border: 1px solid #bfe3cb; }
.form__note--err { background: #fdecec; color: #c0392b; border: 1px solid #f3c4c0; }

/* ==========================================================================
   Fußzeile
   ========================================================================== */
.site-footer { background: var(--ink); color: #cdd6da; padding-block: clamp(48px, 7vw, 80px) 2rem; }
.site-footer a { color: #cdd6da; }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.site-footer .logo__mark { color: #fff; }
.site-footer .logo__sub { color: #9fb0b8; }
.footer__col h4 { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .95rem; }
.footer__about { color: #9fb0b8; font-size: .95rem; max-width: 34ch; margin-top: 1.2rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: #9fb0b8; }
.footer__bottom nav { display: flex; gap: 1.4rem; }

/* ==========================================================================
   Reveal-Animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; }
	.reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsiv
   ========================================================================== */
@media (max-width: 1000px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__media { max-width: 440px; margin-inline: auto; order: -1; }
	.cards { grid-template-columns: 1fr 1fr; }
	.split, .about, .ifs, .contact, .book { grid-template-columns: 1fr; }
	.split--reverse .split__media { order: 0; }
	.about__media { max-width: 460px; }
	.book { grid-template-columns: 1fr; }
	.book__cover { display: flex; justify-content: center; }
	.areas { grid-template-columns: 1fr 1fr; }
	.footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	.nav__menu, .nav__cta { display: none; }
	.nav__toggle { display: inline-flex; }
	.nav__menu {
		position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: stretch;
		background: var(--paper); padding: 1rem var(--pad) 2rem; gap: 0;
		border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
		transform: translateY(-120%); transition: transform var(--ease); z-index: 99;
	}
	body.menu-open .nav__menu { display: flex; transform: translateY(0); }
	.nav__menu li { border-bottom: 1px solid var(--line); }
	.nav__menu a { display: block; padding: 1rem 0; font-size: 1.1rem; }
	.nav__menu a::after { display: none; }
	.nav__menu .nav__cta-mobile { display: block; }
	.cards, .areas, .footer__grid { grid-template-columns: 1fr; }
	.hero__meta { gap: 1.2rem 1.6rem; }
	.about__media .tag { position: static; margin-top: 1.4rem; max-width: 100%; }
	.footer__bottom { flex-direction: column; }
	body { font-size: 17px; }
}
