/* =============================================================================
   Rechtsanwalt Hölzel — Theme Stylesheet
   Alle Styles in einer Datei → 1 Request, gut komprimierbar.
   Struktur:
     1. Design-Tokens (CSS-Variablen)
     2. Reset
     3. Base / Typografie
     4. Layout-Utilities (Container, Stack, Section)
     5. Buttons
     6. Forms
     7. Header
     8. Footer
     9. Skip-Link / A11y
    10. Helpers / Print / Reduced Motion
   ========================================================================== */


/* ============================================================================
   1. DESIGN-TOKENS — Der "rote Faden" durch das gesamte Theme.
   Alle Widgets, Header, Footer und Elementor-Sektionen leiten ihre
   Werte ausschließlich aus diesen Variablen ab.
   ============================================================================ */
:root {

	/* Brand */
	--rh-color-primary:        #026C91;
	--rh-color-primary-hover:  #013446;
	--rh-color-primary-100:    #E6F2F6;
	--rh-color-primary-200:    #BFDDE7;
	--rh-color-primary-300:    #80BAC8;
	--rh-color-primary-500:    #026C91;
	--rh-color-primary-700:    #024E69;
	--rh-color-primary-900:    #013446;

	/* Neutrals */
	--rh-color-white:          #FFFFFF;
	--rh-color-bg:             #FFFFFF;
	--rh-color-bg-alt:         #F4F7F9;
	--rh-color-bg-dark:        #013446;

	--rh-color-text:           #1A2A33;
	--rh-color-text-muted:     #5A6A73;
	--rh-color-text-on-dark:   #F4F7F9;
	--rh-color-text-on-primary:#FFFFFF;

	--rh-color-border:         #E1E8EC;
	--rh-color-border-strong:  #C6D1D8;

	/* Akzente */
	--rh-color-accent:         #C9A961;
	--rh-color-success:        #2F9E5E;
	--rh-color-error:          #C0392B;

	/* Halbtransparente Layer (Hero-Overlays etc.) */
	--rh-overlay-dark:         color-mix(in srgb, #013446 75%, transparent);
	--rh-overlay-primary:      color-mix(in srgb, #026C91 70%, transparent);

	/* Gradients */
	--rh-gradient-primary:     linear-gradient(135deg, #026C91 0%, #013446 100%);
	--rh-gradient-hero:        linear-gradient(90deg, rgba(1,52,70,.95) 0%, rgba(1,52,70,.85) 35%, rgba(2,108,145,.35) 65%, rgba(2,108,145,0) 100%);

	/* === Typografie === */
	--rh-font-body:    "Merriweather", Georgia, "Times New Roman", serif;
	--rh-font-heading: "Merriweather", Georgia, "Times New Roman", serif;

	/* Fluide Type-Scale (Mobile → Desktop, clamp()) */
	--rh-fs-xs:   clamp(0.75rem,  0.72rem + 0.15vw, 0.8125rem);
	--rh-fs-sm:   clamp(0.8125rem, 0.78rem + 0.2vw, 0.875rem);
	--rh-fs-base: clamp(1rem,     0.96rem + 0.2vw, 1.0625rem);
	--rh-fs-md:   clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
	--rh-fs-lg:   clamp(1.1875rem, 1.1rem + 0.4vw, 1.375rem);
	--rh-fs-xl:   clamp(1.375rem,  1.25rem + 0.6vw, 1.625rem);
	--rh-fs-2xl:  clamp(1.625rem,  1.4rem + 1vw, 2.125rem);
	--rh-fs-3xl:  clamp(2rem,      1.6rem + 1.5vw, 2.75rem);
	--rh-fs-4xl:  clamp(2.5rem,    1.9rem + 2.5vw, 3.75rem);
	--rh-fs-5xl:  clamp(3rem,      2.2rem + 3.5vw, 4.75rem);

	--rh-fw-light:   300;
	--rh-fw-regular: 400;
	--rh-fw-bold:    700;
	--rh-fw-black:   900;

	--rh-lh-tight:   1.18;
	--rh-lh-snug:    1.35;
	--rh-lh-normal:  1.6;
	--rh-lh-relaxed: 1.8;

	--rh-tracking-tight:  -0.015em;
	--rh-tracking-normal: 0;
	--rh-tracking-wide:   0.04em;
	--rh-tracking-caps:   0.12em;

	/* === Spacing-Scale (4-Pt-Grid mit ergänzenden Stufen) === */
	--rh-space-3xs: 0.25rem;
	--rh-space-2xs: 0.5rem;
	--rh-space-xs:  0.75rem;
	--rh-space-sm:  1rem;
	--rh-space-md:  1.5rem;
	--rh-space-lg:  2rem;
	--rh-space-xl:  3rem;
	--rh-space-2xl: 4rem;
	--rh-space-3xl: 6rem;
	--rh-space-4xl: 8rem;

	--rh-section-py: clamp(3rem, 2rem + 5vw, 6.5rem);

	/* === Container === */
	--rh-container-max:    1480px;
	--rh-container-narrow: 1080px;
	--rh-container-wide:   1720px;
	--rh-container-px:     clamp(1.5rem, 4vw, 2.25rem);

	/* === Radius === */
	--rh-radius-xs:   0;
	--rh-radius-sm:   0;
	--rh-radius-md:   0;
	--rh-radius-lg:   0;
	--rh-radius-xl:   0;
	--rh-radius-pill: 0;

	/* === Shadows (auf Brand-Dunkel basiert, dezent) === */
	--rh-shadow-xs: 0 1px 2px rgba(1,52,70,.06);
	--rh-shadow-sm: 0 2px 6px rgba(1,52,70,.07), 0 1px 2px rgba(1,52,70,.04);
	--rh-shadow-md: 0 6px 18px rgba(1,52,70,.09), 0 2px 6px rgba(1,52,70,.05);
	--rh-shadow-lg: 0 18px 38px rgba(1,52,70,.12), 0 6px 12px rgba(1,52,70,.06);
	--rh-shadow-xl: 0 30px 60px rgba(1,52,70,.18), 0 10px 20px rgba(1,52,70,.08);
	--rh-shadow-focus: 0 0 0 3px rgba(2,108,145,.30);

	/* === Motion === */
	--rh-ease-out:  cubic-bezier(.22, 1, .36, 1);
	--rh-ease-in:   cubic-bezier(.4, 0, 1, 1);
	--rh-ease:      cubic-bezier(.4, 0, .2, 1);

	--rh-dur-fast:  140ms;
	--rh-dur-base:  240ms;
	--rh-dur-slow:  420ms;

	--rh-transition: var(--rh-dur-base) var(--rh-ease);

	/* === Z-Index Stack === */
	--rh-z-base:    1;
	--rh-z-raise:   10;
	--rh-z-sticky:  100;
	--rh-z-header:  500;
	--rh-z-overlay: 800;
	--rh-z-modal:   900;
	--rh-z-toast:   1000;

	/* === Header-Höhen (für anchor-scroll-padding & hero offsets) === */
	--rh-header-h:        88px;
	--rh-header-h-mobile: 68px;
	--rh-topbar-h:        40px;

	/* === Focus-Ring === */
	--rh-focus-ring: 0 0 0 3px rgba(2,108,145,.35);
}

/* Globale Scroll-Offset für Anchor-Links wegen sticky Header. */
html {
	scroll-padding-top: calc(var(--rh-header-h-mobile) + var(--rh-space-md));
}
@media (min-width: 992px) {
	html {
		scroll-padding-top: calc(var(--rh-header-h) + var(--rh-space-md));
	}
}


/* ============================================================================
   2. RESET — schlanker modern reset
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-height: 100dvh;
	line-height: var(--rh-lh-normal);
	background: var(--rh-color-bg);
	color: var(--rh-color-text);
	font-family: var(--rh-font-body);
	font-size: var(--rh-fs-base);
	font-weight: var(--rh-fw-regular);
	overflow-x: clip;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Boxicons-Basis — alle Theme-Icons laufen über rh_icon() → <i class="bx rh-ico"> */
.rh-ico,
i.bx {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 1.2em;
	color: inherit;
	flex-shrink: 0;
	vertical-align: middle;
}

input, button, textarea, select {
	font: inherit;
	color: inherit;
}

button {
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0;
}

a {
	color: var(--rh-color-primary);
	text-decoration: none;
	transition: color var(--rh-dur-fast) var(--rh-ease);
}
a:hover {
	color: var(--rh-color-primary-hover);
}

p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
	hyphens: auto;
}

ul, ol {
	padding: 0;
	list-style-position: inside;
}

table {
	border-collapse: collapse;
	width: 100%;
}

:focus-visible {
	outline: none;
	box-shadow: var(--rh-focus-ring);
	border-radius: var(--rh-radius-sm);
}

::selection {
	background: var(--rh-color-primary);
	color: var(--rh-color-white);
}


/* ============================================================================
   3. BASE — Typografie
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--rh-font-heading);
	font-weight: var(--rh-fw-bold);
	line-height: var(--rh-lh-tight);
	letter-spacing: var(--rh-tracking-tight);
	color: var(--rh-color-primary-900);
}

h1, .h1 { font-size: var(--rh-fs-4xl); font-weight: var(--rh-fw-black); }
h2, .h2 { font-size: var(--rh-fs-3xl); }
h3, .h3 { font-size: var(--rh-fs-2xl); }
h4, .h4 { font-size: var(--rh-fs-xl); }
h5, .h5 { font-size: var(--rh-fs-lg); }
h6, .h6 { font-size: var(--rh-fs-md); text-transform: uppercase; letter-spacing: var(--rh-tracking-caps); }

p {
	font-size: var(--rh-fs-base);
	line-height: var(--rh-lh-relaxed);
	color: var(--rh-color-text);
}

p + p { margin-top: var(--rh-space-sm); }

small { font-size: var(--rh-fs-sm); color: var(--rh-color-text-muted); }

strong, b { font-weight: var(--rh-fw-bold); }

blockquote {
	border-inline-start: 4px solid var(--rh-color-primary);
	padding: var(--rh-space-sm) var(--rh-space-md);
	font-style: italic;
	color: var(--rh-color-primary-900);
	background: var(--rh-color-bg-alt);
	border-radius: 0 var(--rh-radius-md) var(--rh-radius-md) 0;
}

hr {
	border: 0;
	border-top: 1px solid var(--rh-color-border);
	margin: var(--rh-space-xl) 0;
}

/* "Eyebrow"-Label über Headlines */
.eyebrow {
	display: inline-block;
	font-size: var(--rh-fs-xs);
	font-weight: var(--rh-fw-bold);
	letter-spacing: var(--rh-tracking-caps);
	text-transform: uppercase;
	color: var(--rh-color-primary);
}


/* ============================================================================
   4. LAYOUT-UTILITIES
   ============================================================================ */
.container,
.rh-container {
	width: 100%;
	max-width: var(--rh-container-max);
	margin-inline: auto;
	padding-inline: var(--rh-container-px);
}
.rh-container--narrow { max-width: var(--rh-container-narrow); }
.rh-container--wide   { max-width: var(--rh-container-wide); }

.rh-section {
	padding-block: var(--rh-section-py);
}
.rh-section--alt   { background: var(--rh-color-bg-alt); }
.rh-section--dark  { background: var(--rh-color-bg-dark); color: var(--rh-color-text-on-dark); }
.rh-section--dark h1, .rh-section--dark h2, .rh-section--dark h3, .rh-section--dark h4 { color: var(--rh-color-white); }
.rh-section--primary { background: var(--rh-gradient-primary); color: var(--rh-color-white); }
.rh-section--primary h1, .rh-section--primary h2, .rh-section--primary h3, .rh-section--primary h4 { color: var(--rh-color-white); }

/* Stack — vertikaler Fluss */
.rh-stack > * + * { margin-top: var(--rh-stack-space, var(--rh-space-md)); }
.rh-stack--xs > * + * { --rh-stack-space: var(--rh-space-2xs); }
.rh-stack--sm > * + * { --rh-stack-space: var(--rh-space-sm); }
.rh-stack--lg > * + * { --rh-stack-space: var(--rh-space-lg); }

/* Cluster — horizontaler Fluss mit Wrap */
.rh-cluster {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rh-cluster-gap, var(--rh-space-sm));
	align-items: var(--rh-cluster-align, center);
}

/* Auto-Grid */
.rh-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: var(--rh-grid-gap, var(--rh-space-lg));
}

/* Center-Helper */
.rh-center { text-align: center; margin-inline: auto; }


/* ============================================================================
   5. BUTTONS
   ============================================================================ */
.rh-btn,
.btn {
	--rh-btn-bg:        var(--rh-color-primary);
	--rh-btn-bg-hover:  var(--rh-color-primary-hover);
	--rh-btn-color:     var(--rh-color-white);
	--rh-btn-border:    transparent;
	--rh-btn-py:        0.9rem;
	--rh-btn-px:        1.6rem;
	--rh-btn-fs:        var(--rh-fs-sm);
	--rh-btn-radius:    var(--rh-radius-md);

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	padding: var(--rh-btn-py) var(--rh-btn-px);
	font-family: var(--rh-font-body);
	font-size: var(--rh-btn-fs);
	font-weight: var(--rh-fw-bold);
	letter-spacing: var(--rh-tracking-wide);
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	background: var(--rh-btn-bg);
	color: var(--rh-btn-color);
	border: 2px solid var(--rh-btn-border);
	border-radius: var(--rh-btn-radius);
	cursor: pointer;
	transition: background var(--rh-dur-fast) var(--rh-ease),
	            border-color var(--rh-dur-fast) var(--rh-ease),
	            color var(--rh-dur-fast) var(--rh-ease),
	            transform var(--rh-dur-fast) var(--rh-ease),
	            box-shadow var(--rh-dur-fast) var(--rh-ease);
	will-change: transform;
}

.rh-btn:hover,
.btn:hover {
	background: var(--rh-btn-bg-hover);
	color: var(--rh-btn-color);
	transform: translateY(-1px);
	box-shadow: var(--rh-shadow-md);
}
.rh-btn:active { transform: translateY(0); }

.rh-btn .rh-btn__icon { display: inline-flex; align-items: center; justify-content: center; }
.rh-btn .rh-btn__icon .rh-ico { font-size: 1.2em; }
.rh-btn:hover .rh-btn__icon { transform: translateX(2px); transition: transform var(--rh-dur-fast) var(--rh-ease); }

/* Variants */
.rh-btn--outline {
	--rh-btn-bg: transparent;
	--rh-btn-bg-hover: var(--rh-color-primary);
	--rh-btn-color: var(--rh-color-primary);
	--rh-btn-border: var(--rh-color-primary);
}
.rh-btn--outline:hover { color: var(--rh-color-white); border-color: var(--rh-color-primary-hover); }

.rh-btn--ghost {
	--rh-btn-bg: transparent;
	--rh-btn-bg-hover: var(--rh-color-primary-100);
	--rh-btn-color: var(--rh-color-primary);
}
.rh-btn--ghost:hover { color: var(--rh-color-primary-hover); }

.rh-btn--on-dark {
	--rh-btn-bg: var(--rh-color-white);
	--rh-btn-bg-hover: var(--rh-color-primary-100);
	--rh-btn-color: var(--rh-color-primary-900);
}

.rh-btn--lg { --rh-btn-py: 1.1rem; --rh-btn-px: 2rem; --rh-btn-fs: var(--rh-fs-base); }
.rh-btn--sm { --rh-btn-py: 0.6rem; --rh-btn-px: 1.1rem; --rh-btn-fs: var(--rh-fs-xs); }

.rh-btn--block { display: flex; width: 100%; }


/* ============================================================================
   6. FORMS
   ============================================================================ */
.rh-input,
.rh-textarea,
.rh-select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="password"],
textarea,
select {
	width: 100%;
	padding: 0.85rem 1rem;
	font: inherit;
	color: var(--rh-color-text);
	background: var(--rh-color-white);
	border: 1.5px solid var(--rh-color-border-strong);
	border-radius: var(--rh-radius-md);
	transition: border-color var(--rh-dur-fast) var(--rh-ease),
	            box-shadow var(--rh-dur-fast) var(--rh-ease);
}
.rh-input:focus,
.rh-textarea:focus,
.rh-select:focus,
input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: var(--rh-color-primary);
	box-shadow: var(--rh-focus-ring);
}

label {
	display: inline-block;
	margin-bottom: 0.4rem;
	font-size: var(--rh-fs-sm);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary-900);
}


/* ============================================================================
   7. HEADER
   ============================================================================ */
.rh-header {
	position: sticky;
	top: 0;
	z-index: var(--rh-z-header);
	background: var(--rh-color-white);
	border-bottom: 1px solid transparent;
	transition: box-shadow var(--rh-dur-base) var(--rh-ease),
	            border-color var(--rh-dur-base) var(--rh-ease);
}
.rh-header.is-scrolled {
	box-shadow: var(--rh-shadow-sm);
	border-bottom-color: var(--rh-color-border);
}
/* Dezente Kompaktierung beim Scrollen (modern) */
.rh-header__inner,
.rh-logo img {
	transition: min-height var(--rh-dur-base) var(--rh-ease),
	            max-height var(--rh-dur-base) var(--rh-ease);
}
.rh-header.is-scrolled .rh-header__inner { min-height: 58px; }
@media (min-width: 992px) {
	.rh-header.is-scrolled .rh-header__inner { min-height: 70px; }
}
.rh-header.is-scrolled .rh-logo img { max-height: 44px; }
@media (prefers-reduced-motion: reduce) {
	.rh-header__inner, .rh-logo img { transition: none; }
}

/* Topbar (Kontakt-Zeile darüber) */
.rh-topbar {
	background: var(--rh-color-primary-900);
	color: var(--rh-color-text-on-dark);
	font-size: var(--rh-fs-xs);
	letter-spacing: var(--rh-tracking-wide);
}
.rh-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--rh-space-md);
	min-height: var(--rh-topbar-h);
	padding-block: 0.5rem;
}
.rh-topbar__group {
	display: flex;
	align-items: center;
	gap: var(--rh-space-md);
	flex-wrap: wrap;
}
.rh-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	line-height: 1;
}
.rh-topbar__item .rh-ico { flex-shrink: 0; }
.rh-topbar a {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	color: inherit;
	text-decoration: none;
	transition: color var(--rh-dur-fast) var(--rh-ease);
}
.rh-topbar a:hover { color: var(--rh-color-primary-200); }
.rh-topbar .rh-ico { font-size: 1em; }

@media (max-width: 767px) {
	.rh-topbar__group--meta { display: none; }
	.rh-topbar__inner { justify-content: center; }
}

/* Main Header Bar */
.rh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--rh-space-md);
	min-height: var(--rh-header-h-mobile);
}
@media (min-width: 992px) {
	.rh-header__inner { min-height: var(--rh-header-h); }
}

/* Logo */
.rh-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	flex: 0 0 auto;
	font-family: var(--rh-font-heading);
	font-weight: var(--rh-fw-black);
	font-size: var(--rh-fs-md);
	color: var(--rh-color-primary-900);
	letter-spacing: var(--rh-tracking-tight);
	line-height: 1.1;
	text-decoration: none;
}
.rh-logo:hover { color: var(--rh-color-primary); }
.rh-logo img {
	max-height: 56px;
	width: auto;
}
.rh-logo__text { display: flex; flex-direction: column; }
.rh-logo__title { font-size: var(--rh-fs-base); }
.rh-logo__sub {
	font-size: var(--rh-fs-xs);
	font-weight: var(--rh-fw-regular);
	letter-spacing: var(--rh-tracking-wide);
	color: var(--rh-color-primary);
	text-transform: uppercase;
}

/* Primary Nav (Desktop) */
.rh-nav {
	display: none;
}
@media (min-width: 992px) {
	.rh-nav {
		display: flex;
		align-items: center;
		gap: var(--rh-space-xs);
		flex: 1;
		justify-content: flex-end;
	}
}

.rh-nav__menu {
	display: flex;
	align-items: center;
	gap: var(--rh-space-3xs);
	list-style: none;
	margin: 0;
	padding: 0;
}
.rh-nav__item { position: relative; }
.rh-nav__link {
	display: inline-flex;
	align-items: center;
	padding: 0.6rem 1rem;
	font-size: var(--rh-fs-sm);
	font-weight: var(--rh-fw-bold);
	letter-spacing: var(--rh-tracking-wide);
	color: var(--rh-color-primary-900);
	border-radius: var(--rh-radius-sm);
	text-decoration: none;
	position: relative;
	transition: color var(--rh-dur-fast) var(--rh-ease);
}
.rh-nav__link::after {
	content: "";
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 0.35rem;
	height: 2px;
	background: var(--rh-color-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--rh-dur-base) var(--rh-ease);
}
.rh-nav__link:hover,
.rh-nav__item.current-menu-item > .rh-nav__link,
.rh-nav__item.current-menu-ancestor > .rh-nav__link {
	color: var(--rh-color-primary);
}
.rh-nav__link:hover::after,
.rh-nav__item.current-menu-item > .rh-nav__link::after,
.rh-nav__item.current-menu-ancestor > .rh-nav__link::after {
	transform: scaleX(1);
}

/* Submenu */
.rh-nav__submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	padding: 0;
	background: var(--rh-color-white);
	border: 1px solid var(--rh-color-border);
	box-shadow: var(--rh-shadow-lg);
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--rh-dur-fast) var(--rh-ease),
	            transform var(--rh-dur-fast) var(--rh-ease),
	            visibility var(--rh-dur-fast) var(--rh-ease);
	z-index: var(--rh-z-raise);
	overflow: hidden;
}
.rh-nav__item:hover > .rh-nav__submenu,
.rh-nav__item:focus-within > .rh-nav__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.rh-nav__submenu .rh-nav__link {
	display: block;
	padding: 0.7rem 1rem;
}
.rh-nav__submenu .rh-nav__link:hover {
	background: var(--rh-color-primary-100);
}
.rh-nav__submenu .rh-nav__link::after { content: none; }

/* Header CTA */
.rh-header__cta {
	display: none;
}
@media (min-width: 992px) {
	.rh-header__cta { display: inline-flex; margin-left: var(--rh-space-md); }
}

/* Mobile Toggle */
.rh-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--rh-color-primary-900);
	background: transparent;
	border: 0;
	border-radius: var(--rh-radius-sm);
	cursor: pointer;
	transition: color var(--rh-dur-fast) var(--rh-ease),
	            background var(--rh-dur-fast) var(--rh-ease);
}
.rh-menu-toggle:hover { color: var(--rh-color-primary); background: var(--rh-color-primary-100); }
.rh-menu-toggle .rh-ico { font-size: 26px; }

@media (min-width: 992px) {
	.rh-menu-toggle { display: none; }
}

/* ---- Mobile Drawer (modernes Slide-in-Panel mit Backdrop) ---- */
.rh-mobile-nav {
	position: fixed;
	inset: 0;
	z-index: var(--rh-z-overlay);
	visibility: hidden;
	pointer-events: none;
}
.rh-mobile-nav.is-open {
	visibility: visible;
	pointer-events: auto;
}
@media (min-width: 992px) {
	.rh-mobile-nav { display: none; }
}

.rh-mobile-nav__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(1, 52, 70, 0.55);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity var(--rh-dur-base) var(--rh-ease);
}
.rh-mobile-nav.is-open .rh-mobile-nav__backdrop { opacity: 1; }

.rh-mobile-nav__panel {
	position: absolute;
	inset: 0;
	height: 100%;
	height: 100dvh;
	width: 100%;
	background: var(--rh-color-white);
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity var(--rh-dur-base) var(--rh-ease-out),
	            transform var(--rh-dur-base) var(--rh-ease-out);
	overscroll-behavior: contain;
}
.rh-mobile-nav.is-open .rh-mobile-nav__panel {
	opacity: 1;
	transform: translateY(0);
}

.rh-mobile-nav__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--rh-space-md);
	padding: var(--rh-space-md) var(--rh-space-lg);
	padding-top: max(var(--rh-space-md), env(safe-area-inset-top));
	border-bottom: 1px solid var(--rh-color-border);
	flex: 0 0 auto;
}
.rh-mobile-nav__brand { display: inline-flex; align-items: center; min-width: 0; }
.rh-mobile-nav__brand img { max-height: 44px; width: auto; }
.rh-mobile-nav__brand-name {
	font-family: var(--rh-font-heading);
	font-weight: var(--rh-fw-black);
	font-size: var(--rh-fs-md);
	color: var(--rh-color-primary-900);
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.rh-mobile-nav__close {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--rh-color-primary-900);
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: color var(--rh-dur-fast) var(--rh-ease),
	            background var(--rh-dur-fast) var(--rh-ease);
}
.rh-mobile-nav__close:hover { color: var(--rh-color-primary); background: var(--rh-color-primary-100); }
.rh-mobile-nav__close .rh-ico { font-size: 24px; }

.rh-mobile-nav__scroll {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: var(--rh-space-md) var(--rh-space-lg);
}

.rh-mobile-nav__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.rh-mobile-nav__menu .rh-nav__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.95rem 0.25rem;
	font-size: var(--rh-fs-lg);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary-900);
	border-bottom: 1px solid var(--rh-color-border);
	text-decoration: none;
}
.rh-mobile-nav__menu .rh-nav__link::after { content: none; }
.rh-mobile-nav__menu .current-menu-item > .rh-nav__link { color: var(--rh-color-primary); }
.rh-mobile-nav__menu .rh-nav__chevron {
	transition: transform var(--rh-dur-fast) var(--rh-ease);
}
.rh-mobile-nav__menu .rh-nav__item--has-children[data-open="true"] > .rh-nav__link .rh-nav__chevron {
	transform: rotate(180deg);
}
.rh-mobile-nav__submenu {
	list-style: none;
	margin: 0 0 0.25rem 0;
	padding: 0 0 0 0.9rem;
	border-left: 2px solid var(--rh-color-primary-200);
	display: none;
}
.rh-mobile-nav__menu .rh-nav__item--has-children[data-open="true"] > .rh-mobile-nav__submenu { display: block; }
.rh-mobile-nav__submenu .rh-nav__link {
	font-size: var(--rh-fs-base);
	font-weight: var(--rh-fw-regular);
	border-bottom: 0;
	padding: 0.65rem 0.25rem;
}

.rh-mobile-nav__foot {
	flex: 0 0 auto;
	padding: var(--rh-space-lg);
	padding-bottom: max(var(--rh-space-lg), env(safe-area-inset-bottom));
	border-top: 1px solid var(--rh-color-border);
	background: var(--rh-color-bg-alt);
}
.rh-mobile-nav__contact {
	display: flex;
	flex-direction: column;
	gap: var(--rh-space-2xs);
	font-size: var(--rh-fs-sm);
	margin-bottom: var(--rh-space-md);
}
.rh-mobile-nav__contact a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--rh-color-primary-900);
	text-decoration: none;
}
.rh-mobile-nav__contact a:hover { color: var(--rh-color-primary); }
.rh-mobile-nav__cta .rh-btn { width: 100%; }

body.is-nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
	.rh-mobile-nav__panel,
	.rh-mobile-nav__backdrop { transition: none; }
}


/* ============================================================================
   8. FOOTER
   ============================================================================ */
.rh-footer {
	background: var(--rh-color-primary-900);
	color: var(--rh-color-text-on-dark);
	font-size: var(--rh-fs-sm);
	line-height: var(--rh-lh-relaxed);
}

.rh-footer a {
	color: var(--rh-color-text-on-dark);
	text-decoration: none;
	transition: color var(--rh-dur-fast) var(--rh-ease);
}
.rh-footer a:hover { color: var(--rh-color-primary-200); }

.rh-footer__top {
	padding-block: var(--rh-space-3xl) var(--rh-space-2xl);
}
@media (max-width: 720px) {
	.rh-footer__top { padding-block: var(--rh-space-2xl) var(--rh-space-xl); }
}
.rh-footer__grid {
	display: grid;
	gap: var(--rh-space-xl);
	grid-template-columns: 1fr;
}
@media (min-width: 720px) {
	.rh-footer__grid {
		gap: var(--rh-space-2xl);
		grid-template-columns: 1.6fr 1fr 1fr;
	}
}

.rh-footer__col h4,
.rh-footer__col h3 {
	color: var(--rh-color-white);
	font-size: var(--rh-fs-md);
	margin-bottom: var(--rh-space-md);
}
.rh-footer__col-title {
	display: block;
	color: var(--rh-color-white);
	font-family: var(--rh-font-heading);
	font-weight: var(--rh-fw-bold);
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-tight);
	margin-bottom: var(--rh-space-md);
}

.rh-footer__brand {
	display: flex;
	flex-direction: column;
	gap: var(--rh-space-sm);
}
.rh-footer__brand-name {
	font-family: var(--rh-font-heading);
	font-weight: var(--rh-fw-black);
	font-size: var(--rh-fs-xl);
	color: var(--rh-color-white);
	line-height: 1.2;
}
.rh-footer__brand-sub {
	color: var(--rh-color-primary-200);
	font-size: var(--rh-fs-xs);
	letter-spacing: var(--rh-tracking-caps);
	text-transform: uppercase;
}
.rh-footer__brand-tagline {
	color: var(--rh-color-primary-200);
	max-width: 38ch;
}

.rh-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.rh-footer__list a:hover { color: var(--rh-color-white); }

.rh-footer__contact-item {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
	color: var(--rh-color-white);
}
.rh-footer__contact-item small { color: rgba(255,255,255,0.7); }
.rh-footer__contact-item .rh-ico {
	font-size: 18px;
	flex: 0 0 auto;
	margin-top: 0.15rem;
	color: var(--rh-color-primary-200);
}
.rh-footer__contact-item a { color: var(--rh-color-white); }
.rh-footer__contact-item a:hover { color: var(--rh-color-primary-200); }

.rh-footer__hours {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.rh-footer__hours-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0 0.6rem;
	color: var(--rh-color-white);
}
.rh-footer__hours-days {
	font-weight: var(--rh-fw-bold);
	min-width: 4.5rem;
}
.rh-footer__hours-time { color: var(--rh-color-white); }
.rh-footer__hours-note {
	margin-top: 0.35rem;
	color: rgba(255,255,255,0.7);
	font-size: var(--rh-fs-xs);
}

.rh-footer__bottom {
	border-top: 1px solid color-mix(in srgb, var(--rh-color-white) 12%, transparent);
	padding-block: var(--rh-space-md);
}
.rh-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rh-space-md);
	align-items: center;
	justify-content: space-between;
	color: var(--rh-color-primary-200);
	font-size: var(--rh-fs-xs);
}
.rh-footer__legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--rh-space-md);
}
.rh-footer__legal a:hover { color: var(--rh-color-white); }

@media (max-width: 560px) {
	.rh-footer__bottom-inner {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		gap: var(--rh-space-sm);
	}
	.rh-footer__legal { justify-content: center; }
}


/* ============================================================================
   9. SKIP-LINK & A11y
   ============================================================================ */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	white-space: nowrap;
	word-wrap: normal;
}
.skip-link:focus,
.skip-link:focus-visible {
	position: fixed !important;
	top: 1rem;
	left: 1rem;
	z-index: var(--rh-z-toast);
	width: auto;
	height: auto;
	clip: auto;
	clip-path: none;
	padding: 0.75rem 1.25rem;
	background: var(--rh-color-primary);
	color: var(--rh-color-white);
	border-radius: var(--rh-radius-md);
	font-weight: var(--rh-fw-bold);
	box-shadow: var(--rh-shadow-lg);
}


/* ============================================================================
  10. WIDGETS — vom Theme bereitgestellte Elementor-Bausteine.
   Alle Werte stammen aus den --rh-* Tokens, damit Hero, Schwerpunkte,
   Quote, Tätigkeitsfelder & Contact-CTA visuell zueinander passen.
   ============================================================================ */

/* Section-Kopf (Eyebrow + H2 + Intro) — von allen Widgets geteilt */
.rh-section__head {
	display: flex;
	flex-direction: column;
	gap: var(--rh-space-sm);
	max-width: 720px;
	margin: 0 auto var(--rh-space-2xl);
	text-align: center;
}
.rh-section__head .eyebrow { margin-bottom: 0.25rem; }
.rh-section__head h2 { margin: 0; }
.rh-section__intro {
	font-size: var(--rh-fs-md);
	color: var(--rh-color-text-muted);
	line-height: var(--rh-lh-relaxed);
}

/* Outline-on-dark Button-Variante (für Hero) */
.rh-btn--outline-on-dark {
	--rh-btn-bg: transparent;
	--rh-btn-bg-hover: rgba(255,255,255,0.12);
	--rh-btn-color: var(--rh-color-white);
	--rh-btn-border: rgba(255,255,255,0.5);
}
.rh-btn--outline-on-dark:hover { color: var(--rh-color-white); --rh-btn-border: var(--rh-color-white); }


/* ----------------------------------------------------------------------------
   Widget: Hero
   ---------------------------------------------------------------------------- */
.rh-hero {
	position: relative;
	isolation: isolate;
	min-height: clamp(520px, 70svh, 760px);
	padding-block: clamp(4rem, 6vw + 2rem, 8rem);
	background-color: var(--rh-color-primary-900);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--rh-color-white);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.rh-hero__overlay {
	position: absolute;
	inset: 0;
	background: var(--rh-gradient-hero);
	z-index: -1;
}
.rh-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 80% at 0% 100%, rgba(2,108,145,.35) 0%, transparent 70%);
	z-index: -1;
	pointer-events: none;
}

.rh-hero__inner {
	position: relative;
}

.rh-hero__content {
	display: flex;
	flex-direction: column;
	gap: var(--rh-space-md);
	max-width: 800px;
}

@media (max-width: 900px) {
	.rh-hero__content {
		max-width: 100%;
	}
}

.rh-focus {
	margin-top: clamp(-6rem, -5vw, -3rem);
	padding-top: 40px;
	position: relative;
	z-index: 2;
}

.rh-hero__heading {
	font-size: var(--rh-fs-4xl);
	line-height: var(--rh-lh-tight);
	font-weight: var(--rh-fw-black);
	color: var(--rh-color-white);
	letter-spacing: var(--rh-tracking-tight);
	max-width: 18ch;
	margin: 0;
	text-wrap: balance;
}

.rh-hero__subtext {
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-relaxed);
	color: rgba(255,255,255,0.92);
	max-width: 56ch;
	margin: 0;
}

.rh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rh-space-sm);
	margin-top: var(--rh-space-sm);
}

@media (max-width: 640px) {
	.rh-hero { min-height: 78svh; align-items: flex-end; padding-bottom: 4rem; }
}


/* ----------------------------------------------------------------------------
   Widget: Schwerpunkte
   ---------------------------------------------------------------------------- */
.rh-focus__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: var(--rh-space-lg);
}

.rh-focus__card {
	display: flex;
	flex-direction: column;
	gap: var(--rh-space-sm);
	padding: var(--rh-space-xl) var(--rh-space-lg);
	background: var(--rh-color-white);
	border: 1px solid var(--rh-color-border);
	border-radius: var(--rh-radius-lg);
	box-shadow: var(--rh-shadow-sm);
	transition: transform var(--rh-dur-base) var(--rh-ease),
	            box-shadow var(--rh-dur-base) var(--rh-ease),
	            border-color var(--rh-dur-base) var(--rh-ease);
	position: relative;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}
.rh-focus__card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 0;
	height: 4px;
	background: var(--rh-gradient-primary);
	transition: width var(--rh-dur-base) var(--rh-ease);
}
.rh-focus__card--link:hover {
	transform: translateY(-4px);
	box-shadow: var(--rh-shadow-lg);
	border-color: var(--rh-color-primary-200);
}
.rh-focus__card--link:hover::before {
	width: 100%;
}

.rh-focus__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--rh-color-primary-100);
	color: var(--rh-color-primary);
	border-radius: var(--rh-radius-md);
}
.rh-focus__icon .rh-ico { font-size: 28px; }

.rh-focus__title {
	font-size: var(--rh-fs-xl);
	margin: 0;
	color: var(--rh-color-primary-900);
}

.rh-focus__text {
	color: var(--rh-color-text-muted);
	margin: 0;
	font-size: var(--rh-fs-base);
}

.rh-focus__more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: var(--rh-space-sm);
	font-weight: var(--rh-fw-bold);
	font-size: var(--rh-fs-sm);
	color: var(--rh-color-primary);
	letter-spacing: var(--rh-tracking-wide);
}
.rh-focus__more-icon {
	display: inline-flex;
	width: 1.1em;
	height: 1.1em;
	transition: transform var(--rh-dur-fast) var(--rh-ease);
}
.rh-focus__card--link:hover .rh-focus__more-icon {
	transform: translateX(4px);
}


/* ----------------------------------------------------------------------------
   Widget: Quote / Kernbotschaft
   ---------------------------------------------------------------------------- */
.rh-quote__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--rh-space-md);
	text-align: center;
	padding-top: var(--rh-space-lg);
}

.rh-quote__mark {
	display: inline-flex;
	width: 56px;
	height: 56px;
	color: var(--rh-color-primary);
	opacity: 0.85;
}
.rh-quote--dark .rh-quote__mark { color: var(--rh-color-primary-300); }

.rh-quote__text {
	font-family: var(--rh-font-heading);
	font-size: var(--rh-fs-3xl);
	line-height: var(--rh-lh-snug);
	font-weight: var(--rh-fw-bold);
	font-style: italic;
	color: var(--rh-color-primary-900);
	max-width: 22ch;
	margin: 0;
	border: 0;
	padding: 0;
	background: none;
	text-wrap: balance;
}
.rh-quote--dark .rh-quote__text { color: var(--rh-color-white); }

.rh-quote__author {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	font-size: var(--rh-fs-sm);
	color: var(--rh-color-text-muted);
}
.rh-quote--dark .rh-quote__author { color: var(--rh-color-primary-200); }

.rh-quote__author-name {
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary-900);
	letter-spacing: var(--rh-tracking-wide);
}
.rh-quote--dark .rh-quote__author-name { color: var(--rh-color-white); }

.rh-quote__author-role {
	font-size: var(--rh-fs-xs);
	letter-spacing: var(--rh-tracking-caps);
	text-transform: uppercase;
}

.rh-quote__description {
	max-width: 60ch;
	color: var(--rh-color-text-muted);
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-relaxed);
	margin-top: var(--rh-space-sm);
}
.rh-quote--dark .rh-quote__description { color: var(--rh-color-primary-200); }

.rh-quote--alt   { background: var(--rh-color-bg-alt); }
.rh-quote--dark  { background: var(--rh-color-bg-dark); color: var(--rh-color-white); }


/* ----------------------------------------------------------------------------
   Widget: Tätigkeitsfelder
   ---------------------------------------------------------------------------- */
.rh-practice__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--rh-space-md);
	list-style: none;
	padding: 0;
	margin: 0;
}
@media (min-width: 640px) {
	.rh-practice__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
	.rh-practice__grid { grid-template-columns: repeat(3, 1fr); }
}

.rh-practice__inner {
	display: flex;
	gap: var(--rh-space-sm);
	align-items: flex-start;
	padding: var(--rh-space-md) var(--rh-space-md);
	background: var(--rh-color-white);
	border: 1px solid var(--rh-color-border);
	border-radius: var(--rh-radius-md);
	height: 100%;
	color: inherit;
	text-decoration: none;
	transition: transform var(--rh-dur-fast) var(--rh-ease),
	            border-color var(--rh-dur-fast) var(--rh-ease),
	            box-shadow var(--rh-dur-fast) var(--rh-ease);
}
.rh-practice__inner--link:hover {
	border-color: var(--rh-color-primary);
	box-shadow: var(--rh-shadow-md);
	transform: translateY(-2px);
}

.rh-practice__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--rh-radius-sm);
	background: var(--rh-color-primary-100);
	color: var(--rh-color-primary);
}
.rh-practice__icon .rh-ico { font-size: 22px; }

.rh-practice__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.rh-practice__title {
	font-size: var(--rh-fs-md);
	margin: 0;
	color: var(--rh-color-primary-900);
}

.rh-practice__text {
	font-size: var(--rh-fs-sm);
	color: var(--rh-color-text-muted);
	line-height: var(--rh-lh-normal);
	margin: 0;
}

.rh-practice__arrow {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: var(--rh-color-primary);
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity var(--rh-dur-fast) var(--rh-ease),
	            transform var(--rh-dur-fast) var(--rh-ease);
}
.rh-practice__inner--link:hover .rh-practice__arrow {
	opacity: 1;
	transform: translateX(0);
}


/* ----------------------------------------------------------------------------
   Widget: Kontakt-CTA
   ---------------------------------------------------------------------------- */
.rh-cta--dark    { background: var(--rh-color-bg-dark); color: var(--rh-color-white); }
.rh-cta--primary { background: var(--rh-gradient-primary); color: var(--rh-color-white); }
.rh-cta--light   { background: var(--rh-color-bg-alt); color: var(--rh-color-text); }

.rh-cta--dark h2, .rh-cta--primary h2 { color: var(--rh-color-white); }

.rh-cta__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--rh-space-2xl);
	align-items: center;
}
@media (min-width: 992px) {
	.rh-cta__inner { grid-template-columns: 1.4fr 1fr; }
}

.rh-cta__content { display: flex; flex-direction: column; gap: var(--rh-space-sm); }

.rh-cta__heading {
	font-size: var(--rh-fs-3xl);
	margin: 0;
	max-width: 18ch;
	text-wrap: balance;
}

.rh-cta__text {
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-relaxed);
	max-width: 52ch;
	margin: 0;
}
.rh-cta--dark .rh-cta__text, .rh-cta--primary .rh-cta__text { color: rgba(255,255,255,0.88); }

.rh-cta__btn { align-self: flex-start; margin-top: var(--rh-space-sm); }

.rh-cta__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--rh-space-md);
}

.rh-cta__item {
	display: flex;
	gap: var(--rh-space-sm);
	align-items: flex-start;
	padding: var(--rh-space-md);
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--rh-radius-md);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.rh-cta--light .rh-cta__item {
	background: var(--rh-color-white);
	border-color: var(--rh-color-border);
	box-shadow: var(--rh-shadow-sm);
	backdrop-filter: none;
}

.rh-cta__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--rh-radius-sm);
	background: rgba(255,255,255,0.10);
	color: var(--rh-color-primary-200);
}
.rh-cta--light .rh-cta__icon {
	background: var(--rh-color-primary-100);
	color: var(--rh-color-primary);
}
.rh-cta__icon .rh-ico { font-size: 20px; }

.rh-cta__label {
	display: block;
	font-size: var(--rh-fs-xs);
	letter-spacing: var(--rh-tracking-caps);
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	margin-bottom: 0.2rem;
}
.rh-cta--light .rh-cta__label { color: var(--rh-color-text-muted); }

.rh-cta__value {
	font-size: var(--rh-fs-md);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-white);
	text-decoration: none;
}
.rh-cta--light .rh-cta__value { color: var(--rh-color-primary-900); }
.rh-cta__value:hover { color: var(--rh-color-primary-200); }
.rh-cta--light .rh-cta__value:hover { color: var(--rh-color-primary); }


/* ============================================================================
  11. HELPERS / PRINT / MOTION
   ============================================================================ */
.is-hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}


@media print {
	.rh-header,
	.rh-footer,
	.rh-menu-toggle,
	.rh-mobile-nav { display: none !important; }
	body { font-size: 11pt; color: #000; background: #fff; }
	a { color: #000; text-decoration: underline; }
}

/* ----------------------------------------------------------------------------
   Widget: Page-Hero (Sub-Pages)
   ---------------------------------------------------------------------------- */
.rh-page-hero {
	position: relative;
	isolation: isolate;
	padding-block: clamp(2rem, 1.5rem + 2vw, 3.5rem);
	background-color: var(--rh-color-primary-900);
	background-size: cover;
	background-position: center;
	color: var(--rh-color-white);
	overflow: hidden;
}
.rh-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(1, 52, 70, 0.55);
	z-index: -1;
}
.rh-page-hero:not(.rh-page-hero--has-image) .rh-page-hero__overlay {
	background: var(--rh-color-primary-900);
}
.rh-page-hero__inner {
	position: relative;
	text-align: left;
}
.rh-page-hero__eyebrow {
	color: rgba(255,255,255,0.85);
	margin-bottom: 0.75rem;
}
.rh-page-hero__heading {
	font-size: var(--rh-fs-3xl);
	line-height: var(--rh-lh-tight);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-white);
	letter-spacing: var(--rh-tracking-tight);
	margin: 0 0 1.5rem 0;
	text-wrap: balance;
}
.rh-page-hero__subtext {
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-snug);
	color: rgba(255,255,255,0.92);
	max-width: 56ch;
	margin: 0 0 1.5rem 0;
}
.rh-page-hero__btn {
	margin-top: 0.25rem;
}

/* ----------------------------------------------------------------------------
   Widget: Split (Bild + Text)
   ---------------------------------------------------------------------------- */
.rh-split__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
}
.rh-split--image-left .rh-split__media   { order: -1; }
.rh-split--image-right .rh-split__media  { order:  1; }
@media (max-width: 820px) {
	.rh-split__grid { grid-template-columns: 1fr; }
	.rh-split__media { order: -1 !important; }
}
.rh-split__heading {
	font-size: var(--rh-fs-3xl);
	margin: 0.4rem 0 2rem 0;
	color: var(--rh-color-primary-900);
	line-height: var(--rh-lh-tight);
}
.rh-split__text {
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-relaxed);
	color: var(--rh-color-text);
}
.rh-split__text > * + * { margin-top: 1em; }
.rh-split__text ul { padding-left: 1.2em; list-style: disc; }
.rh-split__btn { margin-top: var(--rh-space-md); }
.rh-split__media img {
	width: 100%;
	height: auto;
	box-shadow: var(--rh-shadow-md);
}

/* ----------------------------------------------------------------------------
   Widget: Topics (Themen-Liste)
   ---------------------------------------------------------------------------- */
.rh-topics__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--rh-space-md);
}
.rh-topics--cols-2 .rh-topics__list { grid-template-columns: repeat(2, 1fr); }
.rh-topics--cols-3 .rh-topics__list { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
	.rh-topics--cols-2 .rh-topics__list,
	.rh-topics--cols-3 .rh-topics__list { grid-template-columns: 1fr; }
}

.rh-topics__item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.25rem 0;
}
.rh-topics--card .rh-topics__item {
	background: var(--rh-color-white);
	padding: var(--rh-space-md);
	border: 1px solid var(--rh-color-border);
	box-shadow: var(--rh-shadow-xs);
}
.rh-topics__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	color: var(--rh-color-white);
	background: var(--rh-color-primary);
	margin-top: 2px;
}
.rh-topics__check .rh-ico { font-size: 16px; }
.rh-topics__bullet {
	display: inline-block;
	width: 8px;
	height: 8px;
	flex-shrink: 0;
	margin-top: 0.7rem;
	background: var(--rh-color-primary);
}
.rh-topics__title {
	font-size: var(--rh-fs-md);
	margin: 0;
	color: var(--rh-color-primary-900);
	line-height: var(--rh-lh-snug);
}
.rh-topics__text {
	margin: 0.35rem 0 0 0;
	font-size: var(--rh-fs-sm);
	color: var(--rh-color-text-muted);
	line-height: var(--rh-lh-relaxed);
}
.rh-topics--bullet .rh-topics__title { font-weight: var(--rh-fw-regular); font-size: var(--rh-fs-base); }

/* ----------------------------------------------------------------------------
   Widget: Process (Schritte)
   ---------------------------------------------------------------------------- */
.rh-process__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
	gap: var(--rh-space-lg);
	counter-reset: rh-step;
}
.rh-process__step {
	position: relative;
	background: var(--rh-color-white);
	padding: var(--rh-space-md);
	border: 1px solid var(--rh-color-border);
	box-shadow: var(--rh-shadow-xs);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.rh-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 0.4rem;
	background: var(--rh-gradient-primary);
	color: var(--rh-color-white);
	font-weight: var(--rh-fw-bold);
	font-size: var(--rh-fs-md);
	letter-spacing: 0.04em;
}
.rh-process__title {
	font-size: var(--rh-fs-lg);
	margin: 0;
	color: var(--rh-color-primary-900);
	line-height: var(--rh-lh-snug);
}
.rh-process__text {
	margin: 0;
	color: var(--rh-color-text-muted);
	font-size: var(--rh-fs-sm);
	line-height: var(--rh-lh-relaxed);
}

/* ----------------------------------------------------------------------------
   Widget: Profile (Anwalt / Mitarbeiter)
   ---------------------------------------------------------------------------- */
.rh-profile__list {
	display: grid;
	gap: var(--rh-space-lg);
}
.rh-profile--cols-1 .rh-profile__list { grid-template-columns: 1fr; }
.rh-profile--cols-2 .rh-profile__list { grid-template-columns: repeat(2, 1fr); }
.rh-profile--cols-3 .rh-profile__list { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
	.rh-profile--cols-3 .rh-profile__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
	.rh-profile--cols-2 .rh-profile__list,
	.rh-profile--cols-3 .rh-profile__list { grid-template-columns: 1fr; }
}

.rh-profile__card {
	background: var(--rh-color-white);
	padding: clamp(1.5rem, 2vw, 2.5rem);
	border: 1px solid var(--rh-color-border);
	box-shadow: var(--rh-shadow-md);
	display: grid;
	gap: clamp(1.25rem, 2vw, 2rem);
	align-items: start;
}
/* Bild-Variante: bei 1-Spalten-Layout zwei Spalten (Bild | Inhalt), sonst gestackt. */
.rh-profile--cols-1 .rh-profile__card--has-image {
	grid-template-columns: 280px 1fr;
}
@media (max-width: 720px) {
	.rh-profile--cols-1 .rh-profile__card--has-image { grid-template-columns: 1fr; }
}
.rh-profile__photo {
	margin: 0 auto;
	max-width: 280px;
	width: 100%;
}
/* Bild vertikal in der Karte zentrieren (nur 2-spaltiges Bild-Layout) */
.rh-profile--cols-1 .rh-profile__card--has-image .rh-profile__photo {
	align-self: center;
}
.rh-profile__photo img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.rh-profile__head { margin-bottom: var(--rh-space-md); }
.rh-profile__name {
	font-size: var(--rh-fs-2xl);
	margin: 0;
	color: var(--rh-color-primary-900);
	line-height: var(--rh-lh-tight);
}
.rh-profile__role {
	margin: 0.25rem 0 0 0;
	font-size: var(--rh-fs-md);
	color: var(--rh-color-primary);
	font-weight: var(--rh-fw-bold);
	letter-spacing: var(--rh-tracking-wide);
}
.rh-profile__quals {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--rh-space-md) 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.rh-profile__qual {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.85rem;
	font-size: var(--rh-fs-xs);
	font-weight: var(--rh-fw-bold);
	letter-spacing: var(--rh-tracking-wide);
	text-transform: uppercase;
	color: var(--rh-color-primary);
	background: var(--rh-color-primary-100);
	border: 1px solid var(--rh-color-primary-200);
	line-height: 1.2;
}
.rh-profile__bio {
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-relaxed);
	color: var(--rh-color-text);
}
.rh-profile__bio > * + * { margin-top: 0.8em; }
.rh-profile__bio p { margin: 0; }
.rh-profile__bio ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.45rem;
}
.rh-profile__bio ul li {
	position: relative;
	padding-left: 1.4rem;
}
.rh-profile__bio ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 8px;
	height: 8px;
	background: var(--rh-color-primary);
}
.rh-profile__contact {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rh-space-md);
	margin-top: var(--rh-space-md);
	padding-top: var(--rh-space-md);
	border-top: 1px solid var(--rh-color-border);
}
.rh-profile__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--rh-fs-sm);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary);
	text-decoration: none;
}
.rh-profile__contact-item .rh-ico { font-size: 1.1em; }
.rh-profile__contact-item:hover { color: var(--rh-color-primary-hover); }

/* ----------------------------------------------------------------------------
   Widget: Timeline (Historie) — alternierend mit zentraler Linie
   ---------------------------------------------------------------------------- */
.rh-timeline__list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}
.rh-timeline__list::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: var(--rh-color-border-strong);
	transform: translateX(-50%);
}

.rh-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
	column-gap: var(--rh-space-md);
	align-items: center;
}
.rh-timeline__card { min-width: 0; }

.rh-timeline__icon {
	grid-column: 2;
	grid-row: 1;
	z-index: 1;
	margin: 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--rh-color-primary);
	color: var(--rh-color-white);
}
.rh-timeline__icon .rh-ico { font-size: 22px; }

.rh-timeline__card {
	position: relative;
	grid-row: 1;
	background: var(--rh-color-white);
	border: 1px solid var(--rh-color-border);
	box-shadow: var(--rh-shadow-sm);
	padding: var(--rh-space-md) var(--rh-space-lg);
}
.rh-timeline__card::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 10px solid transparent;
}

/* Karte rechts neben der Linie */
.rh-timeline__item--right .rh-timeline__card {
	grid-column: 3;
	border-left: 3px solid var(--rh-color-primary);
}
.rh-timeline__item--right .rh-timeline__card::before {
	left: -10px;
	border-right-color: var(--rh-color-primary);
	border-left-width: 0;
}

/* Karte links neben der Linie */
.rh-timeline__item--left .rh-timeline__card {
	grid-column: 1;
	border-right: 3px solid var(--rh-color-primary);
	text-align: right;
}
.rh-timeline__item--left .rh-timeline__card::before {
	right: -10px;
	border-left-color: var(--rh-color-primary);
	border-right-width: 0;
}

.rh-timeline__year {
	font-size: var(--rh-fs-lg);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary);
	margin: 0 0 0.4rem 0;
	line-height: var(--rh-lh-snug);
	letter-spacing: var(--rh-tracking-wide);
}
.rh-timeline__text {
	margin: 0;
	color: var(--rh-color-text);
	line-height: var(--rh-lh-relaxed);
	font-size: var(--rh-fs-sm);
}

@media (max-width: 720px) {
	.rh-timeline__list::before {
		left: 24px;
		transform: none;
	}
	.rh-timeline__item {
		grid-template-columns: 48px 1fr;
		column-gap: var(--rh-space-sm);
	}
	.rh-timeline__icon { grid-column: 1; margin: 0; }
	.rh-timeline__item--left .rh-timeline__card,
	.rh-timeline__item--right .rh-timeline__card {
		grid-column: 2;
		text-align: left;
		border-left: 3px solid var(--rh-color-primary);
		border-right: 1px solid var(--rh-color-border);
	}
	.rh-timeline__item--left .rh-timeline__card::before,
	.rh-timeline__item--right .rh-timeline__card::before {
		left: -10px;
		right: auto;
		border-right-color: var(--rh-color-primary);
		border-left-width: 0;
		border-right-width: 10px;
	}
}

/* ----------------------------------------------------------------------------
   Widget: Forms-List (Formulare-Download)
   ---------------------------------------------------------------------------- */
.rh-forms-list__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--rh-space-md);
}
.rh-forms-list--cols-2 .rh-forms-list__grid { grid-template-columns: repeat(2, 1fr); }
.rh-forms-list--cols-3 .rh-forms-list__grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px) {
	.rh-forms-list--cols-3 .rh-forms-list__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.rh-forms-list--cols-2 .rh-forms-list__grid,
	.rh-forms-list--cols-3 .rh-forms-list__grid { grid-template-columns: 1fr; }
}

.rh-forms-list__item { display: flex; }

.rh-forms-list__card {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	align-items: center;
	gap: var(--rh-space-md);
	padding: var(--rh-space-md) var(--rh-space-lg);
	background: var(--rh-color-white);
	border: 1px solid var(--rh-color-border);
	box-shadow: var(--rh-shadow-xs);
	color: inherit;
	text-decoration: none;
	width: 100%;
	height: 100%;
	transition: transform var(--rh-dur-base) var(--rh-ease),
	            box-shadow var(--rh-dur-base) var(--rh-ease),
	            border-color var(--rh-dur-base) var(--rh-ease);
}
.rh-forms-list__body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	min-width: 0;
}
.rh-forms-list__card--link:hover {
	transform: translateY(-3px);
	box-shadow: var(--rh-shadow-md);
	border-color: var(--rh-color-primary-200);
}
.rh-forms-list__icon {
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--rh-color-primary-100);
	color: var(--rh-color-primary);
}
.rh-forms-list__icon .rh-ico { font-size: 26px; }
.rh-forms-list__title {
	margin: 0 0 0.25rem 0;
	font-size: var(--rh-fs-md);
	color: var(--rh-color-primary-900);
	line-height: var(--rh-lh-snug);
}
.rh-forms-list__text {
	margin: 0 0 0.5rem 0;
	font-size: var(--rh-fs-sm);
	color: var(--rh-color-text-muted);
	line-height: var(--rh-lh-relaxed);
}
.rh-forms-list__meta {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	font-size: var(--rh-fs-xs);
	letter-spacing: var(--rh-tracking-wide);
	color: var(--rh-color-text-muted);
}
.rh-forms-list__ext {
	display: inline-flex;
	align-items: center;
	padding: 0.18rem 0.55rem;
	background: var(--rh-color-primary-900);
	color: var(--rh-color-white);
	font-weight: var(--rh-fw-bold);
	font-size: 11px;
	letter-spacing: 0.06em;
}
.rh-forms-list__meta--missing { color: var(--rh-color-error); font-weight: var(--rh-fw-bold); }
.rh-forms-list__arrow {
	align-self: center;
	color: var(--rh-color-primary);
	transition: transform var(--rh-dur-base) var(--rh-ease);
}
.rh-forms-list__arrow .rh-ico { font-size: 22px; }
.rh-forms-list__card--link:hover .rh-forms-list__arrow { transform: translateX(4px); }
.rh-forms-list__empty {
	color: var(--rh-color-text-muted);
	text-align: center;
}

/* ----------------------------------------------------------------------------
   Widget: Info-List (Informationen-Übersicht)
   ---------------------------------------------------------------------------- */
.rh-info-list__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--rh-space-lg);
}
.rh-info-list--cols-2 .rh-info-list__grid { grid-template-columns: repeat(2, 1fr); }
.rh-info-list--cols-3 .rh-info-list__grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
	.rh-info-list--cols-3 .rh-info-list__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.rh-info-list--cols-2 .rh-info-list__grid,
	.rh-info-list--cols-3 .rh-info-list__grid { grid-template-columns: 1fr; }
}

.rh-info-list__card {
	display: flex;
	flex-direction: column;
	background: var(--rh-color-white);
	border: 1px solid var(--rh-color-border);
	box-shadow: var(--rh-shadow-xs);
	color: inherit;
	text-decoration: none;
	height: 100%;
	transition: transform var(--rh-dur-base) var(--rh-ease),
	            box-shadow var(--rh-dur-base) var(--rh-ease),
	            border-color var(--rh-dur-base) var(--rh-ease);
}
.rh-info-list__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rh-shadow-md);
	border-color: var(--rh-color-primary-200);
	color: inherit;
}
.rh-info-list__media {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--rh-color-bg-alt);
}
.rh-info-list__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--rh-dur-slow) var(--rh-ease);
}
.rh-info-list__card:hover .rh-info-list__media img { transform: scale(1.04); }

.rh-info-list__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: var(--rh-space-md) var(--rh-space-lg) var(--rh-space-lg);
	flex: 1;
}
.rh-info-list__title {
	margin: 0;
	font-size: var(--rh-fs-lg);
	color: var(--rh-color-primary-900);
	line-height: var(--rh-lh-snug);
}
.rh-info-list__meta {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0 0.75rem;
	font-size: var(--rh-fs-xs);
	color: var(--rh-color-text-muted);
	letter-spacing: var(--rh-tracking-wide);
}
.rh-info-list__meta span + span::before {
	content: "·";
	margin-right: 0.75rem;
	color: var(--rh-color-border-strong);
}
.rh-info-list__text {
	margin: 0;
	font-size: var(--rh-fs-sm);
	line-height: var(--rh-lh-relaxed);
	color: var(--rh-color-text-muted);
}
.rh-info-list__more {
	margin-top: auto;
	padding-top: 0.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: var(--rh-fs-sm);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary);
	letter-spacing: var(--rh-tracking-wide);
}
.rh-info-list__more .rh-ico { font-size: 18px; }
.rh-info-list__card:hover .rh-info-list__more .rh-ico {
	transform: translateX(3px);
	transition: transform var(--rh-dur-base) var(--rh-ease);
}
.rh-info-list__empty {
	color: var(--rh-color-text-muted);
	text-align: center;
}

/* ----------------------------------------------------------------------------
   Single: rh_info (einzelne Information)
   ---------------------------------------------------------------------------- */
.rh-info-single { background: var(--rh-color-white); }

.rh-info-single__head {
	position: relative;
	isolation: isolate;
	background-color: var(--rh-color-primary-900);
	color: var(--rh-color-white);
	padding-block: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.rh-info-single__head::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--rh-color-primary-900);
	z-index: -1;
}
/* keine Typ-Einfärbung mehr — einheitlich wie der Seiten-Hero */
.rh-info-single__head--urteil,
.rh-info-single__head--praesentation,
.rh-info-single__head--text { background-color: var(--rh-color-primary-900); }

.rh-info-single__back {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: var(--rh-fs-sm);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary);
	letter-spacing: var(--rh-tracking-wide);
	text-decoration: none;
}
.rh-info-single__back:hover { color: var(--rh-color-primary-hover); text-decoration: underline; }

.rh-info-single__head-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--rh-space-lg);
}
.rh-info-single__head-main {
	flex: 1 1 auto;
	min-width: 0;
}
.rh-info-single__crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	margin-bottom: 0.85rem;
}
.rh-info-single__tag {
	display: inline-flex;
	align-items: center;
	padding: 0.22rem 0.7rem;
	font-size: 11px;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.85);
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.22);
}
.rh-info-single__date {
	flex: 0 0 auto;
	align-self: center;
	font-size: var(--rh-fs-sm);
	color: rgba(255,255,255,0.7);
	white-space: nowrap;
}
@media (max-width: 640px) {
	.rh-info-single__head-inner {
		flex-direction: column;
		align-items: stretch;
		gap: var(--rh-space-sm);
	}
	.rh-info-single__head-main { width: 100%; }
	.rh-info-single__date {
		order: -1;
		align-self: auto;
		text-align: center;
	}
}

.rh-info-single__title {
	font-size: var(--rh-fs-3xl);
	color: var(--rh-color-white);
	font-weight: var(--rh-fw-bold);
	line-height: var(--rh-lh-tight);
	letter-spacing: var(--rh-tracking-tight);
	margin: 0 0 0.5rem 0;
	text-wrap: balance;
}
.rh-info-single__lead {
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-relaxed);
	color: rgba(255,255,255,0.92);
	margin: 0;
	max-width: 64ch;
}

.rh-info-single__body {
	padding-block: clamp(2rem, 1.5rem + 3vw, 4.5rem);
}

.rh-info-single__facts {
	background: var(--rh-color-white);
	border: 1px solid var(--rh-color-border);
	border-left: 4px solid var(--rh-color-primary);
	box-shadow: var(--rh-shadow-xs);
	padding: var(--rh-space-md) var(--rh-space-lg);
	margin: 0 0 var(--rh-space-lg) 0;
}
.rh-info-single__facts-title {
	font-size: 11px;
	font-weight: var(--rh-fw-bold);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rh-color-primary);
	margin: 0 0 0.75rem 0;
}
.rh-info-single__facts-grid {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
	gap: 0.75rem 1.5rem;
}
.rh-info-single__facts-grid > div { margin: 0; }
.rh-info-single__facts-grid dt {
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rh-color-text-muted);
	margin-bottom: 0.15rem;
}
.rh-info-single__facts-grid dd {
	margin: 0;
	font-size: var(--rh-fs-md);
	color: var(--rh-color-primary-900);
	font-weight: var(--rh-fw-bold);
}

.rh-info-single__media {
	margin: 0 0 var(--rh-space-lg) 0;
}
.rh-info-single__media img {
	width: 100%;
	height: auto;
	display: block;
	box-shadow: var(--rh-shadow-md);
}

.rh-info-single__content {
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-relaxed);
	color: var(--rh-color-text);
}
.rh-info-single__content > * + * { margin-top: 1em; }
.rh-info-single__content h2 {
	font-size: var(--rh-fs-xl);
	color: var(--rh-color-primary-900);
	margin-top: 1.5em;
	line-height: var(--rh-lh-snug);
}
.rh-info-single__content h3 {
	font-size: var(--rh-fs-lg);
	color: var(--rh-color-primary-900);
	margin-top: 1.25em;
	line-height: var(--rh-lh-snug);
}
.rh-info-single__content ul,
.rh-info-single__content ol { padding-left: 1.4em; }
.rh-info-single__content li + li { margin-top: 0.35em; }
.rh-info-single__content blockquote {
	margin: 1.25em 0;
	padding: 0.5rem 0 0.5rem 1.25rem;
	border-left: 3px solid var(--rh-color-primary);
	color: var(--rh-color-primary-900);
	font-style: italic;
}
.rh-info-single__content a { color: var(--rh-color-primary); text-decoration: underline; text-underline-offset: 3px; }
.rh-info-single__content a:hover { color: var(--rh-color-primary-hover); }

.rh-info-single__actions {
	margin-top: var(--rh-space-xl);
	display: flex;
	flex-wrap: wrap;
	gap: var(--rh-space-md);
	align-items: stretch;
}
.rh-info-single__file {
	display: inline-flex;
	align-items: center;
	gap: var(--rh-space-md);
	padding: var(--rh-space-md) var(--rh-space-lg);
	background: var(--rh-color-white);
	border: 1px solid var(--rh-color-border);
	border-left: 4px solid var(--rh-color-primary);
	box-shadow: var(--rh-shadow-xs);
	color: inherit;
	text-decoration: none;
	flex: 1 1 320px;
	transition: transform var(--rh-dur-base) var(--rh-ease),
	            box-shadow var(--rh-dur-base) var(--rh-ease);
}
.rh-info-single__file:hover {
	transform: translateY(-2px);
	box-shadow: var(--rh-shadow-md);
	color: inherit;
}
.rh-info-single__file-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: var(--rh-color-primary-100);
	color: var(--rh-color-primary);
}
.rh-info-single__file-icon .rh-ico { font-size: 22px; }
.rh-info-single__file-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.rh-info-single__file-label {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rh-color-text-muted);
	font-weight: var(--rh-fw-bold);
}
.rh-info-single__file-name {
	font-size: var(--rh-fs-md);
	color: var(--rh-color-primary-900);
	font-weight: var(--rh-fw-bold);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.rh-info-single__file-meta {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	font-size: var(--rh-fs-xs);
	color: var(--rh-color-text-muted);
	margin-top: 0.25rem;
}
.rh-info-single__file-ext {
	display: inline-flex;
	padding: 0.15rem 0.5rem;
	background: var(--rh-color-primary-900);
	color: var(--rh-color-white);
	font-weight: var(--rh-fw-bold);
	font-size: 10px;
	letter-spacing: 0.06em;
}

.rh-info-single__link { align-self: center; }

.rh-info-single__foot {
	margin-top: var(--rh-space-xl);
	padding-top: var(--rh-space-md);
	border-top: 1px solid var(--rh-color-border);
}

@media (max-width: 640px) {
	.rh-info-single__date { margin-left: 0; }
}

/* ----------------------------------------------------------------------------
   Widget: Text (Impressum, Datenschutz, AGB & Co.)
   ---------------------------------------------------------------------------- */
.rh-text__head {
	margin-bottom: var(--rh-space-lg);
}
.rh-text__head .eyebrow {
	display: inline-block;
	margin-bottom: 0.5rem;
}
.rh-text__heading {
	font-size: var(--rh-fs-3xl);
	color: var(--rh-color-primary-900);
	line-height: var(--rh-lh-tight);
	margin: 0;
	text-wrap: balance;
}

.rh-text__content {
	font-size: var(--rh-fs-md);
	line-height: var(--rh-lh-relaxed);
	color: var(--rh-color-text);
}
.rh-text__content > * + * { margin-top: 1em; }
.rh-text__content h1 {
	font-size: var(--rh-fs-2xl);
	color: var(--rh-color-primary-900);
	margin-top: 1.5em;
	line-height: var(--rh-lh-tight);
}
.rh-text__content h2 {
	font-size: var(--rh-fs-xl);
	color: var(--rh-color-primary-900);
	margin-top: 1.5em;
	line-height: var(--rh-lh-snug);
}
.rh-text__content h3 {
	font-size: var(--rh-fs-lg);
	color: var(--rh-color-primary-900);
	margin-top: 1.25em;
	line-height: var(--rh-lh-snug);
}
.rh-text__content h4 {
	font-size: var(--rh-fs-md);
	color: var(--rh-color-primary-900);
	margin-top: 1.2em;
	line-height: var(--rh-lh-snug);
}
.rh-text__content p { margin: 0; }
.rh-text__content ul,
.rh-text__content ol {
	padding-left: 1.4em;
}
.rh-text__content ul { list-style: disc; }
.rh-text__content ol { list-style: decimal; }
.rh-text__content li + li { margin-top: 0.35em; }
.rh-text__content blockquote {
	margin: 1.25em 0;
	padding: 0.5rem 0 0.5rem 1.25rem;
	border-left: 3px solid var(--rh-color-primary);
	color: var(--rh-color-primary-900);
	font-style: italic;
}
.rh-text__content a {
	color: var(--rh-color-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.rh-text__content a:hover { color: var(--rh-color-primary-hover); }
.rh-text__content strong { color: var(--rh-color-primary-900); }
.rh-text__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0;
}
.rh-text__content th,
.rh-text__content td {
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--rh-color-border);
	text-align: left;
	vertical-align: top;
}
.rh-text__content th {
	background: var(--rh-color-bg-alt);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary-900);
}
.rh-text__content hr {
	border: 0;
	border-top: 1px solid var(--rh-color-border);
	margin: 2em 0;
}

/* ----------------------------------------------------------------------------
   Aktueller Hinweis — Popup unten rechts
   ---------------------------------------------------------------------------- */
.rh-notice {
	position: fixed;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1rem, 3vw, 2rem);
	z-index: var(--rh-z-toast);
	width: min(380px, calc(100vw - 2rem));
	background: var(--rh-color-white);
	color: var(--rh-color-text);
	border: 1px solid var(--rh-color-border);
	border-top: 4px solid var(--rh-color-primary);
	box-shadow: var(--rh-shadow-xl);
	padding: var(--rh-space-lg);
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity var(--rh-dur-base) var(--rh-ease),
	            transform var(--rh-dur-base) var(--rh-ease);
}
.rh-notice.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.rh-notice.is-closing {
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
}
.rh-notice__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--rh-color-text-muted);
	background: transparent;
	transition: color var(--rh-dur-fast) var(--rh-ease),
	            background var(--rh-dur-fast) var(--rh-ease);
}
.rh-notice__close:hover {
	color: var(--rh-color-primary);
	background: var(--rh-color-primary-100);
}
.rh-notice__close .rh-ico { font-size: 18px; }
.rh-notice__inner {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.rh-notice__title {
	font-family: var(--rh-font-heading);
	font-size: var(--rh-fs-md);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary-900);
	padding-right: 1.5rem;
	line-height: var(--rh-lh-snug);
}
.rh-notice__text {
	font-size: var(--rh-fs-sm);
	line-height: var(--rh-lh-relaxed);
	color: var(--rh-color-text);
}
.rh-notice__text > * + * { margin-top: 0.5em; }
.rh-notice__text p { margin: 0; }
.rh-notice__text a {
	color: var(--rh-color-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.rh-notice__text a:hover { color: var(--rh-color-primary-hover); }
.rh-notice__btn {
	align-self: flex-start;
	margin-top: 0.4rem;
}
@media (prefers-reduced-motion: reduce) {
	.rh-notice { transition: none; }
}

/* ----------------------------------------------------------------------------
   Termin-vereinbaren Landingpage
   ---------------------------------------------------------------------------- */
.rh-termin {
	padding-block: clamp(3rem, 2rem + 5vw, 6rem);
	background: var(--rh-color-bg-alt);
	min-height: 70vh;
}

.rh-termin__head {
	text-align: center;
	margin-bottom: var(--rh-space-xl);
}
.rh-termin__title {
	font-size: var(--rh-fs-4xl);
	line-height: var(--rh-lh-tight);
	margin: 0 0 var(--rh-space-sm) 0;
	color: var(--rh-color-primary);
	letter-spacing: var(--rh-tracking-tight);
}
.rh-termin__lead {
	font-size: var(--rh-fs-lg);
	line-height: var(--rh-lh-relaxed);
	color: var(--rh-color-text-muted);
	max-width: 56ch;
	margin: 0 auto;
}

.rh-termin__alert {
	padding: 1rem 1.25rem;
	margin-bottom: var(--rh-space-lg);
	font-size: var(--rh-fs-sm);
	border-left: 4px solid;
	background: var(--rh-color-white);
	box-shadow: var(--rh-shadow-sm);
}
.rh-termin__alert strong { display: block; margin-bottom: 0.25rem; }
.rh-termin__alert--success { border-color: #1f8f4a; color: #0f3a1f; }
.rh-termin__alert--error   { border-color: #c03030; color: #5a1414; }

.rh-termin__urgent {
	display: flex;
	align-items: center;
	gap: var(--rh-space-md);
	padding: 1rem 1.25rem;
	margin-bottom: var(--rh-space-md);
	background: var(--rh-color-primary-100);
	border-left: 4px solid var(--rh-color-primary);
	color: var(--rh-color-primary-900);
	font-size: var(--rh-fs-sm);
	line-height: var(--rh-lh-snug);
}
.rh-termin__urgent strong {
	display: block;
	margin-bottom: 0.15rem;
	color: var(--rh-color-primary-900);
}
.rh-termin__urgent a {
	color: var(--rh-color-primary);
	font-weight: var(--rh-fw-bold);
	text-decoration: none;
}
.rh-termin__urgent a:hover { text-decoration: underline; }
.rh-termin__urgent-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: var(--rh-color-primary);
	color: var(--rh-color-white);
}
.rh-termin__urgent-icon .rh-ico { font-size: 20px; }

.rh-termin__form {
	background: var(--rh-color-white);
	padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
	box-shadow: var(--rh-shadow-md);
	display: grid;
	gap: var(--rh-space-md);
	position: relative;
}

.rh-form__row {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.rh-form__label {
	font-size: var(--rh-fs-sm);
	font-weight: var(--rh-fw-bold);
	color: var(--rh-color-primary);
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}
.rh-form__optional {
	font-weight: var(--rh-fw-regular);
	font-size: var(--rh-fs-xs);
	color: var(--rh-color-text-muted);
	text-transform: uppercase;
	letter-spacing: var(--rh-tracking-caps);
}
.rh-form__input {
	font: inherit;
	font-size: var(--rh-fs-md);
	color: var(--rh-color-text);
	background: #fff;
	border: 1px solid var(--rh-color-border);
	padding: 0.7rem 0.9rem;
	width: 100%;
	transition: border-color var(--rh-dur-fast) var(--rh-ease),
	            box-shadow var(--rh-dur-fast) var(--rh-ease);
}
.rh-form__input:focus {
	outline: none;
	border-color: var(--rh-color-primary);
	box-shadow: var(--rh-focus-ring);
}
.rh-form__input.has-error {
	border-color: #c03030;
	box-shadow: 0 0 0 3px rgba(192,48,48,.18);
}
.rh-form__textarea {
	resize: vertical;
	min-height: 120px;
}
.rh-form__hint {
	font-size: var(--rh-fs-xs);
	color: var(--rh-color-text-muted);
}

.rh-form__fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}
.rh-form__fieldset > legend.rh-form__label { padding: 0; }

.rh-form__datetime {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: var(--rh-space-sm);
}
@media (max-width: 520px) {
	.rh-form__datetime { grid-template-columns: 1fr; }
}

.rh-form__pick {
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid var(--rh-color-border);
	transition: border-color var(--rh-dur-fast) var(--rh-ease),
	            box-shadow var(--rh-dur-fast) var(--rh-ease);
}
.rh-form__pick:focus-within {
	border-color: var(--rh-color-primary);
	box-shadow: var(--rh-focus-ring);
}
.rh-form__pick.has-error {
	border-color: var(--rh-color-error);
	box-shadow: 0 0 0 3px rgba(192,48,48,.18);
}
.rh-form__pick-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 100%;
	color: var(--rh-color-primary);
	background: var(--rh-color-primary-100);
	flex-shrink: 0;
}
.rh-form__pick-icon .rh-ico { font-size: 20px; }

.rh-form__input--bare {
	border: 0 !important;
	box-shadow: none !important;
	background: transparent;
	padding: 0.7rem 0.9rem;
	color: var(--rh-color-text);
	font-family: var(--rh-font-body);
	width: 100%;
	min-width: 0;
}
.rh-form__input--bare:focus { outline: none; }
.rh-form__input--bare::-webkit-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.7;
	filter: invert(20%) sepia(30%) saturate(800%) hue-rotate(160deg);
	transition: opacity var(--rh-dur-fast) var(--rh-ease);
}
.rh-form__input--bare::-webkit-calendar-picker-indicator:hover { opacity: 1; }

.rh-form__row--checkbox {
	margin-top: 0.25rem;
}
.rh-form__row--checkbox.has-error .rh-form__checkbox-box {
	border-color: var(--rh-color-error);
	box-shadow: 0 0 0 3px rgba(192,48,48,.18);
}

.rh-form__checkbox {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	cursor: pointer;
	font-size: var(--rh-fs-sm);
	line-height: var(--rh-lh-snug);
	color: var(--rh-color-text);
	user-select: none;
}
.rh-form__checkbox input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}
.rh-form__checkbox-box {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: #fff;
	border: 1.5px solid var(--rh-color-border-strong);
	transition: background var(--rh-dur-fast) var(--rh-ease),
	            border-color var(--rh-dur-fast) var(--rh-ease);
}
.rh-form__checkbox-box::after {
	content: "";
	width: 12px;
	height: 7px;
	border-left: 2.5px solid #fff;
	border-bottom: 2.5px solid #fff;
	transform: rotate(-45deg) translate(1px, -1px) scale(0);
	transition: transform var(--rh-dur-fast) var(--rh-ease);
}
.rh-form__checkbox input:checked ~ .rh-form__checkbox-box {
	background: var(--rh-color-primary);
	border-color: var(--rh-color-primary);
}
.rh-form__checkbox input:checked ~ .rh-form__checkbox-box::after {
	transform: rotate(-45deg) translate(1px, -1px) scale(1);
}
.rh-form__checkbox input:focus-visible ~ .rh-form__checkbox-box {
	box-shadow: var(--rh-focus-ring);
}
.rh-form__checkbox-text a {
	color: var(--rh-color-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.rh-form__checkbox-text a:hover { color: var(--rh-color-primary-hover); }

.rh-form__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--rh-space-md);
	margin-top: var(--rh-space-sm);
}
.rh-form__legal {
	margin: 0;
	font-size: var(--rh-fs-xs);
	color: var(--rh-color-text-muted);
	flex: 1 1 280px;
	line-height: var(--rh-lh-relaxed);
}

.rh-termin__contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--rh-space-lg);
	margin-top: var(--rh-space-xl);
	padding-top: var(--rh-space-lg);
	border-top: 1px solid var(--rh-color-border);
}
.rh-termin__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--rh-fs-sm);
	color: var(--rh-color-text-muted);
}
.rh-termin__contact-item .rh-ico {
	font-size: 1.1em;
	color: var(--rh-color-primary);
}
.rh-termin__contact-item a {
	color: var(--rh-color-primary);
	text-decoration: none;
	font-weight: var(--rh-fw-bold);
}
.rh-termin__contact-item a:hover { text-decoration: underline; }


/* ----------------------------------------------------------------------------
   Widget: Kontaktformular
   ---------------------------------------------------------------------------- */
.rh-contact__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}
.rh-contact--no-aside .rh-contact__grid {
	grid-template-columns: 1fr;
	max-width: 760px;
}
@media (max-width: 860px) {
	.rh-contact__grid { grid-template-columns: 1fr; }
}

.rh-contact__form {
	background: var(--rh-color-white);
	padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
	border: 1px solid var(--rh-color-border);
	box-shadow: var(--rh-shadow-md);
}
.rh-contact--no-aside .rh-contact__form { margin-inline: auto; }

.rh-contact__aside {
	background: var(--rh-color-primary-900);
	color: var(--rh-color-white);
	padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.rh-contact__aside-title {
	font-size: var(--rh-fs-lg);
	color: var(--rh-color-white);
	margin: 0 0 var(--rh-space-md) 0;
}
.rh-contact__info {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--rh-space-md);
}
.rh-contact__info-item {
	display: flex;
	gap: var(--rh-space-sm);
	align-items: flex-start;
}
.rh-contact__info-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.10);
	color: var(--rh-color-primary-200);
}
.rh-contact__info-icon .rh-ico { font-size: 20px; }
.rh-contact__info-label {
	display: block;
	font-size: var(--rh-fs-xs);
	letter-spacing: var(--rh-tracking-caps);
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	margin-bottom: 0.15rem;
}
.rh-contact__info-item a,
.rh-contact__info-item span {
	color: var(--rh-color-white);
	text-decoration: none;
	font-weight: var(--rh-fw-bold);
	line-height: var(--rh-lh-snug);
}
.rh-contact__info-item a:hover { color: var(--rh-color-primary-200); }

.rh-contact__side {
	display: flex;
	flex-direction: column;
	gap: var(--rh-space-lg);
}
.rh-contact__map {
	margin-top: var(--rh-space-xl);
	border: 1px solid var(--rh-color-border);
	box-shadow: var(--rh-shadow-sm);
	line-height: 0;
}
/* Karte unter der rechten Spalte: Abstand kommt vom Side-Wrapper-Gap */
.rh-contact__side .rh-contact__map {
	margin-top: 0;
}
.rh-contact__map iframe {
	display: block;
	width: 100%;
	height: var(--rh-map-h, 380px);
	border: 0;
}
@media (max-width: 560px) {
	.rh-contact__map iframe { height: min(var(--rh-map-h, 380px), 300px); }
}


/* ============================================================================
   RESPONSIVE OVERRIDES — bewusst am Dateiende, damit sie die Widget-Basis-
   stile bei gleicher Spezifität sicher überschreiben.
   ============================================================================ */

/* Bilder nie über die Breite hinaus, konsistent über alle Widgets */
.rh-split__media img,
.rh-info-single__media img,
.rh-profile__photo img,
.rh-info-list__media img {
	max-width: 100%;
}

/* ---- Mobile-Feinschliff — moderne Touch-Targets & Spacing (≤ 560px) ---- */
@media (max-width: 560px) {

	.rh-hero__actions,
	.rh-cta__content,
	.rh-split__content,
	.rh-page-hero__inner {
		align-items: stretch;
	}
	.rh-hero__actions { flex-direction: column; }
	.rh-hero__actions .rh-btn,
	.rh-page-hero__btn,
	.rh-split__btn,
	.rh-cta__btn,
	.rh-info-single__link {
		width: 100%;
		justify-content: center;
	}

	.rh-hero__heading { max-width: 100%; }

	.rh-forms-list__card,
	.rh-info-list__body,
	.rh-profile__card,
	.rh-process__step {
		padding: var(--rh-space-md);
	}
	.rh-timeline__card { padding: var(--rh-space-md); }
}

/* ---- Mobil: Schrift in allen Widgets zentriert (≤ 640px) ---- */
@media (max-width: 640px) {

	.rh-section__head,
	.rh-hero__content,
	.rh-page-hero__inner,
	.rh-split__content,
	.rh-cta__content,
	.rh-quote__inner,
	.rh-text__content,
	.rh-termin__head,
	.rh-info-single__head-main,
	.rh-info-single__content,
	.rh-profile__body,
	.rh-process__step,
	.rh-forms-list__body,
	.rh-timeline__card {
		text-align: center;
	}

	.rh-hero__heading,
	.rh-hero__subtext,
	.rh-cta__heading,
	.rh-cta__text,
	.rh-section__intro,
	.rh-info-single__lead,
	.rh-split__text,
	.rh-quote__text,
	.rh-quote__description {
		margin-left: auto;
		margin-right: auto;
	}

	.rh-hero__content,
	.rh-page-hero__inner,
	.rh-split__content,
	.rh-cta__content,
	.rh-quote__inner,
	.rh-profile__head {
		align-items: center;
	}
	.rh-profile__quals,
	.rh-profile__contact,
	.rh-forms-list__meta {
		justify-content: center;
	}

	/* Themen-Liste: Icon über den Text, sicher zentriert */
	.rh-topics__item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.rh-topics__check,
	.rh-topics__bullet {
		align-self: center;
		margin: 0 auto;
	}

	/* Ablauf: Nummern-Badge zentriert */
	.rh-process__step { align-items: center; }
	.rh-process__num { align-self: center; }

	/* Forms-Liste: Icon oben, Text darunter, Pfeil ausblenden */
	.rh-forms-list__card {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: var(--rh-space-sm);
	}
	.rh-forms-list__arrow { display: none; }
}
