/* ============================================================
   LEGACY CSS — mc-* Klassen-Fallback (v0.4.0)
   ============================================================

   Inhalt: Stile aus brand.css v0.3.5, die noch von nicht-migrierten
   Templates verwendet werden (Legal-Pages, page-zimmer-apartments,
   page-superior-zimmer, page-apartment, page-angebote, page-kontakt,
   page-lage-anfahrt, page-bestpreisgarantie, single-*, archive-*).

   Wird VOR brand.css geladen, sodass die neuen Mockup-Tokens (--c-*) und
   Komponenten in brand.css gewinnen, wo sie spezifischer sind.

   Geplante Migration: Diese Pages schrittweise auf das Mockup-Vokabular
   (--c-* Tokens, .ed-hero, .bereiche, etc.) umstellen. Danach kann diese
   Datei entfernt werden.
   ============================================================ */

/* 01 · Foundation */

/*
Typo scale (Mercure globals)
- xs: micro UI labels (strip, meta)
- sm: UI links (nav, footer legal, sticky bar)
- md: body-ish links (footer lists on small screens)
- lg: editorial links (footer lists)
*/
:root {
	--mc-font-xs: 10px;
	--mc-font-sm: 11px;
	--mc-font-md: 14px;
	--mc-font-lg: 15px;
	--mc-tracking-wide: 0.22em;
	--mc-tracking: 0.12em;

	/*
	 * Brand-Tokens als Single Source of Truth. Bisher waren die kurzen
	 * Aliases (`--paper`, `--ink`, …) nur im Frontpage-Mockup-CSS definiert,
	 * was zur Folge hatte, dass Header-/Footer-Komponenten auf nicht-Front
	 * Pages teilweise ohne Tokens rendern. Sie liegen jetzt zentral hier.
	 */
	--paper: #FAF6EF;
	--cream: #F4EDE0;
	--ink: #2B2826;
	--dark: #53514F;
	--soft: #6F6C69;
	--muted: #8A8784;
	--purple: #A790C4;
	--purple-hover: #8D74AE;
	--purple-soft: #EFE8F5;
	--border: #EAE4D8;
	--border-soft: #F2ECE0;
	--live: #4A7C59;
	--ease: cubic-bezier(.16, 1, .3, 1);
	--trans: .45s cubic-bezier(.16, 1, .3, 1);

	/*
	 * Core (theme.json / global-styles): `.wp-site-blocks` nutzt
	 * padding-top: var(--wp--style--root--padding-top). Explizit 0, damit oberhalb der
	 * ersten Zeile (Announcement / Header) kein Streifen bleibt.
	 */
	--wp--style--root--padding-top: 0;
	--wp--style--root--padding-bottom: 0;

	/*
	 * Globale Header-Höhe — wird als Body-Offset und Scroll-Anker genutzt.
	 * Header ist `position: fixed`, daher braucht der nachfolgende Inhalt einen
	 * eigenen Top-Offset (ausgenommen .mc-frontpage, deren Hero unter den
	 * Header laufen darf).
	 */
	--mc-header-h: 92px;

	/*
	 * Fixierte Booking-Bar: rechter Rand für floating Chat-Launcher (~56px) + Luft,
	 * damit „BUCHEN“ nicht unter dem Widget liegt.
	 */
	--mc-sticky-chat-gutter: 132px;

	/*
	 * ════════════════════════════════════════════════════════════════════════
	 * Container-Tokens (Phase-B-Konsolidierung 2025)
	 *
	 * Globale Werte für Content-Width und horizontales Padding über ALLE Pages.
	 * Pendant-Werte stehen auch in theme.json unter `settings.custom.mc.*` —
	 * dort für Block-Editor + Server-Rendering, hier als CSS-Alias für
	 * Theme-CSS, damit Werte ohne theme.json-Round-Trip geändert werden können.
	 *
	 * Wann welche Variante (siehe `.mc-container`-Klassenfamilie):
	 *   --mc-content-max     → Standard-Sektion (Cards, Pills, Grids)
	 *   --mc-content-narrow  → Long-Form-Texte (Legal, FAQ, Closing-CTAs)
	 *   --mc-content-wide    → Hero-Bilder, Header, Sticky-Bar
	 * ════════════════════════════════════════════════════════════════════════
	 */
	--mc-content-max:       1440px;
	--mc-content-narrow:     880px;
	--mc-content-wide:      1440px;
	--mc-content-padding:    24px;  /* Mobile Default */
	--mc-content-padding-md: 32px;  /* ≥ 768px */
	--mc-content-padding-lg: 48px;  /* ≥ 1180px */

	/*
	 * ════════════════════════════════════════════════════════════════════════
	 * Hero-Tokens (Phase-B2-Konsolidierung 2025)
	 *
	 * Drei Hero-Varianten teilen diese Tokens:
	 *   .mc-hero            Default mit Bild (--mc-hero-min-height)
	 *   .mc-hero--narrow    Legal/Compact ohne Bild (--mc-hero-min-height-narrow)
	 *   .mc-hero--cinematic Front-Page-Style full-screen (eigenes System)
	 *
	 * WICHTIG: Hero hat KEIN eigenes padding-top für Header-Offset.
	 * Body hat global `padding-top: calc(var(--mc-header-h) + env(safe-area-inset-top))`,
	 * damit Inhalt nicht unter den fest fixierten Header rutscht — `--mc-header-h`
	 * beschreibt die Inhaltshöhe des Headers (ohne Safe-Area).
	 * Hero-padding-top kompensiert nur ZUSÄTZLICHEN Spacing innerhalb des Heros.
	 * So gibt es nie Doppel-Offset (war Bug bei Das-Haus + Agnesviertel).
	 * ════════════════════════════════════════════════════════════════════════
	 */
	/*
	 * Hero-Min-Heights: clamp() so kalibriert, dass Mobile (≤480px viewport)
	 * deutlich kompakter ist als Desktop. Die untere clamp-Grenze ist der
	 * Mobile-Wert, die obere der Desktop-Wert.
	 */
	--mc-hero-min-height:        clamp(280px, 42vw, 480px);  /* Mobile 280, Desktop 480 */
	--mc-hero-min-height-hub:    clamp(540px, 60vw, 720px);  /* Desktop/Tablet; unter ≤767px separat kompakter */
	--mc-hero-min-height-narrow: clamp(180px, 22vw, 240px);
	--mc-hero-padding-top:       clamp(64px, 9vw, 120px);    /* Atmungsabstand zum Header-Bottom (Mobile 64, Desktop 120) */
	--mc-hero-padding-bottom:    clamp(48px, 8vw, 96px);

	/*
	 * Hero-Overlay (Lesbarkeits-Schicht ueber dem Background-Bild).
	 * Kombiniert horizontalen + vertikalen Gradient — links staerker
	 * abgedunkelt (wo Title/Subtitle sitzen), rechts heller damit das
	 * Bild noch sichtbar bleibt. Plus subtiler Top-Down-Verlauf.
	 */
	--mc-hero-overlay:           linear-gradient(135deg, rgba(20,16,12,.72) 0%, rgba(43,30,20,.55) 50%, rgba(43,30,20,.35) 100%);

	/*
	 * Page-Start Tokens (Phase B3-Konsolidierung)
	 * --mc-page-start-spacing: Atmungspolster zwischen Header-Bottom und
	 *   erstem Content für Templates ohne Hero (z. B. Zimmer-Detail-Pages).
	 * --mc-hero-extra-gap: Spacing zwischen Title/Subtitle und optionalen
	 *   Hub-Page-Slots (Booking-Card, Stats-Grid, USP-Chips).
	 */
	--mc-page-start-spacing:     clamp(40px, 5vw, 64px);
	--mc-hero-extra-gap:         clamp(20px, 3vw, 32px);

	/*
	 * Hub- / Cinematic-Hero auf schmalen Viewports (≤768px): zuverlässiger
	 * Platz für den absolut positionierten .mc-hero__scroll unter langen
	 * Sublines — ein Wert für alle Hub-Templates; keine :has()-Abhängigkeit.
	 * @media (max-width: 420px) hebt die Minimalwerte weiter an.
	 */
	--mc-hero-hub-padding-bottom-mobile:       clamp(76px, 20vw, 128px);
	--mc-hero-hub-inner-padding-bottom-mobile: clamp(24px, 7vw, 48px);

	/*
	 * Section-Padding Tokens (Phase B4 — Container-Konsistenz)
	 * Vertikales und horizontales Padding für ALLE Inhaltssektionen
	 * (Hub-Pages: zimmer.css, das-haus.css, agnesviertel.css und globale
	 * .mc-section). Vorher war das pro CSS-Datei verschieden hardcoded
	 * (90px 60px, 100px 60px, clamp(72-110) clamp(20-60), 4rem 1.5rem).
	 * Jetzt zentral via Token, responsive via clamp.
	 */
	--mc-section-padding-y:      clamp(56px, 8vw, 96px);
	--mc-section-padding-x:      clamp(20px, 5vw, 60px);

	/*
	 * Pro-Page Hero-Background-Bilder. URL bezieht sich auf WordPress-
	 * Mediathek (wp-content/uploads/<JJJJ>/<MM>/...). Bilder sind
	 * 1920×1080 px JPG, alle aus der bestehenden Mediathek.
	 *
	 * Falls die Pfade durch ein WP-Update brechen oder umziehen, werden
	 * die Werte hier zentral angepasst — Templates bleiben unverändert.
	 */
	--mc-media-faq-hero:           url('/wp-content/uploads/2026/04/Lobby_1920x1080-1.jpg');
	--mc-media-angebote-hero:      url('/wp-content/uploads/2026/04/Merucre_Koeln_Belfortstrasse_Standard-Zimmer_1920x1080-1.jpg');
	--mc-media-marketplace-hero:   url('/wp-content/uploads/2026/04/Marketplace_1920x1080-1.jpg');
	--mc-media-guests-hero:        url('/wp-content/uploads/2026/04/Lobby-2_1920x1080-1.jpg');
	--mc-media-kontakt-hero:       url('/wp-content/uploads/2026/04/Rezeption_1920x1080-1.jpg');
	--mc-media-bpg-hero:           url('/wp-content/uploads/2026/04/AussenansichtNachtQuerMercureHotelKoelnBelfortstrasse_1920x1080-1.jpg');
	--mc-media-sights-hero:        url('/wp-content/uploads/2026/04/Merucre_Koeln_Belfortstrasse_Belfort2016_10_1920x1080-1.jpg');
	--mc-media-travel-hero:        url('/wp-content/uploads/2026/04/AussenansichtNachtQuerMercureHotelKoelnBelfortstrasse_1920x1080-1.jpg');
	--mc-media-events-hero:        url('/wp-content/uploads/2026/04/Merucre_Koeln_Belfortstrasse_Belfort2016_10_1920x1080-1.jpg');
	--mc-media-fitness-hero:       url('/wp-content/uploads/2026/04/Mercure_KoelnBelfort_Mercure_K50668-089-Pool_Fitness_1920x1080-1.jpg');
	--mc-media-location-hero:      url('/wp-content/uploads/2026/04/AussenansichtNachtQuerMercureHotelKoelnBelfortstrasse_1920x1080-1.jpg');
}

@supports (height: 100svh) {
	@media (max-width: 767px) {
		:root {
			--mc-hero-min-height-hub: clamp(400px, 62svh, 720px);
		}
	}
}

@media (max-width: 420px) {
	:root {
		/* Schmale Phones: etwas mehr Luft fuer den Scroll-Stack, aber ohne riesige Leerzone */
		--mc-hero-hub-padding-bottom-mobile:       clamp(82px, 24vw, 136px);
		--mc-hero-hub-inner-padding-bottom-mobile: clamp(26px, 8vw, 52px);
	}
}

@media (max-width: 980px) {
	:root {
		/*
		 * Mobil: fixierte Kopfzeile. Wert MUSS der echten Header-Hoehe entsprechen —
		 * zu gross entsteht ein Papier-Streifen zwischen Header und Hero, zu klein
		 * eine Ueberlappung.
		 */
		--mc-header-h: 72px !important; /* !important: schlägt den unbedingten 92px-Token in brand.css (lädt nach legacy.css), sonst reserviert der Body 92px bei real ~69px Header → 23px Streifen */
		/*
		 * Hub-/Cinematic-Hero: Oben KEIN volles --mc-hero-padding-top stapeln —
		 * der Body-Offset (gleicher Token-Bereich) clear’t den Header bereits.
		 * Nochmal ~64px wirkt wie „doppelter Abstand“ bis zur Eyebrow.
		 */
		--mc-hero-hub-padding-top-compact: clamp(12px, 3.2vw, 28px);
	}

	.mc-hero.mc-hero--hub,
	.mc-hero.mc-hero--cinematic {
		padding-top: var(--mc-hero-hub-padding-top-compact);
	}
}

/* Schmale Phones: Hub-/Cinematic-Höhe kompakter; Header-Hoehe an echten 65px
 * angeglichen (gemessen Live, viewport 312px). NACH dem 980px-Block plaziert,
 * sonst wird --mc-header-h durch die spaetere Tablet-Regel ueberschrieben.
 * Breitere Viewports (≥768px) nutzen die 980px-/Default-Werte. */
@media (max-width: 767px) {
	:root {
		--mc-hero-min-height-hub: clamp(400px, 62vh, 720px);
		--mc-header-h: 65px !important; /* s.o. — gewinnt über brand.css:1111 (92px) */
		--mc-hero-hub-padding-top-compact: clamp(22px, 4.8vw, 34px);
	}
}

html {
	margin: 0;
	padding: 0;
}

/* 02 · Typography Refinements */

/* 03 · Buttons */

/* 04 · Cards & Components */

/* 05 · Sections */

/* 06 · Header & Footer */

/*
 * Header IMMER an der Browser-Oberkante: `position: fixed` (vorher `sticky`).
 * Sticky startete an seiner natürlichen Position im Fluss → vor dem ersten
 * Scroll war oberhalb der Announcement-Bar die Body-Paper-Farbe sichtbar.
 * Mit `fixed` ist der Header beim Initial-Render bereits oben angedockt.
 */
.wp-site-blocks > header.wp-block-template-part,
header.wp-block-template-part:has(.site-header) {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 2000;
	padding-top: env(safe-area-inset-top, 0px);
	box-sizing: border-box;
}

/*
 * Body bekommt einen Offset in Header-Höhe, damit der Inhalt nicht hinter dem
 * Header verschwindet. Auf der Frontpage (mit `.mc-frontpage`) darf der
 * Hero-Bildbereich BEWUSST unter den Header laufen — Hero-Padding ist intern
 * groß genug, dass kein Text unter dem Header liegt.
 */
body {
	padding-top: calc(var(--mc-header-h) + env(safe-area-inset-top, 0px)) !important;
}

body:has(.mc-frontpage),
body.home,
body.page-template-front-page {
	padding-top: 0 !important;
}

html {
	scroll-padding-top: calc(var(--mc-header-h) + env(safe-area-inset-top, 0px));
}

/*
 * Block gap reset.
 * WordPress applies `margin-block-start: var(--wp--style--block-gap)` to every
 * direct child of `.wp-site-blocks` (and to `--wp--style--root--padding-top`
 * via root padding). That creates a visible strip between the sticky header
 * template-part and the next block (e.g. <main class="mc-zimmer-detail">).
 *
 * We zero block-margins for ALL direct children so that header → main →
 * footer sit flush. Each section/page wrapper supplies its own padding.
 */
:where(.wp-site-blocks) > * {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Skip link is outside .wp-site-blocks; if that ever changes, still clear gap after it */
#wp-skip-link + .wp-site-blocks > * {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}

/*
 * Full-bleed Layout: Site soll Edge-to-Edge laufen.
 * Parent (Twenty Twenty-Five) injiziert padding-left/right und beschränkt
 * .wp-site-blocks-Kinder via constrained Layout (contentSize/wideSize). Wir
 * heben das hier global auf — interne Container (.sec-inner, .container, ...)
 * setzen ihre eigenen Maxbreiten.
 */
html {
	margin: 0 !important;
	padding: 0 !important;
}
body {
	margin: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-inline: 0 !important;
}
.wp-site-blocks,
.has-global-padding {
	padding: 0 !important;
	max-width: none !important;
}
:where(.wp-site-blocks) > * {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
header.wp-block-template-part,
footer.wp-block-template-part,
.wp-block-template-part {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
.mc-frontpage {
	width: 100%;
	max-width: none;
	/* Über body::before-Rauschen stacken — nur Mockup-Inhalt, nicht den globalen Header */
	position: relative;
	z-index: 2;
	/* Horizontalen Overflow hier clippen statt auf html/body — sonst leidet Sticky/header */
	overflow-x: clip;
}

/*
 * Legacy .site-header rule DEAKTIVIERT in v0.4.1:
 * Mockup-Schema verlangt transparent Header über Hero, opaque erst beim Scroll.
 * Die brand.css (.site-header { position: absolute; }
 * .site-header.is-stuck { background: white; ... }) übernimmt das jetzt.
 *
 * Ursprünglicher Block stand hier — entfernt, weil er die Mockup-Treue brach
 * (cremefarbener Header IMMER, statt transparent über Hero).
 */
/* .site-header { ... } — entfernt, siehe Comment oben */

/*
 * WICHTIG — Header-Höhe identisch auf allen Seiten:
 *
 * `parts/header.html` bindet Logo + Mobile-Logo als `wp:shortcode`-Blöcke ein.
 * WordPress rendert solche Blöcke durch `wpautop()` und wickelt den Output in
 * `<p>`-Tags. Auf der Startseite gleicht der globale Reset
 * `* { margin: 0; padding: 0 }` aus `frontpage-mockup.css` das aus — auf allen
 * anderen Seiten würde der `<p>`-Wrapper sonst Standard-Browser-Margins bringen
 * (≈16px oben + 16px unten) und den Header dadurch optisch deutlich vergrößern.
 *
 * Wir neutralisieren hier **nur** die Block-Wrapper (kein Padding, kein
 * Layout) — Logo, Strip und Nav behalten ihr Spacing aus den Block-Regeln.
 */
.site-header :where(p, .wp-block-shortcode, .wp-block-html, .wp-block-group) {
	margin: 0 !important;
	padding: 0 !important;
}
/* Logo-Wrapper aus dem `wp:shortcode`-Block soll als direktes Flex-Kind in
 * `.header-main` / `.mobile-menu-header` agieren — nicht als zusätzlicher
 * Block-Container, der die Höhe der Kopfzeile beeinflusst. */
.site-header > .header-main > p,
.site-header > .header-main > .wp-block-shortcode,
.site-header .mobile-menu-header > p,
.site-header .mobile-menu-header > .wp-block-shortcode {
	display: contents;
}

.mc-footer :where(p, .wp-block-shortcode, .wp-block-html) {
	/* Gleiche Korrektur für den Footer (mercure_footer_logo / mercure_footer_managed
	 * sind ebenfalls Shortcode-Blöcke); überspringt absichtlich `.wp-block-group`,
	 * weil der Footer .mc-footer__inner / .mc-footer__grid darüber strukturiert. */
	margin-block-start: 0;
	margin-block-end: 0;
}

/* Top strip (fest sichtbar — keine Scroll-Kompression mehr, s. Hinweis zu .is-scrolled oben) */
.header-strip {
	max-height: 38px;
	overflow: hidden;
	opacity: 1;
	transform: translateY(0);
	transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.4s ease, padding 0.3s ease, border-color 0.3s ease;
}

/* Hauptleiste — stabile Abstände ohne Scroll-Zweitzustand */
.header-main {
	transition: padding 0.35s ease, gap 0.35s ease;
}

.site-header .logo-mark,
.site-header .logo-wordmark,
.site-header .logo-property,
.site-header .logo-img {
	transition: width 0.35s ease, height 0.35s ease, font-size 0.35s ease, margin 0.35s ease, opacity 0.3s ease, max-height 0.35s ease, max-width 0.35s ease;
}

/*
 * Scrollkomprimierung (.site-header.is-scrolled) bewusst entfernt: Es gibt keinen
 * Theme-JS-Toggle dafür; falls extern eine Klasse gesetzt wird, soll sich das
 * Layout nicht von der „Ruhelage“ unterscheiden — einheitlicher Header überall.
 */

.site-header * { box-sizing: border-box; }

.site-header a { color: inherit; text-decoration: none; }

/* Top strip */
.header-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 32px;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #8A8784;
	border-bottom: 1px solid rgba(242, 236, 224, 1);
	background:
		linear-gradient(90deg,
			rgba(167, 144, 196, 0.04) 0%,
			rgba(246, 240, 230, 0.7) 35%,
			rgba(246, 240, 230, 0.7) 65%,
			rgba(167, 144, 196, 0.04) 100%
		),
		rgba(246, 240, 230, 0.65);
	box-shadow:
		0 1px 0 rgba(43, 30, 20, 0.04),
		0 6px 12px -4px rgba(43, 30, 20, 0.07),
		0 2px 6px -2px rgba(167, 144, 196, 0.10);
	transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header-strip .tagline-dot {
	width: 6px;
	height: 6px;
	border-radius: 5px;
	background: #A790C4;
	display: inline-block;
	margin-right: 8px;
	animation: mcStripPulse 2.4s ease-out infinite;
}
@keyframes mcStripPulse {
	0%   { box-shadow: 0 0 0 0 rgba(167, 144, 196, 0.55); }
	70%  { box-shadow: 0 0 0 6px rgba(167, 144, 196, 0); }
	100% { box-shadow: 0 0 0 0 rgba(167, 144, 196, 0); }
}
.header-strip .tagline { display: inline-flex; align-items: center; }
.header-strip .strip-info { display: inline-flex; align-items: center; gap: 6px; }
.header-strip .strip-icon { width: 11px; height: 11px; color: #A790C4; opacity: .85; }
.header-strip .lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 3px;
	margin-left: 8px;
	background: #fff;
	border: 1px solid rgba(167, 144, 196, 0.45);
	border-radius: 6px;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 1px 4px rgba(43, 40, 38, 0.08);
}
.header-strip .lang-btn {
	appearance: none;
	background: transparent;
	border: 0;
	padding: 5px 11px;
	font-family: Montserrat, system-ui, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #53514f;
	cursor: pointer;
	border-radius: 5px;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease;
	line-height: 1;
	min-width: 2.25rem;
	text-align: center;
}
.header-strip .lang-btn:hover {
	color: #A790C4;
	background: rgba(167, 144, 196, 0.12);
}
.header-strip .lang-btn:focus-visible {
	outline: 2px solid #A790C4;
	outline-offset: 2px;
}
.header-strip .lang-btn.is-active {
	background: #8d74ae;
	color: #fff;
	box-shadow:
		0 1px 3px rgba(83, 81, 79, 0.18),
		0 0 0 1px rgba(141, 116, 174, 0.35);
}

.header-strip a { color: #8A8784; transition: color 0.3s; }
.header-strip a:hover { color: #A790C4; }

.header-strip .strip-left,
.header-strip .strip-right {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.header-strip .tagline { color: #A790C4; font-weight: 600; letter-spacing: 0.28em; }
.strip-sep { opacity: 0.35; }

/* TrustYou TrustScore Widget — als Trust-Anker zwischen Navigation
 * und Direkt-Buchen-Button. Custom-Element <ty-trustscore> rendert
 * ein iframe (fromIFrame="true") mit eigenem CSS-Scope; daher nutzen
 * wir `zoom` zum proportionalen Skalieren (Layout + Visual).
 *
 * Zwei Varianten:
 *   .header-trustyou           Desktop, zwischen Nav und CTA-Button
 *   .header-trustyou--mobile   Mobile, im .burger-Container vor dem
 *                              "Buchen"-Button + Burger-Icon */
/* Wrapper: gruppiert Widget + Info-Icon, behaelt Margin-Right zum CTA. */
.header-trustyou-wrap {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-right: 16px;
}
.header-trustyou {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
	transition: opacity 0.2s ease-out;
}
.header-trustyou:hover { opacity: 0.85; }

.header-trustyou ty-trustscore {
	display: inline-block;
	zoom: 0.85;
	-moz-transform: scale(0.85);
	-moz-transform-origin: left center;
}

/* Info-Icon mit Tooltip neben dem Widget.
 * - Sichtbar bei :hover (Maus) und :focus / :focus-within (Tab + Touch)
 * - Tooltip-Bubble positioniert UNTER dem Icon mit Arrow-Spitze nach oben
 * - max-width verhindert Overflow auf engen Viewports */
.header-trustyou-info {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: #8A8784;
	cursor: help;
	transition: color 0.2s ease-out;
	outline: none;
}
.header-trustyou-info:hover,
.header-trustyou-info:focus,
.header-trustyou-info:focus-within {
	color: var(--wp--preset--color--purple-hover, #8D74AE);
}
.header-trustyou-info-icon {
	width: 14px;
	height: 14px;
	display: block;
}

.header-trustyou-tooltip {
	position: absolute;
	top: calc(100% + 10px);
	right: -8px;             /* rechts-buendig damit Tooltip nicht ins Right-Padding ueberlaeuft */
	width: 300px;
	max-width: calc(100vw - 32px);
	background: rgba(20,16,12,0.96);
	color: #fff;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: 0;
	text-transform: none;
	text-align: left;
	padding: 14px 16px;
	border-radius: 4px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.25);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear 0.2s;
	z-index: 100;
	pointer-events: none;
}
.header-trustyou-info:hover .header-trustyou-tooltip,
.header-trustyou-info:focus .header-trustyou-tooltip,
.header-trustyou-info:focus-within .header-trustyou-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear 0s;
	pointer-events: auto;
}
/* Arrow-Spitze nach oben (zeigt zum Icon) */
.header-trustyou-tooltip::before {
	content: "";
	position: absolute;
	bottom: 100%;
	right: 12px;            /* unter dem Icon ausgerichtet */
	border: 7px solid transparent;
	border-bottom-color: rgba(20,16,12,0.96);
}
.header-trustyou-tooltip-link {
	display: inline-block;
	margin-top: 8px;
	color: var(--wp--preset--color--purple, #A790C4);
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 0.04em;
}
.header-trustyou-tooltip-link:hover {
	color: #fff;
	text-decoration: underline;
}

/* Mobile-Variante: erscheint im .burger-Container neben dem Buchen-CTA.
 * Etwas kleiner als Desktop, damit es nicht den Buchen-Button verdraengt. */
.header-trustyou--mobile {
	display: none;  /* default versteckt — wird in Mobile-Media-Query aktiviert */
	margin-right: 8px;
}
.header-trustyou--mobile ty-trustscore {
	zoom: 0.7;
	-moz-transform: scale(0.7);
}

/* Mobile Breakpoint: Desktop-Variante (Wrapper mit Widget + Info-Icon)
 * verstecken, Mobile-Variante (im Burger-Container ohne Tooltip) zeigen.
 * 980px = Breakpoint an dem das Theme von .nav auf .burger umschaltet. */
@media (max-width: 980px) {
	.header-main > .header-trustyou-wrap {
		display: none;
	}
	.burger .header-trustyou--mobile {
		display: inline-flex;
	}
}

/* Sehr schmale Viewports (< 420 px): Widget ganz ausblenden, sonst
 * konkurriert es mit Buchen-Button + Burger-Icon um knappen Platz. */
@media (max-width: 419px) {
	.burger .header-trustyou--mobile { display: none; }
}

.lang-toggle { display: inline-flex; gap: 8px; }
.lang-toggle .active { color: #53514F; font-weight: 600; }

/* Main bar */
.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	max-width: var(--mc-content-wide);
	margin: 0 auto;
	padding: 18px 40px;
}

/* Logo */
.site-header .logo {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

/* Logo — raster wordmark (preferred) */
.site-header .logo--brand-image {
	align-items: center;
}

.site-header .logo-img {
	display: block;
	width: auto;
	height: auto;
	max-height: 28px;
	max-width: min(160px, 34vw);
	object-fit: contain;
	object-position: left center;
}

/* Logo — SVG + text (legacy) */
.site-header .logo-mark { width: 44px; height: 28px; flex-shrink: 0; }

.site-header .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.site-header .logo-wordmark {
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.32em;
	color: #53514F;
}

.site-header .logo-property {
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 8.5px;
	font-weight: 500;
	letter-spacing: 0.24em;
	color: #8A8784;
	margin-top: 5px;
}

/* Nav */
.site-header .nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.site-header .nav a {
	position: relative;
	padding: 8px 0;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #53514F;
	transition: color 0.3s;
}

.site-header .nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: #A790C4;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s cubic-bezier(.16,1,.3,1);
}

.site-header .nav a:hover { color: #A790C4; }
.site-header .nav a:hover::after { transform: scaleX(1); }

/*
 * Submenü „Zimmer & Apartments" — Hover-/Focus-Dropdown.
 *
 * Damit die Caret und das Submenü exakt unter dem Eltern-Link sitzen, dient
 * `.nav-item` als position:relative-Container. Das Menü öffnet sich bei
 * Hover/Focus-within mit kurzer Verzögerung beim Schließen, damit der Cursor
 * vom Link in das Menü gleiten kann.
 */
.site-header .nav .nav-item {
	position: relative;
	display: inline-flex;
	align-items: center;
}
.site-header .nav .nav-item .nav-parent {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.site-header .nav .nav-item .nav-caret {
	width: 12px;
	height: 8px;
	display: inline-block;
	color: var(--purple);
	transition: transform 0.3s cubic-bezier(.16, 1, .3, 1);
	flex-shrink: 0;
	margin-top: 1px;
}
.site-header .nav .nav-item:hover .nav-caret,
.site-header .nav .nav-item:focus-within .nav-caret {
	transform: rotate(180deg);
}
.site-header .nav .nav-submenu {
	position: absolute;
	top: calc(100% + 14px);
	left: -16px;
	margin: 0;
	padding: 10px;
	min-width: 360px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	box-shadow:
		0 1px 2px rgba(43, 30, 20, 0.04),
		0 18px 48px rgba(43, 30, 20, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.25s cubic-bezier(.16, 1, .3, 1), transform 0.25s cubic-bezier(.16, 1, .3, 1), visibility 0.25s cubic-bezier(.16, 1, .3, 1);
	pointer-events: none;
	z-index: 50;
}
/* Bridge: füllt den Lücken-Bereich zwischen Nav-Link und Dropdown, damit der
 * Cursor reinwandern kann ohne das Menü zu schließen. */
.site-header .nav .nav-submenu::before {
	content: '';
	position: absolute;
	top: -14px;
	left: 0;
	right: 0;
	height: 14px;
	background: transparent;
}
.site-header .nav .nav-item:hover .nav-submenu,
.site-header .nav .nav-item:focus-within .nav-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.site-header .nav .nav-submenu li { margin: 0; padding: 0; list-style: none; }
.site-header .nav .nav-submenu a {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 14px 16px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.005em;
	text-transform: none;
	color: var(--ink);
	border-radius: 7px;
	transition: background 0.25s, color 0.25s;
}
/* Reset des „underline-after"-Effekts der Top-Level-Links für Submenu-Links */
.site-header .nav .nav-submenu a::after { display: none; }
.site-header .nav .nav-submenu a:hover {
	background: var(--purple-soft);
	color: var(--purple);
}

/* Übersichts-Item (erstes Sub-Item) deutlich hervorheben — visuell klar als
 * „Hub-Link", den User trifft wenn er die Übersicht sehen will statt eine
 * spezifische Sub-Page. Tinted Cream-Background, Brand-Purple-Akzent links,
 * stärkere Schrift, Trenner zur Sub-Item-Liste. */
.site-header .nav .nav-submenu li:first-child a {
	background: linear-gradient(180deg, rgba(167, 144, 196, 0.05) 0%, rgba(244, 237, 224, 0.5) 100%);
	border-left: 3px solid var(--purple);
	border-radius: 6px;
	padding-left: 14px;
	margin-bottom: 8px;
}
.site-header .nav .nav-submenu li:first-child a:hover {
	background: var(--purple-soft);
	border-left-color: var(--purple-hover);
}
.site-header .nav .nav-submenu li:first-child a .nav-sub-name {
	font-weight: 600;
	font-size: 16px;
}
.site-header .nav .nav-submenu li:first-child + li {
	border-top: 1px solid transparent;
	margin-top: 4px;
}

.site-header .nav .nav-submenu a.is-featured {
	background: linear-gradient(180deg, rgba(167, 144, 196, 0.06), rgba(167, 144, 196, 0.12));
	border: 1px solid rgba(167, 144, 196, 0.25);
}
.site-header .nav .nav-submenu a.is-featured:hover {
	background: var(--purple-soft);
	border-color: var(--purple);
}
.site-header .nav .nav-submenu .nav-sub-eyebrow {
	font-family: 'Montserrat', sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--purple);
	line-height: 1.4;
}
.site-header .nav .nav-submenu .nav-sub-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	letter-spacing: -0.005em;
	line-height: 1.4;
}
.site-header .nav .nav-submenu .nav-sub-meta {
	font-family: 'Spectral', serif;
	font-style: normal;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.45;
	color: var(--wp--preset--color--soft, #6F6C69);
	margin-top: 3px;
}
.site-header .nav .nav-submenu a:hover .nav-sub-name { color: var(--purple); }
.site-header .nav .nav-submenu a:hover .nav-sub-meta { color: var(--purple-hover); }

/* Mobile-Drawer Sub-List: Styles unter „11 · Header — Mobile slide-in drawer“. */

/* Header right (badge + reserve) */
.site-header .header-right {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.site-header .all-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px 7px 7px;
	background: white;
	border: 1px solid #EAE4D8;
	border-radius: 5px;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #53514F;
	transition: 0.45s cubic-bezier(.16,1,.3,1);
	white-space: nowrap;
}

.site-header .all-badge:hover {
	border-color: #A790C4;
	background: #EFE8F5;
	transform: translateY(-1px);
}

.site-header .all-dot {
	width: 22px;
	height: 22px;
	border-radius: 5px;
	background: #A790C4;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Spectral, Georgia, Cambria, "Times New Roman", Times, serif;
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
}

.site-header .btn-reserve {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #53514F;
	color: white;
	padding: 13px 22px;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	transition: 0.45s cubic-bezier(.16,1,.3,1);
	white-space: nowrap;
	border-radius: 5px;
}

.site-header .btn-reserve:hover {
	background: #A790C4;
	transform: translateY(-1px);
}

.site-header .btn-reserve .dot {
	width: 9px;
	height: 9px;
	background: #4CAF50;
	border-radius: 5px;
	animation: mcLivePulse 1.8s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes mcLivePulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.55); }
	50%      { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
}

.site-header .burger { display: none; }

/* Responsive */
@media (max-width: 1100px) {
	.site-header .nav { gap: 20px; }
	.site-header .nav a { font-size: 10px; }
	.site-header .all-badge { display: none; }
}

@media (max-width: 980px) {
	.header-strip { display: none; }
	.site-header .nav,
	.site-header .header-right { display: none; }
	.header-main { padding: 12px 20px; gap: 16px; }
	/* Kein Abstand mehr nötig: Buchen-Button neben Burger ist ausgeblendet (s. Drawer-CTA). */
	.site-header .burger { display: inline-flex; align-items: center; gap: 0; justify-content: flex-end; }
	.site-header .logo-img {
		max-height: 26px;
		max-width: min(150px, 52vw);
	}

	.site-header .logo-wordmark { font-size: 16px; letter-spacing: 0.28em; }
}
/* Footer */
.mc-footer {
	position: relative;
	z-index: 2;
	isolation: isolate;
	background: #221c17;
	color: #FAF6EF; /* mc-paper */
	padding: 72px 0 28px;
	font-size: 14px;
	line-height: 1.65;
}

.mc-footer a {
	color: inherit;
}

.mc-footer h4 {
	margin-top: 0;
	color: #A790C4; /* mc-purple */
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: var(--mc-tracking-wide);
	font-size: var(--mc-font-xs);
	font-weight: 600;
	margin-bottom: 22px;
}

.mc-footer__grid {
	/* Trennlinie nur über .mc-newsletter { border-top }, sonst doppelte Linie */
	gap: 48px;
	align-items: flex-start;
}

.mc-footer__logo {
	gap: 14px;
	margin-bottom: 14px;
}

.mc-footer__logo--image {
	display: block;
	margin-bottom: 14px;
}

.mc-footer__logo-link {
	display: inline-block;
	line-height: 0;
	text-decoration: none;
}

.mc-footer__logo-img {
	display: block;
	width: auto;
	height: auto;
	max-width: min(200px, 100%);
	max-height: 48px;
	object-fit: contain;
	object-position: left center;
}

/* Footer SVG/text logo (legacy) */
.mc-footer__logo-mark {
	width: 44px;
	height: 28px;
	flex-shrink: 0;
}

.mc-footer__logo-text {
	line-height: 1;
}

.mc-footer__word {
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 18px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	margin: 0;
	color: #FFFFFF;
}

.mc-footer__property {
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 8px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	margin: 5px 0 0;
	color: rgba(255, 255, 255, 0.6);
}

.mc-footer__tagline {
	font-family: Spectral, Georgia, Cambria, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 14px;
}

.mc-footer__address {
	font-family: Spectral, Georgia, Cambria, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 22px;
	text-align: left;
}

.mc-footer__address a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.35);
	text-underline-offset: 3px;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.mc-footer__address a:hover {
	color: #fff;
	text-decoration-color: rgba(255, 255, 255, 0.85);
}

/* ════════════════════════════════════════════════════════════════════
 * Map-Link (.mc-map-link) — wrappt die Hotel-Adresse (Strasse + PLZ)
 * sodass ein Klick auf die Adresse Google Maps mit dem Hotel-Marker
 * oeffnet. Erbt Schriftfarbe vom Parent (sodass sie im Footer weiss,
 * im Header dunkel, im Hero auf Bild hell etc. konsistent passt).
 * Default: kein Underline. Hover: dezenter, gedoppelter Underline + Lila.
 * ════════════════════════════════════════════════════════════════════ */
.mc-map-link {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
	border-bottom: 1px dotted currentColor;
	padding-bottom: 1px;
	opacity: 0.92;
}
.mc-map-link:hover,
.mc-map-link:focus-visible {
	color: var(--wp--preset--color--purple-hover, #8D74AE);
	border-bottom-style: solid;
	opacity: 1;
	outline: none;
}
/* Im Footer (dunkler Hintergrund) hat .mc-footer__address a bereits eigene
 * Hover-Regeln — wir lassen .mc-map-link dort die Footer-Stile nicht
 * ueberschreiben, sondern erben den Footer-Hover (weiss). */
.mc-footer__address .mc-map-link {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	opacity: 1;
}
.mc-footer__address .mc-map-link:hover,
.mc-footer__address .mc-map-link:focus-visible {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.85);
}

/* Header-Strip oben: Adress-Text wirkt ohne Override zu prominent
 * gegenueber den anderen Strip-Elementen (Tagline, Telefon-Link).
 * Visuell ausgleichen mit kleinerer Font-Size, etwas geringerem
 * Letter-Spacing und feinerem Underline. */
.header-strip .mc-map-link {
	font-size: 9px;
	letter-spacing: 0.14em;
	border-bottom-width: 1px;
	padding-bottom: 0;
}

.mc-footer__address-link {
	display: inline-block;
	margin-top: 8px;
	font-style: normal;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.mc-footer__identity {
	text-align: left;
}

.mc-footer__identity p,
.mc-footer__identity a,
.mc-footer__identity address,
.mc-footer__identity strong {
	text-align: left !important;
}

.mc-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	margin: 0;
}

.mc-footer__contact p {
	margin: 0;
	text-align: left;
}

.mc-footer__contact a {
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: var(--mc-font-sm);
	letter-spacing: var(--mc-tracking);
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.85);
	transition: transform 0.25s cubic-bezier(.16, 1, .3, 1), color 0.25s;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}

.mc-footer__contact a:hover {
	color: #A790C4;
	transform: translateX(2px);
}

.mc-ic {
	display: inline-block;
	width: auto;
	margin-right: 10px;
	font-size: 13px;
	opacity: 0.85;
}

/* Social media icons */
.mc-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.mc-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.75);
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mc-footer__social-link:hover {
	background: #A790C4;
	border-color: #A790C4;
	color: #ffffff;
	transform: translateY(-2px);
}

.mc-footer__social-link svg { display: block; }

/* Newsletter signup */
.mc-newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
	align-items: start;
	gap: 20px 36px;
	padding: 28px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 32px;
}

.mc-newsletter__text {
	min-width: 0;
	grid-column: 1;
	grid-row: 1;
}

.mc-newsletter__form {
	grid-column: 2;
	grid-row: 1;
}

.mc-newsletter__consent {
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 0;
	max-width: 720px;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 11px;
	line-height: 1.55;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.52);
}

.mc-newsletter__consent a {
	color: #c4b5dc;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.mc-newsletter__consent a:hover {
	color: #dfd5ee;
}

.mc-newsletter__title {
	font-family: Spectral, Georgia, Cambria, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 22px;
	line-height: 1.2;
	color: #FFFFFF;
	margin: 0 0 4px;
}

.mc-newsletter__sub {
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
	max-width: 480px;
}

.mc-newsletter__form {
	display: flex;
	gap: 0;
	align-items: stretch;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	overflow: hidden;
	transition: border-color 0.25s ease, background 0.25s ease;
	min-width: 0;
	width: 100%;
	max-width: 460px;
}

.mc-newsletter__form:focus-within {
	border-color: #A790C4;
	background: rgba(255, 255, 255, 0.08);
}

.mc-newsletter__form input[type="email"] {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	outline: 0;
	padding: 12px 16px;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	letter-spacing: 0.02em;
}

.mc-newsletter__form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.mc-newsletter__form button {
	appearance: none;
	border: 0;
	cursor: pointer;
	padding: 12px 22px;
	background: #A790C4;
	color: #ffffff;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: background 0.25s ease;
	flex-shrink: 0;
	border-radius: 5px;
}

.mc-newsletter__form button:hover {
	background: #9a82b9;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

@media (max-width: 960px) {
	.mc-newsletter {
		grid-template-columns: 1fr;
	}

	.mc-newsletter__form {
		grid-column: 1;
		grid-row: auto;
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.mc-newsletter {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.mc-newsletter__text {
		grid-column: 1;
		grid-row: auto;
	}

	.mc-newsletter__form {
		grid-column: 1;
		grid-row: auto;
		width: 100%;
		max-width: 100%;
	}

	.mc-newsletter__consent {
		grid-column: 1;
	}
}

.mc-footer__links {
	list-style: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.mc-footer .wp-block-list.mc-footer__links li {
	list-style: none;
}

.mc-footer__links a {
	font-family: Spectral, Georgia, Cambria, "Times New Roman", Times, serif;
	font-size: var(--mc-font-lg);
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	transition: transform 0.25s cubic-bezier(.16, 1, .3, 1), color 0.25s;
}

.mc-footer__links a:hover {
	color: #A790C4;
	transform: translateX(6px);
}

.mc-footer__bottom {
	margin-top: 40px;
	color: rgba(255, 255, 255, 0.4);
	font-size: var(--mc-font-sm);
	gap: 24px;
}

.mc-footer__managed {
	margin: 0;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: var(--mc-font-xs);
	letter-spacing: var(--mc-tracking-wide);
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.mc-footer__managed--with-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px 14px;
	flex-wrap: wrap;
	text-transform: none;
	letter-spacing: normal;
}

.mc-footer__managed-label {
	text-transform: uppercase;
	letter-spacing: var(--mc-tracking-wide);
	font-size: var(--mc-font-xs);
	color: rgba(255, 255, 255, 0.55);
}

.mc-footer__managed--with-logo .mc-footer__eh-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	opacity: 0.92;
	transition: opacity 0.25s ease;
}

.mc-footer__managed--with-logo .mc-footer__eh-link:hover {
	opacity: 1;
}

.mc-footer__eh-logo {
	height: 26px;
	width: auto;
	max-width: 152px;
	object-fit: contain;
	vertical-align: middle;
}

@media (max-width: 480px) {
	.mc-footer__managed--with-logo {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

.mc-footer__bottom p {
	margin: 0;
}

.mc-footer__legal {
	gap: 24px;
}

.mc-footer__legal a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.25s;
}

.mc-footer__legal a:hover {
	color: #A790C4;
}

@media (max-width: 980px) {
	.mc-footer {
		padding: 56px 0 24px;
	}

	.mc-footer__grid {
		gap: 36px;
	}

	.mc-footer__legal {
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.mc-footer__inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	/* Stack footer columns cleanly (no centering) */
	.mc-footer__grid {
		flex-direction: column;
		align-items: flex-start;
	}

	.mc-footer__grid > .wp-block-column {
		width: 100%;
		flex-basis: auto !important;
	}

	.mc-footer__identity,
	.mc-footer__col {
		text-align: left;
	}

	.mc-footer__links a {
		font-size: var(--mc-font-md);
	}

	.mc-footer__bottom {
		margin-top: 28px;
		row-gap: 14px;
	}
}

/* 07 · Mobile Booking Bar
 *
 * Space fuer die fixe Booking-Bar.
 *
 * - .mc-mobile-bar (Legacy / immer sichtbar): konstanter 72 px Footer-Buffer
 *   nur, wenn diese Variante im DOM existiert.
 * - .mc-sticky-bar (universelle Sticky-Bar v0.4.0+, JS-getriggert mit
 *   .is-visible): Buffer NUR dann setzen, wenn die Bar gerade angezeigt wird.
 *   Layout-Regeln liegen in assets/css/sticky-bar.css; hier kuemmern wir uns
 *   nur um den globalen Body-Reset und die Footer-Ueberlappung, die zu
 *   `brand.css` (Footer-Hintergrund) gehoert.
 *
 * WICHTIG: Kein padding-top: 0 hier — das wuerde die globale Header-Kompensation
 * aus dem Block „Body bekommt einen Offset in Header-Höhe“ (~Zeile 232)
 * ueberschreiben und Hub-/Subpage-Heros rutschen unter den fixierten Header.
 */
body {
	margin: 0 !important;
	padding-bottom: env(safe-area-inset-bottom, 0px);
}

body:has(.mc-mobile-bar) {
	padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

body:has(.mc-sticky-bar.is-visible) {
	--mc-sticky-footer-overlap: 70px;
	padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
}

body:has(.mc-sticky-bar.is-visible) .mc-footer {
	margin-bottom: calc(-1 * var(--mc-sticky-footer-overlap));
	padding-bottom: calc(28px + var(--mc-sticky-footer-overlap) + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 979.98px) {
	body:has(.mc-sticky-bar.is-visible) {
		--mc-sticky-footer-overlap: 110px;
		padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
	}
}

.mc-mobile-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 101;
	background: rgba(250, 246, 239, 0.92); /* mc-paper */
	color: #2B2826; /* mc-ink */
	padding: 14px 0;
	display: block;
	border-top: 1px solid rgba(234, 228, 216, 0.9);
	box-shadow: 0 -10px 30px rgba(43, 40, 38, 0.12);
	backdrop-filter: blur(18px) saturate(1.08);
}

.mc-mobile-bar__inner {
	max-width: 1480px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
	gap: 18px;
}

.mc-mobile-bar__price {
	margin: 0;
	white-space: nowrap;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: var(--mc-font-sm);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(43, 40, 38, 0.7);
}

.mc-mobile-bar__price::first-letter {
	letter-spacing: inherit;
}

.mc-mobile-bar__price strong {
	color: #A790C4;
	font-weight: 700;
}

.mc-mobile-bar__cta .wp-block-button__link {
	background: #A790C4; /* mc-purple */
	color: #FFFFFF;
	border-radius: 5px;
	padding: 16px 22px;
	font-size: var(--mc-font-sm);
	letter-spacing: var(--mc-tracking-wide);
	text-transform: uppercase;
	font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	border: 1px solid #A790C4;
	min-height: 44px;
}

.mc-mobile-bar__cta .wp-block-button__link::after {
	content: " →";
	letter-spacing: 0.04em;
}

@media (max-width: 520px) {
	.mc-mobile-bar__cta .wp-block-button__link::after {
		content: " »";
	}
}

.mc-mobile-bar__cta .wp-block-button__link:hover {
	background: #8D74AE; /* purple-hover */
	border-color: #8D74AE;
}

@media (min-width: 981px) {
	.mc-mobile-bar__price {
		font-size: var(--mc-font-sm);
		letter-spacing: var(--mc-tracking);
	}
}

@media (max-width: 980px) {
	.mc-mobile-bar__inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 520px) {
	.mc-mobile-bar__inner {
		flex-wrap: wrap;
		row-gap: 10px;
	}

	.mc-mobile-bar__price {
		width: 100%;
	}

	.mc-mobile-bar .wp-block-buttons {
		width: 100%;
		justify-content: stretch;
	}

	.mc-mobile-bar__cta {
		width: 100%;
	}

	.mc-mobile-bar__cta .wp-block-button__link {
		width: 100%;
		text-align: center;
		padding: 12px 14px;
		font-size: 9.5px;
		letter-spacing: 0.1em;
		line-height: 1.15;
		white-space: normal;
		word-break: keep-all;
		overflow: visible;
	}
}

/* 09 · Utilities */

/* Focus styles (remove default black focus box, keep accessibility) */
:where(a, button, input, select, textarea, summary, [tabindex]):focus {
	outline: none;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 2px solid #A790C4; /* mc-purple */
	outline-offset: 3px;
	border-radius: 5px;
}

/* Prevent WP/button focus ring stacking */
.wp-block-button__link:focus,
.wp-block-button__link:focus-visible {
	box-shadow: none;
}

/* 10 . Front Page mockup styles are loaded from assets/css/frontpage-mockup.css */

/* Legacy-Pattern-Leiste ausblenden, wenn die Mockup-Frontpage eigene Sticky-Bar hat */
body:has(.mc-frontpage) .mc-mobile-bar {
	display: none !important;
}

/*
 * 11 · Header — Mobile slide-in drawer
 *
 * Premium-Drawer mit klarer Sektionierung:
 *   - oben: dezidierter Drawer-Header mit Wordmark + Close-Button
 *   - mitte: Hauptnavigation, Spectral italic, eingerücktes Submenü unter
 *     „Zimmer" mit Eyebrow + Name + Preis-Meta (gleiches Pattern wie das
 *     Desktop-Dropdown — visuell kohärent)
 *   - unten: dunkler Block mit Telefon, Adresse, Direkt-buchen-CTA
 *
 * Single Source of Truth: liegt nur hier, nicht im Frontpage-Mockup-CSS.
 * Verwendet `100dvh` damit das Drawer auf modernen Mobile-Browsern auch
 * mit dynamischer URL-Bar voll bis zum unteren Rand reicht.
 */
.burger {
	display: none;
}
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	z-index: 110;
	background: #fff;
	padding: 0;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s var(--ease);
	overflow: hidden;
	visibility: hidden;
}
/* Geschlossen trotz hohem z-index keine Touches/Klicks abfangen — sonst wirkt
 * der Burger auf manchen Mobilbrowsern „tot“ (Drawer liegt fullscreen über
 * dem Viewport, auch wenn unsichtbar). */
.mobile-menu[aria-hidden="true"] {
	pointer-events: none !important;
}
.mobile-menu[aria-hidden="false"] {
	pointer-events: auto;
}
body.mc-menu-open .mobile-menu {
	transform: translateX(0);
	visibility: visible;
}
/* Overlay nicht mehr nötig (Drawer ist fullscreen), aber als Click-Handler-Helper
 * im DOM belassen — wird nur als Tap-Target außerhalb des Drawers verwendet,
 * visuell unsichtbar bleiben (kein Background, kein Backdrop). */
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 105;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: visibility 0.35s var(--ease);
}
body.mc-menu-open .mobile-menu-overlay {
	opacity: 1;
	visibility: visible;
	/* Drawer ist fullscreen — Overlay nur noch Fallback; keine Hits abfangen */
	pointer-events: none !important;
}
body.mc-menu-open {
	overflow: hidden;
}

/*
 * Drawer über typische Chat-Widgets (Dialogshift), damit Kontaktblock lesbar bleibt.
 */
body.mc-menu-open .mobile-menu-overlay {
	z-index: 2147483646;
}
body.mc-menu-open .mobile-menu {
	z-index: 2147483647;
}

/* DRAWER-HEADER — Logo + Close-Button (sticky am Top, damit beim Scrollen sichtbar) */
.mobile-menu-header {
	position: sticky;
	top: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 22px;
	padding-top: calc(16px + env(safe-area-inset-top, 0px));
	background: #fff;
	border-bottom: 1px solid var(--border-soft);
	flex-shrink: 0;
}
.mobile-menu-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	text-decoration: none;
}
.mobile-menu-brand--image {
	gap: 0;
}

.mobile-menu-brand-img {
	display: block;
	width: auto;
	height: auto;
	max-height: 26px;
	max-width: min(150px, 58vw);
	object-fit: contain;
	object-position: left center;
}

.mobile-menu-brand .mm-mark {
	width: 32px;
	height: 22px;
	flex-shrink: 0;
}
.mobile-menu-brand .mm-word {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: var(--ink);
	display: block;
	line-height: 1;
}
.mobile-menu-brand .mm-property {
	font-family: 'Montserrat', sans-serif;
	font-size: 8px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--soft);
	display: block;
	line-height: 1;
	margin-top: 4px;
}
.mobile-menu-close {
	position: static;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--border-soft);
	border-radius: 5px;
	color: var(--dark);
	cursor: pointer;
	transition: border-color 0.25s, color 0.25s, transform 0.4s;
	flex-shrink: 0;
}
.mobile-menu-close:hover {
	border-color: var(--purple);
	color: var(--purple);
	transform: rotate(90deg);
}

/* DRAWER-BODY (scrollbar) */
.mobile-menu-body {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0 0 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Drawer kann auf Tablet/Landscape zentrierter wirken — auf größeren Mobile-
 * Viewports und Tablets max-width nutzen, damit Items nicht über die ganze
 * Breite reißen und Lese-Ergonomie erhalten bleibt. */
@media (min-width: 600px) {
	.mobile-menu-body > * {
		max-width: 560px;
		width: 100%;
		align-self: center;
	}
}

/* NAVIGATION
 * Top-Level-Items sind heute entweder <details class="mobile-acc"> (Submenü)
 * oder <a class="mobile-flat"> (Flat-Link). Beide Klassen haben ihre eigenen
 * Styles weiter unten. Die alten generischen `.mobile-menu-nav > a`-Regeln
 * (italic Spectral 21px) wurden in v0.3.6 entfernt — sie kollidierten mit
 * `.mobile-flat` und ließen Items unterschiedlich aussehen.
 */
.mobile-menu-nav {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* SUB-LIST (Zimmer-Auswahl) */
.mobile-menu-sublist {
	list-style: none;
	margin: 0;
	padding: 4px 0 10px 12px;
	border-bottom: 1px solid var(--border-soft);
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.mobile-menu-sublist li {
	margin: 0;
	padding: 0;
}
.mobile-menu-sublist a {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
	padding: 8px 10px;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--dark);
	border-left: 2px solid var(--border);
	border-radius: 0 6px 6px 0;
	transition: color 0.25s, border-color 0.25s, background 0.25s;
	text-decoration: none;
}
.mobile-menu-sublist a:hover {
	color: var(--purple);
	border-left-color: var(--purple);
	background: var(--purple-soft);
}
.mobile-menu-sublist a span {
	font-family: 'Spectral', serif;
	font-style: italic;
	font-size: 12.5px;
	color: var(--soft);
	flex-shrink: 0;
}

/* CTA BLOCK — Direkt-Buchen-Button + TrustYou-Widget im Mobile-Drawer.
 * Sitzt zwischen den Nav-Items und der Meta-Box (Phone/Address).
 * - Buchen-Button ist Full-Width, prominent — Conversion-Anker
 * - TrustYou-Widget darunter zentriert als Trust-Element */
.mobile-menu-cta {
	margin: 24px 22px 0;
	padding: 22px;
	background: linear-gradient(180deg, rgba(167, 144, 196, 0.06), rgba(167, 144, 196, 0.02));
	border: 1px solid rgba(167, 144, 196, 0.18);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 16px;
	overflow: visible;
	position: relative;
	z-index: 2;
}
.mobile-menu-cta .mobile-menu-book {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 20px;
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
	box-sizing: border-box;
}
/* TrustYou-Zeile im Drawer: wie Desktop Widget + Info („i“) + Tooltip */
.mobile-menu-cta .mobile-menu-trustyou-wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 14px;
	width: 100%;
	padding-top: 12px;
	border-top: 1px solid rgba(167, 144, 196, 0.20);
	position: relative;
	z-index: 3;
	overflow: visible;
}
.mobile-menu-cta .mobile-menu-trustyou {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	flex: 1 1 auto;
	min-width: 0;
	text-decoration: none;
	transition: opacity 0.2s ease-out;
}
.mobile-menu-cta .mobile-menu-trustyou:hover {
	opacity: 0.85;
}
.mobile-menu-cta .mobile-menu-trustyou ty-trustscore {
	display: inline-block;
	zoom: 0.85;
	-moz-transform: scale(0.85);
	-moz-transform-origin: center center;
}
.mobile-menu-cta .mobile-menu-trustyou-info.header-trustyou-info {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(167, 144, 196, 0.12);
	border: 1px solid rgba(167, 144, 196, 0.35);
	color: var(--wp--preset--color--purple-hover, #8D74AE);
}
.mobile-menu-cta .mobile-menu-trustyou-info:hover,
.mobile-menu-cta .mobile-menu-trustyou-info:focus,
.mobile-menu-cta .mobile-menu-trustyou-info:focus-within {
	background: rgba(167, 144, 196, 0.2);
	color: var(--wp--preset--color--purple, #A790C4);
}
/* Tooltip im Drawer: fixed nur bei sichtbarem Zustand — dauerhaft fixed + hoher
 * z-index auch bei opacity:0 hat auf Mobilgeraeten Touch/Hittest gestoert (Menue
 * wirkte „tot“). Geschlossen: absolute wie Basis-Tooltip (clipped, unsichtbar).
 * Offen: fixed + JS-Koordinaten (placeDrawerTrustTip in header.html). */
.mobile-menu-cta .mobile-menu-trustyou-info .header-trustyou-tooltip {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	left: auto;
	bottom: auto;
	margin: 0;
	transform: translateY(-6px);
	width: min(300px, calc(100vw - 28px));
	max-width: calc(100vw - 28px);
	box-sizing: border-box;
	z-index: 500;
	pointer-events: none;
}
.mobile-menu-cta .mobile-menu-trustyou-info:hover .header-trustyou-tooltip,
.mobile-menu-cta .mobile-menu-trustyou-info:focus .header-trustyou-tooltip,
.mobile-menu-cta .mobile-menu-trustyou-info:focus-within .header-trustyou-tooltip {
	position: fixed;
	z-index: 2147483647;
	transform: translateY(0);
	pointer-events: auto;
}
.mobile-menu-cta .mobile-menu-trustyou-info .header-trustyou-tooltip::before {
	top: auto;
	bottom: 100%;
	left: var(--mc-trust-tip-arrow, 13px);
	right: auto;
	transform: none;
	border-top-color: transparent;
	border-bottom-color: rgba(20, 16, 12, 0.96);
}

/* META BLOCK — Telefon + Adresse + Sub-Links (am Drawer-Boden) */
.mobile-menu-meta {
	background: var(--paper);
	margin: 24px 22px 0;
	padding: 22px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--soft, #6F6C69);
}
.mobile-menu-phone {
	font-family: 'Montserrat', sans-serif;
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--wp--preset--color--ink, #2b2826);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 4px 0;
	min-height: 44px;
}
.mobile-menu-phone svg {
	width: 18px;
	height: 18px;
	color: var(--purple);
	flex-shrink: 0;
}
.mobile-menu-phone:hover {
	color: var(--purple);
}
.mobile-menu-addr {
	font-size: 13px;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--soft, #6F6C69);
	font-weight: 400;
	text-transform: none;
	line-height: 1.4;
}
.mobile-menu-extra {
	margin-top: 6px;
	padding-top: 14px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.mobile-menu-extra a {
	color: var(--wp--preset--color--soft, #6F6C69);
	text-decoration: none;
	font-weight: 600;
	min-height: 36px;
	display: inline-flex;
	align-items: center;
}
.mobile-menu-extra a:hover {
	color: var(--purple);
}
.mobile-menu-extra > [aria-hidden="true"] {
	color: var(--wp--preset--color--border, #d9d9d9);
}

/* DRAWER-FOOTER — Direkt-Buchen-CTA (sticky am Boden, immer erreichbar)
 *
 * Explizite Farben + höhere Spezifität: `.site-header a { color: inherit }`
 * würde sonst die Lesbarkeit auf dem dunklen Grund zerstören.
 */
.site-header .mobile-menu > .mobile-menu-cta,
.site-header .mobile-menu > .mobile-menu-cta:visited {
	position: sticky;
	bottom: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 0;
	padding: 18px 24px;
	padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
	background: var(--purple);
	color: #ffffff;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: background 0.25s ease;
	box-shadow: 0 -8px 24px rgba(43, 30, 20, 0.08);
	flex-shrink: 0;
}
.site-header .mobile-menu > .mobile-menu-cta:hover,
.site-header .mobile-menu > .mobile-menu-cta:focus-visible {
	background: var(--purple-hover);
	color: #ffffff;
}
.site-header .mobile-menu > .mobile-menu-cta::after {
	content: '→';
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
}

/*
 * Burger-Visibility & -Animation auf kleinen Viewports.
 * Synchron zum Mockup-CSS (~980 px Breakpoint).
 */
@media (max-width: 980px) {
	.nav {
		display: none;
	}
	.burger {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
	}
	/* Platz für ein größeres Menü-Icon — Buchen bleibt im Drawer als CTA */
	.burger .btn-reserve {
		display: none;
	}
	.burger-icon {
		width: 44px;
		height: 40px;
		padding: 8px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: stretch;
		cursor: pointer;
		flex-shrink: 0;
		background: transparent;
		border: 0;
		color: var(--dark);
		box-sizing: border-box;
	}
	.burger-icon span {
		display: block;
		height: 2.25px;
		background: currentColor;
		border-radius: 5px;
		transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
		transform-origin: center;
	}
	.burger-icon[aria-expanded='true'] span:nth-child(1) {
		transform: translateY(11px) rotate(45deg);
	}
	.burger-icon[aria-expanded='true'] span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}
	.burger-icon[aria-expanded='true'] span:nth-child(3) {
		transform: translateY(-11px) rotate(-45deg);
	}
}

/* =========================================================================
 * PAGE TEMPLATES — Subseiten-Stile (Phase 2: Fitness & Wellness, Lage)
 * Pattern: BEM-light unter .mc-page-*
 * ========================================================================= */

.mc-page {
	background: var(--wp--preset--color--paper);
	color: var(--wp--preset--color--ink);
}

/* ACHTUNG: Diese Regel galt frueher GLOBAL fuer alle <section> in .mc-page —
 * inklusive .mc-hero. Damit wurde das Hero-Token-Padding ueberschrieben
 * (4rem 1.5rem statt --mc-hero-padding-top/bottom) und /angebote, /faq
 * sahen anders aus als die anderen Hub-Pages, die in mc-zimmer-overview /
 * mc-das-haus / mc-agnesviertel Wrappern liegen.
 * Fix: Hero ausnehmen via :not(.mc-hero). */
.mc-page section:not(.mc-hero) {
	padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
	.mc-page section:not(.mc-hero) {
		padding: 5rem 2rem;
	}
}

.mc-page .eyebrow {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wp--preset--color--purple-hover);
	margin-bottom: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.mc-page .eyebrow::before {
	content: '';
	width: 28px;
	height: 1px;
	background: var(--wp--preset--color--purple);
	display: inline-block;
}

.mc-page .italic {
	font-family: var(--wp--preset--font-family--spectral);
	font-style: italic;
	font-weight: 400;
}

/* ACHTUNG: Dieser Selektor matcht ALLE divs die auf "-inner" enden —
 * inkl. .mc-hero-inner. Das ueberschrieb max-width: var(--mc-content-max)
 * (= 1440px) mit hardcoded 1200px → Title auf /angebote, /faq schmaler
 * als auf /zimmer, /das-haus, /agnesviertel.
 * Fix: Hero ausnehmen via :not(.mc-hero). */
.mc-page section:not(.mc-hero) > div[class$="-inner"] {
	max-width: 1200px;
	margin-inline: auto;
}

/* === Hero für Subseiten === */
.mc-hero-page {
	padding-top: 5rem !important;
	padding-bottom: 3rem !important;
}

@media (min-width: 768px) {
	.mc-hero-page {
		padding-top: 7rem !important;
		padding-bottom: 4rem !important;
	}
}

.mc-hero-page-inner {
	text-align: center;
}

.mc-hero-page-title {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0 0 1.5rem;
	color: var(--wp--preset--color--ink);
}

.mc-hero-page-title .line1 { display: block; }
.mc-hero-page-title .line2 { display: block; }

.mc-hero-page-lede {
	font-family: var(--wp--preset--font-family--spectral);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.5;
	color: var(--wp--preset--color--soft);
	max-width: 720px;
	margin: 0 auto;
}

.mc-hero-page-image {
	margin-top: 3rem;
	max-width: 1100px;
	margin-inline: auto;
	border-radius: 5px;
	overflow: hidden;
}

.mc-hero-page-image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 3/2;
	object-fit: cover;
}

/* === Signature-Block (z.B. 17m Pool) === */
.mc-signature {
	background: var(--wp--preset--color--cream);
}

.mc-signature-title {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 1.5rem;
}

.mc-signature-text {
	font-family: var(--wp--preset--font-family--spectral);
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--wp--preset--color--ink);
	max-width: 760px;
	margin: 0 0 1.25rem;
}

.mc-signature-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--wp--preset--color--border);
}

.mc-stat-num {
	display: block;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 2rem;
	font-weight: 500;
	color: var(--wp--preset--color--purple-hover);
	margin-bottom: 0.25rem;
}

.mc-stat-label {
	font-size: 0.85rem;
	color: var(--wp--preset--color--soft);
}

/* === Equipment-Grid === */
.mc-equip-title,
.mc-distances-title,
.mc-arrival-title,
.mc-parking-title,
.mc-map-title {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 2.5rem;
}

.mc-equip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
}

.mc-equip-item {
	background: var(--wp--preset--color--paper);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 5px;
	padding: 1.5rem;
	transition: var(--wp--custom--mc--transition--fast);
}

.mc-equip-item:hover {
	border-color: var(--wp--preset--color--purple);
	transform: translateY(-2px);
}

.mc-equip-icon {
	width: 32px;
	height: 32px;
	color: var(--wp--preset--color--purple-hover);
	margin-bottom: 1rem;
}

.mc-equip-name {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1rem;
	font-weight: 500;
	margin: 0 0 0.5rem;
}

.mc-equip-desc {
	font-size: 0.9rem;
	color: var(--wp--preset--color--soft);
	margin: 0;
	line-height: 1.5;
}

/* === Distances-Grid (Lage-Page) === */
.mc-distances-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}

.mc-distance-card {
	background: var(--wp--preset--color--paper);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 5px;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.mc-distance-icon {
	color: var(--wp--preset--color--purple-hover);
	margin-bottom: 0.25rem;
}

.mc-distance-name {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 500;
	font-size: 0.95rem;
}

.mc-distance-meta {
	font-size: 0.85rem;
	color: var(--wp--preset--color--soft);
}

/* === Arrival-Cards (Wegbeschreibungen) === */
.mc-arrival {
	background: var(--wp--preset--color--cream);
}

.mc-arrival-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
}

.mc-arrival-card {
	background: var(--wp--preset--color--paper);
	border-radius: 5px;
	padding: 1.75rem;
}

.mc-arrival-tag {
	display: inline-block;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--purple-hover);
	margin-bottom: 0.5rem;
}

.mc-arrival-h {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1.15rem;
	font-weight: 500;
	margin: 0 0 0.75rem;
}

.mc-arrival-text {
	font-family: var(--wp--preset--font-family--spectral);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--wp--preset--color--ink);
	margin: 0;
}

/* === Parking-Block === */
.mc-parking-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.mc-parking-h {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1.1rem;
	font-weight: 500;
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--wp--preset--color--purple);
}

.mc-parking-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mc-parking-list li {
	padding: 0.4rem 0;
	font-size: 0.95rem;
	color: var(--wp--preset--color--ink);
}

.mc-parking-foot {
	font-size: 0.9rem;
	color: var(--wp--preset--color--soft);
	margin-top: 1rem;
}

.mc-parking-foot a {
	color: var(--wp--preset--color--purple-hover);
	text-decoration: none;
}

.mc-parking-foot a:hover {
	text-decoration: underline;
}

/* === Map & Address === */
.mc-map {
	background: var(--wp--preset--color--cream);
}

.mc-map-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.mc-map-inner {
		grid-template-columns: 1fr 1.4fr;
		gap: 3rem;
		align-items: start;
	}
}

.mc-map-address {
	font-family: var(--wp--preset--font-family--spectral);
	font-style: normal;
	font-size: 1.1rem;
	line-height: 1.65;
	margin: 0 0 1rem;
}

.mc-map-contact {
	font-size: 1rem;
	margin: 0 0 1.5rem;
}

.mc-map-contact a {
	color: var(--wp--preset--color--ink);
	text-decoration: none;
}

.mc-map-contact a:hover {
	color: var(--wp--preset--color--purple-hover);
}

.mc-map-link {
	display: inline-block;
	color: var(--wp--preset--color--purple-hover);
	text-decoration: none;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.95rem;
	font-weight: 500;
}

.mc-map-link:hover {
	text-decoration: underline;
}

.mc-map-embed {
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid var(--wp--preset--color--border);
}

/* === Hours-Display (für Pattern mercure/hotel-hours) === */
.mc-hotel-hours-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
}

.mc-hours-block {
	background: var(--wp--preset--color--paper);
	border-radius: 5px;
	padding: 1.5rem;
	border: 1px solid var(--wp--preset--color--border);
}

.mc-hours-title {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1.05rem;
	font-weight: 500;
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--wp--preset--color--purple);
}

.mc-hours-row {
	display: flex;
	justify-content: space-between;
	padding: 0.4rem 0;
	font-size: 0.95rem;
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.mc-hours-row:last-child {
	border-bottom: none;
}

.mc-hours-day {
	font-weight: 500;
	color: var(--wp--preset--color--ink);
}

.mc-hours-time {
	color: var(--wp--preset--color--soft);
	font-variant-numeric: tabular-nums;
}

.mc-hours-section-title {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 1.5rem;
}

.mc-hotel-hours {
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem);
	background: var(--wp--preset--color--cream, #f9f6f0);
	border-block: 1px solid rgba(0, 0, 0, 0.04);
}

.mc-hotel-hours-inner--stack {
	max-width: var(--mc-content-max, 1180px);
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: clamp(1.75rem, 3vw, 2.5rem);
}

.mc-hotel-hours-intro .eyebrow {
	margin-bottom: 0.65rem;
}

.mc-hotel-hours-intro .mc-hours-section-title {
	margin-bottom: 0;
}

.mc-hotel-hours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	align-items: start;
}

.mc-hours-block--note .mc-hours-note {
	margin: 0;
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: 1rem;
	font-weight: 300;
	font-style: italic;
	line-height: 1.65;
	color: var(--wp--preset--color--soft, #6f6c69);
}

/* === FAQ-Accordion (Pattern) === */
.mc-faq {
	padding: 4rem 1.5rem;
	background: var(--wp--preset--color--paper);
}

@media (min-width: 768px) {
	.mc-faq {
		padding: 5rem 2rem;
	}
}

.mc-faq-inner {
	max-width: 900px;
	margin-inline: auto;
}

.mc-faq-head {
	margin-bottom: 2.5rem;
}

.mc-faq-title {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 500;
	margin: 0 0 0.75rem;
}

.mc-faq-lede {
	font-family: var(--wp--preset--font-family--spectral);
	font-size: 1.1rem;
	color: var(--wp--preset--color--soft);
	margin: 0;
}

/* .mc-faq-list — Container fuer FAQ-Items.
 * v0.7: zu flex-column mit Gap migriert, damit die neuen Card-Items
 * (siehe weiter unten, vereinheitlichte FAQ-Component) sauber gestapelt
 * werden ohne den alten kontinuierlichen border-top zu erben. */
.mc-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Legacy-Markup: .mc-faq-q + .mc-faq-q-icon wurden in den aktuellen
 * Templates durch <summary> + ::after-Plus ersetzt. Behalten als
 * harmlose Fallback-Styles fuer den Fall, dass alte Cached Pages das
 * alte Markup ausliefern. */
.mc-faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	cursor: pointer;
	list-style: none;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1rem;
	font-weight: 500;
	color: var(--wp--preset--color--ink);
}

.mc-faq-q::-webkit-details-marker { display: none; }
.mc-faq-q:hover { color: var(--wp--preset--color--purple-hover); }

.mc-faq-q-icon {
	transition: transform 0.2s ease;
	color: var(--wp--preset--color--purple-hover);
	flex-shrink: 0;
}

.mc-faq-item[open] .mc-faq-q-icon { transform: rotate(180deg); }

.mc-faq-a {
	padding: 0 0 1.25rem;
	font-family: var(--wp--preset--font-family--spectral);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--wp--preset--color--ink);
}

.mc-faq-a p { margin: 0 0 0.75rem; }
.mc-faq-a p:last-child { margin-bottom: 0; }

/* === CTA-Sektion (Buchungs-CTA am Page-Ende) === */
.mc-cta {
	background: var(--wp--preset--color--purple-soft);
	text-align: center;
}

.mc-cta-inner {
	max-width: 720px;
	margin-inline: auto;
}

.mc-cta-title {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 500;
	margin: 0 0 1rem;
}

.mc-cta-text {
	font-family: var(--wp--preset--font-family--spectral);
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink);
	margin: 0 0 2rem;
}


/* =========================================================================
 * v0.2.1 — Fixes & Ergänzungen
 * ========================================================================= */

/* Hero-Image-Placeholder (anstelle externer Bilder) */
.mc-hero-page-image-placeholder {
	width: 100%;
	aspect-ratio: 3/2;
	background:
		linear-gradient(135deg,
			rgba(167, 144, 196, 0.2) 0%,
			rgba(143, 116, 174, 0.15) 50%,
			rgba(83, 81, 79, 0.18) 100%),
		var(--wp--preset--color--cream);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.mc-hero-page-image-placeholder::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url('../svg/wing.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 30%;
	opacity: 0.06;
}

.mc-hero-page-image[data-mc-image-slot] {
	border-radius: 5px;
	overflow: hidden;
}

/* Buchungs-Button für Subseiten (nicht nur Header) */
.mc-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 5px;
	transition: var(--wp--custom--mc--transition--fast);
	cursor: pointer;
	border: 1.5px solid transparent;
}

.mc-btn-primary {
	background: var(--wp--preset--color--purple);
	color: var(--wp--preset--color--paper);
	border-color: var(--wp--preset--color--purple);
}

.mc-btn-primary:hover {
	background: var(--wp--preset--color--purple-hover);
	border-color: var(--wp--preset--color--purple-hover);
	color: var(--wp--preset--color--paper);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(143, 116, 174, 0.25);
}

.mc-btn-primary:active {
	transform: translateY(0);
}

.mc-btn-secondary {
	background: transparent;
	color: var(--wp--preset--color--ink);
	border-color: var(--wp--preset--color--ink);
}

.mc-btn-secondary:hover {
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--paper);
}

.mc-btn-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wp--preset--color--paper);
	display: inline-block;
	animation: mc-btn-pulse 2s ease-in-out infinite;
}

.mc-btn-secondary .mc-btn-dot {
	background: var(--wp--preset--color--ink);
}

@keyframes mc-btn-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: 0.6; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
	.mc-btn-dot { animation: none; }
}

/* === Mobile-First-Breakpoints für Subseiten-Komponenten ===
 * Konsistent mit Master-Plan: 480 / 768 / 980 / 1280
 * ================================================================ */

/* Bis 480px: 1 Spalte alles */
@media (max-width: 480px) {
	/* Hero ausnehmen: `.mc-page section` hat höhere Spezifität als `.mc-hero` —
	 * sonst gewinnt das shorthand-padding horizontal gegen `padding-inline: 0`
	 * und die Hub-Typo klebt am Rand (z. B. /angebote/), anders als auf
	 * `.mc-zimmer-overview` / FAQ ohne `.mc-page`. */
	.mc-page section:not(.mc-hero) {
		padding: 2.5rem 1rem;
	}
	.mc-hero-page-title {
		font-size: 1.65rem;
	}
	.mc-signature-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding-top: 1.5rem;
	}
	.mc-stat-num {
		font-size: 1.5rem;
	}
	.mc-equip-grid,
	.mc-distances-grid {
		grid-template-columns: 1fr;
	}
	.mc-arrival-grid {
		grid-template-columns: 1fr;
	}
	.mc-arrival-card {
		padding: 1.25rem;
	}
	.mc-parking-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.mc-faq {
		padding: 2.5rem 1rem;
	}
	.mc-faq-q-text {
		font-size: 0.95rem;
	}
	.mc-cta {
		padding: 3rem 1rem;
	}
	.mc-cta-title {
		font-size: 1.5rem;
	}
}

/* 481-767px: 2 Spalten für Distances/Equipment */
@media (min-width: 481px) and (max-width: 767px) {
	.mc-equip-grid,
	.mc-distances-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.mc-signature-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 768-979px: 2-3 Spalten */
@media (min-width: 768px) and (max-width: 979px) {
	.mc-distances-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.mc-arrival-grid {
		grid-template-columns: 1fr;
	}
}

/* 980px+: Volldarstellung 3-spaltig */
@media (min-width: 980px) {
	.mc-equip-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.mc-distances-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.mc-arrival-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.mc-map-inner {
		grid-template-columns: 1fr 1.4fr;
		gap: 3rem;
		align-items: start;
	}
}

/* 1280px+: maximale Breite mit großzügigen Abständen */
@media (min-width: 1280px) {
	.mc-page section:not(.mc-hero) {
		padding: 6rem 2rem;
	}
	.mc-hero-page {
		padding-top: 8rem !important;
	}
}


/* =========================================================================
 * v0.2.2 — Legal Pages (Impressum/Datenschutz/AGB/BFSG)
 * Lesbare, seriöse Typografie · max-width 720px für Lesefluss
 * ========================================================================= */

.mc-legal {
	max-width: 760px;
	margin: 0 auto;
	padding: 4rem 1.25rem 6rem;
	font-family: var(--wp--preset--font-family--inter, system-ui, sans-serif);
	color: var(--wp--preset--color--ink);
	line-height: 1.7;
	font-size: 16px;
}

.mc-legal h1 {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 500;
	margin: 0 0 0.5rem;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.mc-legal-meta {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--wp--preset--color--purple-hover, #8f74ae);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(143, 116, 174, 0.18);
	width: 100%;
}

.mc-legal h2 {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 1.4rem;
	font-weight: 500;
	margin: 3rem 0 1rem;
	letter-spacing: -0.005em;
	line-height: 1.3;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mc-legal h3 {
	font-family: var(--wp--preset--font-family--inter, system-ui, sans-serif);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 2rem 0 0.75rem;
	color: var(--wp--preset--color--ink);
}

.mc-legal h4 {
	font-size: 1rem;
	font-weight: 600;
	margin: 1.5rem 0 0.5rem;
	color: var(--wp--preset--color--ink);
}

.mc-legal p {
	margin: 0 0 1.1rem;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.mc-legal a {
	color: var(--wp--preset--color--purple, #8f74ae);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-thickness: 1px;
	transition: color 0.2s;
	word-break: break-word;
}

.mc-legal a:hover {
	color: var(--wp--preset--color--purple-hover, #6f5b94);
}

.mc-legal ul,
.mc-legal ol {
	margin: 0 0 1.25rem;
	padding-left: 1.5rem;
}

.mc-legal li {
	margin-bottom: 0.4rem;
	padding-left: 0.25rem;
}

.mc-legal li::marker {
	color: var(--wp--preset--color--purple, #8f74ae);
}

.mc-legal address {
	font-style: normal;
	background: rgba(143, 116, 174, 0.04);
	border-left: 3px solid var(--wp--preset--color--purple, #8f74ae);
	padding: 1rem 1.25rem;
	margin: 1rem 0 1.5rem;
	border-radius: 0 4px 4px 0;
	line-height: 1.6;
}

.mc-legal-section {
	margin-bottom: 2rem;
}

.mc-legal-toc {
	background: var(--wp--preset--color--cream, #f9f6f0);
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 8px;
	padding: 1.5rem 1.75rem;
	margin: 2.5rem 0;
}

.mc-legal-toc-title {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
	color: var(--wp--preset--color--purple-hover, #6f5b94);
}

.mc-legal-toc ol {
	margin: 0;
	padding-left: 1.25rem;
	font-size: 0.95rem;
	columns: 2;
	column-gap: 2rem;
}

.mc-legal-toc li {
	break-inside: avoid;
	margin-bottom: 0.4rem;
}

.mc-legal-toc a {
	text-decoration: none;
	color: var(--wp--preset--color--ink);
}

.mc-legal-toc a:hover {
	color: var(--wp--preset--color--purple, #8f74ae);
	text-decoration: underline;
}

.mc-legal-callout {
	background: rgba(143, 116, 174, 0.06);
	border-left: 4px solid var(--wp--preset--color--purple, #8f74ae);
	padding: 1.25rem 1.5rem;
	margin: 2rem 0;
	border-radius: 0 6px 6px 0;
}

.mc-legal-callout p {
	margin: 0;
	font-size: 0.95rem;
}

.mc-legal-pdf-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 2rem 0;
	padding: 1.5rem;
	background: var(--wp--preset--color--cream, #f9f6f0);
	border-radius: 8px;
}

.mc-legal-pdf-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1rem;
	background: white;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 6px;
	text-decoration: none;
	font-size: 0.85rem;
	color: var(--wp--preset--color--ink);
	transition: all 0.2s;
}

.mc-legal-pdf-links a::before {
	content: '📄';
	font-size: 0.9rem;
}

.mc-legal-pdf-links a:hover {
	border-color: var(--wp--preset--color--purple, #8f74ae);
	color: var(--wp--preset--color--purple, #8f74ae);
	transform: translateY(-1px);
}

@media (max-width: 600px) {
	.mc-legal {
		padding: 2.5rem 1rem 4rem;
		font-size: 15px;
	}
	.mc-legal h2 {
		font-size: 1.2rem;
		margin: 2.5rem 0 0.75rem;
	}
	.mc-legal-toc ol {
		columns: 1;
	}
}

/* Print-Style — falls jemand drucken will */
@media print {
	.mc-page-header,
	.mc-cta,
	footer,
	header,
	.mc-mobile-booking-bar {
		display: none !important;
	}
	.mc-legal {
		max-width: 100%;
		padding: 0;
		font-size: 11pt;
	}
	.mc-legal h1 { font-size: 18pt; }
	.mc-legal h2 { font-size: 14pt; page-break-after: avoid; }
	.mc-legal h3 { font-size: 12pt; page-break-after: avoid; }
	.mc-legal a { color: black; text-decoration: none; }
}


/* =========================================================================
 * v0.3.0 — Mobile Drawer Conversion-Stack & Akkordeon-Submenüs
 * Top-Angebot · Best-Price-Trust · Telefon · 5 Top-Items mit details/summary
 * ========================================================================= */

/* Conversion-Stack ganz oben im Drawer */
.mobile-menu-conversion {
	padding: 22px;
	border-bottom: 1px solid var(--border-soft, #f2ece0);
	background: linear-gradient(180deg, rgba(143,116,174,0.04) 0%, rgba(255,255,255,0) 100%);
}

.mobile-conv-card {
	display: block;
	background: var(--wp--preset--color--ink, #1b1a1a);
	color: #ffffff;
	padding: 1.25rem 1.4rem;
	border-radius: 8px;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	box-shadow: 0 4px 14px rgba(143,116,174,0.18);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

/* Lila Akzent-Gradient rechts oben — z-index: 0 zwingt es UNTER den Inhalt
 * (sonst überdeckte es vorher das rechte Drittel des Titels und machte den
 * Text unlesbar). Der Card-Inhalt hat dank isolation:isolate auf der Karte
 * + z-index:1 auf den Children einen sauberen Stacking-Context. */
.mobile-conv-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: linear-gradient(135deg, transparent 0%, rgba(143,116,174,0.20) 100%);
	pointer-events: none;
	z-index: 0;
}

.mobile-conv-card > * {
	position: relative;
	z-index: 1;
}

.mobile-conv-card:hover,
.mobile-conv-card:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(143,116,174,0.28);
	color: #ffffff;
}

.mobile-conv-eyebrow {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--purple, #b89cd6);
	margin-bottom: 0.5rem;
}

/* Explizite Farbe (vorher nur per inheritance von .mobile-conv-card) — schützt
 * vor globalen Resets wie `:where(.wp-site-blocks) > *` die das color-Inheritance
 * vom Card-Anker-Element brechen können. */
.mobile-conv-title {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.3;
	color: #ffffff;
	margin: 0 0 1rem;
	letter-spacing: -0.005em;
}

.mobile-conv-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--wp--preset--color--purple, #8f74ae);
	color: #ffffff;
	padding: 0.65rem 1.1rem;
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.mobile-conv-trust {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.85rem;
	font-size: 0.78rem;
	color: var(--wp--preset--color--ash, #6b6967);
	padding: 0 0.25rem;
}

.mobile-conv-trust svg {
	color: #2a8a3c;
	flex-shrink: 0;
}

/* =========================================================================
 * v0.3.6 — Mobile-Drawer Top-Level-Items: einheitlich, fullscreen-tauglich
 *
 * Vorher (v0.3.0-0.3.5) gab es Konflikte zwischen `.mobile-menu-nav > a`
 * (italic Spectral 21px) und `.mobile-flat` (Sans-Serif 1rem) — Items hatten
 * unterschiedliche Schriftgrößen, der details-summary-SVG-Caret war ohne
 * Größenbegrenzung und wurde als Riesen-Pfeil gerendert.
 *
 * Jetzt: ein einheitliches Item-Design für Akkordeon-Header (mobile-acc
 * summary) UND Flat-Links (mobile-flat). Selbe Schriftgröße, selbe min-height,
 * selbe Tap-Target-Größe (≥56px für Touch-Accessibility-Standards).
 * ========================================================================= */

/* Gemeinsamer Top-Level-Item-Style (sowohl summary als auch mobile-flat) */
.mobile-acc summary,
.mobile-flat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 56px;
	padding: 14px 22px;
	font-family: 'Spectral', Georgia, serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--ink, #2b2826);
	text-decoration: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: background 0.15s ease, color 0.15s ease;
}

/* Akkordeon-Container */
.mobile-acc {
	border-bottom: 1px solid var(--border-soft, #f2ece0);
	list-style: none;
}

.mobile-flat {
	border-bottom: 1px solid var(--border-soft, #f2ece0);
}

.mobile-acc[open] {
	background: rgba(143, 116, 174, 0.04);
}

.mobile-acc summary {
	list-style: none;
}

/* Native Disclosure-Marker (Browser-▶) komplett deaktivieren */
.mobile-acc summary::-webkit-details-marker { display: none; }
.mobile-acc summary::marker { content: ''; }

.mobile-acc summary:hover,
.mobile-acc summary:focus-visible,
.mobile-flat:hover,
.mobile-flat:focus-visible {
	background: rgba(143, 116, 174, 0.06);
	color: var(--wp--preset--color--purple, #8f74ae);
	outline: none;
}

/* SVG-Caret im summary — explizite Größe (war vorher fehlend, daher Riesen-Pfeil) */
.mobile-acc summary svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--wp--preset--color--purple, #8f74ae);
	transition: transform 0.25s ease;
}

.mobile-acc[open] summary svg {
	transform: rotate(180deg);
}

/* Flat-Items bekommen einen statischen Pfeil rechts (visuelle Konsistenz) */
.mobile-flat::after {
	content: '→';
	display: inline-flex;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: var(--wp--preset--color--purple, #8f74ae);
	transition: transform 0.25s ease;
	flex-shrink: 0;
}

.mobile-flat:hover::after,
.mobile-flat:focus-visible::after {
	transform: translateX(4px);
}

/* Sub-Items (innerhalb des aufgeklappten Akkordeons) */
.mobile-acc ul {
	list-style: none;
	margin: 0;
	padding: 4px 0 14px;
}

.mobile-acc li {
	margin: 0;
}

.mobile-acc li a {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-height: 52px;
	padding: 10px 22px 10px 36px;
	text-decoration: none;
	color: var(--wp--preset--color--ink, #2b2826);
	border-left: 3px solid transparent;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
	position: relative;
	justify-content: center;
}

.mobile-acc li a::before {
	content: '';
	position: absolute;
	left: 22px;
	top: 50%;
	width: 8px;
	height: 1px;
	background: var(--wp--preset--color--purple, #8f74ae);
	transform: translateY(-50%);
	transition: width 0.15s ease;
}

.mobile-acc li a:hover,
.mobile-acc li a:focus-visible {
	background: rgba(143, 116, 174, 0.05);
	outline: none;
}

.mobile-acc li a:hover::before,
.mobile-acc li a:focus-visible::before {
	width: 12px;
}

/* Erstes Sub-Item (Übersichts-Link) hervorheben — visuell klar als Hub-Link */
.mobile-acc ul li:first-child a {
	font-weight: 500;
	background: rgba(143, 116, 174, 0.04);
	border-left-color: var(--wp--preset--color--purple, #8f74ae);
	margin-bottom: 6px;
	padding-bottom: 14px;
	padding-top: 14px;
	border-bottom: 1px solid var(--border-soft, #f2ece0);
}

.mobile-acc ul li:first-child a::before {
	display: none;
}

.mobile-acc ul li:first-child a .mobile-acc-name {
	color: var(--wp--preset--color--ink, #2b2826);
}

.mobile-acc-eyebrow {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--purple, #8f74ae);
	line-height: 1.4;
}

.mobile-acc-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--wp--preset--color--ink, #2b2826);
}

.mobile-acc-price {
	font-family: 'Spectral', serif;
	font-size: 13px;
	font-weight: 400;
	color: var(--wp--preset--color--soft, #6F6C69);
	margin-top: 2px;
}

/* Top-Header Strip — Lage & Anfahrt erscheint jetzt links der Sprache */
.header-strip .strip-right .strip-link {
	color: var(--wp--preset--color--ink-soft, rgba(27,26,26,0.75));
	text-decoration: none;
	font-size: 0.82rem;
	transition: color 0.15s ease;
}

.header-strip .strip-right .strip-link:hover {
	color: var(--wp--preset--color--purple, #8f74ae);
}

/* nav-flat (Top-Level ohne Submenü, z.B. Angebote, FAQ) */
.nav-flat {
	color: var(--wp--preset--color--ink, #1b1a1a);
	text-decoration: none;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.95rem;
	font-weight: 500;
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.15s ease;
}

.nav-flat::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--wp--preset--color--purple, #8f74ae);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.nav-flat:hover::after,
.nav-flat:focus-visible::after {
	transform: scaleX(1);
}


/* =========================================================================
 * v0.3.0 — Page-System: Hero · Section · Card · Offer · FAQ · CTA
 * Konsistente Page-Patterns über alle Sub-Pages (Marketplace, Angebote,
 * Was Gäste sagen, Sehenswürdigkeiten, Reisetipps, Veranstaltungen, FAQ)
 * ========================================================================= */

/* Page-Container */
.mc-page {
	font-family: var(--wp--preset--font-family--inter, system-ui, sans-serif);
	color: var(--wp--preset--color--ink);
	line-height: 1.65;
	font-size: 16px;
}

.mc-page > section + section {
	border-top: 1px solid rgba(0,0,0,0.04);
}

/* ════════════════════════════════════════════════════════════════════════
 * Hero (Phase-B2-Konsolidierung 2025)
 *
 * Drei Varianten:
 *   .mc-hero               Default mit Bild (Background) + dunklem Overlay,
 *                          weisser Text. Eyebrow + Title + Subtitle.
 *   .mc-hero--narrow       Legal/Compact ohne Bild, dunkler Text auf
 *                          Cream/Paper-Hintergrund.
 *   .mc-hero--cinematic    Front-Page full-screen — eigene Klasse, in
 *                          frontpage-mockup.css separat verwaltet.
 *
 * Hintergrund-Bild wird per Custom-Property gesetzt:
 *   <section class="mc-hero" style="background-image: var(--mc-media-faq-hero)">
 * oder via dedizierte Modifier-Klasse:
 *   <section class="mc-hero mc-hero--faq">
 *
 * Backwards-Compat: .mc-hero--unified, .mc-hero--medium, .mc-hero-inner,
 * .mc-hero-title, .mc-hero-subline aus älteren Theme-Phasen werden hier
 * gleich mit-aliased — Templates aus Phase A2 brauchen keine HTML-Änderung
 * an Klassen-Namen.
 * ════════════════════════════════════════════════════════════════════════
 */
.mc-hero {
	position: relative;
	width: 100%;
	min-height: var(--mc-hero-min-height);
	padding: var(--mc-hero-padding-top) 0 var(--mc-hero-padding-bottom);
	background-color: var(--ink, #2b2826);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	display: flex;
	align-items: flex-start;  /* Title-Position immer am padding-top verankert (konsistent ueber alle Hub-Pages) */
	box-sizing: border-box;
}
/* Dunkles Overlay für Text-Lesbarkeit über Bildern */
.mc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--mc-hero-overlay);
	z-index: 1;
	pointer-events: none;
}
.mc-hero-inner,
.mc-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--mc-content-max);
	margin-inline: auto;
	padding-inline: var(--mc-content-padding);
	box-sizing: border-box;
	text-align: left;
}
@media (min-width: 768px) {
	.mc-hero-inner,
	.mc-hero__inner { padding-inline: var(--mc-content-padding-md); }
}
@media (min-width: 1180px) {
	.mc-hero-inner,
	.mc-hero__inner { padding-inline: var(--mc-content-padding-lg); }
}

/* Direktes Hero unter `.mc-page`: gleiche horizontale Innenabstände wie auf
 * Hub-Pages ohne `.mc-page` (z. B. Zimmer-Übersicht). Absicherung gegen
 * Konflikte mit breiten `.mc-page section { padding }`-Regeln weiter oben. */
.mc-page > section.mc-hero .mc-hero-inner,
.mc-page > section.mc-hero .mc-hero__inner {
	padding-inline: var(--mc-content-padding);
}
@media (min-width: 768px) {
	.mc-page > section.mc-hero .mc-hero-inner,
	.mc-page > section.mc-hero .mc-hero__inner {
		padding-inline: var(--mc-content-padding-md);
	}
}
@media (min-width: 1180px) {
	.mc-page > section.mc-hero .mc-hero-inner,
	.mc-page > section.mc-hero .mc-hero__inner {
		padding-inline: var(--mc-content-padding-lg);
	}
}

.mc-hero-title,
.mc-hero__title {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0 0 1rem;
	color: #fff;
	max-width: 18ch;
}

.mc-hero-subline,
.mc-hero__subtitle {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', serif);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 300;
	font-style: italic;
	line-height: 1.5;
	color: rgba(255,255,255,0.92);
	max-width: 56ch;
	margin: 0;
}

/* Backwards-Compat-Variante --unified: alte Templates ohne Bild bleiben
 * gleich gestylt wie vorher (helle Bühne, keine Overlay). */
.mc-hero.mc-hero--unified {
	background-color: transparent;
	background-image: linear-gradient(180deg, rgba(143,116,174,0.04) 0%, rgba(255,255,255,0) 100%);
	color: var(--wp--preset--color--ink, #1b1a1a);
}
.mc-hero.mc-hero--unified::before { display: none; }
.mc-hero--unified .mc-hero-title,
.mc-hero--unified .mc-hero__title {
	color: var(--wp--preset--color--ink, #1b1a1a);
}
.mc-hero--unified .mc-hero-subline,
.mc-hero--unified .mc-hero__subtitle {
	color: var(--wp--preset--color--ink-soft, #4a4948);
	font-style: normal;
	font-family: var(--wp--preset--font-family--montserrat, sans-serif);
}

/* Variante --narrow für Legal-Pages: kompakter, kein Bild, dunkler Text. */
.mc-hero.mc-hero--narrow {
	/*
	 * Legal-Pages (Impressum / Datenschutz / AGB / Barrierefreiheits-
	 * erklaerung + EN-Pendants) brauchen mehr Atemluft zum Header als
	 * der Standard-Hero. Default --mc-hero-padding-top (clamp 64-120 px)
	 * stapelt den "RECHTLICHES"-Eyebrow + h1 zu eng unter die Site-Header-
	 * Bar — vor allem auf Mobile wirkt es gequetscht.
	 *
	 * Eigene Padding/Height-Werte:
	 *   - min-height:   220-300 px (statt 180-240) → mehr vertikaler Raum
	 *   - padding-top:  80-140 px  (statt 64-120) → klare Trennung zum Header
	 *   - padding-bot:  56-100 px  (statt 48-96)  → ausgewogenes unteres Whitespace
	 */
	min-height: clamp(220px, 26vw, 300px);
	padding-top: clamp(80px, 10vw, 140px);
	padding-bottom: clamp(56px, 8vw, 100px);
	background-color: var(--paper, #faf6ef);
	background-image: none !important;
	color: var(--ink, #2b2826);
	align-items: center;
}
.mc-hero.mc-hero--narrow::before { display: none; }
.mc-hero--narrow .mc-hero-inner,
.mc-hero--narrow .mc-hero__inner {
	max-width: var(--mc-content-narrow);
}
.mc-hero--narrow .mc-hero-title,
.mc-hero--narrow .mc-hero__title {
	color: var(--ink, #2b2826);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	max-width: none;
}
.mc-hero--narrow .mc-hero-subline,
.mc-hero--narrow .mc-hero__subtitle {
	color: var(--soft, #6F6C69);
}

/* Legacy-Variante für die alten Templates */
.mc-hero--medium {
	min-height: clamp(280px, 32vw, 380px);
}

/* Pro-Page Hero-Background-Modifier — setzt das passende Bild aus der
 * Mediathek über CSS-Variablen aus dem :root-Block. */
.mc-hero--faq          { background-image: var(--mc-media-faq-hero); }
.mc-hero--angebote     { background-image: var(--mc-media-angebote-hero); }
.mc-hero--marketplace  { background-image: var(--mc-media-marketplace-hero); }
.mc-hero--guests       { background-image: var(--mc-media-guests-hero); }
.mc-hero--kontakt      { background-image: var(--mc-media-kontakt-hero); }
.mc-hero--bpg          { background-image: var(--mc-media-bpg-hero); }
/* Fallback-Kette: fehlende/404-Stadtguide-JPEGs (nur in :root als url) → Agnes-/Außen-Motiv. */
.mc-hero--sights       { background-image: var(--mc-media-sights-hero, var(--mc-media-agnes-hero)); }
.mc-hero--travel       { background-image: var(--mc-media-travel-hero, var(--mc-media-offer-2)); }
.mc-hero--events       { background-image: var(--mc-media-events-hero, var(--mc-media-agnes-hero)); }
.mc-hero--fitness      { background-image: var(--mc-media-fitness-hero); }
.mc-hero--location     { background-image: var(--mc-media-location-hero); }

/* Hub-Page-Modifier — referenzieren CSS-Variablen aus inc/hotel-media.php
 * (gesetzt als Inline-Style auf .mc-page-root). Existierende Variablen:
 *   --mc-media-zo-hero        Standard-Zimmer (Zimmer-Übersicht)
 *   --mc-media-haus           Lobby (Das-Haus)
 *   --mc-media-agnes-hero     Belfort2016_10 (Agnesviertel-Guide)
 *   --mc-media-hero           Generic-Fallback (Frontpage)
 *   --mc-media-veedel-main    Fallback für Agnesviertel
 */
.mc-hero--zimmer    { background-image: var(--mc-media-zo-hero); }
.mc-hero--haus      { background-image: var(--mc-media-haus, var(--mc-media-hero)); }
.mc-hero--agnes     { background-image: var(--mc-media-agnes-hero, var(--mc-media-veedel-main)); }
.mc-hero--frontpage { background-image: var(--mc-media-hero, var(--mc-media-haus)); }

/* ────────────────────────────────────────────────────────────────────
 * .mc-hero--hub — gleiche prominente Höhe wie .mc-hero--cinematic
 * (540–720px via --mc-hero-min-height-hub), ohne Kenburns. Kombination
 * mit einem Bild-Modifier (z. B. .mc-hero--angebote, .mc-hero--fitness):
 * volle Breite, background-size: cover, Overlay ::before, Text über
 * .mc-hero-inner wie auf /angebote/.
 *
 * Verwendung: Zimmer-Hub, Angebote, Agnesviertel-Guide, FAQ sowie — mit
 * je eigenem Hintergrund-Modifier — Fitness & Wellness, Marketplace,
 * Was Gäste sagen, Sehenswürdigkeiten, Reisetipps, Veranstaltungen
 * (jeweils DE + EN-Templates).
 *
 * Das-Haus benutzt .mc-hero--cinematic (gleiche Höhe + Kenburns) —
 * --hub und --cinematic sind visuell auf gleicher Höhe, --cinematic
 * fügt nur die Animation hinzu.
 *
 * Vertikale Zentrierung: Der Default .mc-hero verankert den Text am
 * padding-top (align-items: flex-start) damit Title-Position konsistent
 * bleibt. Hub- und Cinematic-Pages sind aber deutlich höher (360-720px)
 * und der Text wirkt dort zu hoch oben "geklebt". Deshalb hier auf
 * align-items: center umstellen — der Inhalts-Block sitzt vertikal
 * mittig zwischen Header-Bottom und dem Scroll-Indikator unten,
 * gleichmäßig auf allen Hub-Pages (inkl. Angebote & genannter Unterseiten).
 * ────────────────────────────────────────────────────────────────── */
.mc-hero.mc-hero--hub,
.mc-hero.mc-hero--cinematic {
	align-items: center;
}
.mc-hero.mc-hero--hub {
	min-height: var(--mc-hero-min-height-hub);
}

/* Reserve etwas Platz unten, damit der absolute .mc-hero__scroll-Pfeil
 * (Position: bottom ~16-28px) nicht mit der zentrierten Subline
 * kollidiert — auf allen Hub-/Cinematic-Heroes. */
.mc-hero.mc-hero--hub,
.mc-hero.mc-hero--cinematic {
	padding-bottom: clamp(72px, 9vw, 120px);
}

/* Mobile-/Tablet-Polster für Scroll-Unterkante + Typo: zentral über
 * --mc-hero-hub-padding-bottom-mobile im @media (max-width: 768px)-Block,
 * nicht über :has() — sonst kann eine spätere .mc-hero.mc-hero--hub-Regel
 * die Reserve wieder auf ~80px zusammenstreichen (Bug auf /zimmer-apartments/). */

/* ────────────────────────────────────────────────────────────────────
 * USP-Streifen direkt unter dem Hero (Agnesviertel-Guide + Das Haus):
 * linke Eyebrow-Zeile, Serif-Zahlen/Zeile, Sans-Label — wie Guide-Referenz.
 * ──────────────────────────────────────────────────────────────────── */
.mc-agnesviertel .distance-strip,
.mc-das-haus .distance-strip {
	background: #fff;
	padding: 30px 60px;
	border-bottom: 1px solid var(--border);
}

.mc-agnesviertel .distance-inner,
.mc-das-haus .distance-inner {
	max-width: var(--mc-content-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto repeat(5, minmax(0, 1fr));
	gap: 0;
	align-items: center;
}

.mc-das-haus .distance-inner {
	grid-template-columns: auto repeat(6, minmax(0, 1fr));
}

.mc-agnesviertel .distance-label,
.mc-das-haus .distance-label {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--purple);
	padding-right: 28px;
	border-right: 1px solid rgba(167, 144, 196, 0.28);
	align-self: stretch;
	display: flex;
	align-items: center;
}

.mc-agnesviertel .distance-cell,
.mc-das-haus .distance-cell {
	box-sizing: border-box;
	text-align: center;
	padding: 0 16px;
	border-right: 1px solid rgba(167, 144, 196, 0.28);
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mc-agnesviertel .distance-cell:last-child,
.mc-das-haus .distance-cell:last-child {
	border-right: none;
}

.mc-agnesviertel .distance-time,
.mc-das-haus .distance-time {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', serif);
	font-style: italic;
	font-weight: 300;
	font-size: 22px;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 6px;
}

.mc-agnesviertel .distance-time strong,
.mc-das-haus .distance-time strong {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-style: normal;
	font-weight: 500;
	color: var(--purple);
}

.mc-agnesviertel .distance-name,
.mc-das-haus .distance-name {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 11px;
	font-weight: 500;
	color: var(--soft);
	letter-spacing: 0.04em;
	overflow-wrap: break-word;
}

/* ── Mobile (≤ 980 px): kompakte 2-Spalten-Zeile pro Cell ─────────────
 * Vorher: jede Zelle stapelte Time + Name -> ~50-60 px hoch -> Liste wurde
 * extrem lang (300+ px). Neu: Wert (Spectral-italic) links, Name rechts in
 * einer Zeile. Saubere vertikale Ausrichtung über `align-items: baseline`. */
@media (max-width: 980px) {
	.mc-agnesviertel .distance-strip,
	.mc-das-haus .distance-strip {
		padding: 18px 20px;
	}

	.mc-agnesviertel .distance-inner,
	.mc-das-haus .distance-inner {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.mc-agnesviertel .distance-label,
	.mc-das-haus .distance-label {
		padding-right: 0;
		padding-bottom: 8px;
		margin-bottom: 2px;
		border-right: none;
		align-self: auto;
		font-size: 9px;
		letter-spacing: 0.2em;
	}

	.mc-agnesviertel .distance-cell,
	.mc-das-haus .distance-cell {
		border-right: none;
		border-bottom: 1px solid var(--border-soft, #f2ece0);
		padding: 8px 0;
		text-align: left;
		align-self: auto;
		display: flex;
		flex-direction: row;
		align-items: baseline;
		gap: 12px;
		min-height: 30px;
	}

	.mc-agnesviertel .distance-cell:last-child,
	.mc-das-haus .distance-cell:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	/* Wert (z. B. „4★", „10 Min", „kostenfrei"): kompakte Spalte links
	 * mit konstanter Mindestbreite -> Names beginnen vertikal buendig. */
	.mc-agnesviertel .distance-time,
	.mc-das-haus .distance-time {
		flex: 0 0 auto;
		min-width: 88px;
		margin-bottom: 0;
		font-size: 17px;
		line-height: 1.1;
	}

	.mc-agnesviertel .distance-name,
	.mc-das-haus .distance-name {
		flex: 1 1 auto;
		font-size: 12px;
		color: var(--soft);
	}
}

@media (max-width: 480px) {
	.mc-agnesviertel .distance-strip,
	.mc-das-haus .distance-strip {
		padding: 16px 16px;
	}

	.mc-agnesviertel .distance-cell,
	.mc-das-haus .distance-cell {
		padding: 7px 0;
		gap: 10px;
		min-height: 28px;
	}

	.mc-agnesviertel .distance-time,
	.mc-das-haus .distance-time {
		min-width: 76px;
		font-size: 16px;
	}

	.mc-agnesviertel .distance-name,
	.mc-das-haus .distance-name {
		font-size: 11.5px;
	}
}

/* ────────────────────────────────────────────────────────────────────
 * Override: Page-Wrapper-Klassen mit eigenen h1-Regeln duerfen die
 * .mc-hero-title-Typografie NICHT ueberschreiben.
 *
 * Spezifitaets-Konflikt: .mc-zimmer-overview h1 { font-family: 'Mont',
 * font-weight: 400, color: var(--ink), line-height: 1.15 } in zimmer.css
 * (Spezifitaet 0,1,1) ueberschreibt .mc-hero-title { font-family: var(--mont),
 * font-weight: 500, color: #fff, line-height: 1.1, letter-spacing: -0.01em }
 * in brand.css (0,1,0). Resultat: zimmer-apartments h1 sah anders aus
 * (Weight 400 + line-height 1.15 + dunkle Color).
 *
 * Fix: Hoehere Spezifitaet via .<wrapper> .mc-hero h1 / .mc-hero-title
 * setzt ALLE typographischen Properties zurueck auf .mc-hero-title-Defaults.
 * ────────────────────────────────────────────────────────────────── */
.mc-zimmer-overview .mc-hero h1,
.mc-zimmer-overview .mc-hero .mc-hero-title,
.mc-agnesviertel    .mc-hero h1,
.mc-agnesviertel    .mc-hero .mc-hero-title,
.mc-das-haus        .mc-hero h1,
.mc-das-haus        .mc-hero .mc-hero-title,
.mc-frontpage       .mc-hero h1,
.mc-frontpage       .mc-hero .mc-hero-title {
	color: #fff;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0 0 1rem;
	max-width: 18ch;
}

/* Subtitle-Override aus den gleichen Gruenden (Wrapper definiert evtl.
 * eigenen Body-Text-Style, der in der Hero-Subline durchschlaegt). */
.mc-zimmer-overview .mc-hero .mc-hero-subline,
.mc-agnesviertel    .mc-hero .mc-hero-subline,
.mc-das-haus        .mc-hero .mc-hero-subline,
.mc-frontpage       .mc-hero .mc-hero-subline {
	color: rgba(255,255,255,0.92);
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', serif);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 300;
	font-style: italic;
	line-height: 1.5;
	max-width: 56ch;
	margin: 0;
}

/* Eyebrow innerhalb .mc-hero: lila Brand-Color (purple-hover #8D74AE).
 * Subtiler Text-Shadow fuer Lesbarkeit auf hellen Hero-Bildern (Bett mit
 * gelben Kissen etc.) — kombiniert mit dem 135deg-Overlay-Gradient
 * (links abgedunkelt) ist der lila Eyebrow ueberall lesbar. */
.mc-hero .mc-eyebrow,
.mc-hero h1 + .mc-eyebrow,
.mc-hero .mc-hero-inner > .mc-eyebrow {
	color: var(--wp--preset--color--purple-hover, #8D74AE);
	text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}
/* Auf paper-background (Legal-Pages) kein Text-Shadow noetig. */
.mc-hero--narrow .mc-eyebrow {
	color: var(--wp--preset--color--purple-hover, #8D74AE);
	text-shadow: none;
}

/* Hero-Eyebrow auf Mobile: lange Zeilen („Feel Local … · Veranstaltungen“)
 * umbrechen oft nach dem Mittelpunkt — als inline-block mit zu engem
 * Standard-line-height wirken die beiden Kappen-Zeilen wie übereinander.
 * Block + ausreichend line-height + etwas weniger Tracking. */
@media (max-width: 768px) {
	.mc-hero:not(.mc-hero--narrow) .mc-hero-inner > .mc-eyebrow {
		display: block;
		line-height: 1.52;
		max-width: 100%;
		margin-bottom: clamp(0.8rem, 2.8vw, 1.1rem);
		letter-spacing: 0.13em;
		font-size: 0.6875rem; /* 11px — bleibt lesbar, weniger Umbruchstress */
		word-spacing: 0.02em;
		text-wrap: balance; /* sinnvolle Zeilenaufteilung wo unterstützt */
	}
}

@media (max-width: 480px) {
	.mc-hero:not(.mc-hero--narrow) .mc-hero-inner > .mc-eyebrow {
		margin-bottom: clamp(1rem, 3vw, 1.35rem);
	}
}

@supports not (text-wrap: balance) {
	@media (max-width: 768px) {
		.mc-hero:not(.mc-hero--narrow) .mc-hero-inner > .mc-eyebrow {
			text-wrap: wrap;
		}
	}
}

/* ════════════════════════════════════════════════════════════════════════
 * Page-Start (Phase B3-Konsolidierung 2025)
 *
 * Drei Komponenten:
 *   .mc-page-start        Top-Spacer für Pages OHNE Hero (Zimmer-Detail).
 *                         Schafft definierten Abstand zwischen Header-Bottom
 *                         und erstem Content (z. B. Eyebrow oder Hero).
 *
 *   .mc-hero__extra       Optionaler Slot im .mc-hero-inner für Hub-Page-
 *                         spezifische Inhalte (Booking-Card, Stats-Grid,
 *                         USP-Chips). Sitzt unter Title/Subtitle.
 *
 *   .mc-hero__scroll      Optionaler Scroll-Indikator am unteren Hero-Rand
 *                         (z. B. Frontpage, Das-Haus).
 *
 *   .mc-hero--cinematic   Modifier für Hub-Pages mit Kenburns-Background-
 *                         Animation und größerer min-height. Erweitert
 *                         .mc-hero NICHT-destruktiv — alle Token-Werte
 *                         bleiben außer min-height.
 * ════════════════════════════════════════════════════════════════════════
 */
.mc-page-start {
	padding-top: var(--mc-page-start-spacing);
}

.mc-hero__extra {
	margin-top: var(--mc-hero-extra-gap);
}

/* .mc-hero__scroll — visuell identisch mit der Frontpage-Variante
 * (.hero-scroll in frontpage-mockup.css): Vertikales Stack aus
 *   1. Label "MEHR ENTDECKEN" (Caps, gespreizt)
 *   2. dünner pulsierender vertikaler Strich (.bar)
 *   3. größerer animierter Down-Chevron
 * Unterschied zur Frontpage: hier ist es ein <a> (klickbar zum Anker)
 * statt eines reinen <div>, daher pointer-events ENABLED. */
.mc-hero__scroll {
	position: absolute;
	bottom: clamp(20px, 2.5vw, 30px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,0.92);
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.38em;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: 0 2px 10px rgba(0,0,0,0.55);
	transition: color 0.3s var(--ease, ease-out), transform 0.3s var(--ease, ease-out);
}
.mc-hero__scroll:hover,
.mc-hero__scroll:focus-visible {
	color: #fff;
	transform: translateX(-50%) translateY(2px);
	outline: none;
}
.mc-hero__scroll .bar {
	width: 1px;
	height: 38px;
	background: rgba(255,255,255,0.7);
	animation: mc-hero-scroll-bar-pulse 2s ease-in-out infinite;
}
/* Sync mit .bar — gleiche 2s-Animation: der Pfeil "tropft" sanft nach
 * unten und kommt zurück, der Strich pulsiert parallel. */
.mc-hero__scroll svg {
	width: 22px;
	height: 22px;
	color: rgba(255,255,255,0.95);
	filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5));
	stroke-width: 1.8;
	margin-top: 4px;
	animation: mc-hero-scroll-arrow-pulse 2s ease-in-out infinite;
}

/* Schmale Viewports: weniger vertikaler Fußabdruck + optional zweizeiliges
 * Label ohne überbreiten Tracking-Wahn — weniger Kollision mit Subline. */
@media (max-width: 480px) {
	.mc-hero__scroll {
		bottom: clamp(12px, 3.5vw, 22px);
		max-width: min(92vw, 280px);
		font-size: 10px;
		letter-spacing: 0.24em;
		line-height: 1.35;
		text-align: center;
		gap: 8px;
		hyphens: none;
	}

	.mc-hero__scroll .bar {
		height: 28px;
	}

	.mc-hero__scroll svg {
		width: 20px;
		height: 20px;
		margin-top: 2px;
	}
}
@keyframes mc-hero-scroll-bar-pulse {
	0%, 100% { transform: scaleY(1);   opacity: 0.55; }
	50%      { transform: scaleY(1.4); opacity: 1; }
}
@keyframes mc-hero-scroll-arrow-pulse {
	0%, 100% { transform: translateY(0);   opacity: 0.75; }
	50%      { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.mc-hero__scroll .bar { animation: none; opacity: 0.8; }
	.mc-hero__scroll svg  { animation: none; opacity: 1; }
}
/* Auf sehr flachen Viewports (z. B. Mobile-Landscape) ausblenden,
 * damit der Indikator nicht den Hero-Inhalt überdeckt. */
@media (max-height: 600px) {
	.mc-hero__scroll { display: none; }
}

/* Cinematic-Variante: Kenburns + groesserer Hero (Front-Page, Das-Haus).
 *
 * Architektur:
 *   1. Section .mc-hero--cinematic.mc-hero--haus traegt das Bild via
 *      Modifier-Klasse (.mc-hero--haus) — sichtbar als statischer
 *      Background.
 *   2. ::after-Pseudo legt sich darueber mit dem GLEICHEN Bild und
 *      animiert via Kenburns-Skalierung — visuell "ueberlagert" das
 *      ::after die Section, sodass nur das animierte Bild zu sehen ist.
 *   3. ::before-Overlay legt sich noch ueber das ::after fuer
 *      Lesbarkeit.
 *
 * VORHER war hier ein Bug: .mc-hero--cinematic { background-image: none
 * !important } loeschte das Bild auf der Section. ::after { background-
 * image: inherit } erbte dann von der Parent → auch keins. Resultat:
 * /das-haus zeigte nur dunklen Hintergrund.
 *
 * Hero-Höhe wie .mc-hero--hub über --mc-hero-min-height-hub (Desktop
 * clamp(540px, 60vw, 720px); unter ≤767px kompakter).
 */
.mc-hero.mc-hero--cinematic {
	min-height: var(--mc-hero-min-height-hub);
}
.mc-hero--cinematic::after {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	animation: mc-hero-kenburns 24s ease-out forwards;
	pointer-events: none;
}
/* Pro Modifier explizit das Bild fuer das ::after setzen — nicht via
 * `inherit` (zu fragile), sondern direkt aus den --mc-media-* Tokens. */
.mc-hero--cinematic.mc-hero--haus::after {
	background-image: var(--mc-media-haus, var(--mc-media-hero));
}
.mc-hero--cinematic.mc-hero--frontpage::after {
	background-image: var(--mc-media-hero, var(--mc-media-haus));
}
/* Falls Inline-Style oder andere Modifier das Bild setzen, ::after erbt. */
.mc-hero--cinematic[style*="background-image"]::after {
	background-image: inherit;
}
@keyframes mc-hero-kenburns {
	0%   { transform: scale(1.06); }
	100% { transform: scale(1.0); }
}
@media (prefers-reduced-motion: reduce) {
	.mc-hero--cinematic::after { animation: none; }
}

/* Eyebrow (—  TEXT IN CAPS) */
.mc-eyebrow {
	display: inline-block;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--purple, #8f74ae);
	margin-bottom: 1rem;
}

.mc-eyebrow--inverse {
	color: rgba(255,255,255,0.85);
}

.mc-eyebrow--center {
	display: block;
	text-align: center;
}

/* Section — vertikales/horizontales Padding via Token (Phase B4).
 * Vorher: hardcoded 4rem 1.5rem (= 64px / 24px), nicht responsive. */
.mc-section {
	padding-block: var(--mc-section-padding-y);
	padding-inline: var(--mc-section-padding-x);
}

.mc-section--cream {
	background: var(--wp--preset--color--cream, #f9f6f0);
}

.mc-section--ink {
	background: var(--wp--preset--color--ink, #1b1a1a);
	color: white;
}

/* ════════════════════════════════════════════════════════════════════════
 * Globale Content-Container (Phase-B-Konsolidierung 2025)
 *
 * Wann welche Variante:
 *   <div class="mc-container">                       Standard-Sektion (1280)
 *   <div class="mc-container mc-container--narrow">  Legal/FAQ/Long-Text (760)
 *   <div class="mc-container mc-container--wide">    Hero, Header, Marketing (1440)
 *   <section class="mc-container mc-container--bleed"> Backgrounds, full-bleed
 *
 * Padding-Stack (responsive, Token-basiert):
 *   Mobile  (default): --mc-content-padding     = 24 px
 *   Tablet  (≥768 px): --mc-content-padding-md  = 32 px
 *   Desktop (≥1180px): --mc-content-padding-lg  = 48 px
 *
 * Backwards-Compat: .mc-section-inner und .mc-section-inner--narrow sind
 * Aliase für .mc-container und .mc-container--narrow — Templates aus
 * früheren Phasen funktionieren ohne HTML-Edit weiter.
 * ════════════════════════════════════════════════════════════════════════
 */
.mc-container,
.mc-section-inner {
	width: 100%;
	max-width: var(--mc-content-max);
	margin-inline: auto;
	padding-inline: var(--mc-content-padding);
	box-sizing: border-box;
}

.mc-container--narrow,
.mc-section-inner--narrow {
	max-width: var(--mc-content-narrow);
}

.mc-container--wide {
	max-width: var(--mc-content-wide);
}

.mc-container--bleed {
	max-width: none;
	width: 100%;
}

@media (min-width: 768px) {
	.mc-container,
	.mc-section-inner {
		padding-inline: var(--mc-content-padding-md);
	}
}

@media (min-width: 1180px) {
	.mc-container,
	.mc-section-inner {
		padding-inline: var(--mc-content-padding-lg);
	}
}

.mc-section-title {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -0.005em;
	margin: 0 0 1rem;
}

.mc-section-title--center {
	text-align: center;
}

.mc-section-title--inverse {
	color: white;
}

.mc-section-lead {
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	max-width: 720px;
	margin: 0 0 2rem;
}

.mc-section-lead--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.mc-section-lead--inverse {
	color: rgba(255,255,255,0.85);
}

/* Grids */
.mc-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.mc-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

/* Flat Cards */
.mc-card-flat {
	background: white;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 2px;
	padding: 1.75rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mc-card-flat:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.mc-card-flat .mc-card-icon {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.mc-card-flat h3 {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 1.15rem;
	font-weight: 500;
	margin: 0 0 0.6rem;
	color: var(--wp--preset--color--ink, #1b1a1a);
}

.mc-card-flat p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	margin: 0;
}

.mc-card-flat .mc-eyebrow {
	margin-bottom: 0.5rem;
	font-size: 0.7rem;
}

.mc-card-flat .mc-link-arrow {
	display: inline-block;
	margin-top: 1rem;
}

/* Card-Flat Modifier: bordered (kräftigerer Rand für Highlight-Cards) */
.mc-card-flat--bordered {
	border: 1px solid rgba(0,0,0,0.12);
	padding: 2rem;
}

.mc-card-flat--bordered:hover {
	border-color: var(--wp--preset--color--purple, #4d3a87);
	box-shadow: 0 8px 24px rgba(77, 58, 135, 0.08);
}

/* Card-Meta: Klein-Text-Zeile zwischen Titel und Beschreibung */
.mc-card-meta {
	font-size: 0.78rem;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--ink-soft, #6e6c6b);
	margin: -0.3rem 0 0.9rem !important;
	text-transform: none;
}

/* Grid-3 Modifier: large gap (für breite Highlight-Grids) */
.mc-grid-3--gap-large {
	gap: 1.75rem;
}

@media (min-width: 980px) {
	.mc-grid-3--gap-large {
		gap: 2rem;
	}
}

/* Steps */
.mc-steps {
	list-style: none;
	margin: 2.5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.mc-steps > li {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.mc-step-num {
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--wp--preset--color--purple, #8f74ae);
	color: white;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 1.1rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mc-step-body h3 {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 1.15rem;
	font-weight: 500;
	margin: 0 0 0.4rem;
}

.mc-step-body p {
	margin: 0;
	color: var(--wp--preset--color--ink-soft, #4a4948);
}

/* Trust-Score-Grid (Was Gäste sagen) */
.mc-trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.mc-trust-card {
	background: white;
	padding: 1.75rem 1.25rem;
	border-radius: 2px;
	border: 1px solid rgba(0,0,0,0.06);
	text-align: center;
}

.mc-trust-platform {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wp--preset--color--purple-hover, #6f5b94);
	margin-bottom: 0.5rem;
}

.mc-trust-score {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 2rem;
	font-weight: 500;
	color: var(--wp--preset--color--ink, #1b1a1a);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.mc-trust-count {
	font-size: 0.82rem;
	color: var(--wp--preset--color--ash, #6b6967);
}

.mc-trustyou-embed {
	margin-top: 2rem;
	background: white;
	border-radius: 2px;
	border: 1px solid rgba(0,0,0,0.06);
	padding: 1rem;
}

/* Awards */
.mc-awards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.mc-award-card {
	background: white;
	padding: 2rem 1.5rem;
	border-radius: 2px;
	border: 1px solid rgba(0,0,0,0.06);
	text-align: center;
}

.mc-award-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.mc-award-card h3 {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 1.05rem;
	font-weight: 500;
	margin: 0 0 0.6rem;
}

.mc-award-card p {
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	margin: 0;
}

/* Offer-Hero (großes Angebot prominent) */
.mc-offer-hero {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2.5rem;
	align-items: center;
	background: linear-gradient(135deg, rgba(143,116,174,0.06) 0%, rgba(143,116,174,0.02) 100%);
	border: 1px solid rgba(143,116,174,0.18);
	border-radius: 2px;
	padding: 2.5rem;
}

.mc-offer-hero-content { min-width: 0; }

.mc-offer-hero-title {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 500;
	line-height: 1.2;
	margin: 0.5rem 0 1rem;
	letter-spacing: -0.01em;
}

.mc-offer-hero-desc {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	margin: 0 0 1.5rem;
}

.mc-offer-hero-perks {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
}

.mc-offer-hero-perks li {
	padding: 0.3rem 0;
	font-size: 0.95rem;
	color: var(--wp--preset--color--ink, #1b1a1a);
}

.mc-offer-hero-badge {
	flex-shrink: 0;
	background: var(--wp--preset--color--ink, #1b1a1a);
	color: white;
	padding: 1.5rem 2rem;
	border-radius: 2px;
	text-align: center;
	min-width: 130px;
}

.mc-badge-pct {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1;
	color: var(--wp--preset--color--purple, #b89cd6);
}

.mc-badge-emoji {
	font-size: 2.5rem;
	line-height: 1;
}

.mc-badge-label {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-top: 0.5rem;
}

/* Offer-Card (horizontal) */
.mc-offer-card {
	background: white;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 2px;
	overflow: hidden;
}

.mc-offer-card--horizontal {
	display: grid;
	grid-template-columns: 240px 1fr;
}

.mc-offer-card--reverse {
	grid-template-columns: 1fr 240px;
}

.mc-offer-card-media {
	background: linear-gradient(135deg, rgba(143,116,174,0.12) 0%, rgba(143,116,174,0.04) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
}

.mc-offer-card-emoji {
	font-size: 4rem;
	line-height: 1;
}

.mc-offer-card-body {
	padding: 2.25rem 2rem;
}

.mc-offer-card-body h2 {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 1.5rem;
	font-weight: 500;
	margin: 0.5rem 0 1rem;
}

.mc-offer-card-body p {
	font-size: 0.98rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	margin: 0 0 1.25rem;
}

.mc-offer-perks-inline {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.25rem;
}

.mc-offer-perks-inline li {
	font-size: 0.88rem;
	color: var(--wp--preset--color--ink, #1b1a1a);
}

/* Perks (3-Spalten in Bestpreis-Garantie) */
.mc-perk {
	padding: 1rem 0;
}

.mc-perk-num {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	color: var(--wp--preset--color--purple, #8f74ae);
	margin-bottom: 0.6rem;
}

.mc-perk h3 {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 1.1rem;
	font-weight: 500;
	margin: 0 0 0.5rem;
}

.mc-perk p {
	font-size: 0.95rem;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	margin: 0;
}

/* Buttons */
.mc-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	border-radius: 2px;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
}

.mc-button--primary {
	background: var(--wp--preset--color--purple, #8f74ae);
	color: white;
}

.mc-button--primary:hover {
	background: var(--wp--preset--color--purple-hover, #6f5b94);
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(143,116,174,0.3);
}

.mc-button--ghost {
	background: transparent;
	color: var(--wp--preset--color--ink, #1b1a1a);
	border: 1px solid var(--wp--preset--color--ink, #1b1a1a);
}

.mc-button--ghost:hover {
	background: var(--wp--preset--color--ink, #1b1a1a);
	color: white;
}

/* Link with arrow */
.mc-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--wp--preset--color--purple, #8f74ae);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.15s ease, gap 0.2s ease;
}

.mc-link-arrow:hover {
	color: var(--wp--preset--color--purple-hover, #6f5b94);
	gap: 0.6rem;
}

/* CTA-Block */
.mc-cta-block {
	text-align: center;
}

.mc-cta-block h2 {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 500;
	margin: 0.5rem 0 1.5rem;
}

.mc-cta-block .mc-button {
	margin-top: 0.5rem;
}

.mc-cta-trust {
	margin-top: 1rem;
	font-size: 0.85rem;
	color: var(--wp--preset--color--ash, #6b6967);
}

.mc-cta-pair {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1.5rem;
}

.mc-cta-inline {
	margin-top: 1.5rem;
	text-align: center;
}

/* FAQ-Anker-Hinweis */
.mc-faq-link {
	text-align: center;
	font-size: 0.95rem;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	margin: 0;
}

.mc-faq-link a {
	color: var(--wp--preset--color--purple, #8f74ae);
	font-weight: 500;
	text-decoration: none;
}

.mc-faq-link a:hover {
	text-decoration: underline;
}

/* FAQ-Page-spezifisch */
.mc-faq-page {
	font-family: var(--wp--preset--font-family--inter, system-ui, sans-serif);
	color: var(--wp--preset--color--ink);
}

/* ════════════════════════════════════════════════════════════════════
 * FAQ-Kategorie-Navigation — Premium Card-Tiles (v0.4)
 *
 * Architektur:
 *   .mc-faq-nav         CSS-Grid, auto-fit mit minmax(160px, 1fr).
 *                       Centered max-width damit Tile-Reihen mittig sitzen.
 *   .mc-faq-nav-item    Card mit Icon-top + Label-bottom. Brand-konformer
 *                       Cream-Hintergrund, Mercure-Purple Hover-Halo,
 *                       sanfte Schatten, lila Akzent-Bar links beim Hover.
 *   .mc-faq-nav-icon    Kreisrunder Purple-Soft Halo, Icon zentriert.
 *
 * Active-State (:target/:focus-within) markiert den aktuell angesteuerten
 * Tile dezent — purple Akzent-Bar oben + leichte Hervorhebung.
 * ════════════════════════════════════════════════════════════════════ */
.mc-faq-nav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
	max-width: 1040px;
	margin: 28px auto 0;
}

.mc-faq-nav-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px;
	min-height: 96px;
	padding: 14px 14px 12px;
	background: #fff;
	border: 1px solid var(--wp--preset--color--border, #EAE4D8);
	border-radius: 5px;
	text-decoration: none;
	color: var(--wp--preset--color--ink, #2B2826);
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.005em;
	line-height: 1.3;
	overflow: hidden;
	box-shadow:
		inset 0 2px 0 0 rgba(167, 144, 196, 0.18),
		0 4px 14px rgba(43, 40, 38, 0.035);
	transition:
		transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
		border-color 0.25s ease,
		box-shadow 0.28s ease,
		background 0.25s ease;
}

/* Subtiles Lila-Glow im Hintergrund (decorative wash) */
.mc-faq-nav-item::before {
	content: '';
	position: absolute;
	inset: auto -20% -60% auto;
	width: 120px;
	height: 120px;
	background: radial-gradient(closest-side, rgba(167, 144, 196, 0.18), transparent 70%);
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
	pointer-events: none;
}

.mc-faq-nav-item:hover,
.mc-faq-nav-item:focus-visible {
	transform: translateY(-2px);
	border-color: var(--wp--preset--color--purple, #A790C4);
	background: linear-gradient(180deg, #fff 0%, #faf6ef 100%);
	box-shadow:
		inset 0 2px 0 0 var(--wp--preset--color--purple, #A790C4),
		0 10px 26px rgba(141, 116, 174, 0.15);
	outline: none;
}

.mc-faq-nav-item:hover::before,
.mc-faq-nav-item:focus-visible::before {
	opacity: 1;
	transform: scale(1);
}

.mc-faq-nav-item:active {
	transform: translateY(-1px);
}

/* Active-State: Tile dessen Ziel via :target gerade angesprungen wurde
 * (passiert nach Anker-Klick — markiert sanft welche Section gerade aktiv ist). */
.mc-faq-section:target ~ .mc-faq-nav .mc-faq-nav-item,
.mc-faq-nav-item:focus {
	outline: none;
}

/* Icon-Halo */
.mc-faq-nav-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--wp--preset--color--purple-soft, #efe8f5);
	color: var(--wp--preset--color--purple, #8f74ae);
	transition: background 0.25s ease, color 0.25s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
	flex: 0 0 auto;
}

.mc-faq-nav-item:hover .mc-faq-nav-icon,
.mc-faq-nav-item:focus-visible .mc-faq-nav-icon {
	background: var(--wp--preset--color--purple, #A790C4);
	color: #fff;
	transform: scale(1.06) rotate(-2deg);
}

.mc-faq-nav-icon .mc-icon,
.mc-faq-nav-icon svg {
	width: 17px;
	height: 17px;
}

/* Label */
.mc-faq-nav-label {
	display: block;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: -0.005em;
	color: inherit;
	max-width: 18ch;
	line-height: 1.3;
	transition: color 0.25s ease;
}

/* Eyebrow in FAQ-Inhaltsbloecken — nicht im dunklen Hero (.mc-hero-inner > .mc-eyebrow),
 * sonst greifen inline-flex/Gap und die Hub-Typografie bricht. */
.mc-faq-page .mc-section .mc-eyebrow--center,
.mc-faq-page .mc-section .mc-eyebrow,
.mc-faq-page .mc-faq-section .mc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--wp--preset--color--purple, #A790C4);
}

.mc-faq-section {
	scroll-margin-top: 100px;
}

.mc-faq-section--alt {
	background:
		linear-gradient(180deg, rgba(167, 144, 196, 0.04) 0%, transparent 38%),
		var(--wp--preset--color--cream, #f7f1e6);
}

/* Section-Headline-Polish nur fuer FAQ-Page (Eyebrow + h2-Titel) */
.mc-faq-page .mc-faq-section .mc-section-title {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-weight: 400;
	font-size: clamp(24px, 2.6vw, 32px);
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--ink, #2B2826);
	margin: 8px 0 28px;
	max-width: 38ch;
}

/* Mercure Brand-Bar oben in jeder FAQ-Section (subtil) */
.mc-faq-page .mc-faq-section {
	position: relative;
	isolation: isolate;
}

.mc-faq-page .mc-faq-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: clamp(80px, 18vw, 160px);
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(167, 144, 196, 0.45) 50%, transparent 100%);
	opacity: 0.7;
	pointer-events: none;
}

.mc-faq-page .mc-faq-section:first-of-type::before {
	display: none;
}

.mc-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
}

/* ════════════════════════════════════════════════════════════════════
 * FAQ-Component (v0.7 — vereinheitlicht)
 *
 * Bringt .mc-faq-item visuell auf den exakten Stand des Frontpage-FAQs
 * (.faq-item in frontpage-mockup.css). Damit haben:
 *   - Frontpage (.faq-item)
 *   - FAQ-Page, Bestpreisgarantie, Lage-Anfahrt, Fitness-Wellness (.mc-faq-item)
 *   - Detail-Seiten Standard/Superior/Apartment (.zd-faq-item — siehe
 *     zimmer-detail.css)
 * dasselbe Aufklapp-Design: Card mit Plus-Button rechts, der beim Öffnen
 * 45° rotiert und in Lila gefuellt wird; sanfter Box-Shadow auf [open].
 * ════════════════════════════════════════════════════════════════════ */
.mc-faq-item {
	border: 1px solid var(--wp--preset--color--border, #EAE4D8);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.55);
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mc-faq-item:not([open]):hover {
	border-color: rgba(167, 144, 196, 0.45);
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 4px 20px rgba(43, 40, 38, 0.04);
}

.mc-faq-item[open] {
	background: #fff;
	border-color: rgba(167, 144, 196, 0.35);
	box-shadow: 0 12px 40px rgba(43, 40, 38, 0.07), 0 2px 8px rgba(43, 40, 38, 0.04);
}

.mc-faq-item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 22px 24px;
	cursor: pointer;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 16px;
	font-weight: 500;
	color: var(--wp--preset--color--ink, #2B2826);
	list-style: none;
	transition: color 0.25s ease;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

.mc-faq-item summary::-webkit-details-marker { display: none; }
.mc-faq-item summary::marker { content: ''; }

.mc-faq-item summary:hover {
	color: var(--wp--preset--color--purple, #A790C4);
}
.mc-faq-item summary:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 2px var(--wp--preset--color--purple, #A790C4);
	border-radius: 5px;
}

/* Plus-Button rechts in der Summary — visuell identisch zum
 * Frontpage .faq-plus (32x32, gerundet, rotiert beim Open). */
.mc-faq-item summary::after {
	content: '+';
	width: 32px;
	height: 32px;
	border: 1px solid var(--wp--preset--color--border, #EAE4D8);
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	color: var(--wp--preset--color--soft, #6F6C69);
	background: rgba(255, 255, 255, 0.8);
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s ease;
	margin: 0;
}

.mc-faq-item[open] summary::after {
	background: var(--wp--preset--color--purple, #A790C4);
	border-color: var(--wp--preset--color--purple, #A790C4);
	color: #fff;
	transform: rotate(45deg);
}

.mc-faq-answer {
	padding: 18px 24px 26px;
	border-top: 1px solid var(--wp--preset--color--border-soft, #F2ECE0);
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', serif);
	font-size: 16px;
	line-height: 1.72;
	color: var(--wp--preset--color--soft, #6F6C69);
}

.mc-faq-item:not([open]) .mc-faq-answer {
	padding: 0;
	border-top: none;
}

.mc-faq-answer p {
	margin: 0 0 0.85rem;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.mc-faq-answer p:last-child {
	margin-bottom: 0;
}

.mc-faq-answer strong {
	color: var(--wp--preset--color--ink, #2B2826);
	font-weight: 500;
}

.mc-faq-answer a {
	color: var(--wp--preset--color--purple, #A790C4);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	transition: color 0.2s ease;
}

.mc-faq-answer a:hover {
	color: var(--wp--preset--color--purple-hover, #8D74AE);
}

/* Mobile: kompaktere Padding + leicht kleinere Schrift, identisch zum
 * Frontpage-Mobile-Override. */
@media (max-width: 720px) {
	.mc-faq-item summary {
		padding: 18px 16px;
		font-size: 15px;
		gap: 14px;
	}
	.mc-faq-answer,
	.mc-faq-item .mc-faq-a {
		padding: 14px 16px 22px;
		font-size: 15px;
	}
}

/* ════════════════════════════════════════════════════════════════════
 * Legacy-Markup-Compat (v0.7) — page-fitness-wellness.html,
 * page-lage-anfahrt.html, page-en-fitness-wellness.html,
 * page-en-location.html nutzen ein aelteres Schema mit:
 *   <summary class="mc-faq-q">
 *     <span class="mc-faq-q-text">Frage</span>
 *     <span class="mc-faq-q-icon"><svg chevron/></span>  ← inline chevron
 *   </summary>
 *   <div class="mc-faq-a">Antwort</div>
 *
 * Ohne Anpassung wuerde die neue ::after-Plus-Pille NEBEN dem alten
 * Chevron erscheinen. Hier blenden wir den alten Chevron aus und geben
 * .mc-faq-a den gleichen Card-Antwort-Stil wie .mc-faq-answer.
 * ════════════════════════════════════════════════════════════════════ */

/* 1. Den alten inline-Chevron komplett ausblenden — die ::after-Plus-Pille
 *    aus der unified FAQ-Component uebernimmt jetzt seine Rolle. */
.mc-faq-item .mc-faq-q-icon {
	display: none !important;
}

/* 2. .mc-faq-q-text war ein Inline-Wrapper um den Frage-Text — die
 *    summary-Styles (Font, Color, Padding) gelten ohnehin durch
 *    Vererbung; nur sicherstellen, dass es flex-1 nimmt damit das
 *    ::after-Pluszeichen sauber rechts sitzt. */
.mc-faq-item .mc-faq-q-text {
	flex: 1 1 auto;
	min-width: 0;
}

/* 3. .mc-faq-a (Legacy-Antwort-Container) bekommt identischen Stil
 *    wie .mc-faq-answer aus der unified Component. Wir ueberschreiben
 *    die alten .mc-faq-a-Regeln (Spectral 1rem ohne Border-Top) gezielt
 *    nur INNERHALB von .mc-faq-item. */
.mc-faq-item .mc-faq-a {
	margin: 0;
	padding: 18px 24px 26px;
	border-top: 1px solid var(--wp--preset--color--border-soft, #F2ECE0);
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', serif);
	font-size: 16px;
	line-height: 1.72;
	color: var(--wp--preset--color--soft, #6F6C69);
}

.mc-faq-item:not([open]) .mc-faq-a {
	padding: 0;
	border-top: none;
}

.mc-faq-item .mc-faq-a p {
	margin: 0 0 0.85rem;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.mc-faq-item .mc-faq-a p:last-child {
	margin-bottom: 0;
}

.mc-faq-item .mc-faq-a strong {
	color: var(--wp--preset--color--ink, #2B2826);
	font-weight: 500;
}

.mc-faq-item .mc-faq-a a {
	color: var(--wp--preset--color--purple, #A790C4);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	transition: color 0.2s ease;
}

.mc-faq-item .mc-faq-a a:hover {
	color: var(--wp--preset--color--purple-hover, #8D74AE);
}

/* Responsive */
@media (max-width: 768px) {
	.mc-section { padding: 3rem 1rem; }
	/* Hero auf Mobile: horizontales Padding hier; vertikal bei Hub/Cinematic
	 * kompaktes padding-top über --mc-hero-hub-padding-top-compact (≤980px),
	 * damit nicht body-Header-Offset + volles --mc-hero-padding-top doppelt wirkt. */
	.mc-hero {
		padding-top: var(--mc-hero-padding-top);
		padding-bottom: var(--mc-hero-padding-bottom);
		padding-inline: 0;
	}
	/*
	 * Hub + Cinematic (Fast alle mit .mc-hero__scroll): gleiche mobile Lay-
	 * out-Linie — Text oben verankert, grosszügiges Padding unten + Innen-
	 * polster im Innern, damit der Scroll-Stack nie in die Subline ragt.
	 * Werte: --mc-hero-hub-padding-bottom-mobile (420px-Breakpoint schärft per :root).
	 */
	.mc-hero.mc-hero--hub,
	.mc-hero.mc-hero--cinematic {
		align-items: flex-start;
		padding-bottom: var(--mc-hero-hub-padding-bottom-mobile);
	}

	.mc-hero.mc-hero--hub .mc-hero-inner,
	.mc-hero.mc-hero--cinematic .mc-hero-inner {
		padding-bottom: var(--mc-hero-hub-inner-padding-bottom-mobile);
	}

	.mc-hero.mc-hero--hub .mc-hero-subline,
	.mc-hero.mc-hero--cinematic .mc-hero-subline {
		line-height: 1.58;
		text-wrap: balance;
	}
	/* Auf sehr schmalen Viewports wird .mc-hero-title { max-width: 18ch }
	 * sonst zu eng — Titel wie "Aktuelle Angebote" brauchen Raum für
	 * natürliche Zeilenumbrüche. */
	.mc-hero-title,
	.mc-hero__title {
		max-width: 100%;
	}
	.mc-offer-hero {
		grid-template-columns: 1fr;
		padding: 1.75rem;
		gap: 1.5rem;
	}
	.mc-offer-hero-badge {
		justify-self: start;
	}
	.mc-offer-card--horizontal,
	.mc-offer-card--reverse {
		grid-template-columns: 1fr;
	}
	.mc-offer-card--reverse .mc-offer-card-media {
		grid-row: 1;
	}
	.mc-offer-card-media {
		min-height: 160px;
	}
	.mc-faq-nav {
		grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
		gap: 8px;
		margin-top: 20px;
	}
	.mc-faq-nav-item {
		min-height: 86px;
		padding: 12px 12px 10px;
		gap: 8px;
		font-size: 12px;
	}
	.mc-faq-nav-icon {
		width: 30px;
		height: 30px;
	}
	.mc-faq-nav-icon .mc-icon,
	.mc-faq-nav-icon svg {
		width: 15px;
		height: 15px;
	}
	.mc-faq-nav-label {
		font-size: 12px;
		max-width: none;
	}
}

/* ── Phone (≤ 540 px): horizontale Pill-Tiles statt grosse Stacks ───
 * Layout-Switch: Icon-links + Label-rechts in einer Zeile, damit pro
 * Tile nur ~52 px Hoehe statt 86 px noetig sind. 2 Spalten Grid bleibt. */
@media (max-width: 540px) {
	.mc-faq-nav {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		margin-top: 18px;
	}
	.mc-faq-nav-item {
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		min-height: 0;
		padding: 10px 12px;
		gap: 10px;
		border-radius: 4px;
	}
	.mc-faq-nav-icon {
		width: 28px;
		height: 28px;
	}
	.mc-faq-nav-icon .mc-icon,
	.mc-faq-nav-icon svg {
		width: 14px;
		height: 14px;
	}
	.mc-faq-nav-label {
		font-size: 12px;
		line-height: 1.25;
	}
	/* Mobile: weniger aggressiver Lift damit es bei Touch nicht "wackelt" */
	.mc-faq-nav-item:hover,
	.mc-faq-nav-item:focus-visible {
		transform: none;
	}
}

/* ── Sehr schmale Phones (≤ 380 px): 1 Spalte ─────────────────────── */
@media (max-width: 380px) {
	.mc-faq-nav {
		grid-template-columns: 1fr;
		gap: 6px;
	}
}


/* =========================================================================
 * v0.3.0 — Stadtguide-Card-Grid (für /agnesviertel-guide/sub-pages)
 * ========================================================================= */

.mc-stadtguide-grid {
	margin-top: 2rem;
}

.mc-stadtguide-card {
	background: white;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 2px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mc-stadtguide-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mc-stadtguide-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.mc-stadtguide-card-media {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, rgba(143,116,174,0.12) 0%, rgba(143,116,174,0.04) 100%);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mc-stadtguide-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.mc-stadtguide-card:hover .mc-stadtguide-card-media img {
	transform: scale(1.04);
}

.mc-stadtguide-card-media--placeholder span {
	font-size: 3rem;
	opacity: 0.4;
}

.mc-stadtguide-card-body {
	padding: 1.5rem;
}

.mc-stadtguide-card-body .mc-eyebrow {
	margin-bottom: 0.6rem;
	font-size: 0.7rem;
}

.mc-stadtguide-card-title {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 0.6rem;
	color: var(--wp--preset--color--ink, #1b1a1a);
}

.mc-stadtguide-card-excerpt {
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	margin: 0 0 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mc-stadtguide-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.82rem;
	color: var(--wp--preset--color--purple, #8f74ae);
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-weight: 500;
	letter-spacing: 0.04em;
}

.mc-stadtguide-card-arrow {
	transition: transform 0.2s ease;
}

.mc-stadtguide-card:hover .mc-stadtguide-card-arrow {
	transform: translateX(4px);
}

.mc-stadtguide-empty {
	text-align: center;
	padding: 3rem 1.5rem;
	background: rgba(143,116,174,0.04);
	border-radius: 2px;
	margin-top: 2rem;
}

.mc-stadtguide-empty p {
	margin: 0;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	font-size: 0.95rem;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
}


/* =========================================================================
 * v0.3.1 — Kontakt-Page Helper
 * ========================================================================= */
.mc-contact-email {
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 1.05rem;
	font-weight: 500;
	margin: 1rem 0 0.5rem;
}

.mc-contact-email a {
	color: var(--wp--preset--color--purple, #8f74ae);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.mc-contact-email a:hover {
	color: var(--wp--preset--color--purple-hover, #6f5b94);
}


/* =========================================================================
 * v0.3.4 — Unified Hero (mc-hero--unified)
 *
 * Eine Hero-Variante für alle 14 v0.3.x-Sub-Pages. Cream-Hintergrund mit
 * dezentem Mercure-Wing-SVG als Akzent (rechts oben). Fixe min-height,
 * konsolidierte Spacings — beendet die optisch ungleichen Hero-Höhen.
 * ========================================================================= */

.mc-hero.mc-hero--unified {
	position: relative;
	background: var(--wp--preset--color--cream, #f4ede0);
	padding-block: 88px 72px;
	min-height: 320px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.mc-hero.mc-hero--unified::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -40px;
	transform: translateY(-50%);
	width: 360px;
	height: 220px;
	background-image: url("../svg/wing.svg");
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
	opacity: 0.08;
	pointer-events: none;
}

.mc-hero.mc-hero--unified .mc-hero-inner {
	position: relative;
	max-width: 880px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.mc-hero.mc-hero--unified .mc-eyebrow {
	color: var(--wp--preset--color--purple, #8f74ae);
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 16px;
	text-transform: none;
}

.mc-hero.mc-hero--unified .mc-hero-title {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 400;
	line-height: 1.05;
	color: var(--wp--preset--color--ink, #2b2826);
	margin: 0 0 20px;
	letter-spacing: -0.01em;
}

.mc-hero.mc-hero--unified .mc-hero-subline {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	margin: 0;
	max-width: 64ch;
}

@media (max-width: 768px) {
	.mc-hero.mc-hero--unified {
		padding-block: 64px 56px;
		min-height: 240px;
	}

	.mc-hero.mc-hero--unified::before {
		width: 180px;
		height: 130px;
		right: -30px;
		opacity: 0.06;
	}

	.mc-hero.mc-hero--unified .mc-hero-inner {
		padding: 0 20px;
	}

	.mc-hero.mc-hero--unified .mc-hero-title {
		font-size: clamp(1.75rem, 7vw, 2.4rem);
	}

	.mc-hero.mc-hero--unified .mc-hero-subline {
		font-size: 1rem;
	}
}


/* =========================================================================
 * v0.3.4 — Icon-System (mc-icon)
 *
 * Outline-SVG-Icons im Stil der Header-/Footer-Icons (stroke 1.6,
 * currentColor). Geliefert über inc/icon-set.php. Default 24x24, mc-icon--lg
 * 32x32, mc-icon--sm 18x18. Alle vererben currentColor — kein
 * Farbcode hier hardcoded.
 * ========================================================================= */

.mc-icon {
	display: inline-block;
	vertical-align: middle;
	color: currentColor;
	flex-shrink: 0;
}

.mc-icon--sm {
	width: 18px;
	height: 18px;
}

.mc-icon--lg {
	width: 32px;
	height: 32px;
}

.mc-icon--xl {
	width: 40px;
	height: 40px;
}

/* Wenn ein Icon in einem .mc-card-icon-Wrapper sitzt (statt Emoji), übernimmt
 * der Wrapper die Größe und Farbe — das Icon füllt ihn.
 */
.mc-card-icon .mc-icon {
	width: 100%;
	height: 100%;
	max-width: 40px;
	max-height: 40px;
}

.mc-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--wp--preset--color--purple-soft, #efe8f5);
	color: var(--wp--preset--color--purple, #8f74ae);
	margin-bottom: 16px;
}

/* (Aelterer FAQ-Nav-Icon-Block entfernt — neuer Premium-Tile-Stil
 * weiter oben in der Datei, siehe „FAQ-Kategorie-Navigation". */

/* Card-Highlight-Icons (Sehenswürdigkeiten/Reisetipps) — kreisrunder Halo */
.mc-card-flat--bordered .mc-card-icon {
	width: 48px;
	height: 48px;
	background: transparent;
	border: 1px solid var(--wp--preset--color--purple-soft, #d9c8e8);
}


/* =========================================================================
 * v0.3.4 — Auch interessant (mc-related) — 3-Card-Cross-Link-Pattern
 *
 * Einheitlicher Block am Ende jeder Sub-Page. Brand-konformer Look:
 * Cream-Hintergrund, drei Cards mit Eyebrow + Title + Description + Pfeil.
 * Das Pattern ist statisch — Inhalt wird pro Template händisch eingepflegt.
 * ========================================================================= */

.mc-related {
	background: var(--wp--preset--color--cream-soft, #faf6ef);
	padding-block: 64px;
}

.mc-related-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.mc-related-head {
	text-align: center;
	margin-bottom: 40px;
}

.mc-related-head .mc-eyebrow {
	color: var(--wp--preset--color--purple, #8f74ae);
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 12px;
}

.mc-related-title {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 400;
	line-height: 1.2;
	color: var(--wp--preset--color--ink, #2b2826);
	margin: 0;
	letter-spacing: -0.01em;
}

.mc-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.mc-related-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid var(--wp--preset--color--border-soft, #f2ece0);
	border-radius: 8px;
	padding: 28px 24px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}

.mc-related-card:hover,
.mc-related-card:focus-visible {
	border-color: var(--wp--preset--color--purple, #8f74ae);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(43, 40, 38, 0.06);
	outline: none;
}

.mc-related-card-eyebrow {
	display: inline-block;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--wp--preset--color--purple, #8f74ae);
	letter-spacing: 0.04em;
	margin-bottom: 12px;
}

.mc-related-card-title {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.25;
	color: var(--wp--preset--color--ink, #2b2826);
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}

.mc-related-card-desc {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--wp--preset--color--ink-soft, #4a4948);
	margin: 0 0 20px;
	flex: 1 1 auto;
}

.mc-related-card-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--wp--preset--color--purple, #8f74ae);
	letter-spacing: 0.02em;
	margin-top: auto;
}

.mc-related-card:hover .mc-related-card-arrow,
.mc-related-card:focus-visible .mc-related-card-arrow {
	color: var(--wp--preset--color--purple-hover, #6f5b94);
}

.mc-related-card-arrow .mc-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

.mc-related-card:hover .mc-related-card-arrow .mc-icon {
	transform: translateX(4px);
}

@media (max-width: 960px) {
	.mc-related-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.mc-related {
		padding-block: 48px;
	}

	.mc-related-head {
		margin-bottom: 28px;
	}

	.mc-related-card {
		padding: 24px 20px;
	}
}


/* =========================================================================
 * v0.3.5 — Stadtguide Single (Article Template)
 *
 * Editorial Single-Post-Layout für den stadtguide-CPT. Hero mit Featured-
 * Image (Cover-Foto Look), Meta-Row mit Autor/Datum/Lesezeit, Reading-
 * optimierter Content-Bereich (max-width 720px) und konsistente Typografie
 * für headings/paragraphs/lists. Geliefert über Shortcodes
 * [mercure_stadtguide_hero/related/cta] aus inc/shortcodes/stadtguide-single.php.
 * ========================================================================= */

/* === HERO === */

.mc-sg-hero {
	position: relative;
	background: var(--wp--preset--color--ink, #2b2826);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
	padding-block: 120px 56px;
	overflow: hidden;
	color: #fff;
}

/* Wenn KEIN Featured-Image gesetzt ist, fällt der Hero auf Cream-Look zurück
 * (analog mc-hero--unified). So bleibt das Layout robust. */
.mc-sg-hero:not(.mc-sg-hero--with-image) {
	background: var(--wp--preset--color--cream, #f4ede0);
	color: var(--wp--preset--color--ink, #2b2826);
	min-height: 320px;
	padding-block: 88px 56px;
}

.mc-sg-hero--with-image .mc-sg-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(43, 40, 38, 0.05) 0%, rgba(43, 40, 38, 0.55) 60%, rgba(43, 40, 38, 0.85) 100%);
	pointer-events: none;
	z-index: 0;
}

.mc-sg-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 880px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.mc-sg-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.85rem;
	font-weight: 600;
	color: inherit;
	text-decoration: none;
	margin-bottom: 24px;
	opacity: 0.85;
	letter-spacing: 0.02em;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.mc-sg-back:hover,
.mc-sg-back:focus-visible {
	opacity: 1;
	transform: translateX(-3px);
	outline: none;
}

.mc-sg-back .mc-icon {
	flex-shrink: 0;
}

.mc-sg-eyebrow {
	display: inline-block;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
	color: inherit;
	opacity: 0.95;
}

.mc-sg-title {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0 0 28px;
	color: inherit;
	max-width: 24ch;
}

.mc-sg-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	opacity: 0.92;
}

.mc-sg-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.mc-sg-meta-item .mc-icon {
	flex-shrink: 0;
	opacity: 0.8;
}

.mc-sg-meta-item strong {
	font-weight: 600;
}

.mc-sg-meta-sep {
	opacity: 0.5;
}

@media (max-width: 768px) {
	.mc-sg-hero {
		min-height: 320px;
		padding-block: 88px 40px;
	}

	.mc-sg-hero:not(.mc-sg-hero--with-image) {
		min-height: 240px;
		padding-block: 64px 40px;
	}

	.mc-sg-back {
		margin-bottom: 16px;
	}

	.mc-sg-meta {
		gap: 8px;
		font-size: 0.78rem;
	}
}

/* === ARTICLE / READING-LAYOUT === */

.mc-sg-article {
	background: var(--wp--preset--color--paper, #faf6ef);
}

.mc-sg-content-wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 56px 24px 24px;
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--wp--preset--color--ink, #2b2826);
}

.mc-sg-content-wrap > .mc-lead,
.mc-sg-content-wrap > p.mc-lead,
.mc-sg-content-wrap p.mc-lead {
	font-size: 1.25rem;
	line-height: 1.55;
	color: var(--wp--preset--color--ink, #2b2826);
	margin: 0 0 32px;
	font-weight: 400;
}

.mc-sg-content-wrap h2 {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: clamp(1.4rem, 2.6vw, 1.75rem);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -0.005em;
	margin: 48px 0 16px;
	color: var(--wp--preset--color--ink, #2b2826);
}

.mc-sg-content-wrap h3 {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.3;
	margin: 32px 0 12px;
	color: var(--wp--preset--color--ink, #2b2826);
}

.mc-sg-content-wrap p {
	margin: 0 0 18px;
}

.mc-sg-content-wrap ul,
.mc-sg-content-wrap ol {
	margin: 0 0 24px;
	padding-left: 1.4em;
}

.mc-sg-content-wrap ul li,
.mc-sg-content-wrap ol li {
	margin-bottom: 8px;
}

.mc-sg-content-wrap ul li::marker {
	color: var(--wp--preset--color--purple, #8f74ae);
}

.mc-sg-content-wrap a {
	color: var(--wp--preset--color--purple, #8f74ae);
	text-decoration: underline;
	text-decoration-color: rgba(143, 116, 174, 0.4);
	text-underline-offset: 3px;
	transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.mc-sg-content-wrap a:hover,
.mc-sg-content-wrap a:focus-visible {
	color: var(--wp--preset--color--purple-hover, #6f5b94);
	text-decoration-color: currentColor;
	outline: none;
}

.mc-sg-content-wrap strong,
.mc-sg-content-wrap b {
	font-weight: 600;
	color: var(--wp--preset--color--ink, #2b2826);
}

.mc-sg-content-wrap blockquote {
	border-left: 3px solid var(--wp--preset--color--purple, #8f74ae);
	padding: 4px 0 4px 24px;
	margin: 32px 0;
	font-style: italic;
	color: var(--wp--preset--color--ink-soft, #4a4948);
}

.mc-sg-content-wrap .mc-faq-link {
	margin: 40px 0 0;
	padding: 20px 24px;
	background: var(--wp--preset--color--cream, #f4ede0);
	border-radius: 8px;
	font-family: var(--wp--preset--font-family--montserrat, 'Montserrat', sans-serif);
	font-size: 0.95rem;
	color: var(--wp--preset--color--ink-soft, #4a4948);
}

.mc-sg-content-wrap .mc-faq-link a {
	font-weight: 600;
}

.mc-sg-content-wrap img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 32px 0;
}

@media (max-width: 768px) {
	.mc-sg-content-wrap {
		padding: 40px 20px 20px;
		font-size: 1rem;
	}

	.mc-sg-content-wrap > .mc-lead,
	.mc-sg-content-wrap > p.mc-lead,
	.mc-sg-content-wrap p.mc-lead {
		font-size: 1.125rem;
	}

	.mc-sg-content-wrap h2 {
		margin: 36px 0 12px;
	}
}

/* === RELATED (extends mc-related, mit Bild-Cards) === */

.mc-sg-related-card {
	overflow: hidden;
	padding: 0;
}

.mc-sg-related-card-media {
	width: 100%;
	height: 160px;
	background-color: var(--wp--preset--color--cream, #f4ede0);
	background-size: cover;
	background-position: center;
}

.mc-sg-related-card-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.mc-sg-related-card-body .mc-related-card-eyebrow {
	margin-bottom: 8px;
}

.mc-sg-related-card-body .mc-related-card-title {
	font-size: 1.125rem;
	margin-bottom: 8px;
}

.mc-sg-related-card-body .mc-related-card-desc {
	font-size: 0.9rem;
	line-height: 1.45;
	margin-bottom: 16px;
}

@media (max-width: 960px) {
	.mc-sg-related-card-media {
		height: 180px;
	}
}

/* === CTA AM ENDE === */

.mc-sg-cta {
	background: var(--wp--preset--color--cream, #f4ede0);
	padding-block: 56px;
}

.mc-sg-cta .mc-cta-block {
	text-align: center;
}

.mc-sg-cta h2 {
	font-family: var(--wp--preset--font-family--spectral, 'Spectral', Georgia, serif);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 400;
	margin: 12px 0 24px;
}

.mc-sg-cta .mc-cta-trust {
	margin-top: 16px;
	font-size: 0.85rem;
	color: var(--wp--preset--color--ink-soft, #4a4948);
}
